﻿:root,
[data-theme="light"] {

  --primary-50: oklch(0.970 0.014 253);
  --primary-100: oklch(0.930 0.030 255);
  --primary-200: oklch(0.876 0.056 257);
  --primary-300: oklch(0.793 0.092 260);
  --primary-400: oklch(0.690 0.134 262);
  --primary-500: oklch(0.585 0.172 263);
  --primary-600: oklch(0.494 0.195 264);
  --primary-700: oklch(0.435 0.198 264);
  --primary-800: oklch(0.373 0.180 265);
  --primary-900: oklch(0.315 0.162 265);
  --primary-950: oklch(0.215 0.105 266);

  --secondary-50: oklch(0.978 0.018 58);
  --secondary-100: oklch(0.950 0.041 56);
  --secondary-200: oklch(0.900 0.086 54);
  --secondary-300: oklch(0.830 0.138 50);
  --secondary-400: oklch(0.745 0.178 46);
  --secondary-500: oklch(0.665 0.196 44);
  --secondary-600: oklch(0.590 0.204 42);
  --secondary-700: oklch(0.491 0.174 42);
  --secondary-800: oklch(0.415 0.140 42);
  --secondary-900: oklch(0.350 0.110 42);
  --secondary-950: oklch(0.240 0.072 42);

  --bg: oklch(0.990 0.003 260);
  --bg-soft: oklch(0.972 0.008 260);
  --bg-tint: oklch(0.982 0.005 260);
  --bg-card: oklch(0.997 0.001 260);
  --ink: var(--primary-900);
  --ink-soft: var(--primary-700);
  --ink-mute: oklch(0.42 0.055 260);
  --ink-faint: oklch(0.72 0.03 260);
  --rule: oklch(0.9 0.025 260);
  --rule-soft: oklch(0.94 0.018 260);
  --primary: var(--primary-900);
  --primary-strong: var(--primary-950);
  --accent: var(--secondary-600);
  --accent-strong: var(--secondary-700);
  --accent-soft: var(--secondary-100);
  --on-accent: oklch(1 0 0);
  --on-primary: oklch(1 0 0);
  --shadow-lg: 0 30px 60px -20px oklch(0.315 0.162 265 / 18%), 0 8px 18px -8px oklch(0.315 0.162 265 / 12%);
  --shadow-md: 0 16px 36px -16px oklch(0.315 0.162 265 / 18%);
  --shadow-sm: 0 4px 14px -6px oklch(0.315 0.162 265 / 16%);
  --scrollbar-handle: oklch(0.76 0.04 260);
  --scrollbar-handle-hover: oklch(0.62 0.06 260);
  --scrollbar-handle-active: oklch(0.52 0.08 260);
  --color-error: oklch(0.50 0.19 24);
  --color-success: oklch(0.55 0.15 145);
}

[data-theme="dark"] {
  --bg: oklch(0.130 0.045 265);
  --bg-soft: oklch(0.178 0.062 266);
  --bg-tint: oklch(0.152 0.052 266);
  --bg-card: oklch(0.218 0.078 267);
  --ink: oklch(0.985 0.005 260);
  --ink-soft: var(--primary-200);
  --ink-mute: var(--primary-300);
  --ink-faint: oklch(0.6 0.06 262);
  --rule: oklch(0.34 0.09 266);
  --rule-soft: oklch(0.27 0.08 266);
  --primary: var(--secondary-600);
  --primary-strong: var(--secondary-500);
  --accent: var(--secondary-500);
  --accent-strong: var(--secondary-400);
  --accent-soft: oklch(0.32 0.14 42);
  --on-accent: oklch(0.16 0.05 265);
  --on-primary: oklch(1 0 0);
  --shadow-lg: 0 30px 60px -20px oklch(0 0 0 / 50%), 0 8px 18px -8px oklch(0 0 0 / 40%);
  --shadow-md: 0 16px 36px -16px oklch(0 0 0 / 45%);
  --shadow-sm: 0 4px 14px -6px oklch(0 0 0 / 40%);
  --scrollbar-handle: oklch(0.40 0.09 266);
  --scrollbar-handle-hover: oklch(0.52 0.10 265);
  --scrollbar-handle-active: oklch(0.62 0.11 264);
  --color-error: oklch(0.65 0.19 24);
  --color-success: oklch(0.65 0.15 145);
}

.os-theme-custom {
  --os-size: calc(20px / var(--dpr));
  --os-handle-perpendicular-size: 25%;
  --os-handle-perpendicular-size-hover: 87.5%;
  --os-handle-perpendicular-size-active: 87.5%;
  --os-padding-perpendicular: calc(4px / var(--dpr));
  --os-padding-axis: calc(4px / var(--dpr));
  --os-handle-interactive-area-offset: calc(18px / var(--dpr));
  --os-handle-border-radius: 999px;
  --os-track-bg: transparent;
  --os-track-bg-hover: transparent;
  --os-track-bg-active: transparent;
  --os-handle-bg: var(--scrollbar-handle);
  --os-handle-bg-hover: var(--scrollbar-handle-hover);
  --os-handle-bg-active: var(--scrollbar-handle-active);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html[data-keyboard-nav] {
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  transition: background-color .2s ease, color .2s ease;
}

img,
figure,
[class*="image"],
[class*="img"] {
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: Raleway, sans-serif;
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

:root {
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --section-v: clamp(72px, 8vw, 120px);

  --padding-base: 0;
  --padding-base-x: 0;
  --padding-base-y: 0;
  --margin-base: 0;
  --margin-base-x: 0;
  --margin-base-y: 0;
  --gap-base: 0;
  --gap-base-x: 0;
  --gap-base-y: 0;

  --safe-space-top: max(env(safe-area-inset-top), var(--space-xl));
  --safe-space-bottom: env(safe-area-inset-bottom);
  --safe-space-left: env(safe-area-inset-left);
  --safe-space-right: env(safe-area-inset-right);

  --icon-check-circle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  --icon-x-circle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
}

.wrap--narrow {
  max-width: var(--container-narrow);
}

.center {
  text-align: center;
}

.serif {
  font-family: Raleway, sans-serif;
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentcolor;
  opacity: .45;
}

.eyebrow.muted {
  color: var(--ink-mute);
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-line::before,
.eyebrow-line::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: .45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  height: 54px;
  padding: 0 var(--space-md);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: .08s;
}

.btn.accent {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 20px -6px oklch(0.590 0.204 42 / 30%);
}

.btn.accent:hover {
  background: var(--accent-strong);
  box-shadow: 0 14px 28px -8px oklch(0.590 0.204 42 / 40%);
}

.btn.primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-sm);
}

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

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.btn.ghost:hover {
  border-color: var(--ink);
}

.btn.xl {
  height: 64px;
  padding: 0 var(--space-lg);
  font-size: 16px;
}

.btn.full {
  width: 100%;
}

.cta-stack {
  display: inline-flex;
  flex-flow: column wrap;
  align-items: center;
  gap: 14px;
}

.cta-stack.left {
  align-items: flex-start;
}

.cta-stack .price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.cta-stack .price-row .now {
  color: var(--ink);
}

.cta-stack .price-row .was {
  text-decoration: line-through;
  color: var(--ink-faint);
}

.cta-stack .price-row .save {
  color: var(--accent);
}

.cta-stack .urgency {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-stack .urgency::before,
.cta-stack .urgency::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-stack .urgency::before {
  content: "";
  anchor-name: --chip;
  animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite
}

.cta-stack .urgency::after {
  content: "";
  position: absolute;
  position-anchor: --chip;
  position-area: center;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  animation-delay: 1s;
}

.urgent-strip {
  background: var(--accent);
  color: var(--on-accent);
  padding: var(--space-xs) var(--gutter);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.urgent-strip .sep {
  opacity: 0.4;
}

.urgent-strip b {
  font-weight: 800;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease, box-shadow .25s ease;
}

.nav.is-stuck {
  border-color: var(--rule-soft);
  box-shadow: 0 4px 24px -8px oklch(0.315 0.162 265 / 10%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--space-xs);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  min-height: 44px;
}

.brand img {
  max-height: 38px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-save {
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav-save b {
  color: var(--ink);
}

.nav-save .accent {
  color: var(--accent);
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs);
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
}

.theme-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  transition: background .15s, color .15s;
}

.theme-toggle button.on {
  background: var(--bg-card);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  height: 44px;
  padding: 0 var(--space-sm);
  font-size: 13px;
}

@media (max-width: 760px) {
  .nav-save {
    display: none;
  }

  .nav-right {
    gap: var(--space-xs);
  }
}

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

.btn:focus-visible {
  outline-offset: 4px;
  border-radius: 8px;
}

.theme-toggle button:focus-visible {
  border-radius: 999px;
}

.hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 100px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -200px;
  right: -180px;
  opacity: .3;
}

[data-theme="dark"] .hero::before {
  opacity: .12;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-top: var(--space-md);
  color: var(--ink);
}

.hero h1 .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 .accent-word::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 55%;
  height: 8px;
  background: var(--ink);
  opacity: .35;
  border-radius: 4px;
  transform-origin: left center;
  animation: underline-reveal .55s var(--ease-out-quart) .9s both;
  pointer-events: none;
}

.hero .promise-label {
  margin-top: var(--space-lg);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero .promise {
  margin-top: var(--space-sm);
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.32;
  font-family: Poppins;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
}

.hero .promise b {
  color: var(--accent);
}

.hero .promise-sub {
  margin-top: var(--space-sm);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-mute);
}

.hero .cta-stack {
  margin-top: var(--space-lg);
}

.hero-meta {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-lg);
  text-align: center;
}

@media (max-width: 520px) {
  .hero-meta {
    gap: var(--space-md);
  }
}

.hero-meta .num {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 44px);
  color: var(--ink);
  line-height: 1;
}

.hero-meta .num em {
  color: var(--ink-mute);
  font-style: normal;
}

.hero-meta .lbl {
  margin-top: var(--space-xs);
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: var(--space-md) var(--gutter);
}

.proof-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.proof-bar .stack {
  height: 44px;
  width: auto;
}

.proof-bar .copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.proof-bar .copy .stars {
  color: var(--accent);
}

.proof-bar .copy .txt {
  font-weight: 500;
  font-size: 13px;
  font-family: Poppins;
  color: var(--ink-soft);
}

.proof-bar .copy .txt b {
  color: var(--ink);
}

.proof-bar .feature-label {
  font-family: Raleway;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-bar .divider {
  width: 1px;
  height: 36px;
  background: var(--rule);
}

@media (max-width: 700px) {
  .proof-bar .divider {
    display: none;
  }

  .proof-bar-inner {
    gap: var(--space-sm);
  }
}

section {
  padding: clamp(72px, 8vw, 120px) 0;
}

.s-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.s-head .num {
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-sm);
}

.s-head h2 {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}

.s-head h2 .accent {
  color: var(--accent);
}

