/* ============================================================
   nymo — minimal landing styles
   Tokens from colors_and_type.css. Airy. Lots of space.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--fg-1); font-family: var(--font-body); }

.page { max-width: 1280px; margin: 0 auto; }

::selection { background: var(--petrol); color: #fff; }

/* ---------- Wordmark ---------- */
.nymo-mark {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.nymo-mark.is-dark { color: var(--paper); }
.nymo-mark-dot {
  width: 0.22em;
  height: 0.22em;
  background: var(--petrol);
  display: inline-block;
  margin-left: 0.05em;
  transform: translateY(-0.05em);
  border-radius: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 0;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: background var(--dur-2) var(--ease-snap),
              color var(--dur-2) var(--ease-snap),
              box-shadow var(--dur-1) var(--ease-snap),
              transform var(--dur-1) var(--ease-snap);
}
.btn-primary {
  background: var(--ink); color: var(--paper);
  box-shadow: 4px 4px 0 0 var(--petrol);
}
.btn-primary:hover { background: var(--petrol); box-shadow: 4px 4px 0 0 var(--ink); }
.btn-primary:active { box-shadow: 0 0 0 0 var(--ink); transform: translate(4px, 4px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 11.5px 20.5px;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-text {
  background: transparent; color: var(--ink);
  padding: 11px 4px; position: relative; font-weight: 500;
}
.btn-text::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 8px;
  height: 1.5px; background: var(--petrol);
  transform: scaleX(0.18); transform-origin: left;
  transition: transform var(--dur-2) var(--ease-snap);
}
.btn-text:hover::after { transform: scaleX(1); }
.btn-arrow::after {
  content: " →"; margin-left: 4px;
  display: inline-block;
  transition: transform var(--dur-2) var(--ease-snap);
}
.btn:hover .btn-arr, .btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nv {
  display: flex; align-items: center; gap: 32px;
  padding: 22px 40px;
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease-snap);
}
.nv.is-stuck { border-bottom-color: var(--paper-edge); }
.nv-brand { display: inline-flex; align-items: center; text-decoration: none; }
.nv-links {
  list-style: none; display: flex; gap: 28px;
  margin: 0; padding: 0; flex: 1; justify-content: center;
}
.nv-links a {
  color: var(--ink); text-decoration: none;
  font-weight: 500; font-size: 14px;
  letter-spacing: -0.005em;
  transition: color var(--dur-2) var(--ease-snap);
}
.nv-links a:hover { color: var(--petrol); }
.nv-actions { display: flex; align-items: center; gap: 14px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  padding: 5px 0;
}
.lang-btn {
  background: transparent; border: none; padding: 0;
  color: var(--fg-3); cursor: pointer;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: color var(--dur-2) var(--ease-snap);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-on { color: var(--ink); font-weight: 600; }
.lang-btn.is-on::after {
  content: ""; display: block; height: 2px; background: var(--petrol); margin-top: 1px;
}
.lang-sep { color: var(--paper-edge); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-block;
}

/* ---------- Section base ---------- */
.section {
  padding: 160px 40px;
  border-top: 1px solid var(--paper-edge);
  position: relative;
}
.section:first-of-type { border-top: none; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 880px; }

.section-eyebrow {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 56px;
}
.section-eyebrow::after {
  content: ""; flex: 1; height: 1px;
  background-image: linear-gradient(90deg, var(--paper-edge) 50%, transparent 0);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

/* ---------- Headlines ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.h-display.xl { font-size: clamp(56px, 9.5vw, 132px); }
.h-display.l  { font-size: clamp(44px, 6vw, 88px); line-height: 1.02; }
.h-display.m  { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.05; }

.h-display .accent { color: var(--petrol); }
.h-display .dim { color: var(--fg-4); }

.section-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 32px 0 0;
  text-wrap: pretty;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 40px 160px;
  position: relative;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-slogan {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 64px;
}
.hero-slogan::before {
  content: ""; width: 8px; height: 8px;
  background: var(--petrol); display: inline-block;
}
.hero-h1 { margin: 0; }
.hero-sub {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: var(--fg-2);
  max-width: 48ch;
  margin: 40px 0 56px;
  text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-fig {
  display: flex; align-items: center; gap: 20px;
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px dashed var(--ink);
}
.hero-fig img { height: 56px; }
.hero-fig-cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- Problem ---------- */
.problem { background: var(--paper); }
.problem-h .line { display: block; }
.problem-h .line:nth-child(1) { color: var(--ink); }
.problem-h .line:nth-child(2) { color: var(--ink-mute); }
.problem-h .line:nth-child(3) { color: var(--petrol); }

/* ---------- Problem cards ---------- */
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.problem-card {
  border: 1px solid var(--paper-edge);
  border-top: 3px solid var(--ink);
  padding: 28px 28px 32px;
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-card-n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--petrol);
  font-weight: 500;
}
.problem-card p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 640px) {
  .problem-cards { grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
}

/* ---------- How it works ---------- */
.how { background: var(--bg-raised); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--ink);
}
.how-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 56px;
  padding: 40px 0;
  border-bottom: 1px solid var(--paper-edge);
  align-items: baseline;
  transition: background var(--dur-2) var(--ease-snap);
}
.how-step:last-child { border-bottom: 1px solid var(--ink); }
.how-step-n {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--petrol);
  padding-top: 6px;
}
.how-step-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
  text-wrap: balance;
}
.how-step-p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  max-width: 48ch;
}

