/* ============================================
   McGreen Running — FINISH LINE
   Cinematic personal: the race is the page.
   Anton display / Archivo body / IBM Plex Mono labels
   ============================================ */

:root {
  --green: #2FE56F;
  --green-up: #55F08C;
  --green-deep: #0E3D22;
  --green-ink: #117B3F;
  --on-accent: #06130A;
  --ink-0: #070B08;
  --ink-1: #0B100C;
  --ink-2: #080D09;
  --ink-card: #0C120D;
  --surface: #10160F;
  --white: #F2F6F2;
  --text: var(--white);
  --body: #ACBAAF;
  --body-up: #C6D2C8;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-g: rgba(47, 229, 111, 0.16);

  --font-disp: 'Anton', 'Arial Narrow', sans-serif;
  --font-serif: 'Anton', 'Arial Narrow', sans-serif; /* legacy alias */
  --font-body: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-sans: 'Archivo', 'Helvetica Neue', sans-serif; /* legacy alias */
  --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;

  --max-width: 1480px;
  --narrow: 860px;
  --gutter: clamp(24px, 4vw, 72px);
  --nav-height: 64px;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--white);
  background-color: var(--ink-0);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.2; }
::selection { background: var(--green); color: var(--on-accent); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* --- Utility --- */
.section-inner { max-width: var(--max-width); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section-narrow { max-width: var(--narrow); }

/* --- Display type --- */
.section-title {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.6vw, 5.25rem);
  line-height: 0.97;
  letter-spacing: 0.008em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--white);
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--green);
  margin-top: 28px;
}

.section-intro {
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.1vw, 1.25rem);
  line-height: 1.7;
  color: var(--body-up);
  max-width: 56ch;
}

.section-intro + .section-intro { margin-top: 14px; }

/* --- Buttons: broadcast rect, mono caps --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  padding: 19px 34px;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--on-accent);
  border: 1px solid var(--green);
}

.btn-primary:hover {
  background: var(--green-up);
  border-color: var(--green-up);
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(47, 229, 111, 0.28);
}

.btn-sm {
  padding: 12px 22px;
  font-size: 12px;
  background: var(--green);
  color: var(--on-accent);
  border: 1px solid var(--green);
}

.btn-sm:hover { background: var(--green-up); border-color: var(--green-up); }

.btn-lg { padding: 22px 40px; font-size: 14px; width: 100%; }

.hero-secondary,
.text-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-radius: 2px;
  padding: 19px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.hero-secondary:hover, .text-link:hover { border-color: rgba(47, 229, 111, 0.7); transform: translateY(-2px); color: var(--white); }

/* Inline links inside prose */
.faq-answer a { color: var(--green); border-bottom: 1px solid rgba(47, 229, 111, 0.4); }
.faq-answer a:hover { border-bottom-color: var(--green); }

/* Skip-to-content link: off-screen until keyboard-focused */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 200;
  background: var(--green);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 8px; }

/* ============================================
   NAV — film-credit bar
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 11, 8, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
  height: var(--nav-height);
  transition: box-shadow 0.2s;
}

.nav::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 38%, rgba(47, 229, 111, 0.25) 100%);
}

.nav.scrolled { box-shadow: 0 1px 16px rgba(0, 0, 0, 0.5); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E3EBE3;
  white-space: nowrap;
}

.nav-logo span { color: var(--green); }

.nav-links { display: none; gap: 30px; }

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--white); }
.nav-links-apply { display: none; }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Mobile keeps a compact always-visible Apply in the nav; desktop swaps it
   for the full-size one once the inline links appear. */
.nav-right .btn-sm { display: inline-flex; padding: 10px 14px; font-size: 11px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 2px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  /* .nav has backdrop-filter, which makes it the containing block for this
     fixed child; top/bottom then resolve against the 64px nav instead of the
     viewport. Pin an explicit viewport height so the panel always fills the
     screen and its background sits under every link. */
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  overflow-y: auto;
  background: var(--ink-0);
  padding: 40px var(--gutter);
  gap: 0;
  z-index: 99;
}