.s-head .lede {
  margin: var(--space-md) auto 0;
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.story {
  background: var(--bg-soft);
}

.story-stack {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
}

.story .pull {
  position: relative;
  font-family: Raleway, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
  padding: 0 var(--space-md);
  text-wrap: pretty;
}

.story-body {
  margin-top: var(--space-lg);
}

.story-body p {
  margin: var(--space-sm) 0;
  font-size: 16.5px;
  color: var(--ink-soft);
}

.story-body strong {
  color: var(--ink);
  font-weight: 700;
}

.story-body .worst {
  font-family: Poppins;
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 28px);
  color: var(--ink);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule);
  letter-spacing: -0.008em;
}

.story-body .worst em {
  font-style: normal;
  color: var(--accent);
}

.fail-list {
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.fail-list li {
  position: relative;
  padding: 18px 0 18px 42px;
  border-top: 1px solid var(--rule);
  font-size: 17px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.fail-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.fail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 22px;
  height: 22px;
  background-color: var(--accent);
  mask-image: var(--icon-x-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.fail-list li::after {
  content: none;
}

.fail-list li strong {
  color: var(--ink);
  font-weight: 700;
}

.breakpoint {
  background: var(--bg-soft);
}

.breakpoint .pull {
  max-width: 720px;
  margin: 0 auto;
  font-family: Raleway, sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
  padding: 0 var(--space-md);
  text-wrap: pretty;
}

.breakpoint .mid {
  text-align: center;
  margin: var(--space-xl) auto var(--space-lg);
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
}

.breakpoint .hostage {
  text-align: center;
  margin: var(--space-2xl) auto 0;
  font-family: Raleway, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 24ch;
  text-wrap: balance;
}

.breakpoint .hostage .accent {
  color: var(--accent);
}

.stat-feature {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(32px, 4vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.stat-feature .big {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 12vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--accent);
}

.stat-feature .desc {
  margin-top: var(--space-md);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.34;
  font-family: Raleway;
  color: var(--ink);
  text-wrap: balance;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.008em;
}

.stat-feature .src {
  margin-top: var(--space-sm);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.truth-block {
  max-width: 760px;
  margin: var(--space-2xl) auto 0;
}

.truth-block .label {
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-sm);
}

.truth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.truth-list li {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}

.truth-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.truth-list .ix {
  flex-shrink: 0;
  font-family: Raleway;
  font-weight: 900;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  width: 40px;
}

.truth-list li em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

.alarming {
  margin: var(--space-2xl) auto 0;
  max-width: 760px;
  background: var(--primary-900);
  color: var(--on-primary);
  padding: var(--space-lg) clamp(28px, 4vw, 48px);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .alarming {
  background: var(--bg-card);
}

.alarming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, oklch(0.590 0.204 42 / 18%), transparent 50%);
  pointer-events: none;
}

.alarming .lbl {
  position: relative;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-300);
  margin-bottom: var(--space-sm);
}

.alarming p {
  position: relative;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  font-family: Raleway;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.alarming p em {
  color: var(--secondary-400);
  font-style: normal;
}

.consulted {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
}

.consulted .intro {
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}

.consulted-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.consulted-list li {
  position: relative;
  font-size: 16px;
  color: var(--ink-soft);
  padding: var(--space-xs) 0 var(--space-xs) 30px;
  border-bottom: 1px solid var(--rule-soft);
}

.consulted-list li:last-child {
  border-bottom: none;
}

.consulted-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background-color: var(--accent);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.consulted-list li::after {
  content: none;
}

.consulted-list b {
  font-family: Raleway;
  font-weight: 800;
  color: var(--ink);
}

.consulted .closer {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
}

.consulted .closer b {
  color: var(--ink);
  font-weight: 700;
}

.reveal-system {
  background: var(--primary-900);
  color: var(--on-primary);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .reveal-system {
  background: var(--bg-soft);
}

.reveal-system::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.590 0.204 42 / 16%) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.reveal-system .wrap {
  position: relative;
}

.reveal-system .s-head h2 {
  color: var(--on-primary);
}

[data-theme="dark"] .reveal-system .s-head h2 {
  color: var(--ink);
}

.reveal-system .s-head .num {
  color: var(--secondary-400);
}

.reveal-system .s-head .lede {
  color: oklch(0.85 0.05 260);
}

[data-theme="dark"] .reveal-system .s-head .lede {
  color: var(--ink-soft);
}

.reveal-system .sys-name {
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
  max-width: 22ch;
  margin: 0 auto;
}

.reveal-system .sys-name .accent {
  color: var(--secondary-500);
}

.reveal-system .reveal-system-body {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
}

.reveal-system .reveal-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 17.5px;
  color: oklch(0.85 0.05 260);
  text-wrap: pretty;
}

[data-theme="dark"] .reveal-system .reveal-intro {
  color: var(--ink-soft);
}

.win-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.win-list li {
  position: relative;
  padding: var(--space-sm) 0 var(--space-sm) 44px;
  border-top: 1px solid oklch(1 0 0 / 12%);
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  font-family: Raleway;
  color: var(--on-primary);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

[data-theme="dark"] .win-list li {
  border-top-color: var(--rule);
  color: var(--ink);
}

.win-list li:last-child {
  border-bottom: 1px solid oklch(1 0 0 / 12%);
}

[data-theme="dark"] .win-list li:last-child {
  border-bottom-color: var(--rule);
}

.win-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 28px;
  height: 28px;
  background-color: var(--secondary-400);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.win-list li::after {
  content: none;
}

.win-list li em {
  font-style: normal;
  color: var(--secondary-400);
}

[data-theme="dark"] .win-list li em {
  color: var(--accent);
}

.reveal-system .closer {
  margin-top: var(--space-xl);
  text-align: center;
  font-size: 17px;
  color: oklch(0.88 0.05 260);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .reveal-system .closer {
  color: var(--ink-soft);
}

.reveal-system .closer em {
  color: var(--secondary-400);
  font-style: italic;
  font-weight: 700;
}

.reveal-system .closer b {
  color: var(--on-primary);
}

.reveal-system .price-row .now {
  color: var(--on-primary);
}

.reveal-system .cta-row {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .t-grid {
    grid-template-columns: 1fr;
  }
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out-quart), box-shadow .2s ease, border-color .15s ease;
}

.t-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.t-card .stars {
  color: var(--accent);
}

.t-card blockquote {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
  font-family: Raleway;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
}

.t-card blockquote em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.t-card .by {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--rule);
}

.t-card .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
  display: grid;
  place-items: center;
  color: var(--on-primary);
  font-weight: 700;
  font-size: 16px;
  font-family: Raleway;
  object-fit: cover;
  flex-shrink: 0;
}

.t-card .name {
  font-weight: 700;
  font-size: 15px;
  font-family: Poppins;
  color: var(--ink);
}

.t-card .role {
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  margin-top: 2px;
}

.resets .reset-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.reset {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out-quart), box-shadow .2s ease;
}

.reset:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.reset:nth-child(even) {
  grid-template-columns: 1.1fr 0.95fr;
}

.reset:nth-child(even) .reset-img-wrap {
  order: 2;
}

.reset:nth-child(even) .reset-body {
  order: 1;
}

@media (max-width: 800px) {

  .reset,
  .reset:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .reset:nth-child(even) .reset-img-wrap {
    order: 0;
  }

  .reset:nth-child(even) .reset-body {
    order: 0;
  }
}

.reset-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4/3;
}

.reset-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reset-body {
  padding: 12px 0;
}

