/* ============================================================
   Get AI Efficient — Quiz Funnel Styles
   Shared across landing, questions, lead capture, loading, results.
   Class names lifted from design files and preserved.
   ============================================================ */

:root {
  --ink: #0A0A0A;
  --paper: #F5F3EE;
  --paperdim: #EDEAE2;
  --rule: #1A1A1A;
  --muted: #6B6964;
  --signal: #1F4FFF;
  --signaldim: #E8EEFF;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Geist', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--signal); color: var(--paper); }

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  display: inline-block;
}
.brand-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav .meta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------- Faint grid bg */

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.7;
}

.hairline { border-top: 1px solid rgba(10, 10, 10, 0.12); }

/* --------------------------------------------------------- Type */

.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  display: block;
  margin-bottom: 24px;
}

.num-marker {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.h-display, h1, h2, h3.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}

h1, h2 { color: var(--ink); }
h1 em, h2 em, .h-display em { font-style: italic; color: var(--signal); }

/* --------------------------------------------------------- Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--signal);
  color: var(--paper);
  padding: 18px 26px;
  border-radius: 3px;
  border: 1px solid var(--signal);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-primary .arrow { transition: transform 0.15s ease; display: inline-block; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline[disabled] {
  opacity: 0.55;
  cursor: progress;
  pointer-events: none;
}

/* --------------------------------------------------------- Progress component */

.progress {
  display: flex;
  align-items: center;
  gap: 14px;
}
.segments {
  display: flex;
  gap: 6px;
}
.seg {
  width: 28px;
  height: 3px;
  background: rgba(10, 10, 10, 0.18);
  border-radius: 2px;
  transition: background 0.18s ease;
}
.seg.done { background: var(--ink); }
.seg.current { background: var(--signal); }
.progress .label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* --------------------------------------------------------- Landing page */

.landing main {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.landing .hairline { margin-bottom: 48px; }

.landing .hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.landing .hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  margin: 0 0 28px;
  max-width: 14ch;
}
.landing .subhead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  max-width: 54ch;
  margin: 0 0 36px;
}
.landing .cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.landing .micro {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 28px;
}
.landing .credibility {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  padding-top: 20px;
}

.what-card {
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 6px;
  padding: 32px;
  background: var(--paperdim);
  position: relative;
}
.what-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.what-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.what-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}
.what-list li:last-child { border-bottom: 0; }
.what-list b {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  white-space: nowrap;
}
.what-list .body { font-size: 15px; line-height: 1.5; }
.what-list .body strong {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

/* Corner ticks (used on cards + landing what-card) */
.tick {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.tick.tl { top: 10px; left: 10px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); opacity: 0.30; }
.tick.tr { top: 10px; right: 10px; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); opacity: 0.30; }
.tick.bl { bottom: 10px; left: 10px; border-bottom: 1px solid var(--ink); border-left: 1px solid var(--ink); opacity: 0.30; }
.tick.br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--ink); border-right: 1px solid var(--ink); opacity: 0.30; }

@media (max-width: 900px) {
  .landing .hero { grid-template-columns: 1fr; gap: 40px; }
}

/* --------------------------------------------------------- Question flow */

.questions main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.q-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.questions h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.02;
  margin: 0 0 40px;
  max-width: 22ch;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 26px;
  background: var(--paper);
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.18s ease;
  min-height: 48px;
  width: 100%;
}
.answer:hover {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.06);
}
.answer .prefix {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
}
.answer .text { font-size: 17px; line-height: 1.4; }
.answer.selected {
  border-color: var(--signal);
  background: var(--signaldim);
  transform: scale(1.01);
}
.answer.selected .prefix { color: var(--signal); }

.back {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 4px;
  font-weight: 500;
}
.back:hover { color: var(--ink); }

/* --------------------------------------------------------- Lead capture */

.lead-capture main {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.lead-capture h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.lead-capture .subhead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  margin: 0 0 36px;
}

