:root {
  color-scheme: dark;
  --ink: #100d18;
  --ink-2: #17121f;
  --panel: #211827;
  --panel-2: #2a1d31;
  --ivory: #fff8f3;
  --muted: #c8bbc7;
  --line: rgba(255, 248, 243, .14);
  --coral: #ff7898;
  --coral-bright: #ff95ad;
  --violet: #b58cff;
  --focus: #ffd7e0;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .35);
  --content: 780px;
  --wide: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 86% 8%, rgba(181, 140, 255, .13), transparent 26rem),
    radial-gradient(circle at 8% 20%, rgba(255, 120, 152, .1), transparent 28rem),
    var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: var(--coral-bright); text-underline-offset: .2em; }
a:hover { color: var(--ivory); }
button, a { -webkit-tap-highlight-color: transparent; }
[data-offer-link] { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--ivory);
  border-radius: 999px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 12px max(22px, calc((100vw - var(--wide)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(16, 13, 24, .93);
  backdrop-filter: blur(18px);
}

.site-header--reference {
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
}
.site-header--reference .desktop-nav { grid-column: 2; }
.site-header--reference .header-actions { grid-column: 3; }
.site-header--reference .menu-toggle { grid-column: 4; }
.site-header--reference .age-chip { grid-column: 5; }

.site-brand { display: inline-flex; flex: 0 0 auto; text-decoration: none; }
.site-brand img { width: 206px; height: auto; }
.age-chip {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 28px;
  color: var(--ivory);
  border: 1px solid rgba(255, 120, 152, .55);
  border-radius: 999px;
  background: rgba(255, 120, 152, .12);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.desktop-nav { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 22px; }
.desktop-nav a, .site-footer nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .04em;
  text-decoration: none;
}
.desktop-nav a:hover, .site-footer nav a:hover { color: var(--ivory); }

.header-actions {
  grid-column: 4;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}
.header-login,
.header-register {
  text-decoration: none;
  white-space: nowrap;
}
.header-login {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  font-size: 12px;
  font-weight: 800;
}
.header-login:hover { color: var(--ivory); border-color: rgba(255, 149, 173, .6); background: rgba(255, 120, 152, .1); }
.header-register {
  display: grid;
  min-width: 138px;
  min-height: 52px;
  place-content: center;
  justify-items: center;
  padding: 6px 12px;
  color: var(--ink);
  border: 1px solid var(--coral-bright);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffadc0, var(--coral));
  box-shadow: 0 9px 26px rgba(255, 120, 152, .24);
  line-height: 1;
  animation: header-cta-pulse 1.8s ease-in-out infinite;
}
.header-register:hover { color: var(--ink); background: var(--ivory); }
.header-register__label { font-size: 13px; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.header-register__deal {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
  color: #3e1a2a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}
.header-register__deal strong {
  padding: 3px 5px;
  color: #fff;
  border-radius: 999px;
  background: #e91b91;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: .03em;
}

.site-header--reference .header-actions { gap: 9px; }
.site-header--reference .header-login {
  min-height: 38px;
  padding: 7px 10px;
  border: 0;
  background: transparent;
}
.header-register-offer {
  display: grid;
  justify-items: center;
  gap: 3px;
}
.site-header--reference .header-register {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 4px 11px 4px 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: none;
}
.header-register__badge {
  display: inline-grid;
  min-width: 38px;
  min-height: 26px;
  place-items: center;
  padding: 3px 6px;
  color: #fff;
  border-radius: 999px;
  background: #e91b91;
  font-size: 9px;
  letter-spacing: .03em;
}
.header-timer {
  color: #ffd9c5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
}

@keyframes header-cta-pulse {
  0%, 100% { box-shadow: 0 9px 24px rgba(255, 120, 152, .2); transform: translateY(0); }
  50% { box-shadow: 0 11px 32px rgba(255, 120, 152, .46); transform: translateY(-1px); }
}

.menu-toggle {
  grid-column: 5;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}
.menu-toggle__icon, .menu-toggle__icon::before, .menu-toggle__icon::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle__icon { position: relative; }
.menu-toggle__icon::before, .menu-toggle__icon::after { position: absolute; left: 0; content: ""; }
.menu-toggle__icon::before { top: -5px; }
.menu-toggle__icon::after { top: 5px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

.mobile-drawer {
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 12px 22px 28px;
  border-bottom: 1px solid var(--line);
  background: #100d18;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mobile-drawer[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-drawer nav { display: grid; gap: 2px; }
.mobile-drawer a {
  padding: 12px 2px;
  color: var(--ivory);
  border-bottom: 1px solid var(--line);
  font-weight: 720;
  text-decoration: none;
}

.editorial > p,
.editorial > h2,
.editorial > h3,
.editorial > ul,
.editorial > ol,
.editorial > .faq {
  width: min(calc(100% - 44px), var(--content));
  margin-right: auto;
  margin-left: auto;
}

.editorial > p { color: #e6dce4; }
.editorial > p:first-of-type:not(.hero__lead) { margin-top: 34px; }

h1, h2, h3, .generated-heading {
  color: var(--ivory);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 680;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 7.4rem); text-wrap: balance; }
.editorial > h2, .faq > h2 {
  margin-top: 104px;
  margin-bottom: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: clamp(2.2rem, 4.7vw, 4rem);
  text-wrap: balance;
  scroll-margin-top: 100px;
}
.editorial > h3 {
  margin-top: 62px;
  margin-bottom: 20px;
  color: #ffebef;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  scroll-margin-top: 100px;
}

.editorial > ul, .editorial > ol { padding-left: 1.35em; color: #e6dce4; }
.editorial li { margin: .46em 0; padding-left: .25em; }
.editorial strong { color: var(--ivory); }
.editorial em { color: var(--muted); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral-bright);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: start;
  gap: 26px clamp(36px, 5vw, 72px);
  width: min(calc(100% - 44px), var(--wide));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 64px 0 28px;
}
.hero::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: rgba(255, 104, 144, .12);
  filter: blur(100px);
  content: "";
}
.hero__heading,
.hero__intro {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.hero__heading { grid-column: 1; grid-row: 1; }
.hero__intro { grid-column: 1; grid-row: 2; padding-top: 2px; }
.hero__media { grid-column: 2; grid-row: 1 / span 2; }
.hero h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 6.4vw, 5.9rem);
  letter-spacing: -.055em;
  line-height: .94;
}
.hero__heading .eyebrow { margin-bottom: 14px; color: #ffd7de; }
.page-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.page-byline a {
  color: var(--ivory);
  font-weight: 750;
  text-decoration-color: rgba(255, 248, 243, .42);
}
.hero__lead { max-width: 650px; margin: 0; color: #ded1dc; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; }
.hero__media {
  position: relative;
  align-self: start;
  min-width: 0;
  min-height: 640px;
  height: min(720px, calc(100vh - 110px));
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(181, 140, 255, .35);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(181, 140, 255, .2), rgba(255, 120, 152, .12) 48%, rgba(16, 13, 24, .9));
  box-shadow: var(--shadow);
}
.hero__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 21px;
}
.hero__track {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  border-radius: inherit;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.hero__track::-webkit-scrollbar { display: none; }
.hero__slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.hero__media-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 21px;
  text-decoration: none;
}
.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 21px;
  object-fit: cover;
  object-position: center;
  background: #17121f;
  transition: filter .18s ease, transform .24s ease;
}
.hero__media-link:hover .hero__video { filter: brightness(1.06); transform: scale(1.012); }
.hero__carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 48%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(16, 13, 24, .56);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  backdrop-filter: blur(9px);
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  transform: translateY(-50%);
}
.hero__carousel-arrow:hover { color: var(--ink); background: var(--coral-bright); }
.hero__carousel-arrow--prev { left: 14px; }
.hero__carousel-arrow--next { right: 14px; }
.hero__carousel-dots {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  display: flex;
  gap: 2px;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(16, 13, 24, .48);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}
.hero__carousel-dot {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero__carousel-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  content: "";
  transform: translate(-50%, -50%);
  transition: width .2s ease, background .2s ease;
}
.hero__carousel-dot[aria-current="true"]::before { width: 17px; background: var(--coral-bright); }
.hero__offer {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 4;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  background: radial-gradient(circle at 88% 0%, rgba(255, 180, 120, .24), transparent 42%), linear-gradient(135deg, rgba(16, 13, 24, .86), rgba(24, 16, 30, .76));
  box-shadow: 0 20px 46px rgba(0, 0, 0, .42);
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.hero__offer-title {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #ff8298, #ffb478 52%, #fff0c4);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}
.hero__offer-copy { margin: 10px 0 16px; color: #e8d9d5; font-size: .84rem; font-weight: 700; line-height: 1.35; }
.hero__offer-actions { display: flex; align-items: center; gap: 14px; }
.cta-button.hero__referral-button {
  position: relative;
  width: auto;
  flex: 0 1 auto;
  gap: 8px;
  min-height: 52px;
  margin: 0;
  padding: 8px 15px 8px 8px;
  isolation: isolate;
  animation: hero-cta-blink 1.35s ease-in-out infinite;
  pointer-events: auto;
}
.hero__referral-button::after {
  position: absolute;
  z-index: -1;
  inset: -5px;
  border: 2px solid rgba(255, 125, 148, .88);
  border-radius: inherit;
  content: "";
  animation: hero-cta-ring 1.35s ease-out infinite;
  pointer-events: none;
}
.hero__referral-badge {
  display: inline-grid;
  min-width: 58px;
  min-height: 36px;
  place-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: #e91b91;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero__offer-timer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #fff0dc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1;
}
.hero__timer-icon { font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; font-weight: 400; }

@keyframes hero-cta-blink {
  0%, 100% { filter: brightness(1); box-shadow: 0 12px 26px rgba(255, 120, 152, .24); }
  50% { filter: brightness(1.22); box-shadow: 0 15px 38px rgba(255, 120, 152, .62); }
}
@keyframes hero-cta-ring {
  0% { opacity: .9; transform: scale(.98); }
  75%, 100% { opacity: 0; transform: scale(1.1, 1.28); }
}

.brand-showcase {
  width: min(calc(100% - 44px), var(--wide));
  margin: 16px auto 44px;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(42, 29, 49, .96), rgba(28, 20, 34, .96));
  box-shadow: var(--shadow);
}
.section-kicker { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-kicker .generated-heading { max-width: 720px; margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); }
.carousel-controls { display: flex; gap: 8px; }
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  font-size: 20px;
  cursor: pointer;
}
.carousel-arrow:hover { background: var(--coral); color: var(--ink); }

.brand-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}
.brand-carousel::-webkit-scrollbar { display: none; }
.brand-carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }
.brand-card {
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(16, 13, 24, .68);
  scroll-snap-align: start;
}
.brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
  background: #f7edf3;
}
.brand-card__logo img { width: 74px; height: 74px; object-fit: contain; }
.brand-card__logo--dark { background: #000; }
.brand-card__logo--app { background: #2e2e2e; }
.brand-card__logo--app img { width: 84px; height: 84px; border-radius: 16px; }
.brand-card h3 { margin: 0 0 20px; font-size: 2rem; }
.brand-card dl { margin: 0 0 24px; }
.brand-card dl div { display: grid; grid-template-columns: 78px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.brand-card dt { color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; }
.brand-card dd { margin: 0; color: var(--ivory); font-size: 14px; line-height: 1.45; }
.text-link { margin-top: auto; font-size: 14px; font-weight: 800; text-decoration: none; }
.cta-button {
  margin: 16px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  margin-top: 0;
  padding: 12px 18px;
  color: var(--ink);
  border: 1px solid var(--coral-bright);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral-bright), var(--coral));
  box-shadow: 0 12px 30px rgba(255, 120, 152, .18);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
.cta-button:hover { color: var(--ink); background: var(--ivory); border-color: var(--ivory); }
.carousel-dots { display: flex; justify-content: center; gap: 0; margin-top: 2px; }
.carousel-dot {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.carousel-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #756878;
  content: "";
  transform: translate(-50%, -50%);
}
.carousel-dot[aria-current="true"]::before { width: 28px; border-radius: 999px; background: var(--coral); }

.table-scroll {
  width: min(calc(100% - 44px), var(--wide));
  margin: 34px auto 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}
table { width: 100%; min-width: 760px; border-collapse: collapse; color: #e8dee6; font-size: 15px; line-height: 1.45; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--ivory); background: rgba(255, 120, 152, .09); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, .025); }

.editorial-visual {
  width: min(calc(100% - 44px), 980px);
  margin: 62px auto 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.editorial-visual img { width: 100%; height: auto; aspect-ratio: 1280 / 853; object-fit: cover; }
.editorial-visual--wide { width: min(calc(100% - 44px), var(--wide)); }
.editorial-visual--offset { transform: translateX(5%); }
.editorial-visual--offset-reverse { transform: translateX(-5%); }

.review-visual {
  position: relative;
  width: min(calc(100% - 44px), 980px);
  margin: 28px auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.review-visual__image { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.review-visual__brand {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 18px;
  background: rgba(255, 248, 243, .92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
}
.review-visual__brand--dark { background: rgba(0, 0, 0, .9); }
.review-visual__brand img { width: 100%; height: 100%; object-fit: contain; }

.faq { margin-top: 104px; }
.faq > h2 { width: 100%; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-family: inherit; letter-spacing: 0; }
.faq-item button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 26px 0;
  color: var(--ivory);
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 19px;
  font-weight: 760;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.faq-item button::after {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(var(--coral), var(--coral)) center / 18px 2px no-repeat,
    linear-gradient(var(--coral), var(--coral)) center / 2px 18px no-repeat;
  content: "";
  transition: transform .2s ease;
}
.faq-item button[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-panel { padding: 0 42px 24px 0; color: #dfd4dd; }
.faq-panel p { margin-top: 0; }

.page-secondary .site-header { grid-template-columns: auto auto minmax(0, 1fr) auto auto; }
.page-secondary .editorial { padding-bottom: 30px; }
.page-secondary .hero {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
  min-height: auto;
  padding: 72px 0 54px;
}
.page-secondary .hero::before { top: -10%; height: 90%; }
.page-secondary .hero__heading { grid-column: 1; grid-row: 1; position: sticky; top: 120px; }
.page-secondary .hero h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
.page-secondary .hero__intro { grid-column: 2; grid-row: 1; padding-top: 40px; }
.page-secondary .hero__intro p { margin: 0 0 1.25em; color: #e6dce4; }
.page-secondary .hero__role { color: var(--muted); font-size: 15px; line-height: 1.5; }
.page-toc {
  width: min(calc(100% - 44px), var(--wide));
  margin: 18px auto 18px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(42, 29, 49, .62);
}
.page-toc__title {
  margin: 0 0 18px;
  color: var(--coral-bright);
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.page-toc__list { columns: 2; column-gap: 48px; margin: 0; padding-left: 1.3em; }
.page-toc__list li { break-inside: avoid; margin: .55em 0; }
.page-toc a { color: var(--ivory); font-size: 14px; text-decoration: none; }
.page-toc a:hover { color: var(--coral-bright); }
.content-section {
  width: min(calc(100% - 44px), var(--content));
  margin: 0 auto;
  padding-top: 76px;
  scroll-margin-top: 96px;
}
.content-section h2 {
  margin: 0 0 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(2rem, 4vw, 3.3rem);
}
.content-section h3 { margin: 42px 0 16px; font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
.content-section p, .content-section ul, .content-section ol { color: #e6dce4; }
.content-section ul, .content-section ol { padding-left: 1.35em; }
.content-section li { margin: .55em 0; }
.content-section code { color: #ffd7e0; font-size: .9em; }
.legal-meta {
  padding: 16px 18px;
  border-left: 3px solid var(--coral);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 120, 152, .08);
}
.legal-table { width: 100%; margin: 28px 0; }
.contextual-link {
  width: min(calc(100% - 44px), var(--content));
  margin: 70px auto 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(42, 29, 49, .58);
}
.contextual-link a { font-weight: 800; }

.site-footer { margin-top: 110px; border-top: 1px solid var(--line); background: #0b0910; }
.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(calc(100% - 44px), var(--wide));
  min-height: 160px;
  margin: 0 auto;
}
.site-footer p { margin: 0; color: var(--muted); font-size: 14px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto auto minmax(0, 1fr) auto auto; }
  .site-header--reference { grid-template-columns: auto minmax(0, 1fr) auto auto auto; }
  .page-secondary .site-header { grid-template-columns: auto auto minmax(0, 1fr) auto auto; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .hero { grid-template-columns: 1fr; gap: 34px; min-height: auto; padding-top: 56px; }
  .hero__heading, .hero__intro, .hero__media { grid-column: 1; }
  .hero__heading { grid-row: 1; }
  .hero__media { grid-row: 2; width: min(100%, 620px); height: auto; min-height: 0; justify-self: center; }
  .hero__intro { grid-row: 3; max-width: 760px; }
  .hero__carousel, .hero__track, .hero__slide, .hero__media-link, .hero__video { height: auto; aspect-ratio: 3 / 4; }
  h1 { font-size: clamp(3.4rem, 8vw, 5.6rem); }
  .brand-carousel { grid-auto-columns: minmax(290px, 48%); }
  .site-footer__inner { grid-template-columns: 1fr auto; }
  .site-footer__inner > p { grid-column: 1 / -1; grid-row: 2; padding-bottom: 24px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .site-header { min-height: 68px; padding: 8px 10px; gap: 6px; }
  .site-brand img { width: 124px; }
  .age-chip { width: 32px; height: 25px; font-size: 10px; }
  .header-actions { gap: 4px; }
  .header-login { min-height: 36px; padding: 0 6px; border: 0; background: transparent; font-size: 11px; }
  .header-register { min-width: 86px; min-height: 44px; padding: 5px 7px; border-radius: 12px; }
  .header-register__label { font-size: 11px; }
  .header-register__deal { gap: 3px; margin-top: 4px; font-size: 8px; }
  .header-register__deal strong { padding: 2px 4px; }
  .site-header--reference .header-login { display: none; }
  .site-header--reference .header-register { min-height: 34px; gap: 5px; padding: 3px 8px 3px 4px; font-size: 10px; }
  .site-header--reference .header-register__badge { min-width: 33px; min-height: 24px; padding-inline: 4px; font-size: 8px; }
  .site-header--reference .header-timer { font-size: 8px; }
  .menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-toggle { width: 40px; height: 40px; justify-content: center; padding: 0; border-radius: 50%; }
  .hero { width: min(calc(100% - 28px), var(--wide)); gap: 30px; padding: 42px 0 34px; }
  .hero h1 { font-size: clamp(3.25rem, 15.2vw, 5rem); }
  .hero__lead { font-size: 1rem; }
  .hero__media {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 3 / 4;
    margin-inline: 0;
    padding: 7px;
    overflow: hidden;
    border: 1px solid rgba(181, 140, 255, .35);
    border-radius: 22px;
  }
  .hero__carousel { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 15px; }
  .hero__track, .hero__slide, .hero__media-link, .hero__video { height: 100%; aspect-ratio: auto; border-radius: 15px; }
  .hero__video { object-fit: cover; object-position: center; }
  .hero__carousel-arrow { top: 42%; width: 36px; height: 36px; font-size: 16px; }
  .hero__carousel-arrow--prev { left: 10px; }
  .hero__carousel-arrow--next { right: 10px; }
  .hero__carousel-dots { top: 12px; bottom: auto; gap: 6px; padding: 6px 8px; border: 0; }
  .hero__carousel-dot { width: 8px; height: 8px; }
  .hero__carousel-dot::before { top: 0; left: 0; width: 8px; height: 8px; transform: none; }
  .hero__carousel-dot[aria-current="true"] { width: 24px; }
  .hero__carousel-dot[aria-current="true"]::before { width: 24px; }
  .hero__offer { position: absolute; right: 14px; bottom: 14px; left: 14px; margin: 0; padding: 12px; border-radius: 18px; }
  .hero__offer-title { font-size: clamp(1.12rem, 5.8vw, 1.4rem); }
  .hero__offer-copy { margin: 6px 0 10px; font-size: .7rem; }
  .hero__offer-actions { flex-wrap: nowrap; gap: 10px; }
  .cta-button.hero__referral-button { min-width: 0; flex: 1 1 auto; min-height: 48px; padding-right: 12px; }
  .hero__offer-timer { gap: 5px; font-size: .78rem; }
  .hero__timer-icon { font-size: 1.12rem; }
  .page-secondary .hero { display: grid; grid-template-columns: 1fr; padding: 46px 0 36px; }
  .page-secondary .hero__heading { grid-column: 1; grid-row: 1; position: static; }
  .page-secondary .hero h1 { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .page-secondary .hero__intro { grid-column: 1; grid-row: 2; padding-top: 0; }
  .page-toc { width: calc(100% - 24px); margin: 10px auto 26px; padding: 22px 20px; }
  .page-toc__list { columns: 1; }
  .content-section { width: calc(100% - 36px); padding-top: 58px; }
  .content-section h2 { font-size: 2.15rem; }
  .contextual-link { width: calc(100% - 36px); margin-top: 52px; }
  .brand-showcase { width: calc(100% - 24px); margin-top: 0; padding: 24px 16px; border-radius: 24px; }
  .section-kicker { align-items: center; }
  .section-kicker .generated-heading { font-size: 2.3rem; }
  .carousel-controls { display: none; }
  .brand-carousel { grid-auto-columns: 88%; gap: 12px; padding-left: 2px; }
  .brand-card { min-height: 490px; }
  .editorial > p, .editorial > h2, .editorial > h3, .editorial > ul, .editorial > ol, .editorial > .faq { width: calc(100% - 36px); }
  .editorial > h2, .faq > h2 { margin-top: 76px; font-size: 2.45rem; }
  .editorial > h3 { margin-top: 48px; font-size: 1.75rem; }
  .table-scroll { width: calc(100% - 24px); border-radius: 18px; }
  th, td { padding: 14px 16px; }
  .editorial-visual, .editorial-visual--wide { width: calc(100% - 24px); margin: 46px auto 58px; border-radius: 20px; transform: none; }
  .review-visual { width: calc(100% - 24px); margin: 24px auto 30px; border-radius: 20px; }
  .review-visual__brand { top: 12px; right: 12px; width: 54px; height: 54px; padding: 8px; border-radius: 14px; }
  .faq-item button { padding: 22px 0; font-size: 17px; }
  .faq-panel { padding-right: 0; }
  .site-footer__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 34px 0; }
  .site-footer__inner > p { padding-bottom: 0; }
}

@supports (content-visibility: auto) {
  .brand-showcase,
  .table-scroll,
  .editorial-visual,
  .review-visual,
  .faq {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

@media (max-width: 380px) {
  .site-header { padding-right: 6px; padding-left: 6px; gap: 4px; }
  .site-brand img { width: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
