/* ============================================================
   Vocal Infusion — funnel styles
   Clinical / diagnostic, not vocal-guru-glossy.
   Palette: deep slate ink + clinical teal + warm clay.
   Matches pdf/book.css. Cinematic, conversion-driven scroll.
   ============================================================ */

:root {
  --slate-900: #14202B;
  --slate-800: #1B2C3A;
  --slate-700: #284154;
  --slate-100: #DCE5EB;

  --teal-700: #155E63;
  --teal-600: #1B7A80;
  --teal-100: #CFE4E4;

  --clay-500: #C97B4E;
  --clay-400: #D89066;
  --clay-300: #E3A985;

  --cream-100: #F3EEE6;
  --cream-50:  #FAF7F1;
  --paper:     #FFFFFF;

  --ink:        #14202B;
  --ink-muted:  #5A6470;
  --rule:       #E4DDD0;

  --shadow-card: 0 14px 32px -18px rgba(20, 32, 43, 0.30), 0 2px 6px -2px rgba(20, 32, 43, 0.08);
  --shadow-cta:  0 18px 30px -16px rgba(20, 32, 43, 0.55);

  --maxw:   1080px;
  --narrow: 680px;

  --radius:    14px;
  --radius-lg: 20px;

  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body:    "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-italic:  "Newsreader", Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate-700); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
.container.narrow { max-width: var(--narrow); }
.center { text-align: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.js [data-reveal],
.js [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
  will-change: opacity, transform;
}
.js [data-reveal-group] > * {
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
[data-reveal].is-visible,
[data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.micro-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(201, 123, 78, 0.6);
  text-underline-offset: 3px;
  font-weight: 600;
}
.micro-link:hover { text-decoration-color: rgba(201, 123, 78, 1); }

.story-more { margin-top: 18px; }
.story-more summary {
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 123, 78, 0.6);
  text-underline-offset: 3px;
}
.story-more[open] summary { margin-bottom: 10px; }

/* Glowing CTA */
.btn--glow {
  position: relative;
  overflow: hidden;
  animation: ctaGlow 2.2s ease-in-out infinite;
}
.btn--glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: ctaSheen 3.2s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(201, 123, 78, 0.40); }
  50% { box-shadow: 0 0 38px rgba(201, 123, 78, 0.75); }
}
@keyframes ctaSheen {
  0%, 60% { left: -75%; }
  100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--glow, .btn--glow::after { animation: none; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-900);
}
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--slate-900);
  color: var(--clay-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
}
.brand__name {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
}
.topbar__cta {
  display: inline-block;
  padding: 9px 16px;
  background: var(--slate-900);
  color: var(--clay-400);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.topbar__cta:hover { background: var(--slate-800); text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(27,122,128,0.16), transparent 70%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}
.hero::before { background: var(--teal-100); top: -80px; left: -120px; }
.hero::after  { background: var(--clay-300); bottom: -120px; right: -100px; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero__icp {
  margin: 4px 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 8vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--slate-900);
  max-width: 22ch;
  text-wrap: balance;
}
.hero__icp-mark {
  position: relative;
  display: inline-block;
  color: var(--slate-900);
}
.hero__icp-mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.04em;
  height: 0.30em;
  background: var(--clay-400);
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-6deg);
}
.hero__divider {
  width: 56px;
  height: 3px;
  background: var(--slate-900);
  margin: 8px 0 4px;
  border-radius: 2px;
}
.hero__h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  max-width: 24ch;
  text-wrap: balance;
}
.hero__hl { color: var(--teal-600); }
.hero__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 42ch;
}
.hero__sub em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--slate-700);
}
.hero__wedge {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.45;
  color: var(--teal-700);
  max-width: 46ch;
}
.hero__micro {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.hero__by {
  margin: 18px 0 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-muted);
  max-width: 54ch;
  line-height: 1.55;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius);
  transition: transform 0.08s var(--ease-out), background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
  text-decoration: none;
  letter-spacing: 0.005em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--slate-900);
  color: var(--clay-400);
  padding: 16px 26px;
  font-size: 17px;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--slate-800); }

