/* ───────────────────────────────────────────────────────────────────
   Linkked — relationship intelligence
   Brand: deep navy (#1E3A8A family) + forest green (oklch 0.48 0.105 140)
   Type: Instrument Serif (display) + Geist (text) + JetBrains Mono (micro)
   ─────────────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

:root {
  --paper: oklch(0.985 0.005 250);
  --paper-2: oklch(0.965 0.008 250);
  --paper-3: oklch(0.93 0.012 250);
  --ink: oklch(0.30 0.12 265);          /* navy ink */
  --ink-deep: oklch(0.22 0.13 265);     /* deeper navy */
  --ink-2: oklch(0.42 0.04 250);        /* body secondary — ~8:1 */
  --ink-3: oklch(0.46 0.03 250);        /* labels / metadata — ~6.5:1 (was 0.52) */
  --ink-4: oklch(0.52 0.03 250);        /* lightest readable tier / separators — ~5.2:1 on paper, clears AA on paper-2 (was 0.82, ~1.7:1) */
  --rule: oklch(0.30 0.12 265 / 0.14);
  --rule-soft: oklch(0.30 0.12 265 / 0.07);

  /* brand */
  --navy: #1E3A8A;
  --navy-deep: #152D6E;
  --navy-light: #2A4FA0;
  --green: oklch(0.48 0.105 140);
  --green-light: oklch(0.71 0.165 138);   /* bright logo green #69ba46 — accents on dark */
  --green-deep: oklch(0.40 0.10 140);
  --green-vivid: oklch(0.633 0.174 148);  /* deep logo green #19a548 — green fills on dark */

  --accent: var(--green);
  --accent-soft: oklch(0.94 0.06 140);
  --accent-deep: var(--green-deep);

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

.dark {
  --paper: oklch(0.16 0.02 265);
  --paper-2: oklch(0.20 0.025 265);
  --paper-3: oklch(0.25 0.03 265);
  --ink: oklch(0.97 0.005 250);
  --ink-deep: oklch(1 0 0);
  --ink-2: oklch(0.78 0.01 250);
  --ink-3: oklch(0.58 0.012 250);
  --ink-4: oklch(0.38 0.012 250);
  --rule: oklch(0.97 0.005 250 / 0.16);
  --rule-soft: oklch(0.97 0.005 250 / 0.07);
}

::selection { background: var(--green); color: white; }

/* ─── Accessibility ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: 8px; top: -56px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 8px; font: 500 14px/1 var(--mono), sans-serif; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 3px; }
.footer-base a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section { padding-block: var(--pad-y, 120px); position: relative; }
.section + .section { border-top: 1px solid var(--rule-soft); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 16px;
  text-wrap: balance;
  color: var(--ink-deep);
}
.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 600px;
  text-wrap: pretty;
  margin: 0;
}
.ital { font-style: italic; font-family: var(--serif); }
.muted { color: var(--ink-3); }
.green { color: var(--green-deep); }

/* ─── Buttons ───────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 8px 20px -8px var(--navy); }
.btn-green { background: var(--green); color: white; box-shadow: 0 1px 2px oklch(0.45 0.10 140 / 0.18); }
.btn-green:hover { background: var(--green-deep); box-shadow: 0 10px 22px -8px var(--green); }
/* On the dark Single Safety section, green fills use the deep logo green so they stay vivid */
.safety .btn-green { background: var(--green-vivid); box-shadow: 0 1px 2px oklch(0.45 0.16 148 / 0.28); }
.safety .btn-green:hover { background: oklch(0.56 0.17 148); box-shadow: 0 12px 26px -10px var(--green-vivid); }
.btn-outline { border-color: var(--rule); color: var(--ink-deep); background: transparent; }
.btn-outline:hover { border-color: var(--ink-deep); color: var(--ink-deep); background: var(--rule-soft); }
.page-lfl .btn-outline { border-color: var(--green); color: var(--green-deep); }
.page-lfl .btn-outline:hover { border-color: var(--green-deep); color: var(--green-deep); background: oklch(0.62 0.11 140 / 0.06); }
.btn-ghost { color: var(--ink-deep); background: transparent; }
.btn-ghost:hover { background: var(--rule-soft); }