/* ---------- Employer flow: list + arrow + detail side by side ---------- */
.emp-head { max-width: 880px; }
.emp-flow {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 0;
  margin-top: 88px;
  align-items: stretch;
}
.emp-flow-card { display: flex; }
.emp-flow-card .mock { width: 100%; max-width: none; }
.emp-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
  position: relative;
}
.emp-flow-arrow-line {
  width: 100%; height: 1px;
  background-image: linear-gradient(90deg, var(--petrol) 50%, transparent 0);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.emp-flow-arrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol);
  text-align: center;
  max-width: 90px;
  line-height: 1.4;
}
.emp-flow-arrow-glyph {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--petrol);
  line-height: 1;
}

/* connector becomes vertical on narrow */
@media (max-width: 800px) {
  .emp-flow {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .emp-flow-arrow {
    flex-direction: row;
    padding: 18px 0;
  }
  .emp-flow-arrow-line {
    width: 1px; height: 32px;
    background-image: linear-gradient(0deg, var(--petrol) 50%, transparent 0);
    background-size: 1px 8px;
  }
  .emp-flow-arrow-glyph { transform: rotate(90deg); }
}
@media (min-width: 800px) and (max-width: 1024px) {
  .emp-flow { grid-template-columns: 1fr 90px 1fr; }
}

/* ---------- Scroll progress hairline ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  background: var(--petrol);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 120ms linear;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 320ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee-scroll 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; }
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--petrol-bright);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* ---------- Hero ratio visualization ---------- */
.hero-ratio {
  margin-top: 96px;
  padding: 28px 0 24px;
  border-top: 1px dashed var(--ink);
  border-bottom: 1px dashed var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-ratio-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero-ratio-head .accent { color: var(--petrol); }
.hero-ratio-dots {
  display: grid;
  grid-template-columns: repeat(100, 1fr);
  gap: 4px;
  align-items: center;
  height: 14px;
}
.hero-ratio-dot {
  width: 100%;
  height: 4px;
  background: var(--paper-edge);
  transition: background var(--dur-2) var(--ease-snap);
}
.hero-ratio-dot.is-on {
  background: var(--petrol);
  height: 14px;
  box-shadow: 0 0 0 1px var(--ink);
}
.hero-ratio-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
}

/* ---------- Hero figure (kept for caption) ---------- */
.hero-tagline {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.hero-tagline::before {
  content: ""; width: 24px; height: 1px;
  background: var(--fg-4); display: inline-block;
}

/* ---------- Pilot fit card ---------- */
.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 96px;
  align-items: start;
  margin-top: 24px;
}
.pilot-fit {
  border: 1px solid var(--paper-edge);
  background: var(--bg-raised);
  padding: 28px 28px 32px;
  box-shadow: 6px 6px 0 0 var(--ink);
}
.pilot-fit-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.pilot-fit-l::before {
  content: ""; width: 8px; height: 8px;
  background: var(--petrol); display: inline-block;
}
.pilot-fit-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.pilot-fit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--paper-edge);
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.pilot-fit-list li:last-child { border-bottom: 1px solid var(--paper-edge); }
.pilot-fit-list li .mk {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--petrol);
}

@media (max-width: 920px) {
  .pilot-grid { grid-template-columns: 1fr; gap: 56px; }
  .pilot-fit { max-width: 100%; }
}
@media (min-width: 800px) and (max-width: 1024px) {
  .pilot-grid { grid-template-columns: 1fr 280px; gap: 56px; }
}

/* ---------- Footer wordmark ---------- */
.ftr-mark {
  padding: 24px 0 64px;
  margin-bottom: 40px;
  border-bottom: 1px solid #2A2A2A;
}
.ftr-mark-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(96px, 18vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--paper);
  display: inline-flex;
  align-items: baseline;
}
.ftr-mark-dot {
  width: 0.16em; height: 0.16em;
  background: var(--petrol-bright);
  display: inline-block;
  margin-left: 0.04em;
  transform: translateY(-0.04em);
}

/* ---------- Card hover affordance ---------- */
.mock {
  transition: transform var(--dur-2) var(--ease-snap),
              box-shadow var(--dur-2) var(--ease-snap);
}
.mock:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--petrol);
}

