/* Self-hosted variable-font subsets (latin) — font-display:swap */
@font-face{font-family:'Sora';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/sora.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Sora';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/sora.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Sora';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/sora.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Sora';font-style:normal;font-weight:800;font-display:swap;src:url('/fonts/sora.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/inter.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/fonts/inter.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/inter.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Lora';font-style:italic;font-weight:400;font-display:swap;src:url('/fonts/lora-italic.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:'Lora';font-style:italic;font-weight:500;font-display:swap;src:url('/fonts/lora-italic.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
:root {
  --black: #050505;
  --charcoal: #171412;
  --charcoal-2: #1f1b18;
  --soft-white: #F5F4F0;
  --pure-white: #FFFFFF;
  --gold: #F0B020;
  --gold-bright: #F7D66C;
  --ember: #D87308;
  --bronze: #4A2105;
  --parchment: #F3E6D0;
  --parchment-deep: #ead8b8;
  --taupe: #B99462;
  --teal: #1E5C58;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Lora", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--soft-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection { background: var(--gold); color: var(--black); }

/* ---------- Layout ---------- */

.shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  .hero { padding: 28px 0 72px; }
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240,176,32,0.08);
  padding-top: env(safe-area-inset-top, 0px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.72);
}

.nav-links a:hover { color: var(--gold-bright); }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1px solid rgba(240,176,32,0.42);
  border-radius: 999px;
  color: var(--gold-bright);
  transition: all .2s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 22%, rgba(240,176,32,0.22), rgba(216,115,8,0.08) 38%, transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(74,33,5,0.55), transparent 60%);
  z-index: -1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.94  0 0 0 0 0.69  0 0 0 0 0.13  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.eyebrow-sub {
  color: var(--gold);
  opacity: 0.85;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--soft-white);
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,244,240,0.72);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.hero-sub strong { color: var(--soft-white); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #F7D66C 0%, #F0B020 60%, #D87308 100%);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 999px;
  box-shadow:
    0 18px 50px -20px rgba(240,176,32,0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 22px 55px -18px rgba(240,176,32,0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-primary .play-dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary .play-dot svg { width: 9px; height: 9px; fill: var(--gold-bright); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 22px;
  border-radius: 999px;
  border: 1px solid rgba(245,244,240,0.18);
  transition: border-color .2s ease, color .2s ease;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.hero-bullets {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(245,244,240,0.65);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.hero-bullets span {
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-bullets .dot {
  width: 5px; height: 5px; border-radius: 999px; background: var(--gold);
  box-shadow: 0 0 10px rgba(240,176,32,0.6);
}

/* Hero visual — flame card */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 88%, rgba(216,115,8,0.85), transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(240,176,32,0.7), transparent 55%),
    linear-gradient(180deg, #0a0805 0%, #1a0e05 55%, #2a1407 100%);
  border: 1px solid rgba(240,176,32,0.18);
  box-shadow: 0 60px 120px -40px rgba(240,176,32,0.35), 0 0 0 1px rgba(240,176,32,0.06) inset;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.85  0 0 0 0 0.4  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  color: var(--soft-white);
}

.hero-flame {
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  filter: drop-shadow(0 0 40px rgba(247,214,108,0.6)) drop-shadow(0 0 80px rgba(216,115,8,0.55));
  animation: flicker 3.6s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  40% { transform: translateX(-50%) scale(1.02); opacity: 0.96; }
  70% { transform: translateX(-50%) scale(0.99); opacity: 0.98; }
}

.hero-quote {
  position: absolute;
  bottom: 32px;
  left: 36px;
  right: 36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245,244,240,0.8);
  text-align: center;
  letter-spacing: 0.01em;
}
.hero-quote::before, .hero-quote::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(240,176,32,0.5);
  margin: 12px auto;
}

.hero-card-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  justify-content: space-between;
}
.hero-card-label .pulse {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-card-label .pulse::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--ember);
  box-shadow: 0 0 0 0 rgba(216,115,8,0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216,115,8,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(216,115,8,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,115,8,0); }
}

/* ---------- Publisher marquee ---------- */

.pubs {
  padding: 50px 0 54px;
  background: var(--parchment);
  border-top: 1px solid rgba(74,33,5,0.10);
  border-bottom: 1px solid rgba(74,33,5,0.10);
}
.pubs-head {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.72;
  margin: 0 0 36px;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.pub {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-right: 76px;
}
.pub-logo {
  max-height: 50px;
  max-width: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity .25s ease;
}
.pub:hover .pub-logo { opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Step header ---------- */

.step-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 56px;
}
.step-lede {
  max-width: 560px;
  margin: 22px auto 18px;
  color: rgba(245,244,240,0.62);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Section ---------- */

.section {
  padding: 110px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--soft-white);
  max-width: 720px;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold-bright);
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-kicker::before {
  content: ""; width: 24px; height: 1px; background: var(--gold);
}

.section-lede {
  max-width: 380px;
  color: rgba(245,244,240,0.62);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Voice cards ---------- */

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .voice-grid { grid-template-columns: 1fr; } }

.voice {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(245,244,240,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.voice:hover {
  transform: translateY(-3px);
  border-color: rgba(240,176,32,0.4);
  box-shadow: 0 30px 60px -28px rgba(240,176,32,0.3);
}

.voice-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #2a1d10 0%, #3a2814 60%, #1a1108 100%);
  overflow: hidden;
}
.voice-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,5,5,0.7) 100%);
}
.voice-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.voice-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 88px;
  font-weight: 500;
  color: rgba(247,214,108,0.32);
  letter-spacing: -0.04em;
}
.voice-placeholder-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.4);
  padding: 4px 8px;
  border: 1px dashed rgba(245,244,240,0.22);
  border-radius: 4px;
  background: rgba(5,5,5,0.55);
  z-index: 2;
}
.voice-archetype-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 6px 10px;
  background: rgba(5,5,5,0.55);
  border: 1px solid rgba(240,176,32,0.32);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.voice-body {
  padding: 22px 22px 24px;
}
.voice-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--soft-white);
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.voice-name .loc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.4);
}
.voice-tags {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245,244,240,0.55);
  margin-bottom: 18px;
  font-style: italic;
}