/* ─── Nav ───────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav-scrolled { border-bottom-color: var(--rule-soft); }
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 720px) { .nav-inner { padding: 12px 20px; } }
.nav-brand { color: var(--ink-deep); text-decoration: none; display: flex; align-items: center; }
.nav-brand img { height: 28px; width: auto; display: block; }
.dark .nav-brand img { filter: brightness(0) invert(1) saturate(1); }
.brand-logo { height: 30px; width: auto; display: block; }
.footer-brand .brand-logo { height: 34px; margin-bottom: 4px; }
.dark .brand-logo { filter: brightness(0) invert(1); }

/* Credibility band */
.cred-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
}

/* Home proof strip — real institutions */
.home-proof { padding: 40px 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
.home-proof-label {
  display: block; text-align: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-4);
}
.home-proof-grid {
  margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; max-width: 920px; margin-inline: auto;
  background: var(--rule-soft); border: 1px solid var(--rule-soft);
  border-radius: 12px; overflow: hidden;
}
@media (max-width: 900px) { .home-proof-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .home-proof-grid { grid-template-columns: repeat(2, 1fr); } }
.home-proof-cell {
  display: flex; align-items: center; justify-content: center;
  background: var(--paper); padding: 22px 24px; min-height: 128px;
  transition: background 0.18s ease;
}
.home-proof-cell img {
  max-width: 100%; max-height: 84px; width: auto; height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.18s ease;
}
.home-proof-cell:hover { background: var(--paper-2); }
.home-proof-cell:hover img { opacity: 1; }
.cred-band .container {
  padding-block: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}
.cred-band b { color: var(--ink-deep); font-weight: 600; }
.cred-band .cred-sep { color: var(--ink-4); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink-deep); }
.nav-cta { display: flex; gap: 8px; }
.nav-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; margin-left: 12px; padding: 0;
    background: transparent; border: 1px solid var(--rule); border-radius: 10px;
    cursor: pointer; color: var(--ink-deep);
  }
  .nav-dark .nav-toggle { color: #fff; border-color: oklch(1 0 0 / 0.25); }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    display: flex; flex-direction: column; gap: 2px;
    padding: 12px 20px 18px;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    box-shadow: 0 18px 40px -20px oklch(0.2 0.05 250 / 0.4);
  }
  .nav-dark .nav-menu { background: oklch(0.2 0.03 250); border-bottom-color: oklch(1 0 0 / 0.12); }
  .nav-menu a {
    padding: 14px 6px; font-size: 16px; font-weight: 500; color: var(--ink-deep);
    text-decoration: none; border-bottom: 1px solid var(--rule-soft);
  }
  .nav-dark .nav-menu a { color: oklch(0.92 0.01 250); border-bottom-color: oklch(1 0 0 / 0.1); }
  .nav-menu a:last-child { border-bottom: none; }
}
@media (min-width: 881px) { .nav-menu { display: none; } }

/* ─── Hero ──────────────────────────────────────────────────────── */

.hero { padding-top: 132px; padding-bottom: var(--pad-y, 112px); position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-main { min-width: 0; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-2);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px oklch(0.62 0.11 140 / 0.15);
}
.hero-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
  color: var(--ink-deep);
  max-width: 13ch;
}
.hero-h .ital { display: inline; color: var(--green-deep); font-style: italic; }
.hero-h .underline { position: relative; display: inline; }
.hero-h .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.02em; height: 0.07em;
  background: var(--green);
  border-radius: 999px;
}
.hero-sub {
  margin: 30px 0 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
  text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* hero path links — the two doors, quiet */
.hero-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-path {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 9px 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.hero-path:hover { border-color: var(--ink-3); color: var(--ink-deep); transform: translateY(-1px); }
.hero-path svg { opacity: 0.5; }
.pip { width: 7px; height: 7px; border-radius: 50%; display: inline-block; flex: none; }
.pip.navy { background: var(--navy); }
.pip.green { background: var(--green); }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 30px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-meta .bullet { color: var(--ink-4); }

/* hero portrait card */
.hero-aside { min-width: 0; }
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  box-shadow: 0 30px 60px -34px oklch(0.22 0.13 265 / 0.45);
}
.hero-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.hero-portrait-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.hero-portrait-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin: 0;
}
.hero-portrait-role {
  font-size: 14px;
  color: var(--ink-2);
  margin: 4px 0 0;
}
.hero-portrait-creds {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 10px 0 0;
}
.hero-portrait-creds .sep { margin: 0 7px; color: var(--ink-4); }