.btn--teal {
  background: var(--teal-600);
  color: var(--paper);
  padding: 18px 32px;
  font-size: 17px;
  box-shadow: var(--shadow-cta);
}
.btn--teal:hover { background: var(--teal-700); }

.btn--clay {
  background: var(--clay-400);
  color: var(--slate-900);
  padding: 18px 32px;
  font-size: 17px;
  box-shadow: var(--shadow-cta);
  border: 2px solid var(--clay-500);
}
.btn--clay:hover { background: var(--clay-300); }

.btn--large { padding: 18px 30px; font-size: 18px; }
.btn--xlarge {
  padding: 22px 40px;
  font-size: 20px;
  border-radius: 16px;
  min-width: 260px;
}
.btn--full { width: 100%; }

/* ============================================================
   BANDS
   ============================================================ */
.band { padding: 72px 0; background: var(--cream-50); }
.band--cream { background: var(--cream-100); }
.band--slate { background: var(--slate-900); color: var(--paper); }
.band--final {
  background:
    radial-gradient(1200px 400px at 50% 0%, rgba(27,122,128,0.20), transparent 60%),
    var(--slate-900);
  color: var(--paper);
  padding: 88px 0;
}

.section-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.06;
  color: var(--slate-900);
  margin: 0 0 24px;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.section-h--invert { color: var(--paper); }
.invert { color: rgba(255,255,255,0.86); }

.lede { font-size: 20px; }
.emph { font-size: 19px; }

.bullets { margin: 0 0 1.4em; padding-left: 1.2em; }
.bullets li { margin-bottom: 0.5em; }

.pull {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  color: var(--slate-700);
  margin: 26px 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--clay-500);
  text-wrap: balance;
}
.band--slate .pull, .band--final .pull { color: var(--clay-300); }

/* ============================================================
   THE THREE LAYERS
   ============================================================ */
.layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 8px auto 0;
}
.layer {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.layer__num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin: 0 0 6px;
}
.layer__h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--slate-900);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.layer p { margin: 0 0 8px; color: var(--ink-muted); }
.layer p:last-child { margin-bottom: 0; }
.layer--1 { border-top: 4px solid var(--teal-600); }
.layer--2 { border-top: 4px solid var(--clay-500); }
.layer--3 { border-top: 4px solid var(--slate-700); }
.layer__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin: 0 0 10px;
}
.layer__tag--right { background: var(--teal-100); color: var(--teal-700); }
.layer__tag--wrong { background: var(--cream-100); color: var(--clay-500); border: 1px solid var(--clay-300); }

/* ============================================================
   ENEMY / NOT-THIS cards
   ============================================================ */
.enemy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 8px 0 0;
}
.enemy {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.enemy__h {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--paper);
  margin: 0 0 8px;
}
.enemy p { margin: 0; color: rgba(255,255,255,0.78); font-size: 16px; }

.notlist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.notlist li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.notlist li:last-child { border-bottom: 0; }
.notlist li::before {
  content: "\00d7";
  position: absolute;
  left: 0; top: 11px;
  width: 26px; height: 26px;
  background: var(--clay-500);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--rule);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 10px;
  width: 24px; height: 24px;
  background: var(--teal-600);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}

/* ============================================================
   PROOF BLOCK
   ============================================================ */
.proof-primary {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--teal-600);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 8px 0 0;
  box-shadow: var(--shadow-card);
}
.proof-primary__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin: 0 0 10px;
}
.proof-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--slate-900);
  margin: 0 0 10px;
}
.proof-attr { font-size: 15px; color: var(--ink-muted); margin: 0; }

/* ============================================================
   OFFER CARD
   ============================================================ */
.offer {
  max-width: 520px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
}
.offer__features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.offer__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 10px;
}
.offer__features li:last-child { border-bottom: 0; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--teal-600);
  color: var(--paper);
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
  flex: 0 0 22px;
}
.offer__price { margin: 8px 0 24px; }
.offer__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 76px;
  line-height: 1;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  display: inline-block;
}
.offer__terms { display: block; font-size: 14px; color: var(--ink-muted); margin-top: 6px; }
.micro { font-size: 13px; color: var(--ink-muted); }
.micro--invert { color: rgba(255,255,255,0.66); }

/* ============================================================
   INLINE CTA
   ============================================================ */
