:root {
  color-scheme: dark;
  --bg: #080b14;
  --bg-deep: #070a13;
  --surface: #0e1426;
  --surface-alt: #131d38;
  --glass: rgba(16, 22, 41, .62);
  --text: #f2f4f8;
  --muted: #98a2b5;
  --soft: #c2cce0;
  --gold: #e8b84b;
  --gold-light: #f5d17a;
  --gold-soft: rgba(232, 184, 75, .12);
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --line: rgba(255, 255, 255, .12);
  --max: 1200px;
  --header: 82px;
  --radius: 20px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(900px 480px at 18% -8%, rgba(124, 58, 237, .14), transparent 62%),
    linear-gradient(160deg, #070a13 0%, #0a1020 52%, #080b14 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--text);
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h2 { font-size: clamp(2rem, 4.5vw, 4.15rem); }
h3 { font-size: 1.18rem; letter-spacing: -.02em; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection { background: var(--gold); color: #15120a; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--gold);
  color: #15120a;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-shell {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section { padding: clamp(88px, 11vw, 160px) 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-heading { max-width: 760px; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading > p:last-child { max-width: 54ch; color: var(--muted); }
.section-heading--wide { max-width: 920px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center > p:last-child { margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}
.site-header.is-scrolled {
  border-color: rgba(255,255,255,.08);
  background: rgba(7, 10, 19, .82);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(100% - 40px, var(--max));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 176px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a:not(.button) {
  color: #c8d0df;
  font-size: .91rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}
.site-nav > a:not(.button):hover { color: var(--gold-light); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 22px rgba(232, 184, 75, .2);
  color: #15120a;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, filter 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(232, 184, 75, .27);
  filter: brightness(1.04);
}
.button:active { transform: scale(.98); }
.button.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .48;
  box-shadow: none;
  filter: saturate(.55);
}
.button--small { min-height: 44px; padding: 10px 18px; border-radius: 12px; }
.button--ghost {
  border-color: rgba(245, 209, 122, .46);
  background: rgba(8, 11, 20, .35);
  box-shadow: none;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}
.button--ghost:hover { border-color: var(--gold-light); box-shadow: none; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #070a13;
}
.hero-media,
.hero-media picture,
.hero-media img,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; transform: scale(calc(1.03 + var(--hero-depth, 0))); }
.hero-media img { object-fit: cover; object-position: 55% center; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 10, 19, .96) 0%, rgba(7, 10, 19, .88) 27%, rgba(7, 10, 19, .22) 66%, rgba(7,10,19,.2) 100%),
    linear-gradient(0deg, #080b14 0%, transparent 22%, rgba(7,10,19,.16) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--bg), transparent);
}
.hero-inner {
  width: min(100% - 40px, var(--max));
  margin: calc(var(--header) + 24px) auto 0;
}
.hero-inner > * { max-width: 650px; }
.hero-kicker {
  opacity: 0;
  animation: hero-in .7s .15s var(--ease) forwards;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.6vw, 6.7rem);
  letter-spacing: -.065em;
  opacity: 0;
  animation: hero-in .85s .25s var(--ease) forwards;
}
.hero-copy {
  max-width: 52ch;
  margin-bottom: 30px;
  color: #d7deeb;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.55;
  opacity: 0;
  animation: hero-in .8s .4s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: hero-in .8s .52s var(--ease) forwards;
}
.hero-note {
  margin: 20px 0 0;
  color: #929cad;
  font-size: .83rem;
  opacity: 0;
  animation: hero-in .8s .62s var(--ease) forwards;
}
.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 34px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
}
.scroll-cue span {
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  transform: rotate(45deg) translate(-2px, -2px);
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.intro { position: relative; }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}
.intro-copy { padding-top: 36px; }
.intro-copy .lead { color: var(--text); font-size: 1.23rem; font-weight: 600; }
.intro-copy > p:not(.lead) { color: var(--muted); }
.inline-proof {
  padding: 24px 0 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: .88rem;
  font-weight: 700;
  list-style: none;
}
.inline-proof li::before { content: "✦"; margin-right: 8px; color: var(--gold); }
.editorial-note {
  max-width: 62ch;
  margin: 18px 0 0;
  color: #737f92;
  font-size: .76rem;
  line-height: 1.5;
}

.familiar {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 85% 18%, rgba(124,58,237,.12), transparent 68%),
    rgba(6,9,18,.34);
}
.familiar-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}
.familiar-heading h2 { margin-bottom: 0; }
.familiar-intro {
  max-width: 58ch;
  padding-bottom: 8px;
  color: var(--muted);
}
.familiar-intro p:last-child { margin-bottom: 0; color: var(--soft); }
.comparison-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14,20,38,.5);
  box-shadow: 0 22px 65px rgba(2,6,23,.38);
}
.comparison-column {
  min-width: 0;
  padding: clamp(30px, 4.5vw, 58px);
}
.comparison-column + .comparison-column { border-left: 1px solid var(--line); }
.comparison-column--brand {
  background:
    radial-gradient(420px 260px at 80% 0%, rgba(232,184,75,.1), transparent 68%),
    linear-gradient(145deg, rgba(19,29,56,.7), rgba(14,20,38,.78));
}
.comparison-label {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.comparison-column--brand .comparison-label { color: var(--gold-light); }
.comparison-column h3 {
  max-width: 19ch;
  margin-bottom: 30px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}
.comparison-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.comparison-column li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .92rem;
}
.comparison-column li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #687386;
}
.comparison-column--brand li { color: var(--soft); }
.comparison-column--brand li::before {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(232,184,75,.4);
}
.brand-disclaimer {
  max-width: 78ch;
  margin: 24px auto 0;
  color: #727d90;
  font-size: .72rem;
  text-align: center;
}