/* ─── Thesis ────────────────────────────────────────────────────── */

.thesis { padding-block: var(--pad-y); }
.thesis-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink-deep);
  max-width: 22ch;
  margin: 0;
  text-wrap: balance;
}
.thesis-quote .ital { color: var(--green-deep); }
.thesis-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 880px) { .thesis-grid { grid-template-columns: 1fr; gap: 32px; } }
.thesis-aside p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 50ch;
  text-wrap: pretty;
}

/* ─── Two arms (LFB / LFL) ──────────────────────────────────────── */

/* ─── Fork (two doors) ──────────────────────────────────────────── */

.fork { padding-block: var(--pad-y); }
.fork-head { text-align: center; margin-inline: auto; margin-bottom: 48px; }
.fork-head .eyebrow { justify-content: center; }
.fork-head .section-sub { margin-inline: auto; }
.fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .fork-grid { grid-template-columns: 1fr; } }

.door {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 38px 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.door::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.door-business::before { background: var(--navy); }
.door-life::before { background: var(--green); }
.door:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -24px oklch(0.22 0.13 265 / 0.28); }
.door-business:hover { border-color: oklch(0.42 0.13 265 / 0.4); }
.door-life:hover { border-color: oklch(0.62 0.11 140 / 0.45); }

.door-top { display: flex; flex-direction: column; gap: 10px; }
.door-logo { height: 40px; width: auto; align-self: flex-start; }
.dark .door-logo { filter: brightness(0) invert(1); }
.door-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.door-for {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.door-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.door-foot .door-link { margin-top: 0; }
.door-access {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--ink-3);
}
.door-access .pip { position: relative; top: 1px; }
.door-life:hover .door-access { color: var(--green-deep); }
.dark .door-life:hover .door-access { color: var(--green); }
.door-business:hover .door-access { color: var(--navy); }
.door-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
  font-weight: 400;
  color: var(--ink-deep);
}
.door-life .door-h .ital { color: var(--green-deep); }
.door-business .door-h .ital { color: var(--navy); }
.door-body {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.door-list {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
}
.door-list li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
  color: var(--ink-deep);
}
.door-list li::before {
  content: "";
  width: 14px; height: 1px;
  flex-shrink: 0;
  align-self: center;
}
.door-life .door-list li::before { background: var(--green); }
.door-business .door-list li::before { background: var(--navy); }
.door-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-deep);
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  align-self: flex-start;
  transition: background 0.18s ease, color 0.18s ease;
}
.door-business .door-link { background: var(--navy); color: #fff; }
.door-life .door-link { background: var(--green); color: #fff; }
.door-link:hover svg { transform: translateX(3px); }
.door-link svg { transition: transform 0.2s ease; }
.door-business .door-link:hover { background: var(--navy-deep); }
.door-life .door-link:hover { background: var(--green-deep); }

/* ─── Single Safety (dark standout) ─────────────────────────────── */

.safety {
  padding-block: calc(var(--pad-y) * 1.1);
  background: var(--ink-deep);
  color: oklch(0.97 0.005 250);
  position: relative;
  overflow: hidden;
}
.safety .container { position: relative; z-index: 1; }
.safety::after {
  content: "";
  position: absolute;
  right: -160px; top: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(0.62 0.11 140 / 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.safety-head { max-width: 760px; }
.safety-eyebrow { color: oklch(0.82 0.05 140); }
.safety-eyebrow .dot { background: var(--green-light); box-shadow: 0 0 0 4px oklch(0.62 0.11 140 / 0.25); }
.safety-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  color: #fff;
}
.safety-h .ital { color: var(--green-light); }
.safety-lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: oklch(0.86 0.01 250);
  max-width: 62ch;
  margin: 24px 0 0;
  text-wrap: pretty;
}
.safety-lead-2 { color: oklch(0.94 0.005 250); }
.safety-lead-2 b { color: #fff; }

/* burden-flip comparison */
.safety-flip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 760px) { .safety-flip { grid-template-columns: 1fr; } }
.safety-flip-col {
  border: 1px solid oklch(0.97 0.005 250 / 0.16);
  border-radius: 10px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.safety-flip-col:last-child {
  background: oklch(0.62 0.11 140 / 0.12);
  border-color: oklch(0.62 0.11 140 / 0.4);
}
.safety-flip-col p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: oklch(0.84 0.01 250);
}
.safety-flip-col:last-child p { color: #fff; }
.safety-flip-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.safety-flip-tag.old { color: oklch(0.62 0.02 250); }
.safety-flip-tag.new { color: var(--green-light); }
.safety-flip-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
}
@media (max-width: 760px) { .safety-flip-arrow { transform: rotate(90deg); } }

.safety-practice-label {
  margin-top: 52px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.7 0.02 250);
}
.safety-practice-label + .safety-grid { margin-top: 18px; }
.safety-headlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-light);
  text-decoration: none;
}
.safety-headlink:hover svg { transform: translateX(3px); }
.safety-headlink svg { transition: transform 0.2s; }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: oklch(0.97 0.005 250 / 0.14);
  border: 1px solid oklch(0.97 0.005 250 / 0.14);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 900px) { .safety-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .safety-grid { grid-template-columns: 1fr; } }