.nav-links.open a {
  font-size: 1rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--white);
}

.nav-links.open .nav-links-apply { display: block; color: var(--green); border-bottom: none; margin-top: 8px; }

/* ============================================
   HERO — the finish line photograph IS the page
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink-0);
  color: var(--white);
  padding-top: var(--nav-height);
}

.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 90% at -10% -20%, rgba(47, 229, 111, 0.075) 0%, rgba(47, 229, 111, 0) 55%);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  z-index: 1;
  border-left: 2px solid rgba(47, 229, 111, 0.65);
}

.hero-photo picture, .hero-photo img { width: 100%; height: 100%; }

.hero-photo img {
  object-fit: cover;
  object-position: 50% 34%;
  filter: saturate(0.78) contrast(1.06) brightness(0.96);
}

.hero-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, var(--ink-0) 0%, rgba(7, 11, 8, 0.72) 5%, rgba(7, 11, 8, 0) 15%),
    linear-gradient(180deg, rgba(7, 11, 8, 0.38) 0%, rgba(7, 11, 8, 0) 16%, rgba(7, 11, 8, 0) 62%, rgba(7, 11, 8, 0.55) 85%, var(--ink-0) 100%);
}

.hero-photo::after {
  content: "";
  position: absolute; inset: 0; z-index: 3;
  background:
    var(--grain),
    linear-gradient(200deg, rgba(47, 229, 111, 0.10) 0%, rgba(47, 229, 111, 0) 34%),
    linear-gradient(20deg, rgba(14, 61, 34, 0.30) 0%, rgba(14, 61, 34, 0) 45%);
  background-blend-mode: overlay, normal, normal;
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--gutter) 64px;
}

.hero-content { max-width: 46vw; position: relative; z-index: 5; }

.hero-ctas { position: relative; z-index: 5; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #DFF5E5;
  border: 1px solid rgba(47, 229, 111, 0.45);
  background: rgba(6, 14, 8, 0.72);
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  margin-bottom: 26px;
}

.hero-badge::before {
  content: "";
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  box-shadow: 0 0 0 0 rgba(47, 229, 111, 0.6);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 229, 111, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(47, 229, 111, 0); }
  100% { box-shadow: 0 0 0 9px rgba(47, 229, 111, 0); }
}

.hero-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E3EBE3;
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(3.1rem, 6vw, 7.25rem);
  line-height: 0.94;
  letter-spacing: 0.008em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-headline .hl { color: var(--green); }

.hero-sub {
  font-size: clamp(1.05rem, 1.1vw, 1.3rem);
  line-height: 1.65;
  color: var(--body-up);
  margin-bottom: 42px;
  max-width: 46ch;
}

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

/* staged entrance */
.hero-content > * { opacity: 0; transform: translateY(22px); animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.26s; }
.hero-content > *:nth-child(5) { animation-delay: 0.36s; }
.hero-inner > .hero-ctas { opacity: 0; transform: translateY(22px); animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.36s forwards; }

@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-inner > .hero-ctas { animation: none; opacity: 1; transform: none; }
  .hero-badge::before { animation: none; }
}

/* ============================================
   BANDS — section system
   ============================================ */
.section {
  background: var(--ink-1);
  border-top: 1px solid var(--hairline-g);
  padding: clamp(90px, 9vw, 160px) 0;
  color: var(--white);
}

.section-alt { background: var(--ink-2); }

.section-dark {
  background: var(--ink-0);
  border-top: 1px solid var(--hairline-g);
  padding: clamp(90px, 9vw, 170px) 0;
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-intro { color: var(--body-up); }

/* ============================================
   IS THIS FOR YOU — results board
   ============================================ */
.archetype-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

/* Odd card count: let the lone last card fill its row so no empty grid cell shows the hairline background. */
.archetype-list .archetype:last-child:nth-child(odd) { grid-column: 1 / -1; }

.archetype {
  background: var(--ink-card);
  padding: clamp(28px, 2.6vw, 46px);
  position: relative;
  transition: background 0.2s ease;
}

.archetype::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 3px;
  background: var(--green);
  transition: width 0.25s ease;
}