.benefits { background: rgba(6, 9, 18, .32); }
.benefit-list { margin-top: 76px; border-top: 1px solid var(--line); }
.benefit {
  min-height: 150px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 5vw, 72px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms var(--ease), border-color 220ms ease;
}
.benefit:hover { padding-inline: 14px; border-color: rgba(232,184,75,.36); }
.benefit-number { color: var(--gold); font-family: "Poppins", sans-serif; font-size: .76rem; font-weight: 700; }
.benefit > div {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(24px, 8vw, 120px);
}
.benefit h3 { margin: 0; font-size: clamp(1.3rem, 2.5vw, 2rem); }
.benefit p { max-width: 50ch; margin: 0; color: var(--muted); }

.workflow { overflow: hidden; }
.steps {
  padding: 0;
  margin: 76px 0 0;
  display: grid;
  gap: clamp(58px, 8vw, 104px);
  list-style: none;
}
.step {
  display: grid;
  grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.step-copy { align-self: center; }
.step-index {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(232,184,75,.42);
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-light);
  font-size: .69rem;
  font-weight: 800;
}
.step-media {
  margin: 0;
  padding: clamp(5px, .65vw, 9px);
  overflow: hidden;
  border: 1px solid rgba(232,184,75,.2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(19,29,56,.72), rgba(14,20,38,.42));
  box-shadow: 0 28px 64px rgba(2,6,23,.36);
}
.step-media img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.step h3 { margin-bottom: 12px; font-size: clamp(1.28rem, 2.4vw, 1.85rem); }
.step p { max-width: 32ch; margin: 0; color: var(--muted); font-size: .95rem; }

.exercise-types {
  background:
    radial-gradient(700px 400px at 18% 45%, rgba(124,58,237,.13), transparent 65%),
    rgba(6,9,18,.34);
}
.exercise-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(440px, 1fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: center;
}
.exercise-list { border-top: 1px solid var(--line); }
.exercise {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.exercise > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-light);
  font: 700 .76rem "Poppins", sans-serif;
}
.exercise h3 { margin-bottom: 8px; }
.exercise p { margin: 0; color: var(--muted); }

