:root {
  color-scheme: light;
  --ink: #27272b;
  --muted: #8a96a3;
  --line: #d9e8f2;
  --paper: #f6fbff;
  --white: #ffffff;
  --field: #eef8fe;
  --accent: #00aff0;
  --accent-dark: #008ccf;
  --green: #20c46b;
  --gold: #008ccf;
  --shadow: 0 20px 60px rgba(0, 140, 207, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(217, 232, 242, 0.95);
  background: rgba(246, 251, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  font-size: 13px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) 0 28px;
}

.hero::before {
  position: absolute;
  top: 7%;
  left: -2%;
  z-index: 0;
  width: min(58vw, 660px);
  aspect-ratio: 260 / 160;
  content: "";
  background: url("assets/onlyfans-mark.svg") center / contain no-repeat;
  opacity: 0.075;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions,
.trust-row,
.model-topline,
.model-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn,
.secondary-dark {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
}

.primary-btn {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(0, 175, 240, 0.24);
}

.primary-btn:hover {
  background: var(--accent-dark);
}

.secondary-btn {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.secondary-dark {
  color: var(--white);
  background: var(--green);
}

.secondary-dark:hover {
  background: var(--accent-dark);
}

.trust-row {
  gap: 9px;
  margin-top: 18px;
}

.trust-row span,
.pill {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.official-pill {
  border-color: rgba(0, 175, 240, 0.26);
  color: var(--accent-dark);
  background: rgba(0, 175, 240, 0.1);
}

.hero-carousel {
  position: relative;
  min-height: 650px;
  perspective: 1000px;
}

.carousel-stage {
  position: absolute;
  inset: 0;
}

.award-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 175, 240, 0.26);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(0, 140, 207, 0.2);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.award-badge span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 175, 240, 0.12);
  font-size: 16px;
}

.award-badge strong {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.carousel-item {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.92) rotate(0);
  transition: transform 560ms ease, opacity 560ms ease, filter 560ms ease;
}

.carousel-item img,
.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 90px) scale(1) rotate(0);
}

.carousel-item.is-next {
  z-index: 2;
  opacity: 0.74;
  filter: saturate(0.82) brightness(0.88);
  transform: translate3d(34px, 18px, -70px) scale(0.9) rotate(4deg);
}

.carousel-item.is-prev {
  z-index: 1;
  opacity: 0.55;
  filter: saturate(0.7) brightness(0.82);
  transform: translate3d(-30px, 35px, -120px) scale(0.84) rotate(-5deg);
}

.hero-card-panel {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 54px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: var(--white);
  background: rgba(39, 39, 43, 0.78);
  backdrop-filter: blur(14px);
}

.rank {
  display: inline-flex;
  min-width: 48px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  font-weight: 950;
}

.hero-card-panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}

.hero-card-panel p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 750;
}

.carousel-dots {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 24px;
  background: var(--white);
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.quick-proof div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.quick-proof div:last-child {
  border-right: 0;
}

.quick-proof strong,
.quick-proof span {
  display: block;
}

.quick-proof strong {
  font-size: 32px;
  line-height: 1;
}

.quick-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 750;
}

.ranking {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.ranking {
  padding: clamp(42px, 7vw, 76px) 0 110px;
}

.section-title {
  margin-bottom: 18px;
}

.section-title p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.model-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
  margin-top: 16px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(0, 140, 207, 0.08);
}

.model-card::after {
  position: absolute;
  right: -42px;
  bottom: -34px;
  z-index: 0;
  width: min(42%, 250px);
  aspect-ratio: 260 / 160;
  content: "";
  background: url("assets/onlyfans-o-wings.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.model-card > * {
  position: relative;
  z-index: 1;
}

.primary-model {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f1faff 100%);
}

.online-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 15px;
  height: 15px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: #20c46b;
  box-shadow: 0 0 0 5px rgba(32, 196, 107, 0.14), 0 8px 18px rgba(32, 196, 107, 0.3);
}