.archetype:hover { background: #0E150F; }
.archetype:hover::before { width: 64px; }

.archetype-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.25vw, 1.4rem);
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.archetype p { font-size: 1rem; line-height: 1.68; color: var(--body); }

.archetype-link { margin-top: 16px; }

.archetype-link a {
  font-size: 0.9rem;
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.archetype-link a:hover { color: var(--green); border-bottom-color: var(--green); }

/* Quiet single-line apply nudge at the end of long sections */
.cta-band {
  margin-top: clamp(48px, 5vw, 76px);
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.cta-band p { font-size: 1.04rem; line-height: 1.7; color: var(--body-up); }

.cta-band a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 229, 111, 0.4);
  transition: border-color 0.2s ease;
}

.cta-band a:hover { border-bottom-color: var(--green); }

/* ============================================
   WHAT I LOOK AT — weekly read signals
   ============================================ */
.method-week {
  margin-top: 56px;
  border-top: 1px solid var(--hairline);
}

.method-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(24px, 2.4vw, 36px) 0;
  border-bottom: 1px solid var(--hairline);
}

.method-day {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 5px;
}

.method-signal {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--body-up);
}

.pull-quote {
  margin: clamp(56px, 6vw, 88px) 0 0;
  padding-left: clamp(22px, 2.5vw, 34px);
  border-left: 3px solid var(--green);
}

.pull-quote p {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================
   THE KIND OF COACH I AM — story band w/ ghost burn-in
   ============================================ */
#about { position: relative; overflow: hidden; }

.about-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 110px);
}

.about-content .section-title { margin-bottom: 34px; }

.about-content p {
  font-size: clamp(1.09rem, 1.15vw, 1.25rem);
  line-height: 1.78;
  color: var(--body-up);
  max-width: 56ch;
  margin-bottom: 1.2em;
}

.about-content p:last-child { margin-bottom: 0; }

/* photo with registration frame + grade */
.photo-card {
  position: relative;
  max-width: 640px;
}

.photo-card picture { display: block; position: relative; overflow: hidden; }

.photo-card picture::after {
  content: "";
  position: absolute; inset: 0;
  background:
    var(--grain),
    linear-gradient(15deg, rgba(7, 13, 9, 0.55) 0%, rgba(7, 13, 9, 0) 42%),
    linear-gradient(205deg, rgba(47, 229, 111, 0.08) 0%, rgba(47, 229, 111, 0) 38%);
  background-blend-mode: overlay, normal, normal;
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: auto;
  filter: saturate(0.78) contrast(1.07) brightness(0.95);
}

.photo-card::after {
  content: "";
  position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 1px solid rgba(47, 229, 111, 0.35);
  pointer-events: none;
}

/* approach photo: lighter grade (source image is already dark) */
.approach-image img { filter: saturate(0.82) contrast(1.04) brightness(1.12); }
.approach-image picture::after {
  background:
    var(--grain),
    linear-gradient(15deg, rgba(7, 13, 9, 0.30) 0%, rgba(7, 13, 9, 0) 40%);
  background-blend-mode: overlay, normal;
}

/* ============================================
   HOW I COACH / WHAT COACHING INCLUDES — board lists
   ============================================ */
.approach-layout { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 96px); }
/* Stacked mobile order: text before photo, so this section's image does not
   land directly under the About section's image (two full-screen photos
   back to back). Desktop resets to DOM order (image left of text). */
.approach-image { order: 2; }

.approach-content .section-title { margin-bottom: 48px; }

.approach-item, .coaching-item {
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
}

.approach-item:last-child, .coaching-item:last-child { border-bottom: 1px solid var(--hairline); }