.inline-cta { text-align: center; margin: 40px auto 0; max-width: 600px; padding: 0 22px; }
.inline-cta--tight { margin-top: 32px; }
.inline-cta .btn { min-width: 280px; }
.inline-cta__micro { margin: 14px 0 0; font-size: 13px; color: var(--ink-muted); letter-spacing: 0.01em; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--slate-900);
  color: var(--paper);
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -14px 30px -14px rgba(20,32,43,0.45);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease-out);
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__row {
  display: flex; align-items: center; gap: 12px;
  max-width: 480px; margin: 0 auto;
}
.mobile-cta__price {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1; padding-left: 4px;
}
.mobile-cta__price strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--clay-400);
  letter-spacing: -0.01em;
}
.mobile-cta__price span {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-cta__btn {
  flex: 1;
  padding: 13px 18px !important;
  font-size: 15px !important;
  border-radius: 12px !important;
  border-width: 0 !important;
  min-width: 0;
}
@media (min-width: 880px) { .mobile-cta { display: none !important; } }

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-block;
  background: var(--clay-400);
  color: var(--slate-900);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-bottom: 1px solid var(--rule); padding: 4px 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 32px 18px 0;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: var(--slate-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 14px;
  font-size: 26px; font-weight: 400;
  color: var(--ink-muted);
  transition: transform 0.15s var(--ease-out);
}
.faq[open] summary::after { content: "\2212"; }
.faq p { margin: 0 0 18px; color: var(--ink-muted); }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  font-family: var(--font-italic);
  font-style: italic;
}

/* ============================================================
   FREE TOOL / QUIZ shared
   ============================================================ */
.tool {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  padding: 56px 0 80px;
}
.tool__card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-card);
}
.tool__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin: 0 0 14px;
}
.tool h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.06;
  color: var(--slate-900);
  margin: 0 0 14px;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.tool__step { display: none; }
.tool__step.is-active { display: block; }
.step-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 10px;
}
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.choice {
  background: var(--cream-50);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--slate-900);
  transition: border-color 0.15s var(--ease-out), background 0.15s var(--ease-out), transform 0.08s var(--ease-out);
}
.choice:hover { border-color: var(--teal-600); background: var(--teal-100); }
.choice:active { transform: translateY(1px); }
.choice small { display: block; font-weight: 500; font-size: 13px; color: var(--ink-muted); margin-top: 6px; }

.qrow { margin: 0 0 8px; }
.qrow__q {
  font-weight: 600;
  font-size: 18px;
  color: var(--slate-900);
  margin: 0 0 12px;
}
.qbtns { display: flex; gap: 12px; }
.qbtn {
  flex: 1;
  padding: 14px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  background: var(--cream-50);
  font-weight: 700;
  font-size: 16px;
  color: var(--slate-900);
  cursor: pointer;
  transition: border-color 0.15s var(--ease-out), background 0.15s var(--ease-out);
}
.qbtn:hover { border-color: var(--teal-600); }
.qbtn.is-picked { border-color: var(--teal-600); background: var(--teal-100); }
.qcard {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 16px;
  background: var(--cream-50);
}

.result-flag {
  display: inline-block;
  background: var(--clay-400);
  color: var(--slate-900);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.fix-box {
  background: var(--cream-100);
  border: 1.5px solid var(--slate-900);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 20px 0;
}
.fix-box ol { margin: 0; padding-left: 20px; }
.fix-box li { margin-bottom: 8px; }
.fix-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--slate-900);
}

.field { margin: 18px 0; text-align: left; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream-50);
}
.field input:focus { outline: none; border-color: var(--teal-600); }

.progress {
  height: 4px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 24px;
}
.progress__bar {
  height: 100%;
  background: var(--teal-600);
  width: 0%;
  transition: width 0.3s var(--ease-out);
}

/* ============================================================
   UPSELL / OTO pages
   ============================================================ */
.confirm-bar {
  background: var(--teal-600);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 22px;
}
.timer-bar {
  background: var(--slate-900);
  color: var(--clay-400);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
}
.timer-bar #countdown { font-family: var(--font-display); font-size: 16px; }