.safety-card {
  background: var(--ink-deep);
  padding: 30px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.safety-card-k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--green-light);
}
.safety-card-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}
.safety-card-b {
  font-size: 14.5px;
  line-height: 1.55;
  color: oklch(0.78 0.01 250);
  margin: 0;
}
.safety-foot {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.safety-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  max-width: 22ch;
}

/* ─── Three-tier architecture ───────────────────────────────────── */

.tiers { padding-block: var(--pad-y); background: var(--paper-2); }
.section + .tiers { border-top: 1px solid var(--rule-soft); }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 880px) { .tiers-grid { grid-template-columns: 1fr; } }

.tier {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.tier + .tier { border-left: 1px solid var(--rule); }
@media (max-width: 880px) {
  .tier + .tier { border-left: none; border-top: 1px solid var(--rule); }
}
.tier-rank {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink-4);
  font-style: italic;
}
.tier-rank.green { color: var(--green); opacity: 0.7; }
.tier-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink-deep);
}
.tier-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.tier-meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tier-meta b { color: var(--ink-deep); font-weight: 500; }

/* ─── Founder ───────────────────────────────────────────────────── */

.founder { padding-block: var(--pad-y); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-portrait {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  position: relative;
}
.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.18 0.04 265 / 0.5) 100%);
  pointer-events: none;
}
.founder-portrait .ph-label {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-deep);
  background: oklch(1 0 0 / 0.92);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  backdrop-filter: blur(4px);
}
.founder-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  color: var(--ink-deep);
}
.founder-h .ital { color: var(--green-deep); }
.founder-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 56ch;
  text-wrap: pretty;
}
.founder-body .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-deep);
}
.founder-creds {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
@media (max-width: 720px) { .founder-creds { grid-template-columns: 1fr; } }
.founder-cred {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.founder-cred + .founder-cred { border-left: 1px solid var(--rule); padding-left: 24px; }
@media (max-width: 720px) {
  .founder-cred + .founder-cred { border-left: none; padding-left: 0; }
}
.founder-cred-num {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink-deep);
}
.founder-cred-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* ─── Pillars (Think / Treat / Meet) ────────────────────────────── */

.pillars { padding-block: var(--pad-y); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
}
.pillar-h {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  margin: 4px 0 8px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}
.pillar-h .ital { color: var(--green-deep); }
.pillar-sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-deep);
  margin: 0;
  line-height: 1.4;
}
.pillar-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ─── Testimonials ──────────────────────────────────────────────── */

.testi { padding-block: var(--pad-y); }
.testi-rail {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .testi-rail { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  transition: transform 0.2s ease;
}
.testi-card:hover { transform: translateY(-2px); }
.testi-quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.5;
  color: var(--green);
  height: 24px;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink-deep);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}
.testi-cap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
}
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper-3);
  background-image: repeating-linear-gradient(135deg, transparent 0 6px, var(--rule) 6px 7px);
  border: 1px solid var(--rule);
}
.testi-name { font-weight: 500; font-size: 14px; color: var(--ink-deep); }
.testi-role { font-size: 13px; color: var(--ink-3); }
.testi-tag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  color: var(--ink-2);
}
.testi-tag.tag-business { color: var(--navy); border-color: color-mix(in oklch, var(--navy) 30%, transparent); }
.testi-tag.tag-life { color: var(--green-deep); border-color: color-mix(in oklch, var(--green) 40%, transparent); }