.approach-item h3, .coaching-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.25vw, 1.35rem);
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.approach-item p, .coaching-item p { color: var(--body); font-size: 1rem; line-height: 1.68; max-width: 64ch; }

.coaching-list { margin-top: 48px; }

/* ============================================
   FROM FIRST MESSAGE TO RACE DAY — start list
   ============================================ */
.steps { margin-top: 56px; display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--ink-card);
  padding: clamp(24px, 2.2vw, 38px);
}

.step-number {
  flex-shrink: 0;
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1;
  color: var(--green);
  min-width: 56px;
  position: relative;
  padding-top: 4px;
}

.step-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 34px;
  height: 3px;
  background: var(--green);
}

.step-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p { color: var(--body); font-size: 1rem; line-height: 1.65; }

/* ============================================
   FAQ — hairline rows
   ============================================ */
.faq-list { margin-top: 48px; border-top: 1px solid var(--hairline); }

.faq-item { border-bottom: 1px solid var(--hairline); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq-question svg { flex-shrink: 0; color: var(--green); transition: transform 0.25s ease; }

.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p { padding: 0 0 26px; color: var(--body); font-size: 1rem; line-height: 1.7; max-width: 64ch; }

/* ============================================
   APPLICATION — dark band + broadcast form
   ============================================ */
.application-form { margin-top: 56px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group-full { margin-bottom: 28px; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B7C6BA;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background-color: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(47, 229, 111, 0.7);
}

.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(242, 246, 242, 0.30); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232FE56F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group select option { background-color: var(--ink-0); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-success { text-align: left; padding: 60px 0 20px; }

.form-success h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.008em;
  margin-bottom: 12px;
  color: var(--white);
}

.form-success p { color: var(--body-up); font-size: 1.0625rem; }

.success-steps {
  margin-top: 26px;
  list-style: none;
  counter-reset: step;
}

.success-steps li {
  counter-increment: step;
  position: relative;
  padding: 13px 0 13px 46px;
  border-top: 1px solid var(--hairline);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--body-up);
}

.success-steps li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green);
}

.form-error {
  margin-top: 16px;
  color: #FFB4A8;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.assessment-note, .assessment-note-light {
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(47, 229, 111, 0.07);
  border: 1px solid rgba(47, 229, 111, 0.3);
  border-radius: 2px;
  color: var(--body-up);
  font-size: 0.95rem;
}

/* form-light legacy class (intake/assess) — remapped onto the dark system */
.form-light .form-group label { color: #B7C6BA; }
.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea { background-color: var(--surface); border-color: var(--hairline); color: var(--white); }
.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus { border-color: rgba(47, 229, 111, 0.7); }
.form-light .form-error { color: #FFB4A8; }
.form-light .form-success h2 { color: var(--white); }
.form-light .form-success p { color: var(--body-up); }

.assess-fieldset { border: 0; margin: 48px 0 0; padding: 32px 0 0; border-top: 1px solid var(--hairline); }

.assess-legend {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.008em;
  color: var(--white);
  padding-bottom: 6px;
}

.label-note { font-family: var(--font-mono); font-weight: 400; font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(172, 186, 175, 0.7); margin-left: 8px; }

.legend-count {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 6px;
}

.field-note { font-size: 0.9rem; color: var(--body); margin: 12px 0 4px; }

.checkbox-label { display: flex; gap: 10px; align-items: flex-start; color: var(--white); font-size: 0.9375rem; }
.checkbox-label input { -webkit-appearance: checkbox; appearance: checkbox; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--green); }

/* ============================================
   GOAL CHECK RESULTS — results board
   ============================================ */
.result-block, .full-report {
  background: var(--ink-card);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 32px;
  margin-top: 24px;
  position: relative;
}

.result-block::before, .full-report::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 3px;
  background: var(--green);
}

.result-heading, .result-next-heading {
  font-family: var(--font-disp);
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.008em;
  margin-bottom: 14px;
  color: var(--white);
}