.reset .ix {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

.reset .ix .big {
  font-family: Raleway;
  font-weight: 900;
  font-size: 56px;
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.reset .ix .lbl {
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.reset h3 {
  font-family: Raleway;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-transform: uppercase;
}

.reset h3 em {
  color: var(--accent);
  font-style: normal;
}

.reset .desc {
  margin-top: var(--space-sm);
  font-size: 16.5px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.reset .desc .paren {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15.5px;
}

.resets .cta-row {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
}

.offer {
  background: var(--bg-soft);
}

.offer-top {
  text-align: center;
}

.offer-top .label {
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.offer-top h2 {
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: var(--space-sm) auto 0;
  max-width: 24ch;
  text-wrap: balance;
}

.offer-top h2 .accent {
  color: var(--accent);
}

.offer-top .sub {
  margin: var(--space-md) auto 0;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
}

.core-package {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  margin: var(--space-2xl) auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

@media (max-width: 700px) {
  .core-package {
    grid-template-columns: 1fr;
  }
}

.core-package-img {
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: stretch;
  aspect-ratio: 555 / 563;
}

.core-package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.core-package h3 {
  font-family: Raleway;
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 28px);
  letter-spacing: -0.012em;
  color: var(--ink);
}

.core-package h3 .accent {
  color: var(--accent);
}

.core-package p {
  margin-top: var(--space-xs);
  font-size: 16px;
  color: var(--ink-soft);
}

.core-package p b {
  color: var(--ink);
  font-weight: 700;
}

.bonus-divider {
  text-align: center;
  margin: var(--space-2xl) auto var(--space-lg);
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.bonus-divider .line {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.bonus-divider .line::before,
.bonus-divider .line::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--rule);
  opacity: 1;
}

.bonus-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-sm);
}

.bonus {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: var(--space-md) var(--space-lg);
  border-radius: 12px;
}

.bonus-img {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1414 / 2000;
  align-self: center;
  box-shadow: var(--shadow-sm);
}

.bonus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus h4 {
  font-family: Raleway;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.008em;
  color: var(--ink);
}

.bonus p {
  margin-top: var(--space-2xs);
  font-size: 14.5px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.bonus .val {
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

.bonus .val b {
  display: block;
  color: var(--accent);
  font-family: Raleway;
  font-weight: 900;
  font-size: 22px;
  margin-top: var(--space-2xs);
  letter-spacing: -0.005em;
  text-transform: none;
}

@media (max-width: 700px) {
  .bonus {
    grid-template-columns: 1fr;
  }

  .bonus-img {
    max-width: 180px;
    margin: 0 auto;
  }

  .bonus .val {
    grid-column: 1 / -1;
    text-align: left;
  }

  .bonus .val b {
    display: inline;
    margin-left: 6px;
  }
}

.price-card {
  margin: var(--space-2xl) auto 0;
  max-width: 540px;
  background: var(--primary-900);
  color: var(--on-primary);
  padding: var(--space-xl) var(--space-lg);
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

[data-theme="dark"] .price-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
}

[data-theme="light"] .price-card {
  --ink-mute: var(--primary-200);
}

.price-card .normally {
  margin-top: 0;
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.price-card .was {
  font-family: Raleway;
  font-weight: 400;
  font-size: 22px;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  color: var(--ink-faint);
  margin-top: var(--space-2xs);
}

.price-card .today {
  margin-top: var(--space-md);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-primary);
}

.price-card .price {
  font-family: Raleway;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--on-primary);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-top: var(--space-xs);
}

[data-theme="dark"] .price-card .price {
  color: var(--ink);
}

.price-card .price .cur {
  font-size: 0.4em;
  padding-top: 0.3em;
  color: oklch(0.72 0.04 260);
}

.price-card .save {
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary-400);
  margin-top: var(--space-sm);
}

.price-card .btn {
  margin-top: var(--space-lg);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 800px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

.ba-col {
  padding: var(--space-lg);
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
}

.ba-col.bad {
  background: var(--bg-soft);
}

.ba-col.good {
  background: var(--primary-900);
  color: var(--on-primary);
  border-color: var(--primary-800);
}

[data-theme="dark"] .ba-col.good {
  background: var(--accent-soft);
  color: var(--ink);
  border-color: var(--accent);
}

.ba-col .h {
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ba-col.bad .h {
  color: var(--ink-mute);
}

.ba-col.good .h {
  color: var(--secondary-400);
}

[data-theme="dark"] .ba-col.good .h {
  color: var(--accent-strong);
}

.ba-col h3 {
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.ba-col.good h3 {
  color: var(--on-primary);
}

[data-theme="dark"] .ba-col.good h3 {
  color: var(--ink);
}

.ba-col h3 .accent {
  color: var(--accent);
}

.ba-col.good h3 .accent {
  color: var(--secondary-400);
}

[data-theme="dark"] .ba-col.good h3 .accent {
  color: var(--accent-strong);
}

.ba-col .ba-col-img {
  margin: var(--space-md) 0 var(--space-2xs);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid oklch(1 0 0 / 14%);
}

.ba-col:first-child .ba-col-img {
  filter: grayscale(1);
}

[data-theme="dark"] .ba-col.good .ba-col-img {
  border-color: oklch(0 0 0 / 18%);
}

.ba-col .ba-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-col ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.ba-col li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--rule-soft);
  font-size: 15.5px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.ba-col.good li {
  color: oklch(0.85 0.05 260);
  border-top-color: oklch(1 0 0 / 12%);
}

[data-theme="dark"] .ba-col.good li {
  color: var(--ink);
  border-top-color: oklch(1 0 0 / 15%);
}

.ba-col.bad li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 18px;
  height: 18px;
  background-color: var(--ink-mute);
  mask-image: var(--icon-x-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.ba-col.bad li::after {
  content: none;
}

.ba-col.good li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 18px;
  height: 18px;
  background-color: var(--secondary-400);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.ba-col.good li::after {
  content: none;
}

[data-theme="dark"] .ba-col.good li::before {
  background-color: var(--accent);
}

.beforeafter .cta-row {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
}

.modules {
  background: var(--bg-soft);
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.module {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out-quart), box-shadow .2s ease;
}

.module:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.module:nth-child(even) {
  grid-template-columns: 1.1fr 1fr;
}

.module:nth-child(even) .module-img {
  order: 2;
}

.module:nth-child(even) .module-body {
  order: 1;
}

@media (max-width: 900px) {

  .module,
  .module:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .module:nth-child(even) .module-img {
    order: 0;
  }

  .module:nth-child(even) .module-body {
    order: 0;
  }
}

.module-img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  aspect-ratio: 3/4;
  display: grid;
  place-items: stretch;
}

.module-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.module .m-tag,
.bonus .m-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.module .m-tag .pill,
.bonus .m-tag .pill {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
}

[data-theme="dark"] .module .m-tag .pill,
[data-theme="dark"] .bonus .m-tag .pill {
  background: oklch(0.32 0.14 42);
  color: var(--secondary-300);
}

.module h3 {
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.module h3 .num {
  display: block;
  color: var(--accent);
  font-size: 0.7em;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2xs);
}

.module .m-lead {
  margin-top: var(--space-sm);
  font-size: 16.5px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.module ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.module ul li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--rule-soft);
  font-size: 15.5px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.module ul li:first-child {
  border-top: 0;
  padding-top: var(--space-xs);
}

.module ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 18px;
  height: 18px;
  background-color: var(--accent);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.module ul li::after {
  content: none;
}

.author-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 900px) {
  .author-grid {
    grid-template-columns: 1fr;
  }
}

.author-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.author-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 360px;
}

.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-intro {
  display: flex;
  flex-direction: column;
}

.author-intro b {
  font-family: Raleway;
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.05;
}

.author-intro span {
  margin-top: var(--space-xs);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.author-body .eyebrow {
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.author-body h2 {
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.author-body h2 .accent {
  color: var(--accent);
}

.author-body .role {
  margin-top: var(--space-sm);
  font-weight: 600;
  font-size: 13px;
  font-family: Poppins;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.author-body .bio {
  margin-top: var(--space-lg);
  font-size: 16.5px;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cta-final {
  background: var(--primary-950);
  color: var(--on-primary);
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

[data-theme="dark"] .cta-final {
  background: var(--bg-soft);
}

.cta-final::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.590 0.204 42 / 16%) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-final .wrap {
  position: relative;
}

.cta-final .eyebrow {
  color: var(--secondary-400);
  margin-bottom: var(--space-md);
}

[data-theme="dark"] .cta-final .eyebrow {
  color: var(--accent);
}

.cta-final h2 {
  font-family: Raleway;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--on-primary);
  text-wrap: balance;
}

[data-theme="dark"] .cta-final h2 {
  color: var(--ink);
}

.cta-final h2 .accent {
  color: var(--secondary-500);
}

[data-theme="dark"] .cta-final h2 .accent {
  color: var(--accent);
}

.cta-final .sub {
  margin: var(--space-md) auto 0;
  font-size: 17px;
  color: oklch(0.85 0.04 260);
  max-width: 56ch;
}

[data-theme="dark"] .cta-final .sub {
  color: var(--ink-soft);
}

.cta-final .cta-stack {
  margin: var(--space-xl) auto 0;
}

.cta-final .price-row {
  color: var(--ink-faint);
}

[data-theme="dark"] .cta-final .price-row {
  color: var(--ink-mute);
}

.cta-final .price-row .now {
  color: var(--on-primary);
}

[data-theme="dark"] .cta-final .price-row .now {
  color: var(--ink);
}

.footer {
  background: color-mix(in oklch, oklch(0 0 0) 25%, var(--primary-950) 75%);
  color: oklch(0.7 0.03 260);
  padding: var(--space-xl) 0 var(--space-2xl);
}

[data-theme="dark"] .footer {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  color: var(--ink-mute);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid oklch(1 0 0 / 12%);
}

[data-theme="dark"] .footer-top {
  border-bottom-color: var(--rule);
}

.footer .brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .brand-mark img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer .links {
  display: flex;
  gap: var(--space-md);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
}

.footer .links a {
  padding: 14px 0;
}

.footer .links a:hover {
  color: var(--on-primary);
}

[data-theme="dark"] .footer .links a:hover {
  color: var(--ink);
}

.footer .copy {
  font-size: 12.5px;
}

.footer .disclaimer {
  max-width: none;
  margin: 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: oklch(0.55 0.03 260);
  text-align: left;
}

.footer .disclaimer p {
  margin: 0 0 10px;
}

.footer .disclaimer b {
  color: oklch(0.85 0.04 260);
}

[data-theme="dark"] .footer .disclaimer {
  color: var(--ink-faint);
}

[data-theme="dark"] .footer .disclaimer b {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .65s var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform .65s var(--ease-out-expo) var(--reveal-delay, 0ms);
}

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

.reveal-d1 {
  --reveal-delay: 100ms;
}

.reveal-d2 {
  --reveal-delay: 200ms;
}

.reveal-d3 {
  --reveal-delay: 300ms;
}

.reveal-d4 {
  --reveal-delay: 400ms;
}

.reveal-d5 {
  --reveal-delay: 500ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-from-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-from-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes underline-reveal {
  from {
    transform: rotate(-2.5deg) scaleX(0);
    opacity: 0;
  }

  to {
    transform: rotate(-2.5deg) scaleX(1);
    opacity: .35;
  }
}

.hero-enter {
  animation: hero-rise .75s var(--ease-out-expo) var(--he-delay, 0ms) both;
}

.hero-image.hero-enter {
  animation-name: hero-from-right;
  animation-duration: .85s;
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ============================================================
   HighLevel Cookie Consent Banner
   ============================================================ */

.hl-cookie-consent-banner.popup-banner.position-left {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  max-width: 380px;
  width: calc(100vw - 48px);
}

.hl-cookie-consent-banner {
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
}

.hl-cookie-consent-banner .banner-text-container {
  margin-bottom: var(--space-sm);
}

.hl-cookie-consent-banner .banner-text {
  margin: 0;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.6;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
}

.hl-cookie-consent-banner .banner-text .learn-more {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s ease;
}

.hl-cookie-consent-banner .banner-text .learn-more:hover {
  color: var(--accent-strong);
}

.hl-cookie-consent-banner .banner-actions-container.flex {
  display: flex;
  gap: 10px;
}

.hl-cookie-consent-banner .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 44px;
  padding: 0 var(--space-sm);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease,
    border-color .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.hl-cookie-consent-banner .button:hover {
  transform: translateY(-2px);
}

.hl-cookie-consent-banner .button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: .08s;
}

.hl-cookie-consent-banner .button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hl-cookie-consent-banner .button.primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 20px -6px oklch(0.590 0.204 42 / 30%);
}

.hl-cookie-consent-banner .button.primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 14px 28px -8px oklch(0.590 0.204 42 / 40%);
}

.hl-cookie-consent-banner .button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.hl-cookie-consent-banner .button.secondary:hover {
  border-color: var(--ink);
}

@media (max-width: 480px) {
  .hl-cookie-consent-banner.popup-banner.position-left {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 14px 14px 0 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SALES PAGE — ANIMATION ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Scroll progress bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(var(--scroll-pct, 0%));
  transform-origin: left;
  height: 2px;
  background: var(--accent);
  z-index: 10001;
  pointer-events: none;
  /* No transition: JS updates this many times per second */
}

/* ── 2. Section heading group — staggered child reveal ──────── */
/* The .s-head wrapper keeps opacity:1 so the IntersectionObserver
   still fires (via .in class), but children carry the visual reveal */
.s-head.reveal {
  opacity: 1 !important;
  transform: none !important;
}

.s-head.reveal .num {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease-out-expo), transform .5s var(--ease-out-expo);
}

.s-head.reveal h2 {
  opacity: 0;
  transform: translateY(13px);
  transition: opacity .65s var(--ease-out-expo) 80ms, transform .65s var(--ease-out-expo) 80ms;
}

.s-head.reveal .lede {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s var(--ease-out-expo) 170ms, transform .55s var(--ease-out-expo) 170ms;
}

.s-head.reveal.in .num,
.s-head.reveal.in h2,
.s-head.reveal.in .lede {
  opacity: 1;
  transform: none;
}

/* ── 3. Reset & module cards — directional entrance ─────────── */
/* Odd cards (image-left layout) enter from the left */
.reset-list .reset:nth-child(odd).reveal,
.module-list .module:nth-child(odd).reveal {
  transform: translateX(-28px);
}

/* Even cards (image-right layout) enter from the right */
.reset-list .reset:nth-child(even).reveal,
.module-list .module:nth-child(even).reveal {
  transform: translateX(28px);
}

/* Both settle to final position */
.reset-list .reset.reveal.in,
.module-list .module.reveal.in {
  transform: none;
}

/* On narrow viewports where layout collapses to single column,
   revert to simple Y-axis reveal to avoid horizontal overflow */
@media (max-width: 800px) {

  .reset-list .reset:nth-child(odd).reveal,
  .reset-list .reset:nth-child(even).reveal {
    transform: translateY(12px);
  }
}

@media (max-width: 900px) {

  .module-list .module:nth-child(odd).reveal,
  .module-list .module:nth-child(even).reveal {
    transform: translateY(12px);
  }
}

/* ── 4. Stat feature — data-alert ring on entrance ──────────── */
.stat-feature.reveal.in {
  animation: stat-alert 2s var(--ease-out-expo) 180ms both;
}

@keyframes stat-alert {
  0% {
    box-shadow: var(--shadow-md), 0 0 0 0 color-mix(in oklab, var(--accent) 45%, transparent);
  }

  38% {
    box-shadow: var(--shadow-md), 0 0 0 20px color-mix(in oklab, var(--accent) 5%, transparent);
  }

  100% {
    box-shadow: var(--shadow-md);
  }
}

/* ── 5. Price card — weight-drop entrance ───────────────────── */
/* Starts slightly scaled up + offset; settles with gravity */
.price-card.reveal {
  transform: scale(1.028) translateY(20px);
}

/* ── 6. Author portrait — subtle scale entrance ─────────────── */
.author-grid.reveal .author-portrait img {
  transform: scale(1.05);
  transition: transform .9s var(--ease-out-expo);
}

.author-grid.reveal.in .author-portrait img {
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-enter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Reset directional initial states to simple Y for reduced-motion */
  .reset-list .reset:nth-child(odd).reveal,
  .reset-list .reset:nth-child(even).reveal,
  .module-list .module:nth-child(odd).reveal,
  .module-list .module:nth-child(even).reveal {
    transform: translateY(12px);
  }

  /* Snap s-head children visible immediately */
  .s-head.reveal .num,
  .s-head.reveal h2,
  .s-head.reveal .lede {
    opacity: 1 !important;
    transform: none !important;
  }

  /* No scale on portrait */
  .author-grid.reveal .author-portrait img {
    transform: scale(1) !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 700px) {

  section,
  .hero,
  .nav-inner,
  .cta-final,
  .footer {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .story .pull {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-grid,
  .proof-bar .copy,
  .label,
  .eyebrow,
  .author-body {
    text-align: center;
  }

  .proof-bar .copy .stars {
    justify-content: center;
  }

  .hero-image.hero-enter {
    animation-name: hero-from-up;
  }

  .urgent-strip {
    gap: var(--space-xs);
  }

  .cta-stack {
    align-content: center;
  }

  .cta-stack.left {
    align-items: center;
  }

  .author-aside {
    align-items: center;
  }

  .author-intro {
    align-items: center;
  }

  .footer-top {
    justify-content: center;
  }

  .footer .links {
    gap: var(--space-sm);

    & a {
      flex: 1;
      text-align: center;
    }
  }
}

.skip-link {
  position: absolute;
  inset: 0;
  translate: 0 -25%;
  background: var(--accent);
  color: var(--on-accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  z-index: 9999;
  text-decoration: none;
  margin: auto;
  width: fit-content;
  height: fit-content;
  transition-property: opacity, translate;
  transition-duration: .15s;
  transition-timing-function: ease;
}

.skip-link:not(:focus) {
  pointer-events: none;
  opacity: 0;
}

.skip-link:focus {
  opacity: 1;
  translate: 0;
}

.proof-bar-industry-accent {
  color: var(--accent);
}

.proof-bar-fine {
  font-size: 12px;
}

.stat-em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

@media (min-width: 701px) {
  .author-portrait {
    margin-left: 0;
  }

  .core-package-img {
    margin: 0;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════════════════════ */

:root {
  --co-card-radius: 16px;
  --co-input-radius: 8px;
  --co-input-h: 52px;
  --co-input-pad: 0 16px;
  --co-input-bg: var(--bg-card);
  --co-input-border: var(--rule);
  --co-input-border-hover: var(--primary-300);
  --co-divider: var(--rule);

  --icon-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  --icon-lock: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  --icon-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

/* ── step indicator — hidden; all fields render as one form ── */
.form-step {
  display: none;
}

/* ── inline guarantee badge below the submit button ────────── */
.form-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-sm);
  padding: 12px var(--space-md);
  background: color-mix(in oklab, var(--accent) 6%, var(--bg-card));
  border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
  border-radius: 10px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
}

.form-guarantee-badge::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  mask-image: var(--icon-shield);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.form-guarantee-badge strong {
  color: var(--ink);
  font-weight: 700;
}

.form-guarantee-badge .guarantee-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.form-guarantee-badge .guarantee-link:hover {
  color: var(--accent-strong);
  text-decoration-color: var(--accent-strong);
}

/* ── page hero ─────────────────────────────────────────────── */
.checkout-hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 3vw, 40px);
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.checkout-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .35;
}

[data-theme="dark"] .checkout-hero::before {
  opacity: .14;
}

.checkout-hero .wrap {
  position: relative;
}

.checkout-hero .eyebrow-line {
  display: inline-flex;
  margin-bottom: var(--space-md);
}

.checkout-hero h1 {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0 auto;
  max-width: 22ch;
  color: var(--ink);
}

.checkout-hero h1 .accent {
  color: var(--accent);
}

.checkout-hero .product-name {
  margin: var(--space-md) auto 0;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.3;
  font-family: Raleway, sans-serif;
  color: var(--ink);
  letter-spacing: -0.008em;
}

.checkout-hero .product-name b {
  color: var(--accent);
}

.checkout-hero .desc {
  margin: var(--space-sm) auto 0;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 64ch;
  text-wrap: pretty;
}

/* ── 2-column grid ─────────────────────────────────────────── */
.checkout-section {
  padding: clamp(28px, 3vw, 48px) 0 clamp(72px, 8vw, 100px);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: flex-start;
}

@media (max-width: 980px) {
  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ── form container ────────────────────────────────────────── */
.container-order-form-two-step {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--co-card-radius);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* step indicator */
.form-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  position: relative;
  margin-bottom: var(--space-lg);
  counter-reset: step;
}

div[id*="one-step-order"] .form-step {
  display: none;
}

.form-step .form-heading,
.form-step .form-sub-heading {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rule);
  white-space: nowrap;
}

.form-step .form-heading::before,
.form-step .form-sub-heading::before {
  content: counter(step);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--rule);
  color: var(--ink-mute);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0;
  flex-shrink: 0;
}

.form-step .form-heading.active,
.form-step .form-sub-heading.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.form-step .form-heading.active::before,
.form-step .form-sub-heading.active::before {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.form-step .form-heading.complete::before,
.form-step .form-sub-heading.complete::before {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  content: "✓";
  font-size: 14px;
}

/* ── shared input styling ─────────────────────────────────── */
.form-input,
input.form-input,
.coupon-input {
  display: block;
  width: 100%;
  height: var(--co-input-h);
  padding: var(--co-input-pad);
  font-weight: 500;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  color: var(--ink);
  background: var(--co-input-bg);
  border: 1.5px solid var(--co-input-border);
  border-radius: var(--co-input-radius);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  appearance: none;
}

.form-input::placeholder,
.coupon-input::placeholder {
  color: var(--ink-faint);
}

.form-input:hover,
.coupon-input:hover {
  border-color: var(--co-input-border-hover);
}

.form-input:focus,
.coupon-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
}

/* ── info section (name, email) ───────────────────────────── */
.info {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: 0;
}

.info > div {
  display: contents;
}

/* ── payment title bar ────────────────────────────────────── */
.payment-title-wrapp {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0 var(--space-md);
}

.payment-title {
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

.payment-bar {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── product detail rows ──────────────────────────────────── */
.product-detail,
.product-cost-total {
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
  padding: var(--space-sm) var(--space-md);

  & .card-el-error-msg {
    margin-top: var(--space-sm);
    color: var(--error);
    font-size: 15.5px;
  }
}

.product-title {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: var(--space-sm);
  padding-bottom: var(--space-xs);
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.product-title .item.text-center {
  text-align: center;
}

.product-title .item:last-child {
  text-align: right;
}

.divider-product {
  height: 1px;
  background: var(--rule);
  margin: 0 calc(-1 * var(--space-md));
}

.product-description {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: 15px;
  color: var(--ink);
}

.product-description .item.text-center {
  text-align: center;
}

:is(.product-description, .product-title) .item:not(:first-child, :last-child) {
  display: none;
}

.product-description .item:last-child {
  text-align: right;
}

.product-description .product-name {
  font-weight: 600;
  font-size: 15.5px;
  font-family: Poppins;
  letter-spacing: -0.005em;
}

.product-description .product-name strong {
  font-weight: 700;
}

.product-description .flex {
  display: flex;
  gap: 12px;
}

.product-description .radioBtn {
  flex-shrink: 0;
}

@media (max-width: 500px) {

  .product-title,
  .product-description {
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 8px;
  }

  .product-description {
    font-size: 13px;
  }

  .product-description .product-name {
    font-size: 13px;
  }
}

/* ── checkbox / radio mock ─────────────────────────────────── */
.checkbox-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 1lh;
}

.checkbox-container input[type="checkbox"] {
  appearance: none;
  margin: 0;
  border: 2px solid var(--primary-300);
  border-radius: 6px;
  background: var(--bg-card);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.checkbox-container input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

/* SVG check mark: drawn left-to-right on check, erased right-to-left on uncheck */
.checkbox-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--on-accent);
  overflow: visible;
  padding: var(--space-2xs);
  margin: auto;
}

.checkbox-svg polyline {
  stroke: currentcolor;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset .28s var(--ease-out-expo);
}

input[type="checkbox"] {
  line-height: inherit;
  height: 1lh;
  max-height: 22px;
  aspect-ratio: 1 / 1;
}

input[type="checkbox"]:checked + .checkbox-svg polyline {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .checkbox-svg polyline {
    transition: none;
  }
}

.checkbox-container input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ── ORDER BUMP ─────────────────────────────────────────── */
.bp-container {
  margin: var(--space-sm) 0;
}

.product-bump-divider {
  background: linear-gradient(135deg,
      color-mix(in oklab, var(--accent) 8%, var(--bg-card)) 0%,
      color-mix(in oklab, var(--accent) 4%, var(--bg-card)) 100%);
  border: 2px dashed var(--accent);
  border-radius: 12px;
  padding: var(--space-md);
}

[data-theme="dark"] .product-bump-divider {
  background: color-mix(in oklab, var(--accent) 12%, var(--bg-card));
}

.order-bump-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: 0;
}

.bump-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  line-height: 1.5;
}

.bump--flashing-arrow {
  display: none;
}

.bump-header::before {
  content: "";
  display: block;
  height: 1lh;
  width: 11px;
  animation: 1.2s ease-in-out 0s infinite normal none running bump-flash;
  background-color: var(--accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='7 4 10 16' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-origin: content-box;
  padding: 4px 0;
  flex-shrink: 0;
}

@keyframes bump-flash {

  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }

  50% {
    opacity: .35;
    transform: translateX(6px);
  }
}

.bump-header .checkbox-container {
  flex-shrink: 0;
}

.bump-header .headline {
  font-weight: 800;
  font-size: 16px;
  font-family: Raleway, sans-serif;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: inherit;
}

.bump-headline s {
  color: var(--ink-faint);
  text-decoration-thickness: 1.5px;
}

.bump-headline .price-highlight {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}

.bump-headline .price-highlight b {
  color: var(--accent);
  font-weight: 900;
}

.oto-headline {
  display: block;
  font-weight: 700;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.oto-headline + span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
  margin: 0 0 var(--space-xs);
  max-width: 65ch;
}

.bump-body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
  margin: 0 0 var(--space-xs);
  max-width: 65ch;
}

.bump-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bump-list li {
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.5;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
  padding-left: 14px;
  position: relative;
}

.bump-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.bump-footnote {
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.5;
  font-family: Poppins, sans-serif;
  color: var(--accent-strong);
  margin: 0;
}

/* ── coupon ─────────────────────────────────────────────── */
.coupon-container {
  margin: var(--space-md) 0;
  display: flex;
}

.coupon-text-container {
  display: flex;
  width: 100%;
  gap: 0;
  background: var(--co-input-bg);
  border: 1.5px solid var(--co-input-border);
  border-radius: var(--co-input-radius);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;

  & .form-input {
    border: none;
  }
}

.coupon-text-container:hover {
  border-color: var(--co-input-border-hover);
}

.coupon-text-container:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
}

.coupon-input {
  flex: 1;
  min-width: 0;
  height: var(--co-input-h);
  padding: 0 16px;
  font-weight: 500;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  appearance: none;
}

.coupon-input::placeholder {
  color: var(--ink-faint);
  letter-spacing: 0;
}

.coupon-input:hover,
.coupon-input:focus {
  border: 0;
  box-shadow: none;
}

.apply-btn {
  flex-shrink: 0;
  margin: 6px;
  padding: 0 22px;
  background: var(--primary-900);
  color: var(--on-primary);
  border: 0;
  border-radius: calc(var(--co-input-radius) - 2px);
  font-weight: 700;
  font-size: 12.5px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  height: calc(var(--co-input-h) - 12px);
  transition: background .15s ease, transform .15s ease, opacity .15s ease;
}

[data-theme="dark"] .apply-btn {
  background: var(--accent);
  color: var(--on-accent);
}

.apply-btn:hover:not(:disabled) {
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-1px);
}

.apply-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

/* ── order-summary block ────────────────────────────────── */
.separator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 var(--space-sm);
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.product-cost-total .item-price {
  font-weight: 600;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  color: var(--ink);
}

.product-cost-total .coupon-item {
  font-weight: 600;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  color: var(--ink);
}

.order-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  align-items: center;
}

.order-total .item:first-child strong {
  font-weight: 800;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.order-total .item.text-right {
  text-align: right;
}

.order-total .item-price {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -0.015em;
}

/* ── PAYMENT MOCKS ───────────────────────────────────────── */
.payment-content {
  margin-top: var(--space-md);

  & section {
    padding: 0;
  }
}

.payment-form,
.ghl-payment-element {
  display: block;
}

.paypal-buttons-mock {
  display: grid;
  gap: 10px;
  margin-top: var(--space-xs);
}

.paypal-btn {
  appearance: none;
  border: 1px solid transparent;
  height: 48px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: filter .15s ease, transform .15s ease, box-shadow .2s ease;
}

.paypal-btn:hover {
  filter: brightness(.95);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.paypal-btn:active {
  transform: translateY(0);
}

.paypal-btn--gold {
  background: #FFC439;
  color: #003087;
}

.paypal-btn--gold .pp-text {
  font-style: italic;
  font-weight: 800;
}

.paypal-btn--gold .pp-text b {
  font-weight: 800;
  color: #003087;
}

.paypal-btn--gold .pp-text i {
  color: #009CDE;
  font-style: italic;
}

.paypal-btn--paylater {
  background: #ECECEC;
  color: #003087;
}

.paypal-btn--paylater .pp-text {
  font-style: italic;
  font-weight: 800;
}

.paypal-btn--venmo {
  background: #3D95CE;
  color: #FFF;
  font-style: italic;
}

.paypal-btn--venmo .pp-text {
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* divider OR */
.payment-content .divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: var(--space-lg) 0;
  width: auto !important;
  height: auto !important;
  background: none !important;
}

.payment-content .divider hr,
.payment-content .divider::after {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 0;
}

.payment-content .divider::after {
  content: "";
  display: block;
  width: 100%;
}

.payment-content .divider .text {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Stripe-style card form */
.StripeElement {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: var(--space-sm);
}

.stripe-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.stripe-tab {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--bg-soft);
  padding: 10px 8px;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.stripe-tab:hover {
  border-color: var(--primary-300);
  color: var(--ink);
}

.stripe-tab.active {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--accent);
}

.stripe-fields {
  display: grid;
  gap: 10px;
}

.stripe-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stripe-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stripe-field label {
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.stripe-field input,
.stripe-field select {
  appearance: none;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.stripe-field input::placeholder {
  color: var(--ink-faint);
}

.stripe-field input:focus,
.stripe-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 18%, transparent);
}

.stripe-field select {
  background-image: var(--icon-chevron);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* ── terms + complete button ────────────────────────────── */
.terms-conditions-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: var(--space-lg) 0 var(--space-md);
  line-height: 1.5;
  font-size: 13.5px;
}

.terms-conditions-text {
  flex: 1;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: inherit;
}

.terms-conditions-text p {
  margin: 0;
  font: inherit;
  color: inherit;
}

.terms-conditions-text a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentcolor;
}

.terms-conditions-text a:hover {
  color: var(--accent-strong);
}

.form-btn {
  appearance: none;
  width: 100%;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  border-radius: 10px;
  height: 64px;
  padding: 0 var(--space-lg);
  font-weight: 800;
  font-size: 17px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 28px -10px color-mix(in oklch, var(--accent) 55%, transparent);
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
}

.form-btn:hover:not(:disabled) {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px color-mix(in oklch, var(--accent) 65%, transparent);
}

.form-btn:active {
  transform: translateY(0);
}

.form-btn:disabled {
  background: color-mix(in oklch, var(--accent) 55%, transparent);
  color: color-mix(in oklch, var(--on-accent) 55%, transparent);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  position: relative;
  overflow: visible;
}

.form-btn .cart-icon {
  width: 20px;
  height: 20px;
  background-color: currentcolor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.7 13.4a2 2 0 0 0 2 1.6h9.7a2 2 0 0 0 2-1.6L23 6H6'/%3E%3C/svg%3E");
  mask-size: contain;
}

.order-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin-top: var(--space-md);
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.order-form-footer::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: currentcolor;
  mask-image: var(--icon-lock);
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* ── Visually-hidden utility (screen-reader only) ─────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Info field wrapper (label + input + error) ────────────── */
.info-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Inline field validation states ──────────────────────── */
.field-error-msg {
  display: none;
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  color: var(--color-error);
  margin-top: 5px;
  padding: 0 2px;
}

.info-field.is-invalid .field-error-msg {
  display: block;
}

.info-field.is-invalid .form-input {
  border-color: var(--color-error) !important;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-error) 12%, transparent) !important;
}

.info-field.is-valid .form-input {
  border-color: var(--color-success);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* ── Visible info-field label ─────────────────────────────── */
.info-field__label {
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

.info-field__label::after {
  content: " *";
  color: var(--color-error);
  font-weight: 700;
}

/* ── Alt payment panels (Apple Pay / Google Pay) ──────────── */
.payment-alt-panel {
  padding: var(--space-md);
  text-align: center;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  color: var(--ink-mute);
  background: var(--bg-soft);
  border-radius: 8px;
  border: 1px dashed var(--rule);
}

/* ── Order bump confirmation ──────────────────────────────── */
.bump-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-xs);
  padding: 10px var(--space-sm);
  background: color-mix(in oklab, var(--color-success) 10%, var(--bg-card));
  border: 1px solid color-mix(in oklab, var(--color-success) 30%, transparent);
  border-radius: 8px;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: var(--ink-soft);
}

.bump-confirm::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--color-success);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* ── Complete Order: disabled-state tooltip (HTML-based) ── */