.voice-player {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(5,5,5,0.55);
  border: 1px solid rgba(245,244,240,0.06);
  border-radius: 999px;
}
.voice-play-btn {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F7D66C, #F0B020 60%, #D87308);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: transform .15s ease;
}
.voice-play-btn:hover { transform: scale(1.06); }
.voice-play-btn svg { width: 11px; height: 11px; }
.voice-wave {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
  height: 26px;
  overflow: hidden;
}
.voice-wave i {
  display: block;
  width: 2px;
  flex: 0 0 2px;
  background: var(--taupe);
  border-radius: 2px;
  transition: background .2s ease, height .2s ease;
}
.voice-wave i.played {
  background: var(--gold);
}
.voice.playing .voice-wave i {
  background: var(--gold);
  animation: wave 1s ease-in-out infinite;
}
.voice-time {
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: rgba(245,244,240,0.5);
  letter-spacing: 0.06em;
  padding-right: 6px;
  flex: 0 0 auto;
}
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ---------- Scripture moment ---------- */

.scripture {
  background: var(--parchment);
  color: var(--charcoal);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.scripture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(240,176,32,0.12), transparent 70%);
}
.scripture-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.scripture-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 96px;
  line-height: 0;
  color: var(--gold);
  display: block;
  margin-bottom: 30px;
  margin-top: 30px;
}
.scripture-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.scripture-cite {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ---------- Form ---------- */

.form-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240,176,32,0.06), transparent 60%),
    var(--black);
  padding: 48px 0 56px;
}

.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.form-card {
  margin-top: 56px;
  background: var(--charcoal);
  border: 1px solid rgba(245,244,240,0.07);
  border-radius: 24px;
  padding: 48px 52px 44px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}
@media (max-width: 640px) {
  .form-card { padding: 32px 24px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.6);
}
.field input, .field textarea, .field select {
  background: rgba(5,5,5,0.55);
  border: 1px solid rgba(245,244,240,0.1);
  color: var(--soft-white);
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(5,5,5,0.75);
}
.field textarea { min-height: 130px; resize: vertical; font-family: var(--font-body); }

.checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 720px) { .checks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .checks { grid-template-columns: 1fr; } }