.result-text, .result-note, .result-limiter p, .result-fix p { color: var(--body); font-size: 1rem; line-height: 1.65; }
.result-limiter, .result-fix { margin-top: 16px; }
.result-limiter strong, .result-fix strong { color: var(--white); }

.result-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(47, 229, 111, 0.45);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.result-tag-stretch { color: #F4D35E; border-color: rgba(244, 211, 94, 0.5); }
.result-tag-warn { color: #FFB4A8; border-color: rgba(255, 180, 168, 0.5); }

.result-next-links { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.result-next-links a { color: var(--green); font-weight: 500; }

.assess-cta p { margin-top: 24px; color: var(--body-up); }

.assessment-lead-form { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--hairline); }

.assessment-lead-form h3, .assessment-lead-success h3 {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.assessment-lead-form > p, .assessment-lead-success p { color: var(--body); margin-bottom: 24px; }
.assessment-lead-success { margin-top: 32px; }

.report-section { margin-top: 20px; }
.report-kicker { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #B7C6BA; margin-bottom: 8px; }
.report-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 12px; }
.report-metric { background: var(--surface); border: 1px solid var(--hairline); border-radius: 2px; padding: 12px 14px; font-size: 0.9375rem; color: var(--white); }
.report-list { margin: 12px 0 0 18px; color: var(--body); list-style: disc; }
.report-list li { margin-bottom: 8px; }
.full-report-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.full-report-actions { margin-top: 20px; }

.assess-actions { margin-top: 24px; }

.assess-reset {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid transparent;
  padding: 0;
}

.assess-reset:hover { border-bottom-color: var(--green); }

/* ============================================
   FOOTER — credits
   ============================================ */
.footer {
  background: var(--ink-0);
  border-top: 1px solid var(--hairline-g);
  padding: 48px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E3EBE3;
  display: block;
  margin-bottom: 6px;
}

.footer-copy { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(172, 186, 175, 0.82); }

.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--green); }

/* ============================================
   DESIGN ELEVATION (enhancement-only, reduced-motion gated, reversible)
   Palette + fonts + structure unchanged. Pure craft: depth, tactility,
   and one on-brand cinematic flourish (the green underline drawing in).
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Card depth: a gentle lift + shadow on the boxed cards (they already
     widen the green bar; this adds tactility without changing layout). */
  .archetype, .read-card {
    transition: background 0.2s ease, transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.22s ease;
  }
  .archetype:hover, .read-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  }

  /* Tactile press feedback on primary actions. */
  .btn:active { transform: translateY(0) scale(0.985); }

  /* Animated underline on inline prose links: slides in from the left
     instead of just changing color. Uses background, not layout. */
  .faq-answer a, .cta-band a, .read-cta a, .read-cta-tool a,
  .checkin-lead a, .examples-closer a, .examples-closer-tool a, .archetype-link a {
    border-bottom: none;
    background-image: linear-gradient(var(--green), var(--green));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 1px;
    padding-bottom: 1px;
    transition: background-size 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), color 0.2s ease;
  }
  .faq-answer a:hover, .cta-band a:hover, .read-cta a:hover, .read-cta-tool a:hover,
  .checkin-lead a:hover, .examples-closer a:hover, .examples-closer-tool a:hover, .archetype-link a:hover {
    background-size: 0% 1px;
    background-position: 100% 100%;
    color: var(--green-up);
    border-bottom: none;
  }

  /* Nav links: a thin underline that wipes in under the active hover. */
  .nav-links a {
    background-image: linear-gradient(var(--green), var(--green));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 1px;
    padding-bottom: 3px;
    transition: color 0.15s, background-size 0.25s ease;
  }
  .nav-links a:hover { background-size: 100% 1px; }
}

@media (prefers-reduced-motion: reduce) {
  .archetype::before, .read-card::before { transition: none; }
}