/* ---------- Nav scroll compact ---------- */
.nv { transition: padding var(--dur-2) var(--ease-snap), background var(--dur-2) var(--ease-snap); }
.nv.is-stuck {
  padding: 12px 40px;
  background: rgba(244, 241, 234, 0.96);
  border-bottom-color: var(--paper-edge);
}
@media (max-width: 800px) {
  .nv.is-stuck { padding: 10px 20px; }
}

/* ---------- Section number badge ---------- */
.section-eyebrow-line {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 56px;
}
.section-eyebrow-line::after {
  content: ""; flex: 1; height: 1px;
  background-image: linear-gradient(90deg, var(--paper-edge) 50%, transparent 0);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}

/* ---------- Hero refinements ---------- */
.hero { padding-bottom: 120px; }

/* ---------- Responsive ratio shrink ---------- */
@media (max-width: 600px) {
  .hero-ratio-dots {
    grid-template-columns: repeat(50, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 3px;
    height: auto;
  }
}

/* ---------- Section split (text + visual) ---------- */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: start;
}
.section-split-copy { padding-top: 8px; }

/* ---------- Mock cards (shared frame) ---------- */
.mock {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  box-shadow: 6px 6px 0 0 var(--ink);
  padding: 22px 24px 24px;
  display: flex; flex-direction: column;
  position: relative;
  color: var(--ink);
  font-family: var(--font-body);
  max-width: 440px;
}
.mock-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--paper-edge);
}
.mock-header .dot {
  width: 8px; height: 8px; background: var(--petrol);
  display: inline-block; margin-right: 8px;
  vertical-align: middle;
}

/* ---------- Profile card ---------- */
.mock-profile-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.mock-profile-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin: 6px 0 18px;
  text-transform: uppercase;
}
.mock-profile-rows {
  display: flex; flex-direction: column; gap: 0;
}
.mock-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--paper-edge);
  align-items: baseline;
  gap: 12px;
}
.mock-row:last-child { border-bottom: none; }
.mock-row-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.mock-row-v {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.mock-progress {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--paper-edge);
}
.mock-progress-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petrol);
}
.mock-progress-bar {
  height: 3px; background: var(--paper-edge); position: relative;
}
.mock-progress-fill {
  position: absolute; inset: 0 8% 0 0;
  background: var(--petrol);
}

/* ---------- Ranked list card ---------- */
.mock-list-role-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petrol);
}
.mock-list-role {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 4px 0 0;
}
.mock-list-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  margin-top: 4px;
}
.mock-list-items {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-direction: column;
}
.mock-list-item {
  display: grid;
  grid-template-columns: 38px 1fr 56px;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-top: 1px solid var(--paper-edge);
  margin: 0 -12px;
  transition: background var(--dur-2) var(--ease-snap);
}
.mock-list-item:last-child { border-bottom: 1px solid var(--paper-edge); }
.mock-list-item.is-active {
  background: var(--petrol-wash);
  border-top-color: var(--petrol);
  border-bottom-color: var(--petrol);
  position: relative;
}
.mock-list-item.is-active + .mock-list-item { border-top-color: var(--petrol); }
.mock-list-item.is-active::before {
  content: "";
  position: absolute;
  left: -12px; top: 0; bottom: 0;
  width: 3px; background: var(--petrol);
}
.mock-list-rank {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
.mock-list-item.is-active .mock-list-rank { color: var(--petrol); }
.mock-list-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.mock-list-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.mock-list-item.is-active .mock-list-tag { color: var(--petrol-deep); }
.mock-list-score {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-align: right;
  color: var(--ink);
}
.mock-list-item.is-active .mock-list-score { color: var(--petrol); }

/* connector between list and detail */
.mock-flow {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
  position: relative;
  max-width: 440px;
}
.mock-flow-arrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol);
  padding-left: 24px;
}
.mock-flow-arrow::before {
  content: "";
  width: 1px; height: 22px;
  background: var(--petrol);
  display: inline-block;
}
.mock-flow-arrow::after {
  content: "↓";
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--petrol);
}

/* ---------- Detail recommendation card ---------- */
.mock-detail-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 18px;
}
.mock-detail-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0;
}
.mock-detail-score {
  display: flex; align-items: baseline; gap: 8px;
}
.mock-detail-score-n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--petrol);
}
.mock-detail-score-u {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.mock-detail-block {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 16px;
}
.mock-detail-l {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.mock-detail-block.warn .mock-detail-l { color: var(--amber); }
.mock-detail-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-detail-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}
.mock-detail-list .ok {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--petrol);
}
.mock-detail-list .wn {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--amber);
}
.mock-detail-cta {
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  align-self: flex-start;
}
.mock-detail-cta::after { content: "→"; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .section-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .mock, .mock-flow { max-width: 100%; }
}
@media (min-width: 800px) and (max-width: 1024px) {
  .section-split { gap: 56px; }
}