.green-chat-btn {
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 175, 240, 0.14), 0 18px 42px rgba(0, 140, 207, 0.24);
}

.green-chat-btn:hover {
  background: var(--accent-dark);
}

.compact-model {
  grid-template-columns: 260px minmax(0, 1fr);
  box-shadow: none;
}

.model-media {
  overflow: hidden;
  border-radius: 10px;
  background: var(--field);
}

.primary-model .model-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.compact-model .model-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mini-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  background: var(--field);
}

.model-card .mini-carousel {
  border: 2px solid var(--green);
  box-shadow: 0 0 0 5px rgba(32, 196, 107, 0.14), 0 16px 38px rgba(32, 196, 107, 0.18);
}

.mini-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease, transform 520ms ease;
}

.mini-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.mini-slide.is-next {
  opacity: 0;
  transform: scale(1.08);
}

.model-copy {
  min-width: 0;
}

.model-topline {
  gap: 8px;
  margin-bottom: 12px;
}

.muted-rank {
  background: var(--green);
}

.model-card h3 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: 0;
}

.compact-model h3 {
  font-size: clamp(30px, 4vw, 42px);
}

.model-subtitle {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-weight: 720;
}

.benefits li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  color: var(--green);
  font-weight: 950;
}

.model-actions {
  gap: 12px;
  margin-top: 22px;
}

.model-actions span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 36px);
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--white);
  background: rgba(39, 39, 43, 0.92);
  box-shadow: 0 18px 45px rgba(0, 140, 207, 0.22);
  backdrop-filter: blur(14px);
}

.sticky-cta span {
  font-size: 14px;
  font-weight: 850;
}

.sticky-cta a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .hero,
  .model-card,
  .compact-model {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 34px;
  }

  .hero-carousel {
    width: min(100%, 430px);
    min-height: auto;
    aspect-ratio: 9 / 15;
    margin: 0 auto;
    perspective: none;
  }

  .hero::before {
    top: 4%;
    left: 50%;
    width: min(92vw, 520px);
    opacity: 0.055;
    transform: translateX(-50%);
  }

  .carousel-item.is-active {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }

  .carousel-item.is-next {
    z-index: 2;
    opacity: 0.46;
    filter: saturate(0.82) brightness(0.9);
    transform: translate3d(16px, 16px, 0) scale(0.92) rotate(3deg);
  }

  .carousel-item.is-prev {
    z-index: 1;
    opacity: 0.32;
    filter: saturate(0.74) brightness(0.86);
    transform: translate3d(-12px, 26px, 0) scale(0.88) rotate(-3deg);
  }

  .award-badge {
    top: 10px;
    left: 12px;
    min-height: 38px;
    padding: 7px 11px;
    transform: none;
  }

  .award-badge strong {
    font-size: 12px;
  }

  .award-badge span {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .hero-card-panel {
    right: 12px;
    bottom: 44px;
    left: 12px;
    padding: 12px;
  }

  .quick-proof {
    grid-template-columns: 1fr;
  }

  .quick-proof div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-proof div:last-child {
    border-bottom: 0;
  }

  .compact-model .model-media {
    max-width: 330px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .hero {
    width: min(100% - 24px, 1160px);
    gap: 30px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-carousel {
    width: min(100%, 360px);
    aspect-ratio: 9 / 14;
  }

  .hero-card-panel h2 {
    font-size: 24px;
  }

  .carousel-dots {
    bottom: 13px;
  }

  .lead,
  .model-subtitle {
    font-size: 17px;
  }

  .primary-btn,
  .secondary-btn,
  .secondary-dark,
  .hero-actions,
  .model-actions {
    width: 100%;
  }

  .model-actions span {
    width: 100%;
    text-align: center;
  }

  .ranking,
  .quick-proof {
    width: min(100% - 24px, 1060px);
  }

  .model-card {
    border-radius: 12px;
    padding: 12px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
