:root {
  --bg: #f7fff9;
  --surface: #ffffff;
  --surface-strong: #f1fff5;
  --ink: #070a12;
  --ink-strong: #030712;
  --muted: #4b5563;
  --line: #d7eadc;
  --line-strong: #9fe6b4;
  --primary: #16a34a;
  --primary-strong: #087333;
  --primary-soft: #e9fdf0;
  --secondary: #3ee77f;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --gold: #facc15;
  --green: #16a34a;
  --dark: #070a12;
  --shadow: 0 18px 42px rgba(7, 10, 18, 0.12);
  --shadow-hard: 8px 8px 0 rgba(7, 10, 18, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body:not(.success-page) {
  padding-bottom: 92px;
}

body.success-page [data-route="storefront"] {
  display: none;
}

body.success-page [data-route="success"] {
  display: grid;
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  pointer-events: none;
}

.motion-ready .hero-media,
.motion-ready .hero-pattern,
.motion-ready .button,
.motion-ready .header-cta,
.motion-ready .reel-card,
.motion-ready .checkout-form,
.motion-ready .success-card {
  will-change: transform, opacity;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 2px solid rgba(215, 234, 220, 0.9);
  background: rgba(247, 255, 249, 0.92);
  padding: 10px 14px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink-strong);
  font-weight: 900;
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--secondary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}

.brand span:last-child {
  max-width: 170px;
  overflow-wrap: break-word;
}

.nav-links {
  display: none;
}

.header-cta {
  display: none;
}

.button,
.header-cta,
.play-button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.site-header > .header-cta {
  display: none;
}

.button.primary,
.header-cta {
  border: 2px solid var(--ink);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
}

.button.secondary {
  border: 2px solid var(--ink);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 6px 6px 0 rgba(7, 10, 18, 0.13);
}

.button.full {
  width: 100%;
}

.button:hover,
.header-cta:hover,
.play-button:hover {
  transform: translate(-1px, -1px);
}

.button:active,
.header-cta:active,
.play-button:active {
  transform: translate(0, 0) scale(0.98);
  box-shadow: 3px 3px 0 var(--ink);
}

.button:focus-visible,
.header-cta:focus-visible,
.play-button:focus-visible,
.checkout-form input:focus-visible,
.nav-links a:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  border-bottom: 2px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 255, 249, 0.98), rgba(247, 255, 249, 0.86) 52%, rgba(247, 255, 249, 0.18)),
    radial-gradient(circle at 12% 16%, rgba(62, 231, 127, 0.26), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.16), transparent 32%),
    var(--bg);
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(7, 10, 18, 0.14);
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, rgba(62, 231, 127, 0.18) 0 8px, transparent 8px 18px),
    rgba(255, 255, 255, 0.28);
  content: "";
}

.hero-media {
  position: absolute;
  right: -235px;
  bottom: -76px;
  z-index: 0;
  width: min(1260px, 168vw);
  max-width: none;
  opacity: 0.24;
  filter: saturate(1.12) contrast(1.04);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.1) 2px, transparent 2px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 70%);
  pointer-events: none;
}

.hero-inner,
.metric-strip,
.section-heading,
.problem-grid,
.reel-grid,
.inside-layout,
.testimonial-grid,
.trust-band,
.checkout-layout,
.faq-list,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 78svh;
  align-items: center;
  padding: 34px 16px 70px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1,
.section-heading h2,
.checkout-copy h2,
.success-card h1 {
  margin: 0;
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.85rem, 13vw, 4.4rem);
  line-height: 0.92;
}

.hero-lede {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hero-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px 12px;
  margin-top: 26px;
  color: var(--dark);
}

.hero-price-line strong {
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.5rem, 16vw, 5.9rem);
  line-height: 0.9;
}

.hero-price-line span,
.hero-price-line del,
.hero-price-line em {
  font-weight: 900;
}

.hero-price-line span {
  font-size: 1rem;
}

.hero-price-line del {
  color: rgba(75, 85, 99, 0.86);
  font-size: 1.3rem;
}

.hero-price-line em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  padding: 0 10px;
  font-style: normal;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-trust {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust .icon {
  color: var(--primary);
}

.metric-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 16px 0;
}

.metric-strip article {
  min-height: 104px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px;
  box-shadow: 5px 5px 0 rgba(7, 10, 18, 0.13);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.metric-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.28;
}

.section {
  padding: 64px 16px;
}

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

.section-heading.split {
  display: grid;
  gap: 16px;
}

.chapter-number {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--primary);
  padding: 0 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(7, 10, 18, 0.13);
}

.section-heading h2,
.checkout-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.05rem, 10vw, 3.7rem);
  line-height: 0.96;
}

.section-heading p,
.checkout-copy > p {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.story-section {
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

.problem-grid {
  display: grid;
  gap: 14px;
}

.problem-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow-hard);
}

.problem-grid article:nth-child(2) {
  background: #eff6ff;
}

.problem-grid article:nth-child(3) {
  background: #fffbeb;
}

.problem-grid .icon {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--primary);
  color: #ffffff;
  padding: 10px;
}