.tooltip {
  position: absolute;
  position-anchor: --tooltip-anchor;
  position-area: top center;
  position-try: top center, right center, bottom center, left center;
  position-try-fallbacks: top center, right center, bottom center, left center;
  margin-bottom: 12px;
  width: max-content;
  max-width: 280px;
  padding: 10px 14px;
  background: var(--bg-card);
  color: var(--ink-soft);
  font: 500 13px/1.5 "Poppins", sans-serif;
  text-align: left;
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 20;
}

.tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--rule);
  pointer-events: none;
}

@container style(position-try: bottom) {
  .tooltip {
    top: calc(100% + 12px);
    bottom: auto;
  }

  .tooltip::after {
    top: -12px;
    bottom: auto;
  }
}

.tooltip-area button {
  anchor-name: --tooltip-anchor;
}

.tooltip-area:has(button:disabled:hover) .tooltip {
  opacity: 1;
}

/* ── Payment group label ─────────────────────────────────── */
.payment-group-label {
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

/* ── RIGHT SIDEBAR — what you get + price summary ──────── */
.checkout-summary {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (max-width: 980px) {
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 400px) {
  .stripe-row {
    grid-template-columns: 1fr;
  }
}

.summary-rating {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--co-card-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .35s var(--ease-out-quart);
}

.summary-rating:hover {
  box-shadow: var(--shadow-md);
}

.summary-rating-img {
  display: block;
  margin: 0;
  padding: 20px var(--space-md);
  position: relative;
}

.summary-rating-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform .5s var(--ease-out-quart);
  animation: rating-img-settle 1.5s var(--ease-out-expo) 0.1s both;
  max-width: 260px;
  margin: auto;
}

.summary-rating:hover .summary-rating-img img {
  transform: scale(1.025) translateY(-3px);
}

/* cinematic settle on load */
@keyframes rating-img-settle {
  0% {
    transform: scale(1.06) translateY(-10px);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.summary-rating-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 15px;
}

.summary-rating .stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.summary-rating .stars svg {
  width: 15px;
  height: 15px;
}

/* staggered star entrance — scroll-triggered via .in on the .stars element */
.stars svg {
  animation-name: star-pop;
  animation-duration: .45s;
  animation-timing-function: var(--ease-out-expo);
  animation-fill-mode: both;
  animation-play-state: paused;
}

.stars svg:nth-child(1) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 0ms);
}

