/* Buyer psychology palette: trust (slate/navy), clarity (warm white), action (coral), safety (green), urgency (deep night + gold accent) */
:root {
  --bg: #fafaf9;
  --bg-muted: #f1f5f9;
  --bg-night: #0f172a;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #e2e8f0;
  --trust: #1e3a5f;
  --accent: #ea580c;
  --accent-hover: #c2410c;
  --accent-soft: #fff7ed;
  --gold: #d4a853;
  --safe: #059669;
  --safe-soft: #ecfdf5;
  --danger-soft: #fef2f2;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-heading: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--trust);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.85rem, 6.5vw, 4.35rem);
  margin: 0 0 1.25rem;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

a {
  color: var(--accent);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, var(--narrow));
  margin-inline: auto;
}

.center {
  text-align: center;
}

.subhead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.footnote {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 2rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.micro-trust {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0.75rem 0 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.flex-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.7px;
  color: var(--trust);
  flex: 1;
}

/* Buttons — high-contrast action color (buyer psychology: isolation effect) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn--primary {
  background: linear-gradient(180deg, #fb923c 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #fdba74 0%, var(--accent-hover) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--trust);
  border-color: var(--line);
}

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

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.btn--large {
  padding: 1.1rem 2.25rem;
  font-size: 1.15rem;
  width: 100%;
  max-width: 460px;
  gap: 0.5rem;
  letter-spacing: 0.005em;
}

/* Hero CTA — first button on the page; visually the loudest. */
.btn--xl {
  padding: clamp(1.15rem, 1.6vw, 1.4rem) clamp(1.85rem, 3.2vw, 2.65rem);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  width: auto;
  max-width: none;
  font-weight: 800;
  letter-spacing: 0.005em;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
}

.btn--xl .btn-price {
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 800;
  font-size: 0.95em;
  letter-spacing: 0.01em;
}

.btn--pulse {
  animation: pulse-soft 2.5s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
  }
  50% {
    box-shadow: 0 12px 36px rgba(234, 88, 12, 0.6);
  }
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: inline-flex;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--muted {
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}

.hero {
  min-height: min(78vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(234, 88, 12, 0.09), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero__inner {
  width: min(100% - 2rem, 920px);
  margin-inline: auto;
}

.hero__cta {
  margin-top: 2rem;
}

/* Previous list price — larger + distinct from body micro-copy */
.hero__cta .price-was {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(148, 163, 184, 0.85);
  margin-right: 0.35rem;
  vertical-align: middle;
  padding: 0.08em 0.28em;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.95) 0%, rgba(226, 232, 240, 0.65) 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.lead--hero {
  max-width: 42rem;
  margin-inline: auto;
}

.checklist.checklist--hero {
  width: min(100%, 60rem);
  margin: 1.75rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
}

@media (min-width: 720px) {
  .checklist.checklist--hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.checklist.checklist--hero li,
.checklist.checklist--hero li:last-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02), 0 10px 30px -18px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.checklist.checklist--hero li:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 6px 14px -6px rgba(234, 88, 12, 0.22), 0 18px 40px -16px rgba(15, 23, 42, 0.18);
}

.checklist.checklist--hero .ico {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(234, 88, 12, 0.22);
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.checklist.checklist--hero .checklist__copy {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.checklist.checklist--hero .checklist__copy strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-weight: 700;
}

/* Countdown — 7-day urgency */
.countdown-block {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid rgba(234, 88, 12, 0.35);
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.12);
}

.countdown-block--price {
  margin-bottom: 1.5rem;
  text-align: center;
}

.countdown-block__urgent {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-hover);
}

.countdown-block__foot {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.countdown-units {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.countdown-units--compact .cu {
  min-width: 3.5rem;
  padding: 0.45rem 0.35rem;
}

.cu {
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  min-width: 4.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cu__n {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--trust);
  font-variant-numeric: tabular-nums;
}

.cu__l {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.strike-inline {
  text-decoration: line-through;
  color: #94a3b8;
  font-weight: 600;
  margin-right: 0.25rem;
}

.strike-inline--light {
  font-size: 0.85rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}

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

.ico {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Problem — simple contrast: why they lose vs this blueprint */
.problem-simple {
  text-align: center;
}

.problem-simple h2 {
  margin: 0 0 0.85rem;
}

.problem-simple__hook {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
}

.problem-compare {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 700px) {
  .problem-compare {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
}

.problem-compare__col {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.problem-compare__col--lose {
  background: #fafafa;
  border-style: dashed;
  border-color: #cbd5e1;
}

.problem-compare__col--win {
  background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #34d399;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.15);
}

.problem-compare__mood {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #94a3b8;
}

.problem-compare__mood--win {
  color: #047857;
}

.problem-compare__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.problem-compare__col--win .problem-compare__label {
  color: #047857;
}

.problem-compare__kicker {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}

.problem-compare__bullets {
  margin: 0;
  padding-left: 1.15rem;
}

.problem-compare__bullets li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.problem-compare__bullets li:last-child {
  margin-bottom: 0;
}

.callout {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.callout--light {
  background: #fff;
  box-shadow: var(--shadow);
}

/* Mechanism pillars */
.pillars {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  padding-top: 2.25rem;
}

.pillar-card__n {
  position: absolute;
  top: -0.6rem;
  left: 1.35rem;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.pillar-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Qualification */
.two-col {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .qualify .two-col {
    grid-template-columns: 1.22fr 0.78fr;
    align-items: stretch;
  }
}

.panel {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.panel--yes {
  position: relative;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 45%, #ecfdf5 100%);
  border: 3px solid #34d399;
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.25),
    0 16px 48px rgba(16, 185, 129, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: scale(1.02);
  z-index: 1;
}

@media (max-width: 767px) {
  .panel--yes {
    transform: none;
  }
}

.panel--yes h3 {
  font-size: 1.35rem;
  color: #065f46;
  letter-spacing: -0.02em;
}

.panel--no {
  background: #fafafa;
  border: 2px dashed #cbd5e1;
  opacity: 0.88;
  filter: grayscale(0.08);
}

.panel--no h3 {
  font-size: 1rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.panel--no li {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #64748b;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.panel li {
  margin-bottom: 0.5rem;
}

.qualify-outro {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.policy-under-cta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.1rem auto 0;
  max-width: 36rem;
  padding: 0 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  text-align: left;
}

.policy-under-cta__icon {
  flex-shrink: 0;
  margin-top: 0.12em;
  color: var(--trust);
}

.policy-under-cta__icon svg {
  display: block;
}

.policy-under-cta__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
}

/* Deliverables */
.deliver-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .deliver-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.stack-visual {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover {
  position: relative;
  display: inline-block;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  transform: rotate(-1.5deg);
  transform-origin: center bottom;
  transition: transform 0.35s ease;
}

.book-cover:hover {
  transform: rotate(0deg) translateY(-4px);
}

.book-cover__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px 10px 10px 4px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.08),
    0 14px 24px -8px rgba(15, 23, 42, 0.18),
    0 32px 60px -18px rgba(15, 23, 42, 0.32);
}

/* Spine shadow on the left to suggest binding */
.book-cover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.08) 55%,
    transparent 100%
  );
  border-radius: 4px 0 0 4px;
}

/* Page-edge sliver on the right to suggest physical thickness */
.book-cover::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    #d4d4d8 55%,
    #a1a1aa 100%
  );
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 0 rgba(15, 23, 42, 0.18);
}

.deliver-intro {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.stack-caption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

.deliver-list li {
  margin-bottom: 0.65rem;
}

.deliver-plus {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px dashed rgba(234, 88, 12, 0.35);
}

/* Bonuses */
.bonus-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Three bonus cards: full width on tablet (long copy), 3-across on large screens */
@media (min-width: 640px) and (max-width: 899px) {
  .bonus-grid--triple {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .bonus-grid--triple {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  align-items: start;
}

.bonus-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .bonus-card--wide {
    grid-column: span 2;
  }
}

.bonus-card__icon {
  grid-row: span 3;
  font-size: 1.75rem;
  line-height: 1;
}

.bonus-card h3 {
  grid-column: 2;
  margin: 0;
  font-size: 1rem;
}

.bonus-card p {
  grid-column: 2;
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.bonus-card .value-line {
  grid-column: 1 / -1;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
  justify-content: center;
  gap: 1rem;
}

.value-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.strike {
  text-decoration: line-through;
  color: #94a3b8;
  margin-right: 0.35rem;
}

.strike--xl {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #64748b;
  text-decoration-thickness: 3px;
  text-underline-offset: 2px;
}

.strike--mega {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: #475569;
  text-decoration-thickness: 4px;
}

.strike--price-was {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #94a3b8;
}

.strike--tiny {
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 0.35rem;
}

.bundled {
  color: var(--safe);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.bonus-total-banner {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #e2e8f0;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35);
}

.bonus-total-banner__label {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.bonus-total-banner__strike {
  margin: 0.35rem 0 0.75rem;
}

.bonus-total-banner__shout {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: #cbd5e1;
}

.bonus-total-banner__shout strong {
  color: #fff;
}

.bonus-total-banner__shout em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

/* Proof — hierarchy: intro → problem lane (quiet) → win lane (loud) → math hero → scale → footnote */
.proof-intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.proof-intro__deck {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}

.proof-board {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .proof-board {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
    gap: 2rem;
    align-items: start;
  }
}

.proof-lane__label {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.proof-lane__label--accent {
  color: var(--accent-hover);
}

.proof-lane--problem {
  padding: 1.15rem 1.25rem;
  background: var(--bg-muted);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.proof-quote--muted {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.proof-quote--muted p {
  margin: 0;
}

.proof-quote__punch {
  display: block;
  margin-top: 0.45rem;
  font-weight: 800;
  color: var(--ink);
}

.proof-lane--win {
  padding: 1.65rem 1.35rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .proof-lane--win {
    padding: 2rem 1.75rem;
  }
}

.proof-win-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--trust);
}

.proof-win-hook {
  margin: 0 0 1.15rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.proof-funnel {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  border-top: 1px solid var(--line);
}

.proof-funnel__step {
  display: grid;
  grid-template-columns: minmax(4.25rem, auto) 1fr;
  gap: 0.6rem 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}

.proof-funnel__step:last-child {
  border-bottom: none;
}

.proof-funnel__stat {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  line-height: 1.1;
}

.proof-funnel__step--final .proof-funnel__stat {
  font-size: 1.55rem;
  color: var(--trust);
}

.proof-funnel__txt {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.proof-math-block {
  margin: 0.25rem 0 1rem;
  padding: 1.25rem 1rem 1.35rem;
  background: linear-gradient(180deg, var(--accent-soft) 0%, #fff 55%);
  border-radius: 12px;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.proof-math-block__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent-hover);
}

.math-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.math-row--hero {
  gap: 0.75rem 1.15rem;
}

.math-cell {
  text-align: center;
  min-width: 4.75rem;
}

.math-cell--highlight {
  background: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
  min-width: 7rem;
}

.math-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--trust);
}

.math-val--hero {
  font-size: clamp(2rem, 4.5vw, 2.65rem);
  color: var(--accent);
}

.math-cell--highlight .math-val {
  color: var(--accent);
}

.math-cell--highlight .math-val--hero {
  color: var(--accent);
}

.math-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.math-label--hero {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--trust);
}

.math-op {
  font-weight: 800;
  color: #cbd5e1;
  font-size: 1.35rem;
}

.math-row--hero .math-op {
  color: #94a3b8;
}

.math-op--equals {
  font-size: 1.65rem;
}

.proof-scale {
  margin: 0.25rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.proof-note {
  margin: 0.85rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.55;
  color: #64748b;
}

/* Urgency — dark band */
.section--urgency {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1224 0%, #050913 100%);
  color: #cbd5e1;
  border: none;
}

.section--urgency h2 {
  color: #fff;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 36px rgba(212, 168, 83, 0.18);
}

.section--urgency strong {
  color: var(--gold);
  font-weight: 700;
}

/* Decorative background layers */
.urgency__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.urgency__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 25%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 25%, transparent 80%);
  opacity: 0.55;
}

.urgency__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.urgency__bg-glow--gold {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -8%;
  background: rgba(212, 168, 83, 0.4);
}

.urgency__bg-glow--orange {
  width: 520px;
  height: 520px;
  bottom: -200px;
  right: -8%;
  background: rgba(234, 88, 12, 0.35);
}

.urgency__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .urgency__inner {
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

/* Visual column */
.urgency__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
}

.urgency__visual-caption {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Pill */
.urgency__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.14);
  border: 1px solid rgba(234, 88, 12, 0.45);
  color: #fdba74;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urgency__lede {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Convergence cards */
.urgency__copy ul {
  padding-left: 1.2rem;
}

.urgency__copy li {
  margin-bottom: 0.65rem;
}

.convergence-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.convergence-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.convergence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.convergence-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 83, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.convergence-card:hover::before {
  opacity: 1;
}

.convergence-card__num {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(212, 168, 83, 0.28), rgba(212, 168, 83, 0.08));
  border: 1px solid rgba(212, 168, 83, 0.5);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: inset 0 0 12px rgba(212, 168, 83, 0.12);
}

.convergence-card__body p {
  margin: 0;
  line-height: 1.6;
  color: #e2e8f0;
}

/* Kicker */
.urgency-kicker {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 1.15rem 1.35rem 1.15rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.14) 0%, rgba(234, 88, 12, 0.04) 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #e2e8f0;
}

/* Clock */
.clock-face {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 60%),
    linear-gradient(180deg, #1e293b 0%, #0b1224 100%);
  border: 1px solid rgba(212, 168, 83, 0.55);
  box-shadow:
    0 0 0 6px rgba(212, 168, 83, 0.08),
    0 30px 60px -18px rgba(212, 168, 83, 0.4),
    inset 0 0 28px rgba(0, 0, 0, 0.55);
  animation: clock-pulse 3.4s ease-in-out infinite;
}

@keyframes clock-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 6px rgba(212, 168, 83, 0.08),
      0 30px 60px -18px rgba(212, 168, 83, 0.4),
      inset 0 0 28px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(212, 168, 83, 0.14),
      0 30px 70px -10px rgba(212, 168, 83, 0.55),
      inset 0 0 28px rgba(0, 0, 0, 0.55);
  }
}

.clock-tick {
  position: absolute;
  width: 3px;
  height: 11px;
  background: rgba(212, 168, 83, 0.8);
  border-radius: 2px;
  left: 50%;
  top: 8px;
  margin-left: -1.5px;
  transform-origin: 50% 78px;
}

.clock-tick--3 {
  transform: rotate(90deg);
}
.clock-tick--6 {
  transform: rotate(180deg);
}
.clock-tick--9 {
  transform: rotate(270deg);
}

.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  border-radius: 4px;
  transform-origin: bottom center;
  box-shadow: 0 0 14px rgba(212, 168, 83, 0.45);
}

.clock-hand--h {
  width: 5px;
  height: 36px;
  margin-left: -2.5px;
  background: linear-gradient(180deg, var(--gold), #b88a3c);
  transform: rotate(-35deg);
}

.clock-hand--m {
  width: 4px;
  height: 54px;
  margin-left: -2px;
  background: linear-gradient(180deg, #fff, #cbd5e1);
  transform: rotate(55deg);
  animation: clock-tick 30s linear infinite;
}

@keyframes clock-tick {
  from {
    transform: rotate(55deg);
  }
  to {
    transform: rotate(415deg);
  }
}

.clock-pivot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin: -6px 0 0 -6px;
  box-shadow: 0 0 0 3px #0b1224, 0 0 14px rgba(212, 168, 83, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .clock-face,
  .clock-hand--m {
    animation: none;
  }
}

/* Pricing */
.pricing__wrap {
  display: flex;
  justify-content: center;
}

.price-card {
  width: min(100%, 580px);
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  text-align: center;
}

.value-stack-callout {
  margin: 1.25rem 0 1rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
}

.value-stack-callout__line {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.value-stack-callout__big {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--trust);
  margin-left: 0.25rem;
}

.value-stack-callout__detail {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.value-stack-callout__today {
  margin: 0.85rem 0 0;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-hover);
}

.price-row {
  margin: 0.5rem 0 0.25rem;
}

.price-was {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-flash {
  display: inline-block;
  margin: 0.45rem 0 0.55rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: clamp(3.75rem, 11vw, 5rem);
  font-weight: 800;
  margin: 0.15rem 0 0;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}

.price-tag__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
  text-shadow: none;
  align-self: center;
}

.price-tag__suffix {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid rgba(234, 88, 12, 0.25);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  line-height: 1;
  text-shadow: none;
  align-self: center;
}

.price-save {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--safe);
}

.currency {
  font-size: 55%;
  vertical-align: super;
  opacity: 0.85;
}

.btn-price {
  font-weight: 800;
}

.price-inline-was {
  display: inline-block;
  vertical-align: middle;
}

.price-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 1rem 0 1rem;
}

.price-compare {
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-align: left;
}

.price-includes {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-includes li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.price-includes li:last-child {
  border-bottom: none;
}

.checkout-anchor {
  height: 1px;
}

/* FAQ */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  color: var(--trust);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.acc-btn::after {
  content: "＋";
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.acc-btn[aria-expanded="true"]::after {
  content: "−";
}

.acc-btn:hover {
  background: var(--bg-muted);
}

.acc-panel {
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--bg-muted);
}

.acc-panel p {
  margin: 0;
  padding-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.acc-panel[hidden] {
  display: none;
}

/* Final */
.paths {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .paths {
    grid-template-columns: 1fr 1fr;
  }
}

.path {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.path--bad {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  opacity: 0.85;
}

.path--bad h3 {
  color: #64748b;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.path--bad p {
  font-size: 0.88rem;
  color: #94a3b8;
}

.path--good {
  background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 100%);
  border: 3px solid #10b981;
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.2),
    0 14px 40px rgba(16, 185, 129, 0.2);
}

.path--good h3 {
  color: #065f46;
  font-size: 1.2rem;
}

.path--good p {
  color: #047857;
  font-size: 1rem;
  line-height: 1.6;
}

.path h3 {
  margin-top: 0;
}

.path p {
  margin: 0;
}

.final-line {
  text-align: center;
  font-size: 1.15rem;
  margin: 2rem 0 1.5rem;
}

.final-cta {
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 2rem 0 6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.flex-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.flex-footer a {
  color: var(--trust);
  text-decoration: none;
  font-weight: 600;
}

.flex-footer a:hover {
  color: var(--accent);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.1);
  padding: 0.65rem 0;
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-cta__inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink);
}

/* ─────────────────────────────────────────────────────────
   Site footer — main + legal pages share this style
   ───────────────────────────────────────────────────────── */
.site-footer--main {
  padding: 2rem 0 5.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.82rem;
}

.site-footer__links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer__links span {
  color: #cbd5e1;
}

/* Refund line under the buy button */
.policy-refund-note {
  margin: 0.5rem auto 0;
  max-width: 36rem;
  padding: 0 0.25rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
}

.policy-refund-note a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: rgba(71, 85, 105, 0.4);
  text-underline-offset: 2px;
}

.policy-refund-note a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────
   Cookie consent — compact square card (not full-width strip)
   ───────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Subtle dark vignette behind the card; fades with banner when dismissed */
.cookie-banner::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(62vh, 520px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.42) 0%,
    rgba(15, 23, 42, 0.14) 42%,
    rgba(15, 23, 42, 0) 100%
  );
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner .cookie-banner__inner.wrap {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  width: min(100%, 400px);
  max-width: 400px;
  margin: 0;
  padding: 1.35rem 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.cookie-banner__text {
  flex: none;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  text-align: left;
}

.cookie-banner__text a {
  color: var(--accent);
  font-weight: 600;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: 100%;
}

.cookie-banner__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 380px) {
  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────
   Legal pages — shared shell
   ───────────────────────────────────────────────────────── */
.legal-page main {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  text-decoration: none;
  color: var(--trust);
  min-width: 0;
}

.brand-link:hover .brand-name {
  color: var(--accent);
}

.brand-link .brand-name {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
  color: var(--ink);
  line-height: 1.7;
}

.legal-prose h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  margin: 0 0 0.4rem;
  color: var(--trust);
}