.problem-grid article:nth-child(2) .icon {
  background: var(--accent);
}

.problem-grid article:nth-child(3) .icon {
  background: var(--gold);
  color: var(--ink);
}

.problem-grid strong {
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.problem-grid span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.48;
}

.preview-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, var(--bg)),
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.18), transparent 28%);
}

.reel-grid {
  display: grid;
  grid-auto-columns: minmax(188px, 76%);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 14px;
  justify-content: start;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-padding-left: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.reel-card {
  min-height: 344px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-hard);
}

.reel-stage {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 344px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  padding: 16px;
  background: var(--stage-bg);
}

.reel-stage::before,
.reel-stage::after {
  position: absolute;
  inset: 0;
  content: "";
}

.preview-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-stage::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(25, 3, 11, 0.02), rgba(25, 3, 11, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.08) 22px 23px);
}

.reel-card.active .reel-stage::before {
  animation: reelDrift 5s ease-in-out infinite alternate;
}

.reel-stage::after {
  z-index: 0;
  width: 72px;
  height: 72px;
  top: 22px;
  right: 16px;
  bottom: auto;
  left: auto;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.reel-stage.nature {
  --stage-bg: linear-gradient(145deg, #102a43, #2f9e44 58%, #e0f2fe);
}

.reel-stage.luxury {
  --stage-bg: linear-gradient(145deg, #070a12, #111827 54%, #facc15);
}

.reel-stage.finance {
  --stage-bg: linear-gradient(145deg, #052e2b, #16a34a 58%, #eab308);
}

.reel-stage.fitness {
  --stage-bg: linear-gradient(145deg, #07120b, #16a34a 54%, #3ee77f);
}

.reel-stage.tech {
  --stage-bg: linear-gradient(145deg, #111827, #2563eb 58%, #67e8f9);
}

.reel-stage.travel {
  --stage-bg: linear-gradient(145deg, #164e63, #0ea5e9 52%, #fed7aa);
}

.reel-topic,
.reel-stage h3,
.reel-stage p,
.play-button,
.progress {
  position: relative;
  z-index: 1;
}

.play-button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: auto;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.play-button .icon {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  fill: currentColor;
  stroke: none;
}

.reel-topic {
  width: max-content;
  max-width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 7px 9px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reel-stage h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.04;
}

.reel-stage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.38;
}

.progress {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #ffffff;
}

.reel-card.active .progress span {
  animation: progressRun 5s linear infinite;
}

.inside-section {
  background: #ffffff;
}

.inside-layout {
  display: grid;
  gap: 22px;
}

.included-list {
  display: grid;
  gap: 14px;
}

.included-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 16px;
  box-shadow: 5px 5px 0 rgba(7, 10, 18, 0.13);
}

.included-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
}

.included-list strong {
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.included-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.category-cloud span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 0 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(7, 10, 18, 0.12);
}

.category-cloud span:nth-child(3n + 1) {
  background: var(--primary);
  color: #ffffff;
}

.category-cloud span:nth-child(3n + 2) {
  background: #dbeafe;
}

.category-cloud span:nth-child(3n) {
  background: #fef3c7;
}

.proof-section {
  background:
    radial-gradient(circle at 18% 4%, rgba(37, 99, 235, 0.16), transparent 26%),
    linear-gradient(180deg, var(--bg), #ffffff);
}

.testimonial-grid {
  display: grid;
  gap: 14px;
}

.testimonial-grid article {
  display: grid;
  gap: 12px;
  min-height: 232px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow-hard);
}

.testimonial-grid article:nth-child(2) {
  background: #eff6ff;
}

.testimonial-grid article:nth-child(3) {
  background: #fffbeb;
}

.rating {
  color: var(--gold);
  font-size: 1.04rem;
  letter-spacing: 0;
}

.testimonial-grid p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.52;
}

.testimonial-grid strong {
  margin-top: auto;
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.06rem;
}

.testimonial-grid span {
  color: var(--primary-strong);
  font-size: 0.94rem;
  font-weight: 900;
}

.trust-band {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
  padding: 14px;
  box-shadow: var(--shadow-hard);
}

.trust-band span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  line-height: 1.28;
}

.trust-band .icon {
  color: var(--secondary);
}

.checkout-section {
  background:
    linear-gradient(135deg, rgba(62, 231, 127, 0.14), rgba(37, 99, 235, 0.1)),
    var(--bg);
}

.checkout-layout {
  display: grid;
  gap: 26px;
}

.checkout-offer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.checkout-offer div {
  min-height: 96px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 12px;
  box-shadow: 4px 4px 0 rgba(7, 10, 18, 0.13);
}

.checkout-offer span,
.checkout-offer strong {
  display: block;
}

.checkout-offer span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-offer strong {
  margin-top: 8px;
  color: var(--primary);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.25rem, 7vw, 2rem);
  line-height: 1;
}

.checkout-offer del {
  color: var(--muted);
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.steps-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 900;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.42;
}

.checkout-form {
  display: grid;
  gap: 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: 8px 8px 0 var(--ink);
}

.checkout-lock {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-bottom: 2px solid var(--line);
  padding-bottom: 16px;
}

.checkout-lock > .icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--primary);
  color: #ffffff;
  padding: 10px;
}

