:root {
  color-scheme: dark;

  /* Pure black */
  --bg: #000000;
  --bg-2: #060807;

  /* White ink */
  --ink: #ffffff;
  --muted: #8a8f8c;
  --soft: rgba(255, 255, 255, 0.72);

  /* Hairlines */
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --panel: rgba(255, 255, 255, 0.035);

  /* Logo green */
  --green: #22fdab;
  --green-deep: #15d98f;
  --green-dim: rgba(34, 253, 171, 0.12);

  /* Legacy accent names remapped to brand green */
  --cyan: var(--green);
  --yellow: var(--green);

  --max: 1120px;
  --r: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  font-family: var(--sans);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(760px 460px at 84% 0%, rgba(34, 253, 171, 0.07), transparent 68%),
    radial-gradient(540px 380px at 6% 14%, rgba(34, 253, 171, 0.04), transparent 72%),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin-top: 0; }
ol, ul { margin: 0; }

::selection { background: rgba(34, 253, 171, 0.3); color: #001a10; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 80ms linear;
}

/* Header */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 60;
  display: grid;
  width: min(calc(100% - 28px), var(--max));
  min-height: 60px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: top 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}

.site-header.is-scrolled {
  top: 10px;
  border-color: var(--line-strong);
  background: rgba(0, 0, 0, 0.92);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #000;
  box-shadow: 0 0 0 1px rgba(34, 253, 171, 0.4), 0 0 18px rgba(34, 253, 171, 0.18);
}

.brand-mark.small { width: 30px; height: 30px; }
.brand-name { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--green);
  color: #00170e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #38ffba;
  box-shadow: 0 10px 30px rgba(34, 253, 171, 0.28);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 240ms var(--ease), opacity 200ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  gap: 8px;
  padding: 92px 16px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(22px);
  transform: translateY(-110%);
  transition: transform 320ms var(--ease);
}

.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu a {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mobile-menu-cta {
  border-color: transparent !important;
  background: var(--green) !important;
  color: #00170e !important;
  font-weight: 800 !important;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 138px max(22px, calc((100vw - var(--max)) / 2)) 64px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  opacity: 0.46;
  filter: contrast(1.04) brightness(0.82);
  transform: scale(1.04);
  animation: heroZoom 22s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.74) 48%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 202px);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.7fr);
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: grid;
  justify-items: start;
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  margin: 0 0 22px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
  background: var(--green-dim);
  border-color: rgba(34, 253, 171, 0.28);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 253, 171, 0.6);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 253, 171, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34, 253, 171, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 253, 171, 0); }
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 18px;
  font-size: 94px;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 11px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.grad-text { color: var(--green); }

.hero-promise {
  max-width: 640px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 32px;
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease), color 220ms var(--ease);
}

.primary-button {
  border: 0;
  padding: 16px 28px;
  background: var(--green);
  color: #00170e;
}

.primary-button:hover {
  transform: translateY(-1px);
  background: #38ffba;
  box-shadow: 0 14px 38px rgba(34, 253, 171, 0.3);
}

.secondary-button {
  padding: 15px 26px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  color: var(--green);
}

.primary-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 220ms var(--ease);
}

.primary-button:hover svg { transform: translateX(3px); }

.hero-fast {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-fast span {
  position: relative;
  padding-left: 16px;
}

.hero-fast span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background:
    linear-gradient(180deg, rgba(34, 253, 171, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(6, 8, 7, 0.8);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(34, 253, 171, 0.4), transparent 40%, rgba(34, 253, 171, 0.12));
  opacity: 0.6;
}

.showcase-topline,
.showcase-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.showcase-topline {
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-topline strong {
  color: var(--green);
  font-weight: 800;
}

.showcase-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r);
  aspect-ratio: 4 / 5;
  background: #050706;
}

.showcase-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 26%;
  opacity: 0.82;
  filter: contrast(1.03) brightness(0.9);
}

.story-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.story-card span,
.showcase-stats span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.showcase-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.showcase-stats div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.025);
}