/* ─── Movement / Single Safety ──────────────────────────────────── */

.movement { padding-block: var(--pad-y); }
.movement-card {
  background: var(--ink-deep);
  color: white;
  border-radius: 8px;
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.movement-card::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(closest-side, var(--green) 0%, transparent 65%);
  opacity: 0.32;
  pointer-events: none;
}
.movement-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.movement-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-light);
}
.movement-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-top: 24px;
}
@media (max-width: 880px) { .movement-grid { grid-template-columns: 1fr; gap: 32px; } }
.movement-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  position: relative;
}
.movement-h .ital { color: var(--green-light); }
.movement-aside p {
  font-size: 16px;
  line-height: 1.6;
  color: oklch(0.92 0.01 250);
  margin: 0 0 16px;
}
.movement-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.movement-card .btn-primary { background: white; color: var(--ink-deep); }
.movement-card .btn-primary:hover { background: var(--green); color: white; }
.movement-card .btn-ghost { color: white; border: 1px solid oklch(1 0 0 / 0.25); }
.movement-card .btn-ghost:hover { background: oklch(1 0 0 / 0.1); border-color: oklch(1 0 0 / 0.4); }

/* ─── FAQ ───────────────────────────────────────────────────────── */

.faq { padding-block: var(--pad-y); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 24px 0;
  font: inherit;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-deep);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.005em;
  gap: 24px;
}
.faq-q:hover { color: var(--green-deep); }
.faq-toggle {
  font-family: var(--mono);
  font-size: 18px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  flex-shrink: 0;
}
.faq-open .faq-toggle { background: var(--green); color: white; border-color: var(--green); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0 0 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ─── CTA ───────────────────────────────────────────────────────── */

.cta { padding-block: var(--pad-y); }
.cta-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(48px, 7vw, 96px) 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 16px auto 24px;
  max-width: 16ch;
  color: var(--ink-deep);
  text-wrap: balance;
}
.cta-h .ital { color: var(--green-deep); }
.cta-sub {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-card .hero-cta { justify-content: center; }

/* ─── Footer ────────────────────────────────────────────────────── */

.footer { padding-block: 80px 32px; border-top: 1px solid var(--rule); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand img { height: 30px; }
.dark .footer-brand img { filter: brightness(0) invert(1); }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 17px;
  max-width: 26ch;
  margin: 18px 0 0;
}
.footer-h {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-deep);
  text-decoration: none;
  font-size: 14px;
}
.footer-col a:hover { color: var(--green-deep); }
.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-deep);
  opacity: 0.06;
  user-select: none;
  margin: 24px 0 0;
  text-align: center;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.footer-base-r { display: flex; gap: 20px; align-items: center; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; }
.footer-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
@media (max-width: 600px) {
  .footer-base { flex-direction: column; gap: 12px; }
}

/* ─── Desktop seam tightening ─────────────────────────────────────────
   Two section paddings stack at every boundary. On desktop the worst
   offenders are Thesis↔Fork (112+112=224px of dead space between a single
   argument and its payoff) and the CTA, whose section padding (112) and
   card padding (up to 96) double-frame the same card. Collapse those here.
   Scoped to ≥769px so the mobile --pad-y (52px) rhythm below is untouched. */
@media (min-width: 769px) {
  .thesis { padding-bottom: 64px; }   /* was var(--pad-y) → 112px */
  .fork   { padding-top: 64px; }      /* was var(--pad-y) → 112px */
  .cta    { padding-block: 72px; }    /* was var(--pad-y) → 112px */
  .cta-card { padding: clamp(40px, 5vw, 64px) 48px; } /* was clamp(48px,7vw,96px) */
}

/* ─── Mobile vertical rhythm ──────────────────────────────────────────
   The section padding (--pad-y) is set inline on <html> by each page's
   JS at 112–120px and never reduced for small screens, which leaves large
   dead space between stacked sections on phones. Override it here (and the
   per-page wrapper fallbacks) so phones get a tighter rhythm while desktop
   and the density toggle stay untouched above 768px. !important is needed
   to beat the inline custom property on <html>. */
@media (max-width: 768px) {
  :root,
  .page-lfl, .page-lfb, .page-about, .page-ssm { --pad-y: 52px !important; }
  /* the hero top gap (132px) is a lot of empty space below the nav on a phone */
  .hero { padding-top: 96px; }
}