.stars svg:nth-child(2) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 110ms);
}

.stars svg:nth-child(3) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 220ms);
}

.stars svg:nth-child(4) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 330ms);
}

.stars svg:nth-child(5) {
  animation-delay: calc(var(--reveal-delay, 0ms) + 440ms);
}

.stars.in svg {
  animation-play-state: running;
}

@media (prefers-reduced-motion: reduce) {
  .stars svg {
    animation: none;
  }
}

@keyframes star-pop {
  0% {
    transform: scale(0.25) rotate(-20deg);
    opacity: 0;
  }

  65% {
    transform: scale(1.06);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.summary-rating .txt {
  font-weight: 600;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
}

.summary-rating .txt b {
  color: var(--ink);
  font-weight: 800;
}

/* count-up number wrapper */
.summary-rating .rating-num {
  display: inline-block;
  min-width: 3ch;
  text-align: right;
  margin-left: -0.2ch;
}

.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--co-card-radius);
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: var(--shadow-sm);
}

.summary-title {
  font-weight: 900;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--space-sm);
}

.summary-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.summary-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px dashed var(--rule);
}

.summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.summary-item-head h3 {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  flex: 1;
  text-wrap: balance;
}

.summary-item-head .value {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.summary-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-item ul li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.summary-item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.summary-totalprice {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--primary-950);
  color: var(--on-primary);
  border-radius: var(--co-card-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .summary-totalprice {
  background: var(--bg-card);
}

.summary-totalprice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, oklch(0.590 0.204 42 / 22%), transparent 55%);
  pointer-events: none;
}