.showcase-stats strong {
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-head p:not(.eyebrow),
.proof-copy p:not(.eyebrow),
.buy-copy p,
.final-cta-inner p {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.66;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--line);
}

.program-card,
.step-card {
  padding: 32px 28px;
  border: 0;
  border-radius: 0;
  background: #000;
  transition: background 260ms var(--ease);
}

.program-card:hover,
.step-card:hover {
  background: rgba(34, 253, 171, 0.05);
}

.card-index {
  display: inline-grid;
  width: auto;
  height: auto;
  margin-bottom: 38px;
  place-items: start;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--green);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.program-card p,
.step-card p,
.faq details p,
.checkout-note {
  color: var(--muted);
  line-height: 1.64;
}

/* Proof */
.proof {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
  padding: 110px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(680px 360px at 16% 28%, rgba(34, 253, 171, 0.05), transparent 72%),
    var(--bg-2);
}

.proof-flow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.proof-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  background: none;
  transition: padding-left 240ms var(--ease);
}

.proof-step:hover {
  padding-left: 18px;
}

.proof-step span {
  display: grid;
  width: auto;
  height: auto;
  place-items: start;
  border-radius: 0;
  background: none;
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.proof-step strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

/* Buy */
.buy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.buy-panel {
  display: grid;
  gap: 22px;
  padding: 38px;
  border: 1px solid rgba(34, 253, 171, 0.28);
  border-radius: var(--r);
  background:
    linear-gradient(180deg, rgba(34, 253, 171, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(6, 8, 7, 0.6);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.buy-badge {
  width: max-content;
  max-width: 100%;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #00170e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.price-row strong {
  font-size: 80px;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.old-price {
  color: rgba(255, 255, 255, 0.36);
  font-size: 22px;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.offer-list {
  display: grid;
  width: 100%;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.5;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322fdab' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}

.checkout-button {
  width: 100%;
  margin-top: 4px;
}

.checkout-note {
  margin-bottom: 0;
  font-size: 13px;
  text-align: center;
}

/* Steps */
.steps .section-head {
  margin-inline: auto;
  text-align: center;
}

.steps .eyebrow { margin-inline: auto; }

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  list-style: none;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--line);
}

.step-num {
  display: block;
  margin-bottom: 22px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.05em;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding-top: 84px;
}

.faq-head {
  position: sticky;
  top: 110px;
}

.faq-badge {
  display: grid;
  place-items: center;
  width: max-content;
  height: 46px;
  min-height: 0;
  padding: 0 16px;
  line-height: 1;
}

.faq-badge span {
  display: block;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq details {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
  transition: background 220ms var(--ease);
}

.faq details[open] {
  background: rgba(34, 253, 171, 0.03);
}

.faq summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq summary::-webkit-details-marker { display: none; }

.faq-plus {
  position: relative;
  width: 19px;
  height: 19px;
  flex: none;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}

.faq-plus::before { width: 14px; height: 2px; }
.faq-plus::after { width: 2px; height: 14px; }
.faq details[open] .faq-plus::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq details p {
  margin: 0;
  padding: 0 6px 26px;
  max-width: 60ch;
}

/* Final CTA */
.final-cta {
  padding-top: 84px;
  text-align: center;
}

.final-cta .eyebrow { margin-inline: auto; }

.final-cta-inner {
  padding: 72px 56px;
  border: 1px solid rgba(34, 253, 171, 0.24);
  border-radius: var(--r);
  background:
    radial-gradient(620px 320px at 50% 0%, rgba(34, 253, 171, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.final-cta-inner h2 {
  margin-bottom: 16px;
  font-size: 56px;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto 32px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(calc(100% - 44px), var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-link {
  transition: color 200ms var(--ease);
}
.footer-link:hover { color: var(--green); }

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 8px 9px 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--green);
  color: #00170e;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.97);
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-cta:hover { transform: translateY(-2px) scale(1.01); }

.floating-cta span {
  color: rgba(0, 23, 14, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.floating-cta strong {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #000;
  color: var(--green);
  font-weight: 800;
}

/* Success page */
.success-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px 0;
}

.success-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 44px), 760px);
  text-align: center;
}

.success-card {
  margin-top: 24px;
  padding: 60px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.success-card h1 {
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1;
}

.success-card p {
  color: var(--soft);
  font-size: 18px;
  line-height: 1.64;
}

.success-lead {
  max-width: 620px;
  margin-inline: auto;
}

.success-details {
  display: grid;
  gap: 10px;
  margin: 32px 0;
  text-align: left;
}

.success-details div {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.025);
}

.success-details span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.success-details strong {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: -0.01em;
}

.success-note {
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 16px !important;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  h1 { font-size: 74px; }
  h2 { font-size: 40px; }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    justify-items: center;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-fast { justify-content: center; }

  .hero-showcase {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .program-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .proof,
  .buy,
  .faq {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-head {
    position: static;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 7px 8px 7px 14px;
  }

  .brand { font-size: 15px; }
  .brand-mark { width: 32px; height: 32px; }

  .hero {
    padding: 110px 18px 50px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.74) 42%, var(--bg) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38));
  }

  .hero-image {
    object-position: 50% 24%;
    opacity: 0.38;
  }

  .hero-grid {
    gap: 32px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10.5px;
  }

  .faq-badge {
    height: 48px;
    margin: 0 auto 28px;
    padding: 0 18px;
  }

  .faq-head {
    text-align: center;
  }

  h1 {
    font-size: 52px;
    line-height: 0.98;
  }

  h2 {
    font-size: 33px;
    line-height: 1.06;
  }

  h3 {
    font-size: 20px;
  }

  .hero-promise {
    margin-bottom: 16px;
    font-size: 25px;
    line-height: 1.18;
  }

  .hero-copy {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-showcase {
    padding: 14px;
  }

  .showcase-screen {
    aspect-ratio: 4 / 5;
  }

  .story-card {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }

  .story-card strong {
    font-size: 18px;
  }

  .showcase-stats strong {
    font-size: 24px;
  }

  .showcase-stats div {
    padding: 14px;
  }

  .section {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head p:not(.eyebrow),
  .proof-copy p:not(.eyebrow),
  .buy-copy p,
  .final-cta-inner p {
    font-size: 16px;
    line-height: 1.6;
  }

  .program-card,
  .step-card {
    padding: 26px 22px;
  }

  .program-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 18px;
    align-items: start;
  }

  .program-card h3,
  .program-card p {
    grid-column: 2;
  }

  .program-card h3 {
    margin-bottom: 8px;
  }

  .card-index {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    font-size: 26px;
  }

  .proof {
    width: 100%;
    padding: 72px 18px;
  }

  .proof-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px 4px;
  }

  .proof-step span {
    font-size: 19px;
  }

  .proof-step strong {
    font-size: 18px;
  }

  .buy-panel {
    padding: 28px;
  }

  .price-row {
    align-items: flex-end;
  }

  .price-row strong {
    font-size: 62px;
  }

  .old-price {
    font-size: 20px;
  }

  .faq {
    gap: 28px;
    padding-top: 64px;
  }

  .faq summary {
    min-height: 66px;
    padding: 22px 4px;
    font-size: 18px;
  }

  .faq p {
    padding: 0 4px 22px;
  }

  .final-cta {
    padding-top: 64px;
  }

  .final-cta-inner {
    padding: 44px 24px;
  }

  .final-cta-inner h2 {
    font-size: 36px;
  }

  .footer {
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 84px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }

  .success-shell {
    width: calc(100% - 36px);
  }

  .success-card {
    padding: 32px 22px;
  }

  .success-card h1 {
    font-size: 42px;
  }

  .success-card p {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 46px; }
  h2 { font-size: 30px; }

  .hero-promise { font-size: 23px; }

  .brand { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