/* ─── Homepage mobile redesign ────────────────────────────────────────
   Phone-only (≤768px), scoped to .page-home so other pages are untouched.
   Goals: calmer hero, founder credentials compact + lower, the Business/
   Life choice surfaced right after the hero, a simpler logo wall, and a
   lighter footer. */
.hero-sub-short { display: none; }
@media (max-width: 768px) {
  /* Reorder: hero → choice (fork) → thesis → credentials → logos → CTA */
  /* Section order now follows DOM order (Hero → Thesis → Fork → Discover →
     Trusted → Founder strip → CTA) on every viewport — no reordering needed. */

  /* Hero: shorter sub, calmer spacing */
  .page-home .hero-sub-full { display: none; }
  .page-home .hero-sub-short { display: block; }
  .page-home .hero-sub { margin-top: 20px; }

  /* Founder: the 438px portrait becomes a compact avatar + name line */
  .page-home .hero-aside { display: flex; flex-direction: row; align-items: center; gap: 13px; margin-top: 26px; }
  .page-home .hero-portrait { aspect-ratio: 1 / 1; width: 54px; height: 54px; flex: none; border-radius: 50%; box-shadow: none; }
  .page-home .hero-portrait img { object-position: 50% 16%; }
  .page-home .hero-portrait-meta { margin: 0; padding: 0; border: none; }
  .page-home .hero-portrait-name { font-family: var(--sans); font-style: normal; font-weight: 500; font-size: 15px; }
  .page-home .hero-portrait-role { font-size: 12px; margin: 2px 0 0; }

  /* Logo wall: a quieter set of six, not twelve */
  .page-home .home-proof-cell:nth-child(n+7) { display: none; }

  /* Footer: tame the oversized wordmark */
  .page-home .footer-mark { font-size: 52px; }
}