.summary-totalprice .totalprice-label,
.summary-totalprice .totalprice-amount,
.summary-totalprice .totalprice-note,
.summary-totalprice .totalprice-was {
  position: relative;
}

.summary-totalprice .totalprice-label {
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-400);
}

.summary-totalprice .totalprice-amount {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}

[data-theme="dark"] .summary-totalprice .totalprice-amount {
  color: var(--ink);
}

.summary-totalprice .totalprice-amount .cur {
  font-size: 0.42em;
  padding-top: 0.4em;
  color: var(--ink-faint);
}

.summary-totalprice .totalprice-note {
  font-weight: 600;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 6px;
}

[data-theme="dark"] .summary-totalprice .totalprice-note {
  color: var(--ink-mute);
}

.summary-totalprice .totalprice-was {
  margin-top: 12px;
  font-weight: 500;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  color: var(--ink-faint);
}

[data-theme="dark"] .summary-totalprice .totalprice-was {
  color: var(--ink-faint);
}

.summary-totalprice .totalprice-was s {
  text-decoration-thickness: 1.5px;
  margin-right: 8px;
}

.summary-totalprice .totalprice-was b {
  color: var(--secondary-400);
  font-weight: 800;
  font-family: Raleway;
  font-size: 15px;
  letter-spacing: -0.005em;
}

/* ── single testimonial below form ─────────────────────── */
.checkout-testimonial {
  background: var(--bg-soft);
  padding: 80px 0;
  position: relative;
}

/* ── Testimonial quote mark icon ─────────────────────────── */
@keyframes testimonial-qmark-draw {
  from {
    stroke-dashoffset: 85;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes testimonial-qmark-fill {
  from {
    fill-opacity: 0;
  }

  to {
    fill-opacity: 1;
  }
}

.checkout-testimonial .testimonial-qmark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  overflow: visible;
}

.checkout-testimonial .testimonial-qmark path {
  fill: color-mix(in oklab, var(--accent) 8%, var(--bg-card));
  fill-opacity: 0;
  stroke: var(--accent);
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 85;
  stroke-dashoffset: 85;
}

.checkout-testimonial:has(.t-split.is-visible) .testimonial-qmark path:first-child {
  animation:
    testimonial-qmark-draw 0.3s var(--ease-out-expo) 0.05s both,
    testimonial-qmark-fill 0.25s var(--ease-out-quart) 0.6s both;
}

.checkout-testimonial:has(.t-split.is-visible) .testimonial-qmark path:last-child {
  animation:
    testimonial-qmark-draw 0.3s var(--ease-out-expo) 0.25s both,
    testimonial-qmark-fill 0.25s var(--ease-out-quart) 0.75s both;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-testimonial .testimonial-qmark path {
    animation: none;
    fill-opacity: 1;
    stroke-dashoffset: 0;
  }
}

.t-split {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.t-split-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.av-xl {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-700));
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: 30px;
  flex-shrink: 0;
}

.checkout-testimonial .stars {
  color: var(--accent);
  display: flex;
  gap: 3px;
  justify-content: center;
}

.checkout-testimonial cite {
  display: block;
  text-align: center;
  font-style: normal;
}