/* ---------- Employers / Candidates / Positioning shared ---------- */
.statement-h .line { display: block; }
.statement-h .line.accent { color: var(--petrol); }
.statement-h .line.dim { color: var(--fg-4); }

.emp { background: var(--paper); }

.cand { background: var(--ink); color: var(--paper); }
.cand .section-eyebrow { color: #8A8377; }
.cand .section-eyebrow::after {
  background-image: linear-gradient(90deg, #3A3A3A 50%, transparent 0);
}
.cand .eyebrow { color: var(--petrol-bright); }
.cand .h-display { color: var(--paper); }
.cand .h-display .accent { color: var(--petrol-bright); }
.cand .h-display .dim { color: #6A6557; }
.cand-note {
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--petrol-bright);
  padding-top: 18px;
  border-top: 1px solid #2A2A2A;
  display: flex; gap: 14px; align-items: center;
}
.cand-note::before {
  content: ""; width: 28px; height: 1px; background: var(--petrol-bright);
}

.pos { background: var(--bg-raised); }
.pos-h .line { display: block; }
.pos-h .line.accent { color: var(--petrol); }
.pos-h .line:nth-child(1),
.pos-h .line:nth-child(2) {
  color: var(--ink-mute);
}

/* ---------- Pilot ---------- */
.pilot { background: var(--paper); }
.pilot-cta { margin-top: 56px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.pilot-fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  text-transform: uppercase;
}

/* ---------- Waitlist ---------- */
.waitlist { background: var(--ink); color: var(--paper); }
.waitlist .section-eyebrow {
  color: #8A8377;
}
.waitlist .section-eyebrow::after {
  background-image: linear-gradient(90deg, #3A3A3A 50%, transparent 0);
}
.waitlist .eyebrow { color: var(--petrol-bright); }
.waitlist .h-display { color: var(--paper); }
.waitlist .section-sub { color: #BFB8A8; }

.wait-form { margin-top: 56px; max-width: 640px; }
.wait-row {
  display: flex; gap: 12px; align-items: stretch;
  border-bottom: 2px solid var(--paper);
  padding-bottom: 4px;
  transition: border-color var(--dur-2) var(--ease-snap);
}
.wait-row:focus-within { border-bottom-color: var(--petrol-bright); }
.wait-input {
  flex: 1;
  background: transparent;
  color: var(--paper);
  border: none;
  padding: 14px 4px;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 22px);
  outline: none;
  font-weight: 400;
}
.wait-input::placeholder { color: #6A6557; }
.wait-btn {
  background: var(--paper); color: var(--ink);
  border: none;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease-snap),
              color var(--dur-2) var(--ease-snap);
  white-space: nowrap;
}
.wait-btn:hover { background: var(--petrol-bright); color: var(--ink); }
.wait-fine {
  margin-top: 18px;
  font-size: 13px;
  color: #8A8377;
  max-width: 56ch;
}
.wait-done {
  display: flex; gap: 20px; align-items: center;
  margin-top: 56px;
  padding: 24px 28px;
  border: 2px solid var(--petrol-bright);
  max-width: 640px;
}
.wait-done-stamp {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--petrol-bright);
  border: 1px solid var(--petrol-bright);
  padding: 8px 12px;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.wait-done-msg { font-size: 17px; color: var(--paper); margin: 0; }

/* ---------- Footer ---------- */
.ftr {
  background: var(--ink); color: var(--paper);
  padding: 64px 40px 40px;
  border-top: 1px solid #2A2A2A;
}
.ftr-inner { max-width: 1100px; margin: 0 auto; }
.ftr-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A2A2A;
}
.ftr-brand-line {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #BFB8A8;
  margin-top: 18px;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.ftr-brand-line span:first-child { color: var(--paper); }
.ftr-links {
  display: flex; gap: 28px; align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ftr-links a {
  color: var(--paper); text-decoration: none;
  font-size: 14px; opacity: 0.85;
  transition: opacity var(--dur-2) var(--ease-snap), color var(--dur-2) var(--ease-snap);
}
.ftr-links a:hover { color: var(--petrol-bright); opacity: 1; }
.ftr-bot {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 24px;
  flex-wrap: wrap;
}
.ftr-fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6A6557;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .section { padding: 88px 24px; }
  .hero { padding: 56px 24px 88px; }
  .ftr { padding: 48px 24px 28px; }
  .nv { padding: 16px 20px; gap: 14px; }
  .nv-links { display: none; }
  .section-eyebrow { margin-bottom: 36px; }
  .hero-slogan { margin-bottom: 40px; }
  .hero-sub { margin: 28px 0 36px; }
  .hero-fig { margin-top: 56px; }
  .how-step { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .ftr-top { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .ftr-links { justify-content: flex-start; }
}