.legal-prose .legal-eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-prose .legal-meta {
  margin: 0 0 2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-prose h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.65rem;
  color: var(--trust);
}

.legal-prose p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.legal-prose ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-prose ul li {
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}

.legal-prose strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-prose a:hover {
  color: var(--accent-hover);
}

.legal-prose .legal-callout {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.96rem;
}

.legal-prose .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 2.25rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.legal-prose .legal-back:hover {
  color: var(--accent);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.92rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-table th,
.legal-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-muted);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

/* ─────────────────────────────────────────────────────────
   Stacked-CTA button (used by the final close)
   ───────────────────────────────────────────────────────── */
.btn--cta-stack {
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.75rem;
  line-height: 1.2;
  text-align: center;
  max-width: 520px;
}

.btn-cta__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: normal;
}

.btn-cta__price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--font-heading);
}

.btn-cta__was {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.btn-cta__price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.btn-cta__today {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
}

.countdown-block--final {
  margin: 1.5rem auto 1.75rem;
}

/* ─────────────────────────────────────────────────────────
   ROI calculator (replaces static math in §7)
   ───────────────────────────────────────────────────────── */
.roi-calc {
  margin: 1rem 0 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.roi-calc__header {
  margin-bottom: 1.1rem;
}

.roi-calc__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--trust);
}

