/* ==========================================================================
   The Last Commute — landing page styles
   Visual direction: "First Light" (dawn / escape)
   Standalone stylesheet — deliberately NOT dependent on app.css.
   Palette tokens below; imagery slots (.image-slot) are placeholders for real
   photography (see the shot list handed to the brand owner).
   ========================================================================== */

:root {
  --ink:        #0E1B2A;   /* deep navy — base / dark sections */
  --ink-2:      #16273B;   /* lifted navy — panels on dark      */
  --gold:       #E8A24B;   /* dawn gold — primary accent        */
  --gold-deep:  #D2873A;   /* gold hover                        */
  --canvas:     #F7F3EC;   /* warm white — light sections       */
  --cream-2:    #EFE8DB;   /* secondary warm panel              */
  --text-dark:  #1C2430;   /* text on light                     */
  --muted-dark: #5D6B7A;   /* muted text on light               */
  --text-light: #F7F3EC;   /* text on navy                      */
  --muted-light: rgba(247,243,236,.72);
  --line-dark:  #E4DBC9;   /* hairline on light                 */
  --line-light: rgba(247,243,236,.16);

  --maxw: 1140px;
  --r: 16px;               /* card radius          */
  --shadow: 0 18px 48px rgba(14,27,42,.14);
  --shadow-soft: 0 8px 24px rgba(14,27,42,.08);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--canvas);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; margin: 0; }