.voice-select-group { margin-top: 8px; }
.voice-select-group + .voice-select-group { margin-top: 22px; }
.voice-select-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(245,244,240,0.1);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(245,244,240,0.78);
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}
.check:hover { border-color: rgba(240,176,32,0.35); }
.check.on { border-color: var(--gold); background: rgba(240,176,32,0.06); color: var(--soft-white); }
.check .box {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(245,244,240,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.check.on .box { border-color: var(--gold); }
.check.on .box::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-top: 28px; flex-wrap: wrap;
}
.form-fineprint {
  font-size: 12px;
  color: rgba(245,244,240,0.45);
  max-width: 380px;
  line-height: 1.5;
}

/* ---------- FAQ ---------- */

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

.faq-item {
  border-top: 1px solid rgba(245,244,240,0.08);
}
.faq-item:last-child { border-bottom: 1px solid rgba(245,244,240,0.08); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--soft-white);
  text-align: left;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--gold-bright); }
.faq-q .icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(240,176,32,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-left: 24px;
  transition: transform .25s ease, background .25s ease;
}
.faq-item.open .faq-q .icon { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: rgba(245,244,240,0.68);
  font-size: 15px;
  line-height: 1.65;
  max-width: 720px;
}
.faq-item.open .faq-a {
  max-height: 480px;
  padding: 0 4px 28px;
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  text-align: center;
  padding: 96px 0 104px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(240,176,32,0.10), transparent 62%),
    var(--black);
  border-top: 1px solid rgba(240,176,32,0.10);
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  color: var(--soft-white);
}
.final-cta-title em {
  font-style: normal;
  color: var(--gold);
}
.final-cta-sub {
  max-width: 480px;
  margin: 20px auto 0;
  color: rgba(245,244,240,0.62);
  font-size: 16px;
  line-height: 1.6;
}
.final-cta-btn {
  margin-top: 34px;
}

/* offset anchor jumps so the sticky nav doesn't cover the form */
#sample {
  scroll-margin-top: 84px;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--charcoal);
  padding: 72px 0 56px;
  border-top: 1px solid rgba(245,244,240,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.footer-logo { width: 220px; height: auto; display: block; }
.footer-email {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
  transition: color .2s ease;
}
.footer-email:hover { color: var(--soft-white); }
.footer-copy {
  font-size: 12.5px;
  color: rgba(245,244,240,0.4);
  letter-spacing: 0.02em;
  margin: 0;
}

/* ---------- Production additions (form wiring, a11y, spam) ---------- */

/* Honeypot — visually hidden but available to bots; not display:none so it submits */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Optional-field hint on labels */
.field label .opt {
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,244,240,0.35);
  text-transform: none;
  margin-left: 6px;
}

/* Keyboard focus ring for the narrator radio chips + inputs */
.check:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(240,176,32,0.45);
}
.faq-q:focus-visible,
.voice-play-btn:focus-visible,
.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* Form status messages */
.form-status {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  border-radius: 10px;
  padding: 13px 16px;
  display: none;
}
.form-status.show { display: block; }
.form-status.error {
  color: #ffd9c2;
  background: rgba(216,115,8,0.12);
  border: 1px solid rgba(216,115,8,0.5);
}
.form-status.success {
  color: var(--gold-bright);
  background: rgba(240,176,32,0.10);
  border: 1px solid rgba(240,176,32,0.4);
}

/* Disabled submit while sending */
.btn-primary[disabled] { opacity: 0.7; cursor: default; transform: none; }

/* Native invalid-field cue (kept subtle / on-brand) */
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(216,115,8,0.7);
}

/* Narrator selector as a real, keyboard-operable radio group (no JS needed for state) */
.check input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.check:has(input:checked) {
  border-color: var(--gold);
  background: rgba(240,176,32,0.06);
  color: var(--soft-white);
}
.check:has(input:checked) .box { border-color: var(--gold); }
.check:has(input:checked) .box::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.check:has(input:focus-visible) {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(240,176,32,0.45);
}

/* ---------- Wordmark (ported from logo.jsx inline styles) ---------- */
.wordmark { display: inline-flex; align-items: center; gap: 13px; }
.wordmark img { height: 40px; width: auto; display: block; }
.wordmark-text { display: flex; flex-direction: column; line-height: 1; }
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--soft-white);
}
.wordmark-sub {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 4px;
}

/* ---------- Footer legal links ---------- */
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245,244,240,0.5);
}
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-bright); }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0 96px;
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--soft-white);
}
.legal .legal-updated {
  color: rgba(245,244,240,0.45);
  font-size: 13px;
  margin: 0 0 40px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--soft-white);
  margin: 40px 0 12px;
}
.legal p, .legal li {
  color: rgba(245,244,240,0.72);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal .back {
  display: inline-block;
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