.roi-calc__sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.roi-calc__inputs {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.roi-input {
  display: grid;
  gap: 0.4rem;
}

.roi-input__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.roi-input__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.roi-input__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}

.roi-input__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.45);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.roi-input__range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.roi-input__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.45);
  cursor: pointer;
}

.roi-input__val {
  min-width: 4.5rem;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(234, 88, 12, 0.2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-hover);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.roi-calc__result {
  position: relative;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(234, 88, 12, 0.25);
  text-align: center;
}

.roi-calc__result-label {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.roi-calc__result-val {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.roi-calc__result-foot {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.roi-calc__note {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────
   Pricing — $/day mental accounting line
   ───────────────────────────────────────────────────────── */
.price-mental {
  margin: 0.55rem 0 0.25rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-mental strong {
  color: var(--ink);
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────
   Social proof section
   ───────────────────────────────────────────────────────── */
.social-proof__intro {
  max-width: 44rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.social-proof__intro h2 {
  margin: 0 0 0.5rem;
}

.social-proof__intro .lead {
  margin: 0;
}

/* Stats strip */
.proof-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 760px) {
  .proof-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.proof-stat {
  padding: 1.1rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.proof-stat__n {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.1;
  color: var(--trust);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.proof-stat__l {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 760px) {
  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial {
  margin: 0;
  padding: 1.35rem 1.4rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial__quote {
  margin: 0;
  position: relative;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent);
}

.testimonial__quote p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
}

.testimonial__person {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.testimonial__avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial__avatar--m {
  background: linear-gradient(160deg, #1e3a5f 0%, #0f172a 100%);
}

.testimonial__avatar--p {
  background: linear-gradient(160deg, #d4a853 0%, #a17a2a 100%);
}

.testimonial__avatar--d {
  background: linear-gradient(160deg, #059669 0%, #047857 100%);
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonial__name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
}

.testimonial__role {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* Reply screenshot mock */
.reply-screenshot {
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.reply-screenshot__cap,
.reply-screenshot__foot {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
}

.reply-screenshot__cap {
  margin-bottom: 0.7rem;
}

.reply-screenshot__foot {
  margin-top: 0.7rem;
  font-style: italic;
}

.reply-screenshot__frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px -16px rgba(15, 23, 42, 0.18);
}

.reply-screenshot__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.reply-screenshot__from strong {
  color: var(--ink);
  font-weight: 600;
}

.reply-screenshot__body {
  padding: 1.1rem 1.25rem 1.2rem;
}

.reply-screenshot__body p {
  margin: 0 0 0.7rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
}

.reply-screenshot__body p:last-child {
  margin-bottom: 0;
}

.reply-screenshot__sig {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.social-proof__honest {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0.9rem 1.15rem;
  background: var(--bg-muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.55;
  text-align: center;
}

/* Thank-you page */
.thank-you-page .hero.thank-you-hero {
  min-height: auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}

.thank-you-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.thank-you-hero__lead {
  max-width: 36rem;
  margin-inline: auto;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 0;
}

.thank-you-steps h2,
.thank-you-receive h2,
.thank-you-help h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.thank-you-steps .pillar-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}

.thank-you-steps .pillar-card p a {
  font-weight: 600;
}

@media (max-width: 767px) {
  .thank-you-steps__grid.pillars {
    gap: 1.75rem;
  }

  .thank-you-steps .pillar-card {
    padding-top: 2.5rem;
  }
}

.thank-you-receive-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 40rem;
}

.thank-you-receive-list li {
  margin: 0 0 0.65rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.98rem;
  line-height: 1.5;
}

.thank-you-receive-list li:last-child {
  margin-bottom: 0;
}

.thank-you-help {
  text-align: center;
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.thank-you-help p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.thank-you-help a {
  font-weight: 600;
}