/* ─── Discover — the reflection hook ──────────────────────────────────── */
.discover { background: #f6f5f1; }
.discover-head { text-align: center; max-width: 640px; margin: 0 auto; }
.discover-kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--green-deep);
}
.discover-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.02em;
  margin: 14px 0 0; color: var(--ink-deep);
}
.discover-h .ital { font-style: italic; color: var(--green-deep); }
.discover-sub {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-4); margin: 16px 0 0;
}
.discover-grid {
  margin-top: clamp(36px, 5vw, 52px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 920px; margin-inline: auto;
}
@media (max-width: 720px) { .discover-grid { grid-template-columns: 1fr; } }
.discover-card {
  text-align: left; appearance: none; cursor: pointer; font: inherit; color: inherit;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 20px;
  padding: 34px 30px 26px; min-height: 232px; display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.discover-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -30px oklch(0.22 0.13 265 / 0.45); }
.discover-work:hover { border-color: #2b3a8f; }
.discover-life:hover { border-color: var(--green-deep); }
.discover-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 16px;
}
.discover-work .discover-eyebrow { color: #2b3a8f; }
.discover-life .discover-eyebrow { color: var(--green-deep); }
.discover-hook {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.4; color: var(--ink-3); margin: 0;
}
.discover-q {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(27px, 2.9vw, 34px); line-height: 1.08; letter-spacing: -0.015em;
  color: var(--ink-deep); margin: 10px 0 0;
}
.discover-foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.discover-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-4);
}
.discover-cta { font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.discover-work .discover-cta { color: #2b3a8f; }
.discover-life .discover-cta { color: var(--green-deep); }
.discover-arr { display: inline-flex; transition: transform 0.3s cubic-bezier(.2,.7,.2,1); }
.discover-card:hover .discover-arr { transform: translateX(5px); }

/* Returning visitor — saved reflection card */
.discover-saved { cursor: default; }
.discover-saved:hover { transform: none; box-shadow: none; border-color: var(--rule); }
.discover-saved-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-4); margin-top: 10px;
}
.discover-saved .discover-q { margin-top: 6px; }
.discover-saved-actions { margin-top: auto; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.discover-btn {
  appearance: none; cursor: pointer; font: inherit; font-weight: 600; font-size: 14px;
  padding: 11px 18px; border-radius: 999px; border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.discover-btn:hover { transform: translateY(-1px); }
.discover-work .discover-btn-primary { background: #2b3a8f; color: #fff; }
.discover-life .discover-btn-primary { background: var(--green); color: #fff; }
.discover-btn-primary:hover { filter: brightness(1.06); }
.discover-btn-ghost { background: transparent; border-color: var(--rule); color: var(--ink-deep); }
.discover-btn-ghost:hover { border-color: var(--ink-3); }
.discover-retake-note { margin-top: 12px; font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.4; color: var(--ink-3); }
.discover-clear-wrap { text-align: center; margin-top: 24px; }
.discover-clear {
  appearance: none; cursor: pointer; font: inherit; font-size: 12px; letter-spacing: 0.03em;
  color: var(--ink-4); background: transparent; border: 0; padding: 6px 10px;
  text-decoration: underline; text-underline-offset: 3px;
}
.discover-clear:hover { color: var(--ink-2); }

/* ─── Reflection modal ────────────────────────────────────────────────── */
.reflect-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: #f7f5f0; color: var(--ink-deep);
  display: flex; flex-direction: column; padding: 20px 24px 26px;
  animation: reflect-in 0.4s cubic-bezier(.2,.7,.2,1);
}
@keyframes reflect-in { from { opacity: 0; } to { opacity: 1; } }
.reflect-bar { display: flex; align-items: center; }
.reflect-bar-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.reflect-work .reflect-bar-label { color: #2b3a8f; }
.reflect-life .reflect-bar-label { color: var(--green-deep); }
.reflect-x {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--rule); background: transparent; color: var(--ink-2);
  font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.reflect-x:hover { background: oklch(0.22 0.13 265 / 0.06); border-color: var(--ink-3); }
.reflect-stage { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.reflect-step { width: 100%; max-width: 560px; margin: 0 auto; animation: reflect-step-in 0.5s cubic-bezier(.2,.7,.2,1); }
@keyframes reflect-step-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.reflect-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.reflect-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.06; letter-spacing: -0.02em;
  margin: 16px 0 0; color: var(--ink-deep); text-wrap: balance;
}
.reflect-intro { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.55; color: var(--ink-2); margin: 20px 0 0; max-width: 46ch; }
.reflect-begin {
  margin-top: 30px; appearance: none; cursor: pointer; font: inherit; font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 0; background: var(--ink-deep); color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reflect-begin:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px oklch(0.22 0.13 265 / 0.5); }
.reflect-progress { display: flex; gap: 6px; margin-bottom: 26px; }
.reflect-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rule); transition: all 0.3s ease; }
.reflect-dot.is-active { width: 22px; border-radius: 4px; }
.reflect-work .reflect-dot.is-active, .reflect-work .reflect-dot.is-done { background: #2b3a8f; }
.reflect-life .reflect-dot.is-active, .reflect-life .reflect-dot.is-done { background: var(--green-deep); }
.reflect-qnum { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); margin: 0 0 14px; }
.reflect-q {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 26px; color: var(--ink-deep); text-wrap: balance;
}
.reflect-options { display: flex; flex-direction: column; gap: 11px; }
.reflect-opt {
  text-align: left; appearance: none; cursor: pointer; font: inherit; font-size: 16px; color: var(--ink-deep);
  background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 16px 18px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.reflect-work .reflect-opt:hover { border-color: #2b3a8f; background: oklch(0.30 0.13 265 / 0.04); transform: translateX(3px); }
.reflect-life .reflect-opt:hover { border-color: var(--green-deep); background: oklch(0.55 0.11 140 / 0.06); transform: translateX(3px); }
.reflect-close-line {
  font-family: var(--serif); font-size: clamp(24px, 3.4vw, 36px); line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink-deep); margin: 16px 0 0; text-wrap: pretty;
}
.reflect-close-cta { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.reflect-close-btn {
  appearance: none; cursor: pointer; font: inherit; font-weight: 600; font-size: 14px;
  background: transparent; border: 0; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px;
}
.reflect-close-btn:hover { color: var(--ink-deep); }
.reflect-foot { text-align: center; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .reflect-overlay, .reflect-step { animation: none; }
  .discover-card, .discover-arr, .reflect-opt, .reflect-step-link, .reflect-prog-fill { transition: none; }
}

/* ─── Reflection: scored result, progress bar, next steps ─────────────── */
.reflect-stage { justify-content: normal; overflow-y: auto; }
.reflect-step { margin: auto; padding: 24px 0; }
.reflect-prog { height: 3px; background: var(--rule); border-radius: 999px; margin-bottom: 26px; overflow: hidden; }
.reflect-prog-fill { height: 100%; border-radius: 999px; transition: width 0.4s cubic-bezier(.2,.7,.2,1); }
.reflect-work .reflect-prog-fill { background: #2b3a8f; }
.reflect-life .reflect-prog-fill { background: var(--green-deep); }
.reflect-result { max-width: 600px; }
.reflect-result-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5.5vw, 52px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 14px 0 0; color: var(--ink-deep);
}
.reflect-result-body { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.6; color: var(--ink-2); margin: 18px 0 0; }
.reflect-facet { margin-top: 26px; }
.reflect-facet-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.reflect-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.reflect-chip {
  font-size: 13.5px; padding: 8px 14px; border-radius: 999px;
  background: oklch(0.55 0.11 140 / 0.10); border: 1px solid oklch(0.55 0.11 140 / 0.28); color: var(--green-deep);
}
.reflect-work .reflect-chip { background: oklch(0.30 0.13 265 / 0.07); border-color: oklch(0.30 0.13 265 / 0.22); color: #2b3a8f; }
.reflect-chip-muted,
.reflect-work .reflect-chip-muted,
.reflect-life .reflect-chip-muted { background: transparent; border-color: var(--rule); color: var(--ink-3); }
.reflect-suggest { margin-top: 26px; padding: 20px 22px; border-radius: 16px; border: 1px solid var(--rule); }
.reflect-life .reflect-suggest { background: oklch(0.55 0.11 140 / 0.07); border-color: oklch(0.55 0.11 140 / 0.25); }
.reflect-work .reflect-suggest { background: oklch(0.30 0.13 265 / 0.05); border-color: oklch(0.30 0.13 265 / 0.20); }
.reflect-suggest-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-deep); }
.reflect-work .reflect-suggest-h { color: #2b3a8f; }
.reflect-suggest p { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.4; color: var(--ink-deep); }
.reflect-closing { margin-top: 26px; font-family: var(--serif); font-style: italic; font-size: clamp(17px, 2vw, 21px); line-height: 1.45; color: var(--ink-deep); }
.reflect-steps { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--rule); }
.reflect-steps-h { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.1; letter-spacing: -0.015em; color: var(--ink-deep); }
.reflect-steps-sub { margin: 8px 0 18px; font-size: 14px; line-height: 1.5; color: var(--ink-3); }
.reflect-step-link {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--rule); border-radius: 14px; background: var(--paper);
  text-decoration: none; margin-bottom: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.reflect-step-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.reflect-step-label { font-weight: 500; font-size: 15.5px; color: var(--ink-deep); }
.reflect-step-desc { font-size: 13px; line-height: 1.4; color: var(--ink-3); }
.reflect-step-link svg { flex: none; opacity: 0.5; transition: transform 0.2s ease, opacity 0.2s ease; }
.reflect-step-link:hover { transform: translateX(3px); }
.reflect-step-link:hover svg { transform: translateX(3px); opacity: 1; }
.reflect-work .reflect-step-link:hover { border-color: #2b3a8f; background: oklch(0.30 0.13 265 / 0.04); }
.reflect-life .reflect-step-link:hover { border-color: var(--green-deep); background: oklch(0.55 0.11 140 / 0.06); }
.reflect-result .reflect-close-btn { margin-top: 22px; display: inline-block; }

/* Reflection: back navigation, reverse transition, selected option */
.reflect-back {
  appearance: none; cursor: pointer; background: transparent; border: 0;
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 2px;
  font: inherit; font-size: 13px; color: var(--ink-3); margin-bottom: 18px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.reflect-back:hover { color: var(--ink-deep); gap: 10px; }
.reflect-back svg { transition: transform 0.2s ease; }
.reflect-back:hover svg { transform: translateX(-2px); }
@keyframes reflect-step-in-rev { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
.reflect-step-rev { animation: reflect-step-in-rev 0.5s cubic-bezier(.2,.7,.2,1); }
.reflect-opt.is-selected { border-width: 1px; }
.reflect-work .reflect-opt.is-selected { border-color: #2b3a8f; background: oklch(0.30 0.13 265 / 0.06); }
.reflect-life .reflect-opt.is-selected { border-color: var(--green-deep); background: oklch(0.55 0.11 140 / 0.08); }
@media (prefers-reduced-motion: reduce) { .reflect-step-rev { animation: none; } }