.upsell-offer {
  background: var(--paper);
  border: 2px solid var(--slate-900);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-top: 40px;
  box-shadow: var(--shadow-card);
}
.upsell-offer__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin: 0 0 14px;
}
.price-line { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 6px; }
.price-strike { font-size: 24px; color: var(--ink-muted); text-decoration: line-through; }
.price-main { font-family: var(--font-display); font-size: 52px; color: var(--slate-900); line-height: 1; }
.price-terms { font-size: 15px; color: var(--ink-muted); margin: 0 0 28px; }
.no-thanks {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none; border: 0; width: 100%;
  font-family: var(--font-body);
}
.no-thanks:hover { color: var(--ink); }

.feature-rows { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.feature-rows li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; gap: 12px; align-items: flex-start;
}
.feature-rows li:last-child { border-bottom: 0; }
.feature-rows .check { margin-top: 2px; }

/* ============================================================
   ACCESS / DELIVERY
   ============================================================ */
.access {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  padding: 80px 0;
}
.access__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.access__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal-600);
  color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 700;
  margin-bottom: 22px;
}
.access h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.06;
  color: var(--slate-900);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.access__sub { font-size: 17px; margin-bottom: 26px; color: var(--ink-muted); }
.access__step {
  text-align: left;
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 16px 0;
}
.access__step-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.access__step-num {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--clay-400);
  color: var(--slate-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.access__step h2 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--slate-900);
  margin: 0;
  line-height: 1.2;
  padding-top: 4px;
}
.access__step p { margin-bottom: 12px; color: var(--ink); }
.access__step p:last-child { margin-bottom: 0; }
.access__step .micro { margin-top: 10px; }
.access__steps { text-align: left; padding-left: 20px; margin: 0; }
.access__steps li { margin-bottom: 8px; color: var(--ink); }
.email-preview {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--clay-400);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px 0;
}
.email-preview p { margin: 0 0 10px; color: var(--ink); font-size: 14px; }
.email-preview p:last-child { margin-bottom: 0; }
.email-preview b { font-weight: 500; display: block; overflow-wrap: anywhere; }
.email-preview span {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.oto-section { display: none; }
.oto-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--slate-900);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.oto-card__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin: 0 0 12px;
}
.oto-card h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--slate-900);
  margin: 0 0 14px;
  line-height: 1.1;
}
.oto-card p { color: var(--ink-muted); margin: 0 0 24px; font-size: 15px; line-height: 1.6; }

/* ============================================================
   LEGAL
   ============================================================ */
.legal { background: var(--cream-50); padding: 56px 0 80px; }
.legal__back {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.legal__back:hover { color: var(--slate-900); }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  color: var(--slate-900);
  margin: 0 0 8px;
  letter-spacing: -0.012em;
}
.legal__updated {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 24px);
  color: var(--slate-900);
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
}
.legal p, .legal li { font-size: 16px; line-height: 1.65; color: var(--ink); }
.legal p { margin: 0 0 1em; }
.legal ul, .legal ol { padding-left: 1.2em; margin: 0 0 1.2em; }
.legal li { margin-bottom: 0.4em; }
.legal a { color: var(--slate-700); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--slate-900); }
.legal__crosslinks {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.legal__crosslinks a { color: var(--slate-700); text-decoration: none; }
.legal__crosslinks a:hover { color: var(--slate-900); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate-900); color: rgba(255,255,255,0.7); padding: 28px 0; font-size: 13px; }
.footer__row { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer__links a { color: var(--clay-400); margin: 0 6px; }
.footer p { margin: 0; }

/* ============================================================
   UTILITIES + RESPONSIVE
   ============================================================ */
.br-desktop { display: none; }

@media (min-width: 640px) {
  .br-desktop { display: inline; }
}
@media (min-width: 880px) {
  body { font-size: 19px; }
  .hero { padding: 88px 0 96px; }
  .hero__inner { gap: 22px; }
  .band { padding: 96px 0; }
  .band--final { padding: 112px 0; }
  .enemy-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__row { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1080px) {
  .offer { padding: 44px 40px; }
}
@media (max-width: 600px) {
  .upsell-offer { padding: 28px 20px; }
  .choice-grid { grid-template-columns: 1fr; }
}