/* Cinematic flourish: the signature green section underline draws itself in
   as the heading scrolls into view. Modern browsers only; everywhere else it
   is the existing static 72px bar. Disabled under reduced motion. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-title::after {
      animation: st-underline-draw linear both;
      animation-timeline: view();
      animation-range: entry 8% entry 55%;
    }
    @keyframes st-underline-draw {
      from { width: 0; }
      to { width: 72px; }
    }
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .nav-links { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-links-apply { display: none !important; }
  .nav-right .btn-sm { padding: 12px 22px; font-size: 12px; }

  .about-layout { flex-direction: row; align-items: center; }
  .about-content { flex: 1.08; order: 2; }
  .about-image { flex: 0.92; order: 1; }

  .approach-layout { flex-direction: row; align-items: flex-start; }
  .approach-content { flex: 1.1; }
  .approach-image { flex: 0.9; position: sticky; top: 120px; order: 0; }

  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 880px) {
  /* Stacked poster: photo band with the clock on top, content on ink below.
     CTA appears before the stats (visual order only; DOM/text order frozen). */
  .hero {
    display: block;
    min-height: auto;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(40svh, 380px);
    border-left: none;
    border-bottom: 2px solid rgba(47, 229, 111, 0.65);
  }

  .hero-photo img { object-position: 50% 58%; }

  .hero-photo::before {
    background:
      linear-gradient(180deg, rgba(7, 11, 8, 0.30) 0%, rgba(7, 11, 8, 0) 22%, rgba(7, 11, 8, 0) 64%, rgba(7, 11, 8, 0.55) 88%, var(--ink-0) 100%);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 26px var(--gutter) 44px;
  }

  .hero-content { max-width: 100%; }
  .hero-badge { margin-bottom: 20px; }
  .hero-name { margin-bottom: 16px; }
  .hero-headline { font-size: clamp(2.4rem, 10.5vw, 3.4rem); margin-bottom: 20px; }
  .hero-sub { margin-bottom: 0; }

  .hero-ctas {
    order: 1;
    margin: 28px 0 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-ctas .btn, .hero-ctas .hero-secondary { width: 100%; }


  .archetype-list { grid-template-columns: 1fr; }

  .method-row { grid-template-columns: 1fr; gap: 10px; }
  .method-day { padding-top: 0; }

  #about::before { font-size: clamp(140px, 34vw, 220px); top: 8px; }
  .photo-card::after { top: 14px; left: 14px; right: -14px; bottom: -14px; }
}

/* Closer lines under the /x example cards */
.examples-closer {
  margin-top: clamp(40px, 4.5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--body-up);
}

.examples-closer-tool {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body);
}

.examples-closer a,
.examples-closer-tool a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 229, 111, 0.4);
  transition: border-color 0.2s ease;
}

.examples-closer a:hover,
.examples-closer-tool a:hover { border-bottom-color: var(--green); }

/* ============================================
   CHECK-IN BAND — not-ready-yet capture
   ============================================ */
#checkin { padding: clamp(56px, 6vw, 90px) 0; }

.checkin-lead {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--body-up);
  max-width: 620px;
}

.checkin-lead a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 229, 111, 0.4);
  transition: border-color 0.2s ease;
}

.checkin-lead a:hover { border-bottom-color: var(--green); }

.checkin-form { margin-top: 26px; }

.checkin-fields {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 14px;
  align-items: end;
}

.checkin-fields .btn { padding-top: 14px; padding-bottom: 14px; white-space: nowrap; }

.checkin-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
}

.checkin-success {
  margin-top: 26px;
  font-size: 1.04rem;
  color: var(--green-up);
}

@media (max-width: 768px) {
  .checkin-fields { grid-template-columns: 1fr; align-items: stretch; }
}

/* ============================================
   READS — content surface
   ============================================ */