.checkout-lock strong {
  display: block;
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.22rem;
}

.checkout-lock span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.checkout-form input {
  width: 100%;
  min-height: 56px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #f8fffa;
  color: var(--ink);
  padding: 0 14px;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}

.checkout-form input::placeholder {
  color: rgba(75, 85, 99, 0.58);
}

.checkout-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.checkout-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.checkout-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: var(--primary-strong);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.checkout-note .icon {
  width: 16px;
  height: 16px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.form-message.error {
  color: #b91c1c;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  display: grid;
  max-width: 980px;
  gap: 10px;
}

.faq-list details {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 4px 4px 0 rgba(7, 10, 18, 0.12);
}

.faq-list summary {
  min-height: 56px;
  padding: 16px;
  cursor: pointer;
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.success-section {
  min-height: 100dvh;
  place-items: center;
  background:
    radial-gradient(circle at 22% 12%, rgba(37, 99, 235, 0.18), transparent 34%),
    var(--bg);
}

.success-card {
  display: grid;
  justify-items: center;
  width: min(680px, calc(100vw - 36px));
  gap: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 32px 18px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--ink);
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
}

.success-mark .icon {
  width: 34px;
  height: 34px;
}

.success-card h1 {
  font-size: clamp(2.35rem, 12vw, 3.6rem);
  line-height: 0.98;
}

.success-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.58;
}

.success-details {
  display: grid;
  width: min(100%, 480px);
  gap: 6px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  padding: 16px;
}

.success-details span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 8px;
  border-top: 2px solid var(--line);
  padding: 28px 16px 116px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-footer span:first-child {
  color: var(--ink-strong);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid var(--ink);
  background: var(--dark);
  color: #ffffff;
  padding: 12px 14px;
  box-shadow: 0 -14px 34px rgba(25, 3, 11, 0.2);
}

.mobile-sticky-cta strong,
.mobile-sticky-cta span {
  display: block;
}

.mobile-sticky-cta strong {
  font-size: 1rem;
  line-height: 1.16;
}

.mobile-sticky-cta span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-sticky-cta .button {
  min-width: 116px;
  min-height: 48px;
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
  padding-inline: 12px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.42);
}

.analytics-consent {
  position: fixed;
  right: 14px;
  bottom: 92px;
  left: 14px;
  z-index: 80;
  display: grid;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-hard);
  padding: 14px;
  backdrop-filter: blur(14px);
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.36;
}

.analytics-consent div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.analytics-consent button {
  min-height: 42px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 950;
}

.analytics-consent button[data-analytics-consent="accept"] {
  border-color: var(--primary);
  background: var(--primary);
  color: #04100a;
}

@keyframes progressRun {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes reelDrift {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-14px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 390px) {
  .brand span:last-child {
    max-width: 138px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .checkout-offer {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    align-items: stretch;
  }

  .mobile-sticky-cta strong {
    font-size: 0.92rem;
  }
}

@media (min-width: 560px) {
  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .hero-trust,
  .trust-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reel-grid {
    grid-auto-columns: minmax(218px, 36%);
  }

  .site-footer {
    grid-template-columns: 0.6fr 1fr;
    justify-content: space-between;
  }

  .analytics-consent {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(420px, calc(100vw - 48px));
  }
}

@media (min-width: 760px) {
  body:not(.success-page) {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 28px;
  }

  .brand span:last-child {
    max-width: none;
    white-space: nowrap;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 900;
  }

  .nav-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 3px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="true"] {
    border-color: var(--primary);
    color: var(--ink-strong);
  }

  .site-header > .header-cta {
    display: inline-flex;
  }

  .hero-inner {
    padding: 50px 32px 78px;
  }

  .hero-media {
    right: -270px;
    bottom: 18px;
    width: min(980px, 72vw);
    opacity: 0.5;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero h1 {
    max-width: 660px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6.4vw, 5.55rem);
  }

  .hero-price-line strong {
    font-size: 4.45rem;
  }

  .hero-lede {
    font-size: 1.14rem;
  }

  .metric-strip {
    margin-top: -48px;
    padding: 0 32px;
  }

  .section {
    padding: 88px 32px;
  }

  .section-heading.split {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    align-items: end;
  }

  .section-heading.split p {
    margin-top: 0;
  }

  .problem-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reel-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: row;
    overflow: visible;
  }

  .reel-card {
    min-height: 392px;
  }

  .reel-stage {
    min-height: 392px;
  }

  .inside-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
    align-items: start;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.66fr);
    align-items: start;
  }

  .checkout-form {
    position: sticky;
    top: 92px;
    padding: 24px;
  }

  .site-footer {
    padding: 34px 32px;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 1120px) {
  .site-header {
    padding-inline: 36px;
  }

  .hero-inner {
    padding-inline: 36px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-media {
    right: -230px;
    width: min(940px, 58vw);
    opacity: 0.62;
  }

  .section-heading h2,
  .checkout-copy h2 {
    max-width: 840px;
  }

  .problem-grid article {
    min-height: 220px;
  }
}