.preview-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .6fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.preview-heading h2 { margin-bottom: 0; }
.preview-heading > p { margin-bottom: 8px; color: var(--muted); }
.product-capture {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(232,184,75,.22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19,29,56,.72), rgba(14,20,38,.68));
  box-shadow: 0 30px 80px rgba(2,6,23,.5);
}
.capture-topline {
  min-height: 54px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: .82rem;
  font-weight: 700;
}
.capture-status {
  padding: 3px 9px;
  border: 1px solid rgba(232,184,75,.32);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.capture-stage {
  min-height: clamp(330px, 49vw, 610px);
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}
.capture-stage--image {
  min-height: 0;
  padding: clamp(14px, 3.2vw, 38px);
}
.capture-stage--image img {
  width: min(100%, 918px);
  height: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(2,6,23,.46);
}

.plans { background: rgba(6,9,18,.34); }
.pricing-controls {
  width: max-content;
  margin: 42px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.billing-toggle {
  width: max-content;
  margin: 0;
  padding: 4px;
  display: flex;
  border: 1px solid rgba(232,184,75,.24);
  border-radius: 14px;
  background: rgba(14,20,38,.72);
}
.billing-toggle label { position: relative; cursor: pointer; }
.billing-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.billing-toggle span {
  min-width: 104px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  border-radius: 10px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.billing-toggle input:checked + span {
  background: var(--gold);
  box-shadow: 0 7px 18px rgba(232,184,75,.18);
  color: #15120a;
}
.billing-toggle input:focus-visible + span {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.plans-common {
  max-width: 980px;
  margin: 36px auto 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plans-common p {
  margin: 0;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.plans-common ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--soft);
  font-size: .82rem;
  font-weight: 700;
  list-style: none;
}
.plans-common li::before { content: "✓"; margin-right: 7px; color: var(--gold); }
.plan-list {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}
.plan {
  position: relative;
  min-width: 0;
  padding: 38px 28px 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14,20,38,.48);
}
.plan--featured {
  border: 1px solid rgba(232,184,75,.38);
  background:
    radial-gradient(400px 260px at 50% 0%, rgba(232,184,75,.1), transparent 70%),
    linear-gradient(145deg, #131d38, #0e1426);
  box-shadow: 0 24px 70px rgba(3,6,14,.44);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 13px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(232,184,75,.22);
  color: #15120a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-header { min-height: 236px; }
.plan-label { color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.plan h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.3vw, 2rem); }
.plan-description { min-height: 78px; margin-bottom: 24px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.plan-price {
  min-height: 64px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  color: var(--text);
  line-height: 1.1;
}
.plan-price__prefix {
  flex-basis: 100%;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.plan-price__amount {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.48rem, 2.15vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.04em;
}
.plan-price--custom {
  align-items: center;
  color: var(--gold-light);
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.plan-price__period { color: var(--muted); font-size: .82rem; font-weight: 700; }
.annual-saving { margin: 8px 0 0; color: var(--gold-light); font-size: .78rem; font-weight: 800; }
.plan-benefits {
  padding: 22px 0 24px;
  margin: 8px 0 24px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.plan-benefits li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--soft);
  font-size: .84rem;
  line-height: 1.48;
}
.plan-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}
.plan-benefits .plan-highlight {
  padding: 13px 12px 13px 36px;
  margin: 10px 0;
  border: 1px solid rgba(232,184,75,.24);
  border-radius: 12px;
  background: var(--gold-soft);
  color: #ebd79f;
}
.plan-benefits .plan-highlight::before { content: none; }
.plan-highlight > span { position: absolute; left: 13px; color: var(--gold-light); }
.plan-note {
  padding: 12px 14px;
  margin: auto 0 20px;
  border-left: 2px solid var(--violet-light);
  background: rgba(124,58,237,.1);
  color: var(--soft);
  font-size: .8rem;
  line-height: 1.5;
}
.button--plan {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding-inline: 16px;
  text-align: center;
}
.plans-contact-note {
  max-width: 70ch;
  margin: 32px auto 0;
  color: #737f92;
  font-size: .76rem;
  text-align: center;
}
.text-link {
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}
.text-link span { display: inline-block; margin-left: 5px; transition: transform 180ms var(--ease); }
.text-link:hover span { transform: translateX(5px); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(500px, 1fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}
.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  transition: transform 180ms ease;
}
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 62ch; padding: 0 40px 26px 0; margin: 0; color: var(--muted); }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 15vw, 220px) 0;
  text-align: center;
}
.final-glow {
  position: absolute;
  inset: 12% 15%;
  background:
    radial-gradient(circle at 45% 45%, rgba(232,184,75,.18), transparent 36%),
    radial-gradient(circle at 58% 55%, rgba(124,58,237,.2), transparent 42%);
  filter: blur(30px);
}
.final-inner { position: relative; }
.final-inner h2 { margin-bottom: 24px; font-size: clamp(2.8rem, 7vw, 6.5rem); }
.final-inner > p:not(.eyebrow) { max-width: 55ch; margin: 0 auto 32px; color: var(--soft); font-size: 1.05rem; }
.final-inner .hero-actions { justify-content: center; opacity: 1; animation: none; }

.site-footer { border-top: 1px solid var(--line); background: #070a13; }
.footer-grid {
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: 1.5fr .65fr .85fr;
  gap: 60px;
}
.footer-brand img { width: 184px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 38ch; color: var(--muted); }
.footer-grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid nav > p { margin-bottom: 8px; color: var(--text); font-weight: 800; }
.footer-grid nav a,
.footer-grid nav span { color: var(--muted); font-size: .9rem; text-decoration: none; }
.footer-grid nav a:hover { color: var(--gold-light); }
.footer-grid small { margin-left: 5px; color: #657084; font-size: .62rem; text-transform: uppercase; }
.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #727d90;
  font-size: .78rem;
}
.footer-bottom p { margin: 0; }

/* Privacy policy */
.legal-page { background: var(--bg); }
.legal-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header) + 80px) 0 92px;
  background: #070a13;
}
.legal-hero__media,
.legal-hero__media img,
.legal-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.legal-hero__media { z-index: -3; }
.legal-hero__media img { object-fit: cover; object-position: center; transform: scale(1.035); }
.legal-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,10,19,.98) 0%, rgba(7,10,19,.93) 38%, rgba(7,10,19,.4) 72%, rgba(7,10,19,.22) 100%),
    linear-gradient(0deg, #080b14 0%, rgba(8,11,20,.35) 38%, rgba(7,10,19,.1) 100%);
}
.legal-hero__content > * { max-width: 760px; }
.legal-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.4vw, 7.5rem);
  letter-spacing: -.065em;
  opacity: 0;
  animation: hero-in .85s .2s var(--ease) forwards;
}
.legal-hero__content > p:not(.eyebrow, .legal-hero__date) {
  max-width: 61ch;
  margin-bottom: 20px;
  color: #d8deea;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.legal-hero .back-link,
.legal-hero .eyebrow,
.legal-hero__content > p { opacity: 0; animation: hero-in .7s .34s var(--ease) forwards; }
.legal-hero .back-link { animation-delay: .08s; }
.legal-hero .eyebrow { animation-delay: .14s; }
.legal-hero__date { color: #9ca6b8; font-size: .82rem; font-weight: 700; }
.privacy-principles { border-bottom: 1px solid var(--line); }
.privacy-principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.privacy-principles__grid > div { min-height: 180px; padding: 42px 36px 38px 0; }
.privacy-principles__grid > div + div { padding-left: 36px; border-left: 1px solid var(--line); }
.privacy-principles strong { display: block; margin-bottom: 10px; color: var(--gold-light); font-family: "Poppins", sans-serif; font-size: 1.02rem; }
.privacy-principles span { display: block; max-width: 34ch; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.legal-section { padding: clamp(88px, 10vw, 150px) 0; }
.legal-layout { display: grid; grid-template-columns: minmax(210px, .32fr) minmax(0, .9fr); gap: clamp(58px, 10vw, 150px); align-items: start; }
.legal-index { position: sticky; top: calc(var(--header) + 36px); }
.legal-index nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.legal-index nav a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.07); color: var(--muted); font-size: .78rem; font-weight: 600; line-height: 1.4; text-decoration: none; transition: color 150ms ease, padding-left 180ms var(--ease); }
.legal-index nav a:hover { padding-left: 5px; color: var(--gold-light); }
.legal-copy { max-width: 780px; }
.legal-copy > section { scroll-margin-top: calc(var(--header) + 24px); }
.legal-copy > section + section { padding-top: 76px; margin-top: 76px; border-top: 1px solid var(--line); }
.legal-section__number { margin-bottom: 16px; color: var(--gold); font: 800 .7rem "Inter", sans-serif; letter-spacing: .18em; }
.legal-copy h2 { max-width: 13ch; margin-bottom: 30px; font-size: clamp(2.15rem, 4.4vw, 4rem); }
.legal-copy h3 { margin-bottom: 8px; color: var(--soft); }
.legal-copy p,
.legal-copy li { color: var(--muted); }
.legal-copy p { max-width: 72ch; }
.legal-copy p + p { margin-top: 20px; }
.legal-copy a { color: var(--gold-light); font-weight: 650; text-underline-offset: 3px; }
.legal-copy ul { padding-left: 21px; margin: 28px 0; }
.legal-copy li { padding-left: 7px; margin-bottom: 12px; }
.legal-copy li::marker { color: var(--gold); }
.privacy-data-list { margin-top: 38px; border-top: 1px solid var(--line); }
.privacy-data-list > div { padding: 25px 0; display: grid; grid-template-columns: minmax(170px, .42fr) 1fr; gap: 34px; border-bottom: 1px solid var(--line); }
.privacy-data-list p { margin: 0; font-size: .91rem; }
.legal-highlight { padding: 28px 30px; margin: 32px 0; border-left: 3px solid var(--gold); background: linear-gradient(90deg, rgba(232,184,75,.1), rgba(124,58,237,.05)); }
.legal-highlight p { margin: 0; color: #e5e8ef; font-size: 1.03rem; }
.legal-note { padding: 18px 20px; margin-top: 30px !important; border: 1px solid var(--line); border-radius: 12px; background: rgba(19,29,56,.25); font-size: .8rem; }
.terms-identity {
  padding: 28px 30px;
  margin: 32px 0;
  border-top: 1px solid rgba(232,184,75,.42);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(232,184,75,.08), transparent);
}
.terms-identity p { margin: 0; color: var(--soft); line-height: 1.75; }

/* Individual plan pages */
.plan-page { background: var(--bg); }
.plan-hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header) + 72px) 0 96px;
  background:
    radial-gradient(720px 480px at 82% 25%, rgba(124,58,237,.2), transparent 68%),
    radial-gradient(620px 420px at 72% 68%, rgba(232,184,75,.12), transparent 65%),
    linear-gradient(155deg, #070a13, #0a1020 55%, #080b14);
}
.plan-hero--compact { min-height: 760px; padding: calc(var(--header) + 44px) 0 64px; }
.plan-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: auto 0 0;
  height: 25%;
  background: linear-gradient(0deg, var(--bg), transparent);
}
.plan-hero__art {
  position: absolute;
  z-index: -1;
  top: 16%;
  right: max(-90px, calc((100vw - var(--max)) / 2 - 80px));
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(167,139,250,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(124,58,237,.13), 0 0 120px rgba(124,58,237,.1);
}
.plan-hero__art::before,
.plan-hero__art::after { content: ""; position: absolute; border-radius: inherit; }
.plan-hero__art::before {
  inset: 12%;
  border: 1px solid rgba(232,184,75,.22);
  box-shadow: inset 0 0 75px rgba(232,184,75,.08);
}
.plan-hero__art::after {
  inset: 31%;
  background: radial-gradient(circle, rgba(245,209,122,.52), rgba(124,58,237,.26) 32%, transparent 68%);
  filter: blur(3px);
}
.plan-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, .58fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}
.back-link:hover { color: var(--gold-light); }
.plan-hero h1 {
  max-width: 9ch;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: -.065em;
}
.plan-hero__copy {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
}
.plan-summary {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(232,184,75,.26);
  border-radius: 24px;
  background: rgba(14,20,38,.7);
  box-shadow: 0 28px 80px rgba(2,6,23,.52);
  backdrop-filter: blur(14px);
}
.payment-selectors {
  margin: 18px 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10px;
}
.payment-toggle {
  min-width: 0;
  padding: 0;
  display: flex;
  border: 0;
}
.payment-toggle legend {
  width: 100%;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.payment-toggle label { position: relative; flex: 1; cursor: pointer; }
.payment-toggle input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.payment-toggle span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}
.payment-toggle label:first-of-type span { border-radius: 10px 0 0 10px; }
.payment-toggle label:last-of-type span { margin-left: -1px; border-radius: 0 10px 10px 0; }
.payment-toggle input:checked + span {
  position: relative;
  border-color: rgba(232,184,75,.55);
  background: var(--gold-soft);
  color: var(--gold-light);
}
.payment-toggle input:focus-visible + span { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.plan-summary__label {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan-summary__price {
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.05;
}
.plan-summary__price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font: 700 .8rem "Inter", sans-serif;
  letter-spacing: 0;
}
.plan-summary__price.is-pending-price { font-size: clamp(1.45rem, 3vw, 2.2rem); letter-spacing: -.035em; }
.plan-summary__annual { margin-bottom: 24px; color: var(--gold-light); font-size: .82rem; font-weight: 700; }
.plan-summary__facts {
  padding: 20px 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
[data-payment-plan] .plan-summary__facts { margin: 18px 0 0; }
.plan-summary__facts div { padding-right: 12px; }
.plan-summary__facts div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.plan-summary__facts dt { color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.plan-summary__facts dd { margin: 4px 0 0; color: var(--text); font-size: .96rem; font-weight: 800; }
.plan-summary .button { width: 100%; }
.plan-summary__notice { margin: 16px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.plan-summary__notice a { color: var(--gold-light); font-weight: 700; text-underline-offset: 3px; }
.plan-summary__seller {
  padding-top: 16px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}
.plan-summary__seller strong { color: var(--soft); }
.plan-summary__seller a { color: var(--gold-light); font-weight: 700; text-underline-offset: 3px; }
.terms-consent {
  position: relative;
  margin: 22px 0 14px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.45;
  cursor: pointer;
}
.terms-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--gold); }
.terms-consent a { color: var(--gold-light); font-weight: 700; text-underline-offset: 3px; }
.pending-integration {
  display: inline-flex;
  margin-top: 13px;
  padding: 5px 9px;
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 999px;
  color: var(--violet-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plan-section { padding: clamp(88px, 10vw, 145px) 0; }
.plan-hero--compact + .plan-section { padding-top: clamp(76px, 8vw, 112px); }
.plan-section--surface { background: rgba(6,9,18,.34); }
.plan-section__heading { max-width: 790px; margin-bottom: 60px; }
.plan-section__heading h2 { margin-bottom: 20px; }
.plan-section__heading > p:last-child { max-width: 58ch; color: var(--muted); }
.audience-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}
.audience-statement { position: sticky; top: calc(var(--header) + 40px); }
.audience-statement h2 { margin-bottom: 24px; }
.audience-statement p { color: var(--muted); }
.feature-list--large { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.feature-list--large li {
  position: relative;
  padding: 20px 8px 20px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}
.feature-list--large li::before { content: "✓"; position: absolute; left: 6px; color: var(--gold); font-weight: 800; }
.feature-list--large .feature-spotlight {
  margin: 12px 0;
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(232,184,75,.25);
  border-radius: 14px;
  background: var(--gold-soft);
  color: #eedaa3;
}
.feature-list--large .feature-spotlight::before { left: 18px; content: "★"; }
.product-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: product-flow;
}
.product-flow article {
  min-height: 210px;
  padding: 26px 22px;
  border-top: 1px solid rgba(232,184,75,.36);
  background: rgba(19,29,56,.26);
  counter-increment: product-flow;
}
.product-flow article::before {
  content: "0" counter(product-flow);
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
}
.product-flow h3 { margin-bottom: 10px; font-size: 1.05rem; }
.product-flow p { margin: 0; color: var(--muted); font-size: .84rem; }
.retention-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(220px, .55fr) 1fr;
  gap: clamp(40px, 8vw, 110px);
  border: 1px solid rgba(167,139,250,.24);
  border-radius: 24px;
  background:
    radial-gradient(480px 280px at 0% 0%, rgba(124,58,237,.17), transparent 70%),
    linear-gradient(145deg, rgba(19,29,56,.62), rgba(14,20,38,.7));
}
.retention-time {
  color: var(--gold-light);
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .9;
}
.retention-time span { display: block; margin-top: 10px; font: 800 .72rem "Inter", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.retention-copy h2 { margin-bottom: 24px; }
.retention-copy p { color: var(--soft); }
.retention-copy .retention-note {
  padding-top: 18px;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
  font-size: .88rem;
  font-weight: 700;
}
.contract-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(440px, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}
.contract-copy h2 { margin-bottom: 22px; }
.contract-copy > p { color: var(--muted); }
.contract-copy .button { margin-top: 14px; }
.operational-note {
  margin-top: 30px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(232,184,75,.07);
  color: var(--soft);
  font-size: .84rem;
  line-height: 1.55;
}
.contract-steps a { color: var(--gold-light); font-weight: 800; }
.contract-steps { padding: 0; margin: 0; list-style: none; counter-reset: contract; }
.contract-steps li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  counter-increment: contract;
}
.contract-steps li::before {
  content: counter(contract);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,184,75,.36);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
}
.activation-panel {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(232,184,75,.25);
  border-radius: 24px;
  background:
    radial-gradient(520px 280px at 100% 0%, rgba(232,184,75,.1), transparent 70%),
    rgba(14,20,38,.62);
}
.activation-panel h2 { margin-bottom: 24px; }
.activation-panel p { max-width: 72ch; color: var(--soft); }
.activation-panel a:not(.button) { color: var(--gold-light); font-weight: 800; }
.activation-callout {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(232,184,75,.08);
  color: var(--text);
  font-weight: 700;
}
.plan-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(500px, 1fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}
.proposal-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proposal-field {
  min-height: 76px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(19,29,56,.34);
}
.proposal-field--wide { grid-column: 1 / -1; min-height: 116px; }
.proposal-field span { display: block; color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.proposal-field strong { display: block; margin-top: 7px; color: #697487; font-size: .82rem; font-weight: 600; }
.proposal-actions { margin-top: 28px; }
.proposal-actions .button { margin-right: 10px; }
.proposal-caption { margin-top: 16px; color: var(--muted); font-size: .76rem; }
.plan-final {
  padding: clamp(96px, 11vw, 150px) 0;
  text-align: center;
  background:
    radial-gradient(560px 330px at 50% 50%, rgba(124,58,237,.16), transparent 70%),
    var(--bg);
}
.plan-final h2 { margin-bottom: 24px; }
.plan-final > .section-shell > p { max-width: 56ch; margin: 0 auto 30px; color: var(--muted); }
.plan-final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* Payment result */
.payment-result-page { background: var(--bg-deep); }
.payment-result {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header) + clamp(64px, 9vw, 112px)) 0 clamp(80px, 10vw, 132px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #070a13;
}
.payment-result__media,
.payment-result__shade {
  position: absolute;
  z-index: -3;
  inset: 0;
}
.payment-result__media {
  background: url("../images/quizmusik-hero.webp") 63% center / cover no-repeat;
  opacity: .42;
  transform: scale(1.04);
  animation: payment-media-in 1.2s var(--ease) both;
}
.payment-result__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,10,19,.98) 0%, rgba(7,10,19,.94) 48%, rgba(7,10,19,.64) 100%),
    linear-gradient(0deg, #080b14 0%, transparent 30%);
}
.payment-result__layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 720px);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
}
.payment-result__mark {
  position: relative;
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,209,122,.34);
  border-radius: 50%;
  background: rgba(8,11,20,.48);
  box-shadow: 0 24px 70px rgba(2,6,23,.36), inset 0 0 38px rgba(232,184,75,.06);
  opacity: 0;
  animation: payment-mark-in .8s .12s var(--ease) forwards;
  backdrop-filter: blur(10px);
}
.payment-result__mark svg {
  width: 54px;
  fill: var(--gold-light);
  filter: drop-shadow(0 8px 18px rgba(232,184,75,.25));
}
.payment-result__pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(245,209,122,.3);
  border-radius: inherit;
  animation: payment-pulse 2.8s .9s ease-out infinite;
}
.payment-result__content > * {
  opacity: 0;
  animation: hero-in .72s var(--ease) forwards;
}
.payment-result__content > :nth-child(1) { animation-delay: .12s; }
.payment-result__content > :nth-child(2) { animation-delay: .2s; }
.payment-result__content > :nth-child(3) { animation-delay: .3s; }
.payment-result__content > :nth-child(4) { animation-delay: .38s; }
.payment-result__content > :nth-child(5) { animation-delay: .45s; }
.payment-result__content > :nth-child(6) { animation-delay: .52s; }
.payment-result__content > :nth-child(7) { animation-delay: .58s; }
.payment-result__content h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -.06em;
}
.payment-result__lead {
  max-width: 57ch;
  margin-bottom: 34px;
  color: #d6ddeb;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}
.payment-reference {
  margin-bottom: 30px;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}
.payment-reference[hidden] { display: none; }
.payment-reference span { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.payment-reference strong { color: var(--gold-light); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; overflow-wrap: anywhere; }
.payment-next-steps { padding: 0; margin: 0 0 34px; list-style: none; }
.payment-next-steps li {
  min-height: 72px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.payment-next-steps li:first-child { border-top: 1px solid var(--line); }
.payment-next-steps span { padding-top: 3px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.payment-next-steps p { margin: 0; color: var(--muted); }
.payment-next-steps strong { color: var(--text); }
.payment-result__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.payment-result__contact {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .84rem;
}
.payment-result__contact a { color: var(--gold-light); font-weight: 700; }
.payment-result__notice {
  max-width: 72ch;
  margin: 8px 0 0;
  color: #8994a8;
  font-size: .78rem;
}
@keyframes payment-media-in {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: .42; transform: scale(1.04); }
}
@keyframes payment-mark-in {
  from { opacity: 0; transform: scale(.82) rotate(-7deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes payment-pulse {
  0% { opacity: .7; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(1.42); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  :root { --header: 72px; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 10px;
    background: transparent;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 23px;
    height: 2px;
    display: block;
    background: var(--text);
    transition: transform 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    padding: 110px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background:
      radial-gradient(circle at 80% 5%, rgba(124,58,237,.2), transparent 35%),
      #070a13;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }
  body.menu-open .site-header.is-scrolled { backdrop-filter: none; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 16px 0; border-bottom: 1px solid var(--line); font: 700 1.35rem "Poppins", sans-serif; }
  .site-nav .button { margin-top: 28px; }
  .intro-grid, .familiar-heading, .exercise-layout, .faq-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 62px; }
  .legal-index { position: static; }
  .legal-index nav { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
  .intro-copy { max-width: 640px; padding-top: 0; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-column + .comparison-column { border-top: 1px solid var(--line); border-left: 0; }
  .benefit > div { grid-template-columns: 1fr; gap: 10px; }
  .step { grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr); gap: 30px; }
  .exercise-layout { gap: 54px; }
  .preview-heading { grid-template-columns: 1fr; gap: 18px; }
  .plan-list { grid-template-columns: 1fr; gap: 22px; }
  .plan { padding: 38px 30px 30px; }
  .plan-header { min-height: 0; }
  .plan-description { min-height: 0; }
  .plan-hero { min-height: 0; }
  .plan-hero__layout, .audience-grid, .retention-panel, .contract-grid, .plan-faq-layout { grid-template-columns: 1fr; }
  .payment-result__layout { grid-template-columns: 112px minmax(0, 1fr); gap: 34px; }
  .payment-result__mark { width: 104px; height: 104px; }
  .payment-result__mark svg { width: 42px; }
  .plan-hero__layout { gap: 58px; }
  .plan-hero__art { top: 10%; right: -28%; width: 72vw; opacity: .7; }
  .audience-statement { position: static; }
  .product-flow { grid-template-columns: repeat(2, 1fr); }
  .contract-grid { gap: 48px; }
}

@media (max-width: 720px) {
  .section-shell, .nav-shell, .hero-inner { width: min(100% - 32px, var(--max)); }
  .section { padding: 88px 0; }
  .brand img { width: 150px; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { object-position: 68% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, #080b14 0%, rgba(7,10,19,.88) 46%, rgba(7,10,19,.2) 100%),
      linear-gradient(90deg, rgba(7,10,19,.55), transparent 80%);
  }
  .hero-inner { margin-bottom: 74px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.55rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }
  .inline-proof { flex-direction: column; gap: 8px; }
  .comparison-grid { margin-top: 50px; }
  .comparison-column { padding: 30px 22px; }
  .benefit-list { margin-top: 52px; }
  .benefit {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 170px;
  }
  .benefit:hover { padding-inline: 0; }
  .steps { gap: 62px; margin-top: 56px; }
  .step { grid-template-columns: 1fr; gap: 26px; padding-top: 30px; }
  .step-index { margin-bottom: 20px; }
  .step p { max-width: 46ch; }
  .step-media { border-radius: 15px; }
  .step-media img { border-radius: 10px; }
  .exercise-layout { grid-template-columns: 1fr; }
  .pricing-controls { width: 100%; flex-direction: column; gap: 10px; }
  .billing-toggle { width: 100%; }
  .billing-toggle label { flex: 1; }
  .billing-toggle span { min-width: 0; }
  .plans-common {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  .plans-common ul { display: grid; grid-template-columns: 1fr; gap: 7px; }
  .plan-list { grid-template-columns: 1fr; gap: 20px; }
  .plan { padding: 34px 20px 24px; }
  .plan--featured {
    margin: 0;
    padding: 38px 20px 24px;
    border: 1px solid rgba(232,184,75,.38);
    border-radius: var(--radius);
  }
  .plan-price__amount { font-size: clamp(1.4rem, 7vw, 1.78rem); }
  .plan .button { width: 100%; }
  .faq-layout { gap: 44px; }
  .faq-list summary { min-height: 92px; font-size: .94rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; padding: 60px 0 48px; }
  .footer-bottom { padding: 22px 0; flex-direction: column; align-items: flex-start; }
  .legal-hero { min-height: 660px; padding: calc(var(--header) + 72px) 0 76px; }
  .legal-hero__media img { object-position: 66% center; }
  .legal-hero__shade {
    background:
      linear-gradient(0deg, #080b14 0%, rgba(7,10,19,.92) 57%, rgba(7,10,19,.45) 100%),
      linear-gradient(90deg, rgba(7,10,19,.8), transparent);
  }
  .legal-hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .privacy-principles__grid { grid-template-columns: 1fr; padding-block: 18px; }
  .privacy-principles__grid > div { min-height: 0; padding: 25px 0; }
  .privacy-principles__grid > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .legal-index nav { grid-template-columns: 1fr; }
  .legal-copy > section + section { padding-top: 58px; margin-top: 58px; }
  .privacy-data-list > div { grid-template-columns: 1fr; gap: 8px; }
  .legal-highlight { padding: 24px 20px; }
  .plan-hero { padding: calc(var(--header) + 52px) 0 80px; }
  .plan-hero h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .plan-hero__art { top: 8%; right: -45%; width: 100vw; }
  .plan-summary { padding: 26px 20px; }
  .plan-summary__facts { grid-template-columns: 1fr; gap: 14px; }
  .plan-summary__facts div + div { padding: 14px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .product-flow { grid-template-columns: 1fr; }
  .product-flow article { min-height: 170px; }
  .product-flow article::before { margin-bottom: 30px; }
  .retention-panel { padding: 32px 22px; }
  .activation-panel { padding: 32px 22px; }
  .proposal-fields { grid-template-columns: 1fr; }
  .proposal-field--wide { grid-column: auto; }
  .proposal-actions { display: flex; flex-direction: column; gap: 10px; }
  .proposal-actions .button { width: 100%; margin: 0; }
  .plan-final__actions { flex-direction: column; }
  .plan-final__actions .button { width: 100%; }
  .payment-result { min-height: 0; padding-top: calc(var(--header) + 64px); }
  .payment-result__media { background-position: 70% center; opacity: .28; }
  .payment-result__shade {
    background:
      linear-gradient(0deg, #080b14 0%, rgba(7,10,19,.92) 68%, rgba(7,10,19,.72) 100%),
      linear-gradient(90deg, rgba(7,10,19,.8), transparent);
  }
  .payment-result__layout { grid-template-columns: 1fr; gap: 34px; }
  .payment-result__mark { width: 92px; height: 92px; }
  .payment-result__mark svg { width: 36px; }
  .payment-result__content h1 { font-size: clamp(2.85rem, 14vw, 4.35rem); }
  .payment-result__actions { flex-direction: column; }
  .payment-result__actions .button { width: 100%; }
}

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