.lead-capture form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input {
  font: inherit;
  font-size: 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.20);
  padding: 10px 0;
  color: var(--ink);
  transition: border-color 0.15s ease;
  border-radius: 0;
}
.field input:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.field input::placeholder { color: rgba(10, 10, 10, 0.35); }
.field.error input { border-bottom-color: #C03030; }
.field .error-msg {
  font-size: 12px;
  color: #C03030;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.05em;
}
.privacy {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 4px;
  line-height: 1.5;
}
.privacy a { color: var(--muted); text-decoration: underline; }
.privacy a:hover { color: var(--ink); }

/* --------------------------------------------------------- Loading state */

.loading-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.loading-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px 80px;
}
.loading-page .eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  margin-bottom: 36px;
}
.lines {
  position: relative;
  height: 64px;
  width: 100%;
  max-width: 600px;
}
.line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  opacity: 0;
  animation: cycle 4s linear infinite;
}
.line:nth-child(1) { animation-delay: 0s; }
.line:nth-child(2) { animation-delay: 0.8s; }
.line:nth-child(3) { animation-delay: 1.6s; }
.line:nth-child(4) { animation-delay: 2.4s; }
.line:nth-child(5) { animation-delay: 3.2s; }

@keyframes cycle {
  0%   { opacity: 0; transform: translateY(8px); }
  8%   { opacity: 1; transform: translateY(0); }
  20%  { opacity: 1; transform: translateY(0); }
  28%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(8px); }
}

.bar {
  margin-top: 48px;
  width: 240px;
  height: 2px;
  background: rgba(10, 10, 10, 0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--signal);
  animation: slide 1.6s ease-in-out infinite;
}
@keyframes slide {
  0% { left: -40%; }
  100% { left: 100%; }
}

.loading-page .meta {
  margin-top: 24px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------- Result page */

.result .wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.result .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  gap: 16px;
  flex-wrap: wrap;
}
.result .serial,
.result .date {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.result .hero { padding: 64px 0 48px; }
.result .hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.96;
  margin: 0 0 24px;
  max-width: 18ch;
  letter-spacing: -0.02em;
}
.result .lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  max-width: 62ch;
  margin: 0;
}

/* Embedded result-page share card (simplified version) */
.card-frame {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result .card {
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.result .card .grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
}
.result .card .tick { width: 14px; height: 14px; opacity: 0.32; }
.result .card .tick.tl { top: 24px; left: 24px; border-top: 1px solid var(--paper); border-left: 1px solid var(--paper); border-right: 0; border-bottom: 0; }
.result .card .tick.tr { top: 24px; right: 24px; border-top: 1px solid var(--paper); border-right: 1px solid var(--paper); border-left: 0; border-bottom: 0; }
.result .card .tick.bl { bottom: 24px; left: 24px; border-bottom: 1px solid var(--paper); border-left: 1px solid var(--paper); border-top: 0; border-right: 0; }
.result .card .tick.br { bottom: 24px; right: 24px; border-bottom: 1px solid var(--paper); border-right: 1px solid var(--paper); border-top: 0; border-left: 0; }

.card-inner {
  position: absolute;
  inset: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-top { display: flex; justify-content: space-between; }
.c-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7B96FF;
  font-weight: 500;
  margin-bottom: 14px;
}
.result .card .c-title,
.c-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(40px, 9vw, 72px);
  line-height: 0.95;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--paper);
}
.result .card .c-title em,
.c-title em { font-style: italic; color: #7B96FF; }
.c-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 243, 238, 0.78);
  max-width: 38ch;
  margin: 0;
}
.c-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 243, 238, 0.18);
  border-bottom: 1px solid rgba(245, 243, 238, 0.18);
  padding: 14px 0;
}
.c-stat { padding: 0 14px; border-right: 1px solid rgba(245, 243, 238, 0.14); }
.c-stat:last-child { border-right: 0; }
.c-stat:first-child { padding-left: 0; }
.c-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.c-num em { font-style: italic; color: #7B96FF; }
.c-num .unit { font-size: 18px; color: rgba(245, 243, 238, 0.55); margin-left: 4px; }
.c-label {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
  margin-top: 4px;
}
.c-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}
.c-cta-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.55);
}
.c-cta-line {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 6px;
}
.url-pill {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.card-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Time leak math */
.leak {
  padding: 64px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.leak-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.leak-formula {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  font-weight: 400;
}
.leak-formula em { font-style: italic; color: var(--signal); }
.leak-formula .equals { color: var(--muted); }
.leak-body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.78);
  max-width: 62ch;
  margin: 24px 0 0;
}