p { margin: 0 0 1.1rem; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- shared section rhythm --------------------------------------------- */
.section { padding: 104px 0; }
.section--dark  { background: var(--ink);    color: var(--text-light); }
.section--cream { background: var(--cream-2); }
.section--canvas{ background: var(--canvas); }
.section + .section { border-top: 0; }

.kicker {
  font-family: var(--sans);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.section--dark .kicker { color: var(--gold); }

.section-title { font-size: clamp(2rem, 4vw, 3rem); max-width: 16ch; }
.section--dark .section-title { color: var(--text-light); }

.lead {
  font-size: 1.2rem; color: var(--muted-dark);
  max-width: 60ch; margin-top: 22px;
}
.section--dark .lead { color: var(--muted-light); }

.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .section-title, .center .lead { margin-left: auto; margin-right: auto; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px;
  text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #2a1a06; box-shadow: 0 10px 26px rgba(232,162,75,.34); }
.btn-primary:hover { background: var(--gold-deep); color: #2a1a06; }
.btn-ghost { background: transparent; color: var(--text-light); border-color: var(--line-light); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost--dark { color: var(--text-dark); border-color: var(--line-dark); }
.btn-ghost--dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }

/* ======================================================================== */
/* AUTH (login) — branded to match the landing "First Light" look           */
/* ======================================================================== */
.auth-page {
  min-height: 100vh; display: flex; flex-direction: column;
  background: radial-gradient(1100px 620px at 50% -12%, var(--ink-2), var(--ink) 62%);
  color: var(--text-light);
}
.auth-page .site-header { position: static; }   /* no hero to overlay here */
.auth-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 32px 20px 80px; }
.auth-panel {
  width: 100%; max-width: 430px;
  background: var(--canvas); color: var(--text-dark);
  border-radius: var(--r); padding: 40px 36px; box-shadow: var(--shadow);
}
.auth-panel .kicker { margin-bottom: 12px; }
.auth-panel h1 { font-size: 2rem; }
.auth-sub { color: var(--muted-dark); margin: 6px 0 0; }
.auth-form { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.auth-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--text-dark);
}
.auth-form input {
  font: inherit; font-size: 1rem; padding: 12px 14px;
  border: 1.5px solid var(--line-dark); border-radius: 10px; background: #fff;
}
.auth-form input:focus {
  outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(232,162,75,.25);
}
/* Inline per-field validation message, tucked just under its input. */
.auth-form .field-error { color: #8A2B1B; font-size: .82rem; margin-top: -10px; }
.auth-alt { margin-top: 22px; font-size: .95rem; color: var(--muted-dark); }
.auth-panel a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.auth-panel a:hover { text-decoration: underline; }
.auth-panel .alert { border-radius: 10px; padding: 12px 14px; margin-top: 18px; font-size: .92rem; }
.auth-panel .alert.error { background: #FBEAE7; color: #8A2B1B; }
.auth-panel .alert.ok { background: #E7F3EC; color: #1E5B37; }

/* ======================================================================== */
/* HEADER (sits over the hero)                                              */
/* ======================================================================== */
.site-header {
  position: absolute; inset: 0 0 auto 0; z-index: 20;
  padding: 22px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-light); }
.brand-lockup img { width: 34px; height: 34px; display: block; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: .01em; }
.brand-name b { font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a.nav-link {
  font-size: .95rem; font-weight: 500; text-decoration: none;
  color: var(--muted-light); transition: color .18s ease;
}
.site-nav a.nav-link:hover { color: var(--text-light); }
.site-nav .nav-sep { width: 1px; height: 22px; background: var(--line-light); }

/* ======================================================================== */
/* HERO — the dawn                                                          */
/* ======================================================================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  color: var(--text-light);
  /* Hero photograph ("First Light" — dawn road) with a dark left/edge scrim
     layered over it so the white headline stays legible. */
  background:
    linear-gradient(90deg, rgba(11,22,34,.80) 0%, rgba(11,22,34,.48) 46%, rgba(11,22,34,.12) 76%, rgba(11,22,34,0) 100%),
    linear-gradient(180deg, rgba(11,22,34,.40) 0%, rgba(11,22,34,0) 26%, rgba(11,22,34,0) 64%, rgba(11,22,34,.45) 100%),
    url('../images/hero.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center 38%;
  background-repeat: no-repeat;
}
/* dawn sun glow disabled — the hero photograph now supplies the dawn */
.hero::before { display: none; }
/* thin horizon line */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,224,170,.55), transparent);
}
.hero-inner { position: relative; z-index: 2; padding: 150px 0 120px; max-width: 760px; }
.eyebrow {
  font-size: .82rem; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 26px; display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: .98; letter-spacing: -.02em; margin: 0 0 26px;
}
.hero h1 em { font-style: italic; color: #FFD89B; }
.hero-sub { font-size: clamp(1.12rem, 2.1vw, 1.4rem); color: rgba(247,243,236,.86); max-width: 52ch; margin: 0 0 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note { margin: 26px 0 0; font-size: .92rem; color: rgba(247,243,236,.62); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 30px; z-index: 3;
  transform: translateX(-50%);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247,243,236,.6); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .dot { width: 22px; height: 36px; border: 1.5px solid rgba(247,243,236,.4); border-radius: 12px; position: relative; }
.scroll-cue .dot::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:7px; border-radius:2px; background: var(--gold); transform: translateX(-50%); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%,100%{ opacity:.3; transform: translate(-50%,0);} 50%{ opacity:1; transform: translate(-50%,8px);} }

/* ======================================================================== */
/* AIM section                                                              */
/* ======================================================================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.aim-quote-mark { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: .6; display: block; margin-bottom: 8px; }

/* ======================================================================== */
/* LEAKS                                                                    */
/* ======================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.leak-card {
  background: var(--ink-2); border: 1px solid var(--line-light);
  border-radius: var(--r); padding: 34px 30px;
  transition: transform .2s ease, border-color .2s ease;
}
.leak-card:hover { transform: translateY(-4px); border-color: rgba(232,162,75,.45); }
.leak-amount { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.leak-amount span { font-size: .9rem; color: var(--muted-light); font-family: var(--sans); letter-spacing: .04em; }
.leak-card h3 { font-size: 1.35rem; color: var(--text-light); margin: 14px 0 10px; }
.leak-card p { color: var(--muted-light); font-size: 1rem; margin: 0; }

/* ======================================================================== */
/* PILLARS                                                                  */
/* ======================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 54px; }
.pillar { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r); padding: 36px 32px; box-shadow: var(--shadow-soft); }
.pillar .num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-deep); font-weight: 600; }
.pillar h3 { font-size: 1.5rem; margin: 10px 0 12px; }
.pillar p { color: var(--muted-dark); font-size: 1.02rem; margin: 0; }

/* ======================================================================== */
/* QUOTE / social proof                                                     */
/* ======================================================================== */
.pullquote { max-width: 24ch; }
.pullquote blockquote {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.2; letter-spacing: -.01em; margin: 0; color: var(--text-dark);
}
.pullquote .cite { margin-top: 26px; font-family: var(--sans); font-size: 1rem; color: var(--muted-dark); }
.pullquote .cite b { color: var(--text-dark); }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.tcard { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r); padding: 28px; }
.tcard p { font-size: 1.02rem; color: var(--text-dark); }
.tcard .tph { color: var(--muted-dark); font-style: italic; }
.tcard .tname { font-size: .9rem; color: var(--muted-dark); margin-top: 16px; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }

/* ======================================================================== */
/* IMAGE SLOTS (placeholders for real photography)                          */
/* ======================================================================== */
.image-slot {
  position: relative; border-radius: var(--r); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(14,27,42,0) 30%, rgba(14,27,42,.55) 100%),
    linear-gradient(150deg, #14223A 0%, #3C3357 48%, #C9803F 86%, #E8A24B 100%);
  border: 1px solid var(--line-dark);
}
.image-slot .slot-label {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .04em;
  color: rgba(247,243,236,.92); background: rgba(14,27,42,.5);
  padding: 8px 14px; margin: 16px; border-radius: 8px; border: 1px dashed rgba(247,243,236,.4);
}
.image-slot--tall { min-height: 520px; }
.image-slot--aim {
  background:
    linear-gradient(180deg, rgba(14,27,42,0) 58%, rgba(14,27,42,.34) 100%),
    url('../images/aim-road.jpg');
  background-size: cover;
  background-position: center;
}
.image-slot--proof {
  background:
    linear-gradient(180deg, rgba(14,27,42,0) 60%, rgba(14,27,42,.30) 100%),
    url('../images/proof-morning.jpg');
  background-size: cover;
  background-position: center;
}
/* Circular founder headshot (small square source → crisp when displayed small). */
.founder-portrait {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover;
  display: block; margin: 0 auto 22px;
  border: 3px solid var(--gold); box-shadow: 0 10px 30px rgba(14,27,42,.28);
}

/* ======================================================================== */
/* FINAL CTA BAND                                                           */
/* ======================================================================== */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  color: var(--text-light); padding: 120px 0;
  background: linear-gradient(180deg, #14223A 0%, #3C3357 52%, #B06A3E 88%, #E8A24B 100%);
}
.cta-band::before {
  content:""; position:absolute; left:50%; bottom:-55%; width:120vw; height:120vw; transform:translateX(-50%);
  background: radial-gradient(circle at center, rgba(255,221,150,.55) 0%, rgba(232,162,75,0) 55%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 18px; }
.cta-band p { color: rgba(247,243,236,.85); font-size: 1.15rem; max-width: 46ch; margin: 0 auto 34px; }
.cta-band .micro { margin-top: 22px; font-size: .9rem; color: rgba(247,243,236,.66); }

/* ======================================================================== */
/* FOOTER                                                                   */
/* ======================================================================== */
.site-footer { background: #0A1421; color: var(--muted-light); padding: 64px 0 40px; font-size: .95rem; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--line-light); }
.footer-brand { max-width: 320px; }
.footer-brand .brand-lockup { margin-bottom: 14px; }
.footer-brand p { color: var(--muted-light); font-size: .95rem; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-cols h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer-cols a { display: block; color: var(--muted-light); text-decoration: none; margin-bottom: 10px; transition: color .15s ease; }
.footer-cols a:hover { color: var(--text-light); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.disclaimer { max-width: 70ch; font-size: .82rem; color: rgba(247,243,236,.5); line-height: 1.5; }

/* ======================================================================== */
/* RESPONSIVE                                                               */
/* ======================================================================== */
@media (max-width: 900px) {
  .section { padding: 76px 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .cards, .pillars, .testimonials { grid-template-columns: 1fr; }
  .site-nav .nav-link, .site-nav .nav-sep { display: none; }
  .hero-inner { padding: 130px 0 100px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue .dot::after { animation: none; }
  .btn:hover, .leak-card:hover, .pillar:hover { transform: none; }
}

/* ======================================================================== */
/* CALCULATOR PAGE (public "What's your number?")                           */
/* ======================================================================== */
.calc-hero {
  position: relative; color: var(--text-light); padding: 132px 0 72px;
  background: linear-gradient(180deg, #0B1622 0%, #14223A 46%, #3C3357 80%, #8A5446 100%);
}
.calc-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 16px; }
.calc-hero h1 em { font-style: italic; color: #FFD89B; }
.calc-hero-sub { font-size: 1.12rem; color: rgba(247,243,236,.85); max-width: 54ch; margin: 0; }

.calc-main { padding: 0 0 90px; max-width: 980px; }
.calc-card { margin-top: -44px; position: relative; z-index: 2; }
.calc-card, .calc-result {
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 40px;
}
.calc-result { margin-top: 28px; }
.calc-card-title { font-size: 1.5rem; margin: 0 0 24px; }

.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-label { font-weight: 600; font-size: .95rem; color: var(--text-dark); }
.field-hint { font-size: .82rem; color: var(--muted-dark); }
.field-input { position: relative; display: flex; align-items: center; }
.field-input input, .gate-field input {
  width: 100%; font: inherit; font-size: 1.05rem; color: var(--text-dark);
  padding: 12px 28px; border: 1.5px solid var(--line-dark); border-radius: 10px;
  background: var(--canvas); transition: border-color .15s ease, box-shadow .15s ease;
}
.gate-field input { padding: 12px 14px; }
.field-input input:focus, .gate-field input:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,162,75,.22); background: #fff;
}
.field-input .affix { position: absolute; color: var(--muted-dark); font-size: 1.02rem; pointer-events: none; }
.field-input .affix:not(.affix-r) { left: 14px; }
.field-input .affix-r { right: 14px; }

.calc-submit { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line-dark); text-align: center; }
.calc-submit-note { margin: 12px 0 0; font-size: .85rem; color: var(--muted-dark); }
.gate-error { margin: 8px 0 0; font-size: .92rem; color: #b4452f; font-weight: 600; }

/* "Keep these results" opt-in capture (shown after results) */
.keep-panel { margin-top: 24px; border: 1px solid var(--line-dark); border-radius: 12px; background: var(--cream-2); overflow: hidden; }
.keep-panel > summary {
  cursor: pointer; list-style: none; padding: 16px 22px; font-weight: 600; font-size: 1.05rem;
  color: #2a1a06; background: var(--gold); display: flex; align-items: center; gap: 10px;
}
.keep-panel > summary::-webkit-details-marker { display: none; }
.keep-panel > summary::before { content: "✉"; font-size: 1.05rem; }
.keep-panel[open] > summary { border-bottom: 1px solid rgba(0,0,0,.08); }
.keep-form { padding: 20px 22px; }
.keep-row { display: flex; flex-wrap: wrap; gap: 12px; }
.keep-row input[type=email] {
  flex: 1 1 240px; font: inherit; font-size: 1.05rem; color: var(--text-dark);
  padding: 12px 14px; border: 1.5px solid var(--line-dark); border-radius: 10px; background: #fff;
}
.keep-row input[type=email]:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(232,162,75,.22); }
.keep-note { margin: 12px 0 0; font-size: .85rem; color: var(--muted-dark); }
.keep-success {
  margin-top: 24px; padding: 18px 22px; border-radius: 12px;
  background: #e9f3ec; border: 1px solid #bcd9c4; color: #1e5b34; font-size: 1rem;
}

/* ======================================================================== */
/* DEMO / CALL PAGE (/the-plan)                                             */
/* ======================================================================== */
.video-slot {
  position: relative; margin-top: 48px; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 16 / 9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(150deg, #14223A 0%, #3C3357 55%, #C9803F 90%, #E8A24B 100%);
  border: 1px solid var(--line-dark); color: var(--text-light); text-align: center; padding: 20px;
}
.video-play {
  width: 78px; height: 78px; border-radius: 50%; background: rgba(247,243,236,.94); color: #0E1B2A;
  display: grid; place-items: center; font-size: 28px; padding-left: 6px; box-shadow: 0 12px 30px rgba(14,27,42,.3);
}
.video-slot .slot-label {
  font-size: .82rem; letter-spacing: .04em; color: rgba(247,243,236,.92);
  background: rgba(14,27,42,.5); padding: 8px 14px; border-radius: 8px; border: 1px dashed rgba(247,243,236,.4);
}
.demo-video {
  width: 100%; aspect-ratio: 16 / 9; margin-top: 48px; display: block;
  border-radius: var(--r); box-shadow: var(--shadow); border: 1px solid var(--line-dark); background: #0E1B2A;
}

.request-card {
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r); box-shadow: var(--shadow);
  padding: 34px; margin-top: 36px; display: flex; flex-direction: column; gap: 18px;
}
.request-card input, .request-card textarea {
  width: 100%; font: inherit; font-size: 1.05rem; color: var(--text-dark);
  padding: 12px 14px; border: 1.5px solid var(--line-dark); border-radius: 10px; background: var(--canvas);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.request-card textarea { resize: vertical; min-height: 84px; }
.request-card input:focus, .request-card textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,162,75,.22); background: #fff;
}
.field-optional { color: var(--muted-dark); font-weight: 400; font-size: .85em; }

.result-headline { text-align: center; padding-bottom: 10px; border-bottom: 1px solid var(--line-dark); margin-bottom: 26px; }
.result-headline h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 6px 0 12px; }
.result-headline .hl { color: var(--gold-deep); }
.result-note { color: var(--muted-dark); max-width: 52ch; margin: 0 auto; }
.result-top { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 28px; }
.result-top .rt { background: var(--cream-2); border-radius: 12px; padding: 16px 26px; text-align: center; min-width: 220px; }
.result-top .rl { display: block; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-dark); }
.result-top .rv { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--text-dark); margin-top: 4px; }

.horizon-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hcard { border: 1px solid var(--line-dark); border-radius: var(--r); padding: 26px; }
.hcard h3 { font-size: 1.3rem; margin: 0 0 12px; color: var(--gold-deep); }
.hrow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 9px 0; border-top: 1px dashed var(--line-dark); font-size: .98rem; }
.hrow:first-of-type { border-top: 0; }
.hrow span:first-child { color: var(--muted-dark); }
.hrow > span:last-child, .hrow-strong { color: var(--text-dark); }
.hrow-strong b { font-family: var(--serif); font-size: 1.45rem; color: var(--text-dark); }

.result-cta { text-align: center; margin-top: 32px; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.result-cta h3 { font-size: 1.5rem; margin: 0 0 10px; }
.result-cta p { color: var(--muted-dark); max-width: 56ch; margin: 0 auto 22px; }

@media (max-width: 760px) {
  .calc-grid, .horizon-cards { grid-template-columns: 1fr; }
  .calc-card, .calc-result { padding: 26px; }
}

/* honeypot — off-screen (not display:none, which some bots skip); real users never see it */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* progressive-disclosure explainers (the transparency that's the brand's differentiator) */
.field-why { margin-top: 1px; }
.field-why summary {
  cursor: pointer; font-size: .82rem; color: var(--gold-deep); font-weight: 600;
  list-style: none; display: inline-flex; align-items: center; gap: 6px; width: max-content;
}
.field-why summary::-webkit-details-marker { display: none; }
.field-why summary::before {
  content: "?"; display: inline-grid; place-items: center; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(232,162,75,.18); color: var(--gold-deep);
  font-size: .72rem; font-weight: 700;
}
.field-why[open] summary { margin-bottom: 7px; }
.field-why p {
  margin: 0; font-size: .85rem; color: var(--muted-dark); line-height: 1.5;
  background: var(--cream-2); border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 10px 12px;
}
.result-sober { text-align: center; font-style: italic; color: var(--muted-dark); margin: 0 0 22px; font-size: .95rem; }
.result-explainer {
  margin-top: 22px; background: var(--cream-2); border: 1px solid var(--line-dark);
  border-left: 4px solid var(--gold); border-radius: 12px; padding: 18px 22px;
}
.result-explainer h4 { margin: 0 0 6px; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--text-dark); }
.result-explainer p { margin: 0; color: var(--muted-dark); font-size: .95rem; line-height: 1.55; }