.checkout-testimonial .name {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.checkout-testimonial .role {
  font-weight: 500;
  font-size: 12px;
  font-family: Poppins;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}

.checkout-testimonial .tt-headline {
  font-family: Raleway, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin-bottom: 20px;
  padding-top: 8px;
}

.checkout-testimonial blockquote {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: normal;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  max-width: 68ch;
}

.checkout-testimonial blockquote p {
  margin: 0 0 var(--space-sm);
}

.checkout-testimonial blockquote p:last-child {
  margin-bottom: 0;
}

.checkout-testimonial blockquote b {
  color: var(--accent);
}

@media (max-width: 680px) {
  .t-split {
    grid-template-columns: 1fr;
  }
}

/* ── GUARANTEE ─────────────────────────────────────────── */
.checkout-guarantee {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  overflow-x: hidden;
}

.guarantee-eyebrow {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.guarantee-title {
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 auto var(--space-xl);
  max-width: 22ch;
  text-wrap: balance;
}

.guarantee-title .accent {
  color: var(--accent);
}

.guarantee-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--co-card-radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

@media (max-width: 700px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.guarantee-seal {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

[data-theme="dark"] .guarantee-seal {
  background: transparent;
}

.guarantee-seal-inner {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.guarantee-seal-inner .small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
  color: var(--accent-strong);
}

.guarantee-body h3 {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.guarantee-body p {
  margin-top: var(--space-sm);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 68ch;
}

.g1-card-text .guarantee-body p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-body p b {
  color: var(--ink);
  font-weight: 700;
}

/* ── GUARANTEE: seal-above layout ─────────────────────── */
.g1-seal-row {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.g1-seal-row .guarantee-seal {
  width: 276px;
  height: 276px;
}

.guarantee-card.g1-card-text {
  display: block;
  text-align: center;
}

.g1-card-text .guarantee-body {
  max-width: none;
}

.g1-card-text .guarantee-body h3 {
  text-wrap: balance;
}

.g1-card-text .guarantee-body p {
  font-size: 16.5px;
}

/* ── GUARANTEE seal: flanking rule lines ───────────────── */
.g1-seal-row {
  position: relative;
}

.g1-seal-row::before,
.g1-seal-row::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  width: 50vw;
  height: 1px;
  background: var(--rule);
  pointer-events: none;
}

/* Seal is 276px wide (138px half) + 16px gap = 154px from center */
.g1-seal-row::before {
  right: calc(50% + 154px);
  clip-path: inset(0 0 0 100%);
  /* draws right→left (seal-outward) */
}

.g1-seal-row::after {
  left: calc(50% + 154px);
  clip-path: inset(0 100% 0 0);
  /* draws left→right (seal-outward) */
}

/* ── GUARANTEE seal: dashed shield shape ───────────────── */
.guarantee-seal {
  border: none;
  border-radius: 0;
  background: transparent;
}

.gs-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.guarantee-seal-inner {
  position: relative;
  z-index: 1;
}

.gs-path {
  fill: color-mix(in oklab, var(--accent) 8%, var(--bg-card));
  stroke: var(--accent);
  stroke-width: 0.5;
  stroke-dasharray: 1.4 2.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* ── FAQ ────────────────────────────────────────────────── */
.checkout-faq {
  padding: 0 0 clamp(72px, 8vw, 120px);
}

.faq-eyebrow {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--space-sm);
}

.faq-title {
  text-align: center;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 auto var(--space-xl);
  max-width: 22ch;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 22px -10px color-mix(in oklab, var(--accent) 40%, transparent);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(20px, 3vw, 28px);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.35;
  letter-spacing: -0.008em;
  color: var(--ink);
  text-wrap: balance;
  transition: color .15s ease;
}

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

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  position: relative;
  transition: background .2s ease, color .2s ease;
}

.faq-item .icon::before,
.faq-item .icon::after {
  content: "";
  position: absolute;
  background: currentcolor;
  border-radius: 2px;
  transition: transform .25s var(--ease-out-quart);
}

.faq-item .icon::before {
  width: 12px;
  height: 2px;
}

.faq-item .icon::after {
  width: 2px;
  height: 12px;
}

.faq-item[open] .icon {
  background: var(--accent);
  color: var(--on-accent);
}

.faq-item[open] .icon::after {
  transform: scaleY(0);
}

.faq-item .answer {
  padding: 0 clamp(20px, 3vw, 28px) 22px;
  margin-left: 52px;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  font-family: Poppins, sans-serif;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.faq-item .answer p {
  max-width: 68ch;
  margin: 0;
}

.faq-item .answer p + p {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .faq-item .answer {
    margin-left: 0;
  }
}

@media (max-width: 700px) {

  .checkout-hero,
  .checkout-section,
  .checkout-testimonial,
  .checkout-guarantee,
  .checkout-faq {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}

/* ── reveal entries ─────────────────────────────────────── */
.container-order-form-two-step,
.summary-rating,
.summary-card,
.summary-totalprice {
  animation: fade-in-up .7s var(--ease-out-expo) both;
}

.summary-card {
  animation-delay: 80ms;
}

.summary-totalprice {
  animation-delay: 160ms;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .container-order-form-two-step,
  .summary-rating,
  .summary-card,
  .summary-totalprice {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .bump--flashing-arrow {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════
   CHECKOUT — PURPOSEFUL ANIMATION LAYER
   ════════════════════════════════════════════════════════════ */

/* ── 1. Hero entrance ────────────────────────────────────── */
.checkout-hero .eyebrow-line {
  animation: hero-rise 0.5s var(--ease-out-expo) both;
}

.checkout-hero h1 {
  animation: hero-rise 0.55s var(--ease-out-expo) 90ms both;
}

.checkout-hero .product-name {
  animation: hero-rise 0.5s var(--ease-out-expo) 170ms both;
}

.checkout-hero .desc {
  animation: hero-rise 0.5s var(--ease-out-expo) 230ms both;
}

/* ── 2. Scroll-reveal base ───────────────────────────────── */
.reveal {
  opacity: 0;
  translate: 0 22px;
  transition: opacity 0.5s var(--ease-out-expo), translate 0.5s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* ── 3. Summary items stagger ────────────────────────────── */
.summary-items .summary-item {
  opacity: 0;
  translate: 0 10px;
  transition: opacity 0.38s var(--ease-out-expo), translate 0.38s var(--ease-out-expo);
}

.summary-items.is-visible .summary-item {
  opacity: 1;
  translate: 0 0;
}

.summary-items.is-visible .summary-item:nth-child(2) {
  transition-delay: 60ms;
}

.summary-items.is-visible .summary-item:nth-child(3) {
  transition-delay: 120ms;
}

.summary-items.is-visible .summary-item:nth-child(4) {
  transition-delay: 180ms;
}

.summary-items.is-visible .summary-item:nth-child(5) {
  transition-delay: 240ms;
}

.summary-items.is-visible .summary-item:nth-child(6) {
  transition-delay: 300ms;
}

/* ── 4. Guarantee seal: stamp + flanking line draw ───────── */
@keyframes seal-stamp {
  0% {
    opacity: 0;
    scale: 0.68;
    rotate: -6deg;
  }

  55% {
    scale: 1.05;
    rotate: 1.5deg;
  }

  100% {
    opacity: 1;
    scale: 1;
    rotate: 0deg;
  }
}

@keyframes line-draw-left {
  from {
    clip-path: inset(0 0 0 100%);
  }

  to {
    clip-path: inset(0 0 0 0%);
  }
}

@keyframes line-draw-right {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0% 0 0);
  }
}

.guarantee-seal {
  opacity: 0;
}

.g1-seal-row.is-visible .guarantee-seal {
  animation: seal-stamp 0.65s var(--ease-out-expo) both;
}

.g1-seal-row.is-visible::before {
  animation: line-draw-left 0.55s var(--ease-out-expo) 420ms both;
}

.g1-seal-row.is-visible::after {
  animation: line-draw-right 0.55s var(--ease-out-expo) 420ms both;
}

/* ── 5. Complete Order button — pulse when unlocked ──────── */
@keyframes btn-ready {
  0% {
    box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 0%, transparent);
  }

  38% {
    box-shadow: 0 0 0 12px color-mix(in oklab, var(--accent) 20%, transparent);
  }

  100% {
    box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 0%, transparent);
  }
}

.form-btn.pulse-ready {
  animation: btn-ready 0.75s var(--ease-out-expo) 2;
}

/* ── Guarantee section reveal stagger ───────────────────── */
.guarantee-title.reveal {
  transition-delay: 70ms;
}

.guarantee-card.reveal {
  transition-delay: 140ms;
}

/* ── 6. FAQ section reveal ───────────────────────────────── */
.faq-title.reveal {
  transition-delay: 60ms;
}

.faq-item.reveal:nth-child(1) {
  transition-delay: 130ms;
}

.faq-item.reveal:nth-child(2) {
  transition-delay: 180ms;
}

.faq-item.reveal:nth-child(3) {
  transition-delay: 230ms;
}

.faq-item.reveal:nth-child(4) {
  transition-delay: 280ms;
}

.faq-item.reveal:nth-child(5) {
  transition-delay: 330ms;
}

/* ── 7. Order bump: warm highlight when checked ──────────── */
.bp-container .product-bump-divider {
  transition: background 300ms ease;
}

.bp-container.is-bumped .product-bump-divider {
  background: color-mix(in oklab, var(--accent) 7%, var(--bg-card));
}

/* ── Reduced motion overrides ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  .checkout-hero .eyebrow-line,
  .checkout-hero h1,
  .checkout-hero .product-name,
  .checkout-hero .desc {
    animation: none;
  }

  .reveal {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }

  .summary-items .summary-item {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }

  .guarantee-seal {
    opacity: 1;
  }

  .g1-seal-row.is-visible .guarantee-seal {
    animation: none;
  }

  .g1-seal-row::before,
  .g1-seal-row::after {
    clip-path: none;
  }

  .g1-seal-row.is-visible::before,
  .g1-seal-row.is-visible::after {
    animation: none;
  }

  .form-btn.pulse-ready {
    animation: none;
  }

  .summary-rating-img img {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   UPSELL / OTO PAGE  —  folded in from upsell.css
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   Upsell / OTO page  —  The Fearless Impromptu Speaker Masterclass
   Extends styles.css (brand ramp, Raleway+Poppins, light/dark tokens)
   and shares vocabulary with checkout.css.
   Build order: styles.css → upsell.css
   ═══════════════════════════════════════════════════════════════ */

:root {
  --oto-card-radius: 18px;
  --icon-check-circle:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

/* ── back-button WARNING banner ─────────────────────────────── */
.oto-warning {
  background: var(--primary-950);
  color: var(--on-primary);
  text-align: center;
  padding: 14px var(--gutter);
}

[data-theme="dark"] .oto-warning {
  background: var(--bg-card);
  border-bottom: 1px solid var(--rule);
}

.oto-warning .line1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 800 13px Poppins, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary-400);
  text-wrap: balance;
}

.oto-warning .line2 {
  margin-top: 6px;
  font: 500 13.5px/1.5 Poppins, sans-serif;
  color: oklch(0.82 0.04 260);
  text-wrap: pretty;
}

[data-theme="dark"] .oto-warning .line2 {
  color: var(--ink-soft);
}

.oto-warning .line2 b {
  color: var(--on-primary);
  font-weight: 700;
}

[data-theme="dark"] .oto-warning .line2 b {
  color: var(--ink);
}

/* ── HERO ───────────────────────────────────────────────────── */
.oto-hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.oto-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .4;
}

[data-theme="dark"] .oto-hero::before {
  opacity: .16;
}

.oto-hero .wrap {
  position: relative;
}

.oto-gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font: 800 13px Poppins, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

[data-theme="dark"] .oto-gift-badge {
  background: color-mix(in oklab, var(--accent) 18%, var(--bg-card));
}

.oto-hero h1 {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  margin: 0 auto;
  max-width: 20ch;
  color: var(--ink);
}

.oto-hero h1 .accent {
  color: var(--accent);
}

.oto-hero .subhead {
  margin: var(--space-md) auto 0;
  max-width: 60ch;
  font: 500 clamp(17px, 1.7vw, 20px)/1.5 Poppins, sans-serif;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.oto-hero .subhead b {
  color: var(--ink);
  font-weight: 700;
}

.oto-hero .subhead .strike {
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.oto-hero .subhead .price {
  color: var(--accent);
  font-weight: 800;
}

/* product visual band */
.oto-hero-visual {
  margin: var(--space-xl) auto 0;
  max-width: 720px;
  border-radius: var(--oto-card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  position: relative;
}

.oto-hero-visual .placeholder {
  text-align: center;
  color: var(--ink-mute);
  font: 600 12px Poppins, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oto-hero-visual .placeholder .ph-title {
  display: block;
  margin-top: 12px;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── CTA BLOCK (repeated several times) ─────────────────────── */
.oto-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: var(--space-xl) auto 0;
  max-width: 640px;
}

.oto-cta .btn-yes {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  min-height: 72px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 10px;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 28px -10px oklch(0.590 0.204 42 / 55%);
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
  text-wrap: balance;
}

.oto-cta .btn-yes:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -10px oklch(0.590 0.204 42 / 65%);
}

.oto-cta .btn-yes:active {
  transform: translateY(0);
}

.oto-cta .btn-yes .arrow {
  flex-shrink: 0;
  font-size: 1.1em;
  transform: translateY(1px);
}

.oto-cta .add-note {
  font: 600 12.5px Poppins, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.oto-cta .btn-no {
  display: inline-block;
  max-width: 60ch;
  margin-top: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  font: 400 14px/1.5 Poppins, sans-serif;
  font-style: italic;
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--rule);
  text-align: center;
  transition: color .15s ease;
  text-wrap: pretty;
}

.oto-cta .btn-no:hover {
  color: var(--ink-mute);
}

/* ── SECTION SHELL ─────────────────────────────────────────── */
.oto-section {
  padding: var(--section-v) 0;
}

.oto-section.alt {
  background: var(--bg-soft);
}

.oto-section-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.oto-section-head .eyebrow {
  display: block;
  font: 700 11px Poppins, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.oto-section-head h2 {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}

.oto-section-head h2 .accent {
  color: var(--accent);
}

.oto-section-head .sub {
  margin: var(--space-md) auto 0;
  max-width: 64ch;
  font-size: 17px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ── MODULE / BONUS LIST (the breakdown) ───────────────────── */
.oto-breakdown {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oto-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}

.oto-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 560px) {
  .oto-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

.oto-item .marker {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1;
}

[data-theme="dark"] .oto-item .marker {
  background: color-mix(in oklab, var(--accent) 18%, var(--bg-card));
  color: var(--secondary-300);
}

.oto-item .marker.bonus {
  font-size: 12px;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-direction: column;
  padding: 6px;
}

.oto-item .marker.bonus .b-num {
  font-family: Raleway, sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.oto-item .body .item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.oto-item .body h3 {
  font-family: Raleway, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}

.oto-item .body .runtime {
  flex-shrink: 0;
  font: 700 11px Poppins, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.oto-item .body p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* total value strip */
.oto-total-value {
  max-width: var(--container-narrow);
  margin: var(--space-lg) auto 0;
  background: var(--primary-950);
  color: var(--on-primary);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .oto-total-value {
  background: var(--bg-card);
  border: 1px solid var(--accent);
}

.oto-total-value::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -20%, oklch(0.590 0.204 42 / 25%), transparent 55%);
  pointer-events: none;
}

.oto-total-value > * {
  position: relative;
}

.oto-total-value .tv-label {
  font: 800 12px Poppins, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary-400);
}

.oto-total-value .tv-was {
  margin-top: 8px;
  font: 500 15px Poppins, sans-serif;
  color: oklch(0.78 0.04 260);
}

[data-theme="dark"] .oto-total-value .tv-was {
  color: var(--ink-faint);
}

.oto-total-value .tv-was s {
  text-decoration-thickness: 2px;
}

.oto-total-value .tv-amount {
  margin-top: 4px;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--on-primary);
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}

[data-theme="dark"] .oto-total-value .tv-amount {
  color: var(--ink);
}

.oto-total-value .tv-amount .cur {
  font-size: 0.42em;
  padding-top: 0.4em;
  color: var(--secondary-400);
}

.oto-total-value .tv-note {
  margin-top: 8px;
  font: 600 11px Poppins, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.78 0.04 260);
}

[data-theme="dark"] .oto-total-value .tv-note {
  color: var(--ink-mute);
}

/* ── TESTIMONIAL PLACEHOLDER ───────────────────────────────── */
.oto-testimonials-ph {
  max-width: var(--container-narrow);
  margin: 0 auto;
  border: 2px dashed var(--rule);
  border-radius: 16px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: var(--ink-mute);
  background: var(--bg-card);
}

.oto-testimonials-ph .ph-eyebrow {
  font: 700 11px Poppins, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.oto-testimonials-ph .ph-text {
  margin-top: 12px;
  font-family: Raleway, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ── GUARANTEE ─────────────────────────────────────────────── */
.oto-guarantee-card {
  max-width: var(--container-narrow);
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--oto-card-radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 700px) {
  .oto-guarantee-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.oto-seal {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px dashed var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, var(--bg-card));
  display: grid;
  place-items: center;
  text-align: center;
}

[data-theme="dark"] .oto-seal {
  background: color-mix(in oklab, var(--accent) 16%, var(--bg-card));
}

.oto-seal .seal-num {
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.oto-seal .seal-sub {
  display: block;
  margin-top: 8px;
  font: 800 11px Poppins, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.oto-guarantee-body h3 {
  font-family: Raleway, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-transform: uppercase;
  text-wrap: balance;
}

.oto-guarantee-body p {
  margin-top: var(--space-sm);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.oto-guarantee-body p + p {
  margin-top: 12px;
}

.oto-guarantee-body p b {
  color: var(--ink);
  font-weight: 700;
}

/* ── WHAT IS IT (narrative) ────────────────────────────────── */
.oto-narrative {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.oto-narrative p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.oto-narrative p + p {
  margin-top: var(--space-md);
}

.oto-narrative p b {
  color: var(--ink);
  font-weight: 700;
}

.oto-narrative .lead {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.oto-narrative .lead .accent {
  color: var(--accent);
}

.oto-skiplist {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oto-skiplist li {
  position: relative;
  padding: 16px 18px 16px 52px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.oto-skiplist li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  background-color: var(--accent);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.oto-skiplist li b {
  color: var(--ink);
  font-weight: 700;
}

.oto-narrative .closer {
  margin-top: var(--space-lg);
  font-family: Raleway, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}

.oto-narrative .closer .accent {
  color: var(--accent);
}

/* ── FAQ (reuse checkout faq look) ─────────────────────────── */
.oto-faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oto-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.oto-faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 22px -10px color-mix(in oklab, var(--accent) 40%, transparent);
}

.oto-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px clamp(20px, 3vw, 28px);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.35;
  letter-spacing: -0.008em;
  color: var(--ink);
  text-wrap: balance;
  transition: color .15s ease;
}

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

.oto-faq-item summary:hover {
  color: var(--accent);
}

.oto-faq-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  position: relative;
  transition: background .2s ease, color .2s ease;
}

.oto-faq-item .icon::before,
.oto-faq-item .icon::after {
  content: "";
  position: absolute;
  background: currentcolor;
  border-radius: 2px;
  transition: transform .25s ease;
}

.oto-faq-item .icon::before {
  width: 12px;
  height: 2px;
}

.oto-faq-item .icon::after {
  width: 2px;
  height: 12px;
}

.oto-faq-item[open] .icon {
  background: var(--accent);
  color: var(--on-accent);
}

.oto-faq-item[open] .icon::after {
  transform: scaleY(0);
}

.oto-faq-item .answer {
  padding: 0 clamp(20px, 3vw, 28px) 22px;
  margin-left: 52px;
  font: 400 15.5px/1.65 Poppins, sans-serif;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.oto-faq-item .answer p {
  margin: 0;
}

@media (max-width: 600px) {
  .oto-faq-item .answer {
    margin-left: 0;
  }
}

/* entrance */
.oto-item,
.oto-guarantee-card,
.oto-total-value {
  animation: oto-fade-up .6s var(--ease-out-expo, ease) both;
}

@keyframes oto-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .oto-item,
  .oto-guarantee-card,
  .oto-total-value {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DOWNSELL MODAL  —  fires when the user clicks any "No thanks" link
   on the upsell page. Reframes the $97 offer as a $47 no-brainer.
   ═══════════════════════════════════════════════════════════════ */
.ds-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  overflow-y: auto;
  background: oklch(0.18 0.05 266 / 55%);
  backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease-out-expo), visibility .3s;
}

.ds-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.ds-locked {
  overflow: hidden;
}

.ds-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: auto;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--oto-card-radius, 18px);
  box-shadow: 0 40px 90px -30px oklch(0.18 0.05 266 / 60%), var(--shadow-lg);
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform .42s var(--ease-out-expo), opacity .42s var(--ease-out-expo);
}

.ds-overlay.is-open .ds-modal {
  transform: none;
  opacity: 1;
}

/* accent crown band */
.ds-modal-top {
  background: var(--primary-950);
  color: var(--on-primary);
  padding: clamp(22px, 3vw, 32px) clamp(22px, 4vw, 40px) clamp(20px, 3vw, 28px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .ds-modal-top {
  background: color-mix(in oklab, var(--accent) 14%, var(--bg-soft));
}

.ds-modal-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -30%, oklch(0.590 0.204 42 / 40%), transparent 60%);
  pointer-events: none;
}

.ds-eyebrow {
  position: relative;
  font: 600 13.5px/1.5 Poppins, sans-serif;
  font-style: italic;
  color: oklch(0.85 0.04 260);
  margin-bottom: 14px;
  text-wrap: pretty;
}

[data-theme="dark"] .ds-eyebrow {
  color: var(--ink-soft);
}

.ds-headline {
  position: relative;
  font-family: Raleway, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--on-primary);
  text-wrap: balance;
}

[data-theme="dark"] .ds-headline {
  color: var(--ink);
}

.ds-headline .accent {
  color: var(--secondary-400);
}

.ds-headline .price {
  color: var(--secondary-400);
}

/* close button */
.ds-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid oklch(1 0 0 / 20%);
  background: oklch(1 0 0 / 8%);
  color: var(--on-primary);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}

.ds-close:hover {
  background: oklch(1 0 0 / 18%);
  transform: rotate(90deg);
}

[data-theme="dark"] .ds-close {
  color: var(--ink);
  border-color: var(--rule);
  background: var(--bg-card);
}

.ds-close svg {
  width: 18px;
  height: 18px;
}

/* body */
.ds-body {
  padding: clamp(22px, 3.5vw, 36px) clamp(22px, 4vw, 40px) clamp(24px, 4vw, 36px);
}

.ds-intro {
  font: 600 15px/1.55 Poppins, sans-serif;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: var(--space-md);
  text-wrap: pretty;
}

.ds-intro b {
  color: var(--ink);
  font-weight: 700;
}

.ds-intro s {
  color: var(--ink-faint);
  text-decoration-thickness: 2px;
  font-weight: 600;
}

.ds-list {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-list li {
  position: relative;
  padding: 13px 16px 13px 46px;
  background: var(--bg-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 11px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.ds-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  mask-image: var(--icon-check-circle);
  mask-size: contain;
  mask-repeat: no-repeat;
}

.ds-list li b {
  color: var(--ink);
  font-weight: 700;
}

.ds-list li .skip {
  font-style: italic;
}

.ds-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
  font: 700 12px Poppins, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}

.ds-guarantee::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: currentcolor;
  mask-image: var(--icon-shield, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"));
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* the modal reuses .oto-cta for the YES button + decline link */
.ds-body .oto-cta {
  margin-top: 0;
}

/* downsell price chip in the YES button context */
.ds-pricetag {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  font-family: Raleway, sans-serif;
}

.ds-pricetag .was {
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.ds-pricetag .now {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.ds-pricetag .now .cur {
  font-size: 0.45em;
  vertical-align: super;
}

@media (prefers-reduced-motion: reduce) {

  .ds-overlay,
  .ds-modal {
    transition: opacity .2s linear;
  }

  .ds-modal {
    transform: none;
  }

  .ds-close:hover {
    transform: none;
  }
}

/* ================================================================
   404 error page — standalone, single-viewport
================================================================ */

.page-404 {
  overflow: hidden;
}

/* ── Background blobs ─────────────────────────────────────────── */

.blob {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.blob-1 {
  width: clamp(280px, 38vw, 520px);
  height: clamp(280px, 38vw, 520px);
  background: oklch(82% 0.14 50);
  top: -12%;
  left: -10%;
  animation: blob-drift-1 22s ease-in-out infinite alternate;
}

.blob-2 {
  width: clamp(240px, 32vw, 440px);
  height: clamp(240px, 32vw, 440px);
  background: oklch(75% 0.12 262);
  bottom: -10%;
  right: -8%;
  animation: blob-drift-2 26s ease-in-out infinite alternate;
  animation-delay: -13s;
}

.blob-3 {
  width: clamp(180px, 24vw, 340px);
  height: clamp(180px, 24vw, 340px);
  background: oklch(86% 0.03 235);
  border-radius: 38% 62% 58% 42% / 44% 40% 60% 56%;
  filter: blur(56px);
  bottom: 8%;
  left: 5%;
  animation: blob-drift-3 19s ease-in-out infinite alternate;
  animation-delay: -7s;
}

[data-theme="light"] .blob-1 {
  opacity: 0.35;
}

[data-theme="light"] .blob-2 {
  opacity: 0.26;
}

[data-theme="light"] .blob-3 {
  opacity: 0.52;
}

[data-theme="dark"] .blob-1 {
  background: oklch(62% 0.22 46);
  opacity: 0.14;
}

[data-theme="dark"] .blob-2 {
  background: oklch(56% 0.20 258);
  opacity: 0.12;
}

[data-theme="dark"] .blob-3 {
  background: oklch(52% 0.08 240);
  opacity: 0.16;
}

@keyframes blob-drift-1 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-18px, 20px) scale(1.04);
  }
}

@keyframes blob-drift-2 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(16px, -22px) scale(0.97);
  }
}

@keyframes blob-drift-3 {
  from {
    transform: translate(0, 0) rotate(0deg);
  }

  to {
    transform: translate(14px, -16px) rotate(9deg);
  }
}

/* ── Layout ───────────────────────────────────────────────────── */

.error-root {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 48px 24px;
}

.error-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

/* ── 404 numeral ──────────────────────────────────────────────── */

.error-code {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(140px, 20vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin: 0;
  -webkit-touch-callout: none;
  user-select: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .error-code:hover {
    transform: scale(1.03);
  }
}

/* ── Accent divider ───────────────────────────────────────────── */

.error-divider {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin: 28px 0;
  transform-origin: center;
}

/* ── Text ─────────────────────────────────────────────────────── */

.error-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}

.error-body {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.72;
  color: var(--ink-mute);
  margin: 0 0 40px;
  max-width: 46ch;
}

/* ── CTAs ─────────────────────────────────────────────────────── */

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.error-contact {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--ink-mute);
  text-decoration: underline;
  text-decoration-color: color-mix(in oklch, var(--ink-mute), transparent 55%);
  text-underline-offset: 3px;
  position: relative;
  padding: 8px 4px 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.error-contact:hover {
  color: var(--ink);
  text-decoration-color: color-mix(in oklch, var(--ink), transparent 40%);
}

.error-contact:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── Entrance animations ───────────────────────────────────────── */
/* Uses the shared hero-enter system (hero-rise keyframe + --he-delay).
   prefers-reduced-motion is already handled globally for .hero-enter. */

@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }

  .error-code:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .error-root {
    padding: 40px 20px;
  }

  .error-code {
    /* 140px minimum is too tall for narrow viewports — scale it down */
    font-size: clamp(96px, 28vw, 140px);
  }

  .error-actions .btn {
    /* Full-width primary CTA on mobile for easier tapping */
    align-self: stretch;
    text-align: center;
  }
}

@media (orientation: landscape) and (max-height: 500px) {

  /* Mobile landscape: compress the vertical stack to fit without scrolling */
  .error-root {
    padding: 20px 48px;
  }

  .error-code {
    font-size: clamp(52px, 13vh, 88px);
    line-height: 1;
  }

  .error-divider {
    margin: 12px 0;
  }

  .error-heading {
    margin-bottom: 8px;
  }

  .error-body {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}