.read-list { margin-top: 48px; display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.read-card {
  display: block;
  background: var(--ink-card);
  padding: clamp(28px, 2.6vw, 42px);
  position: relative;
  transition: background 0.2s ease;
}
.read-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 34px; height: 3px; background: var(--green);
  transition: width 0.25s ease;
}
.read-card:hover { background: #0E150F; }
.read-card:hover::before { width: 64px; }
.read-card-title {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(1.2rem, 1.4vw, 1.55rem); line-height: 1.3;
  color: var(--white); letter-spacing: -0.01em; margin-bottom: 12px;
}
.read-card-dek { font-size: 1rem; line-height: 1.65; color: var(--body); margin-bottom: 18px; }
.read-card-more { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }

.read-article { padding-top: clamp(80px, 8vw, 120px); }
.read-eyebrow { margin-bottom: 22px; }
.read-eyebrow a { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); border-bottom: 1px solid rgba(47, 229, 111, 0.4); }
.read-eyebrow a:hover { border-bottom-color: var(--green); }
.read-title {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2.4rem, 4.4vw, 4.4rem); line-height: 0.99;
  letter-spacing: 0.008em; text-transform: uppercase; text-wrap: balance; color: var(--white);
}
.read-dek { margin-top: 24px; font-size: clamp(1.1rem, 1.3vw, 1.35rem); line-height: 1.6; color: var(--body-up); max-width: 60ch; }
.read-body { margin-top: clamp(36px, 4vw, 56px); }
.read-body p { font-size: 1.1rem; line-height: 1.75; color: var(--body-up); max-width: 64ch; }
.read-body p + p { margin-top: 1.4em; }

.read-cta {
  margin-top: clamp(48px, 5vw, 76px);
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
}
.read-cta p { font-size: 1.05rem; line-height: 1.7; color: var(--body-up); max-width: 64ch; }
.read-cta-tool { margin-top: 12px; font-size: 0.95rem; color: var(--body); }
.read-cta a { color: var(--green); font-weight: 600; border-bottom: 1px solid rgba(47, 229, 111, 0.4); transition: border-color 0.2s ease; }
.read-cta a:hover { border-bottom-color: var(--green); }

/* ============================================
   STICKY MOBILE APPLY BAR
   ============================================ */
.sticky-apply {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 16px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 11, 8, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline-g);
  transform: translateY(102%);
  transition: transform 0.3s ease;
}

.sticky-apply.visible { transform: translateY(0); }

.sticky-apply-note {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body);
  line-height: 1.55;
  white-space: nowrap;
}

.sticky-apply .btn { flex: 1; text-align: center; }

@media (max-width: 768px) {
  .sticky-apply { display: flex; }
}

/* ============================================
   APPLY PAGE CREDIBILITY STRIP
   ============================================ */
.apply-cred {
  margin-top: 44px;
  border: 1px solid var(--hairline);
  background: var(--ink-card);
  padding: 22px clamp(20px, 2.4vw, 32px) 18px;
}

.apply-cred-list { list-style: none; }

.apply-cred-list li {
  position: relative;
  padding: 7px 0 7px 24px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--body-up);
}

.apply-cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 11px;
  height: 2px;
  background: var(--green);
}

/* Very narrow phones: tighten nav and sticky bar so nothing overflows 320px. */
@media (max-width: 360px) {
  .nav-inner { padding: 0 16px; }
  .nav-right { gap: 10px; }
  .nav-right .btn-sm { padding: 9px 10px; font-size: 10px; }
  .sticky-apply { gap: 10px; padding-left: 16px; padding-right: 16px; }
  .sticky-apply-note { display: none; }
  .step { flex-direction: column; gap: 14px; }
}

/* Short phones (e.g. iPhone SE): tighten the poster so the primary CTA
   lands inside the first viewport. */
@media (max-width: 880px) and (max-height: 700px) {
  .hero-photo { height: min(30svh, 380px); }
  .hero-inner { padding-top: 20px; }
  .hero-badge { margin-bottom: 14px; }
  .hero-name { margin-bottom: 12px; }
  .hero-headline { font-size: clamp(2.1rem, 9vw, 3rem); margin-bottom: 16px; }
  .hero-ctas { margin: 20px 0 32px; }
}

@media print {
  .nav, .hero-photo, .footer { display: none; }
  body { background: #fff; color: #000; }
}