/* Generic content section (Quick Wins, 7-Day Plan) */
.section {
  padding: 64px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.section h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 0 36px;
}
.section h2 em { font-style: italic; color: var(--signal); }

/* Quick wins */
.qw-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qw {
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 6px;
  padding: 32px;
  background: var(--paper);
}
.qw-prefix {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.qw-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--ink);
}
.qw-why {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  margin: 0 0 20px;
}
.qw-howlabel {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.qw-steps {
  margin: 0 0 20px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
}
.qw-steps li { margin-bottom: 6px; }
.qw-saved {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
}

/* Skip these */
.skip {
  background: var(--paperdim);
  padding: 64px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}
.skip .wrap-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.skip h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 0 28px;
}
.skip h2 em { font-style: italic; color: var(--signal); }
.skip h2 .label-above {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.skip-list { display: flex; flex-direction: column; gap: 18px; }
.skip-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
}
.skip-item:last-child { border-bottom: 0; }
.skip-item .x {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}
.skip-name { font-size: 18px; font-weight: 600; margin: 0 0 6px; color: var(--ink); }
.skip-why {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  margin: 0;
}

/* 7-day plan */
.plan-list {
  position: relative;
  padding-left: 18px;
}
.plan-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(10, 10, 10, 0.18);
}
.day {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
  position: relative;
}
.day:last-child { border-bottom: 0; }
.day::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.day:last-child::before { background: var(--signal); }
.day-prefix {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 3px;
}
.day-action { font-size: 17px; line-height: 1.5; }

/* Audit CTA band (dark) */
.audit {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
}
.audit .wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.audit .eyebrow { color: #7B96FF; }
.audit h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 68px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0 0 28px;
  color: var(--paper);
  max-width: 18ch;
}
.audit h2 em { font-style: italic; color: #7B96FF; }
.audit-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  border-top: 1px solid rgba(245, 243, 238, 0.18);
  padding-top: 28px;
}
.audit-bullets li { display: flex; flex-direction: column; gap: 6px; }
.audit-bullets b {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7B96FF;
  font-weight: 500;
}
.audit-bullets span {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(245, 243, 238, 0.85);
}
.audit .btn-primary {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--paper);
}
.audit .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.audit-sec {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 243, 238, 0.65);
  max-width: 60ch;
  margin: 18px 0 0;
}

/* About Katie */
.about {
  padding: 56px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.photo {
  width: 88px;
  height: 88px;
  background: var(--paperdim);
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background-image: url('../../katie.jpg');
  background-size: cover;
  background-position: center;
}
.about-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.about-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  font-weight: 400;
}
.about-body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.78);
  margin: 0;
  max-width: 62ch;
}

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

/* Result page footer */
.result-footer {
  padding: 32px 0 56px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.result-footer a { color: var(--muted); text-decoration: none; margin-right: 18px; }
.result-footer a:hover { color: var(--ink); }

/* --------------------------------------------------------- 404 / Not Found state */

.not-found {
  max-width: 560px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.not-found h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin: 0 0 16px;
  line-height: 1;
}
.not-found p {
  font-size: 17px;
  color: rgba(10, 10, 10, 0.78);
  line-height: 1.55;
  margin: 0 0 32px;
}
