/* ─── Jobeezy Web Brand CSS v3 (Voltfield) ────────────────────────────────────
 * The design system we actually want to use.
 * Single accent: volt (#D6FF3E). Used on primary CTA, live counter, and
 * selected micro-moments. Never on body text or decoration.
 * ────────────────────────────────────────────────────────────────────────── */

:root {
  /* Surfaces — v3.2 warm-ink (2026-04-23) */
  /* Softened the near-black from cool blue-black (#1F2A37) to warm
   * brown-black (#2F2A28). Same visual depth, but sits with the volt and
   * cream instead of fighting them. No other palette changes. */
  --bg: #f5f6f3; /* soft paper — replaces harsh #FFFFFF (seo-design-consistency) */
  --surface: #f6f6f3;
  --surface-warm: #faf6ee; /* cream (was pink-tinted) */
  --surface-warm-deep: #f2ecde;
  --surface-deep: #2f2a28; /* warm brown-black (was #1F2A37) */
  --surface-ink: #2f2a28;
  --surface-steel: #15202b; /* footer edge */
  --voltfield: #cfea7a; /* softened signature canvas */
  --nav-surface: #ece8dd; /* calmer top-nav surface for desktop readability */

  /* Foreground — warm ink body text (not pure black) */
  --fg: #2f2a28;
  --fg-secondary: #374151;
  --fg-muted: #5b6370;
  --fg-subtle: #9aa2ae;
  --fg-inverse: #ffffff;

  /* Brand */
  --brand: #2f2a28;
  --brand-hover: #15202b;
  --brand-light: #faf6ee;
  --brand-muted: #c7cdd6;

  /* Single accent */
  --accent: #c7e35a;
  --accent-hover: #b8d44d;
  --accent-ink: #2f2a28;

  /* Semantic */
  --success: #0b6b4d;
  --success-surface: #e9f7f0;
  --success-border: #a7dcc4;
  --warning: #8a5200;
  --warning-surface: #fff3dd;
  --warning-border: #facd7a;
  --error: #b42318;
  --error-surface: #fef2f2;
  --error-border: #fecaca;
  --interview: #6d28d9;
  --interview-surface: #f0ebff;
  --border-interview: #d9cbfa;

  /* Borders */
  --border: #e6e4dc;
  --border-subtle: #eeece4;
  --border-strong: #2f2a28;

  /* Mock company logos (simulated brand chips in the product frame) */
  --mock-logo-1: #635bff; /* stripe-ish */
  --mock-logo-2: #000; /* notion */
  --mock-logo-3: #5e6ad2; /* linear */

  /* Typography */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Source Serif 4", ui-serif, Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Type scale — Inter for headlines, tight tracking */
  --fs-eyebrow: 13px;
  --fs-body: 16px;
  --fs-lede: 19px;
  --fs-h3: 24px;
  --fs-h2: 36px;
  --fs-h1: 62px;
  --fs-display: 88px;

  --lh-tight: 1.02;
  --lh-display: 0.95;
  --lh-heading: 1.1;
  --lh-body: 1.55;

  --tr-display: -0.045em;
  --tr-heading: -0.03em;
  --tr-body: -0.01em;

  /* Spacing (4px grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-28: 112px;
  --s-32: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(10, 12, 16, 0.04);
  --shadow-2: 0 4px 12px rgba(10, 12, 16, 0.07);
  --shadow-3: 0 24px 48px -20px rgba(10, 12, 16, 0.22), 0 8px 16px -6px rgba(10, 12, 16, 0.08);
  --shadow-voltglow: 0 0 0 1px rgba(10, 12, 16, 0.08), 0 24px 64px -24px rgba(214, 255, 62, 0.35);

  /* Motion */
  --dur-1: 150ms;
  --dur-2: 250ms;
  --dur-3: 420ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset / base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px; /* sticky nav height */
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  font-feature-settings: "ss01", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: var(--fg);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: var(--tr-display);
  line-height: var(--lh-display);
  margin: 0;
  color: var(--fg);
}
h1 {
  font-size: clamp(34px, 4.8vw, var(--fs-display));
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
}
h2 {
  font-size: clamp(28px, 3.3vw, var(--fs-h2));
  letter-spacing: var(--tr-heading);
  line-height: var(--lh-heading);
}
h3 {
  font-size: var(--fs-h3);
  letter-spacing: var(--tr-heading);
  line-height: var(--lh-heading);
}
h4 {
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 1.3;
}
p {
  margin: 0 0 var(--s-4);
}

.container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 900px) {
  .container {
    padding-inline: 32px;
  }
}

/* ─── Top ticker bar (live excitement) ───────────────────────────────── */
.ticker-bar {
  background: var(--surface-deep);
  color: var(--fg-inverse);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker-track {
  display: flex;
  gap: var(--s-12);
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  padding: 10px 0;
  will-change: transform;
}
.ticker-track > span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 255, 62, 0.22);
  animation: pulse 1.6s var(--ease-out) infinite;
}
.ticker-accent {
  color: var(--accent);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}

/* ─── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(236, 232, 221, 0.94);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(10, 12, 16, 0.08);
}
.nav-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 12px var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
@media (min-width: 900px) {
  .nav-inner {
    padding: 14px var(--s-10);
  }
}
.nav-brand {
  display: inline-flex;
  align-items: center;
}
.nav-brand img {
  height: 28px;
  width: auto;
}
.nav-links {
  display: none;
  flex: 1;
  gap: var(--s-6);
}
.nav-links a {
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border var(--dur-1) var(--ease-out);
}
.nav-links a:hover {
  text-decoration: none;
  border-bottom-color: var(--fg);
}
@media (min-width: 1024px) {
  .nav-links {
    display: inline-flex;
  }
}
.nav-cta {
  display: inline-flex;
  gap: var(--s-3);
  margin-left: auto;
  align-items: center;
}

/* Mobile: keep a compact primary CTA in header so first screen has a visible action. */
.nav-cta .btn-sharp-primary {
  padding: 12px 18px;
  font-size: 13px;
}
@media (max-width: 899px) {
  .nav-cta .btn-sharp-primary {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* Sign-in text link in header — quiet, adjacent to primary CTA */
.nav-signin {
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  transition:
    border var(--dur-1) var(--ease-out),
    color var(--dur-1) var(--ease-out);
}
.nav-signin:hover {
  text-decoration: none;
  border-bottom-color: var(--fg);
}
.nav-mobile-signin {
  color: var(--fg) !important;
  font-weight: 600;
  margin-top: 6px;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  border: 1.5px solid transparent;
  border-radius: 0;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all var(--dur-2) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.hide-sm {
  display: none;
}
@media (min-width: 900px) {
  .hide-sm {
    display: inline-flex;
  }
}
.btn-primary {
  background: var(--fg);
  color: var(--accent);
}
.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.btn-accent:hover {
  background: var(--accent-hover);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  border-color: var(--fg);
  color: var(--fg);
}
.btn-ghost:hover {
  background: var(--fg);
  color: var(--accent);
  text-decoration: none;
}
.btn-outline-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--fg-inverse);
}
.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.btn-xl {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--fg);
  border-bottom: 2px solid var(--fg);
  padding-bottom: 2px;
  transition: gap var(--dur-2) var(--ease-out);
}
.btn-link:hover {
  gap: 10px;
  text-decoration: none;
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: var(--voltfield);
  position: relative;
  padding: var(--s-16) 0 var(--s-20);
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 12, 16, 0.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 80% 20%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(10, 12, 16, 0.05), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--s-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding-inline: var(--s-10);
    gap: var(--s-16);
    align-items: center;
    max-width: 1180px;
  }
}

.hero-copy {
  max-width: 680px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-6);
}
.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.6s var(--ease-out) infinite;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-6);
  color: var(--fg);
  font-weight: 900;
  max-width: 12ch;
}
.hero h1 em {
  font-style: normal;
  background: var(--fg);
  color: var(--accent);
  padding: 0 0.12em;
  display: inline-block;
  transform: skew(-4deg);
}
.hero .lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--fg);
  max-width: 44ch;
  margin-bottom: var(--s-8);
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

/* Live counter card (the excitement element) */
.live-card {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  background: var(--fg);
  color: var(--fg-inverse);
  padding: 12px 18px 12px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(214, 255, 62, 0.25);
  animation: pulse 1.6s var(--ease-out) infinite;
}
.live-num {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-family: var(--font-display);
}
.live-card small {
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero supporting visual: product mockup on volt plate */
.hero-device-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-device-wrap::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 86%;
  top: 10%;
  left: 6%;
  background: var(--fg);
  border-radius: 28px;
  transform: rotate(-2.5deg);
  z-index: 0;
}
.device {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 32px;
  padding: var(--s-3);
  border: 1px solid rgba(10, 12, 16, 0.12);
  box-shadow: var(--shadow-3);
  max-width: 420px;
  width: 100%;
  transform: rotate(1.5deg);
}
.device-screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.ui-statusbar {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px 18px 4px;
  color: var(--fg-muted);
}
.ui-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.ui-app-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ui-app-subtitle {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.ui-jobcard {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.ui-jobcard:last-child {
  border-bottom: 0;
}
.ui-jobcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ui-jobcard-company {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}
.ui-jobcard-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-jobcard-meta {
  font-size: 12px;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.ui-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--surface);
  color: var(--fg-secondary);
  border: 1px solid var(--border-subtle);
}
.ui-badge-success {
  background: var(--success-surface);
  color: var(--success);
  border-color: var(--success-border);
}
.ui-badge-warn {
  background: var(--warning-surface);
  color: var(--warning);
  border-color: var(--warning-border);
}

/* Fit-score ring */
.fit-ring {
  --pct: 0;
  --color: var(--fg);
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex: 0 0 44px;
  background: conic-gradient(var(--color) calc(var(--pct) * 1%), var(--surface) 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fit-ring::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--bg);
}
.fit-ring-val {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.row {
  display: inline-flex;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg-secondary);
}
.pill-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

/* ─── Marquee (hired-at companies) ──────────────────────────────────── */
.marquee {
  background: var(--fg);
  color: var(--fg-inverse);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.marquee-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 14px;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: ticker 36s linear infinite;
  white-space: nowrap;
}
.marquee-track > span {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg-inverse);
  opacity: 0.82;
}
.marquee-track > span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  margin-right: 20px;
  border-radius: 2px;
  vertical-align: middle;
}

/* ─── Sections ───────────────────────────────────────────────────────── */
.section {
  padding: clamp(56px, 7vw, 88px) 0;
}
.section-tight {
  padding: var(--s-16) 0;
}
.section-warm {
  background: var(--surface-warm);
}
.section-surface {
  background: var(--surface);
}
/* light-mode overhaul (0.12.7): retire the dark full-bleed slab; use warm cream with
   ink text + volt signature. Keeps the pipeline/flow dots readable without the harshness. */
.section-deep {
  background: linear-gradient(180deg, #faf6ee 0%, #f3eddf 100%);
  color: var(--accent-ink);
  border-top: 3px solid var(--accent);
  border-bottom: 1.5px solid var(--accent-ink);
}
.section-deep h1,
.section-deep h2,
.section-deep h3,
.section-deep h4 {
  color: var(--accent-ink);
}
.section-deep .eyebrow,
.section-deep .eyebrow-dark {
  color: var(--accent-ink);
}
.section-deep p {
  color: rgba(47, 42, 40, 0.78);
}
.section-deep a {
  color: var(--accent-ink);
  border-bottom: 1.5px solid var(--accent);
}

/* Long-form copy blocks (legal, policy, research explainers) */
.prose {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(47, 42, 40, 0.92);
}
.prose > *:last-child {
  margin-bottom: 0;
}
.prose h2,
.prose h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-ink);
  margin: 34px 0 12px;
  line-height: 1.2;
}
.prose h2 {
  font-size: clamp(24px, 3.3vw, 32px);
}
.prose h3 {
  font-size: clamp(20px, 2.8vw, 26px);
}
.prose p,
.prose ul,
.prose ol,
.prose blockquote {
  margin: 0 0 16px;
}
.prose ul,
.prose ol {
  padding-left: 22px;
}
.prose li {
  margin-bottom: 8px;
}
.prose strong {
  color: var(--accent-ink);
}
.prose a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 14px;
  color: rgba(47, 42, 40, 0.8);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  margin-bottom: var(--s-3);
}
.eyebrow-dark {
  color: var(--accent);
}
.eyebrow-accent {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: 4px;
}

.lede {
  font-size: clamp(18px, 1.4vw, var(--fs-lede));
  color: var(--fg-secondary);
  line-height: 1.5;
  max-width: 62ch;
}

/* Body-copy links should be distinguishable without relying on color alone. */
.section p a:not(.btn-link),
.section li a:not(.btn-link) {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.center {
  text-align: center;
}

/* Big-number posters */
.stat-poster-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .stat-poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stat-poster-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-poster {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition:
    transform var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.stat-poster:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}
.stat-poster-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.9vw, 72px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: var(--s-2);
}
.stat-poster-num em {
  font-style: normal;
  background: var(--accent);
  color: var(--fg);
  padding: 0 0.08em;
  transform: skew(-4deg);
  display: inline-block;
}
.stat-poster-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: var(--s-2);
  line-height: 1.35;
}
.stat-poster-src {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.stat-poster-src a {
  color: var(--fg-muted);
  border-bottom: 1px dotted currentColor;
}

/* 5-step walkthrough (number-first) */
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  padding: var(--s-8) 0;
  border-top: 1px solid rgba(47, 42, 40, 0.16);
  position: relative;
}
@media (min-width: 800px) {
  .step {
    grid-template-columns: 260px 1fr;
    gap: var(--s-12);
  }
}
.step:last-child {
  border-bottom: 1px solid rgba(47, 42, 40, 0.16);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(47, 42, 40, 0.72);
  padding-top: 4px;
}
.step h3 {
  font-size: clamp(24px, 2vw, 33px);
  margin-bottom: var(--s-3);
  color: var(--accent-ink);
}
.step p {
  color: rgba(47, 42, 40, 0.84);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.step:hover .step-num {
  color: var(--accent-ink);
}

/* Cards */
.card {
  background: #fcfbf7;
  border: 1px solid rgba(47, 42, 40, 0.1);
  border-radius: 16px;
  padding: var(--s-8);
  display: block;
  color: inherit;
  box-shadow: 0 16px 30px -24px rgba(10, 12, 16, 0.25);
}
.card-hover {
  transition:
    transform var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out);
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
  border-color: var(--fg);
  text-decoration: none;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: var(--s-3) 0 var(--s-3);
}
.card p {
  color: var(--fg-secondary);
  font-size: 15px;
}
.grid {
  display: grid;
  gap: var(--s-6);
}
.grid-2 {
  grid-template-columns: 1fr;
}
.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* Testimonials */
.testimonial {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--s-10);
  border: 1px solid var(--border);
  max-width: 740px;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--fg);
  margin: 0 0 var(--s-6);
  position: relative;
  padding-left: var(--s-6);
  border-left: 3px solid var(--accent);
}
.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 14px;
  color: var(--fg-secondary);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

/* Logo row */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-10);
  opacity: 0.72;
  margin-top: var(--s-6);
}
.logo-row span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* Manifesto band */
.manifesto {
  background: var(--voltfield);
  padding: var(--s-24) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 12, 16, 0.08);
  border-bottom: 1px solid rgba(10, 12, 16, 0.08);
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--fg);
}
.manifesto-text em {
  font-style: normal;
  background: var(--fg);
  color: var(--accent);
  padding: 0 0.1em;
  display: inline-block;
  transform: skew(-4deg);
}
.manifesto-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: var(--s-8);
}

/* Stat strip */
.stat-strip {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: minmax(0, 1fr);
  margin-top: var(--s-8);
}
@media (min-width: 800px) {
  .stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stat-strip > * {
  min-width: 0;
  overflow: hidden;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.stat-label {
  color: var(--fg-secondary);
  margin-top: var(--s-3);
  font-size: 15px;
  line-height: 1.45;
}
.stat-src {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.stat-src a {
  color: var(--fg-muted);
  border-bottom: 1px dotted currentColor;
}

/* Waitlist form */
.field {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: stretch;
}
.field input[type="email"] {
  flex: 1 1 260px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(47, 42, 40, 0.3);
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: box-shadow var(--dur-2) var(--ease-out);
}
.field input[type="email"]:focus {
  box-shadow: 0 0 0 4px rgba(214, 255, 62, 0.45);
}
.section-deep .field input[type="email"] {
  background: #ffffff;
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}
.section-deep .field input[type="email"]::placeholder {
  color: rgba(47, 42, 40, 0.45);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Link accent */
.link-accent {
  color: var(--fg);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}
.link-accent:hover {
  text-decoration: none;
  background: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════
   Footer — fully responsive overhaul (0.12.7)
   Single dark surface anchoring the light marketing site. Fluid type,
   sensible column wrapping at every breakpoint, generous tap targets.
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: #2d2825;
  color: var(--fg-inverse);
  padding: clamp(56px, 8vw, 96px) 0 clamp(24px, 3vw, 32px);
  border-top: 4px solid var(--accent);
}
.footer .container {
  padding-inline: clamp(16px, 4vw, 32px);
}
.footer a {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
  text-decoration: none;
}
.footer h4,
.footer h3,
.footer .footer-h,
.footer .footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top {
  display: block;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.footer-brand-col {
  max-width: 560px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px) clamp(18px, 3vw, 36px);
  margin-bottom: clamp(32px, 5vw, 56px);
}
@media (min-width: 560px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .footer-cols {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--fg-inverse);
  margin: 0 0 var(--s-3) 0;
  display: none;
}
.footer-mark em {
  font-style: normal;
  color: var(--accent);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-legal a {
  display: inline;
  padding: 0;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-legal a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (max-width: 480px) {
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Entrance motion */
@media (prefers-reduced-motion: no-preference) {
  .fx-rise {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 700ms var(--ease-out) forwards;
  }
  .fx-rise-1 {
    animation-delay: 80ms;
  }
  .fx-rise-2 {
    animation-delay: 180ms;
  }
  .fx-rise-3 {
    animation-delay: 280ms;
  }
  .fx-rise-4 {
    animation-delay: 380ms;
  }
  @keyframes rise {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ─── Utility ────────────────────────────────────────────────────────── */
.show-sm {
  display: block;
}
@media (min-width: 900px) {
  .show-sm {
    display: none;
  }
}
.hide-sm {
  display: none;
}
@media (min-width: 900px) {
  .hide-sm {
    display: block;
  }
}

/* ═════════════════════════════════════════════════════════════════════
 * Jobeezy v2.2 overrides — less clutter, more personality.
 * Kill the AI-generated ticker/counter stuff. Sharpen the buttons.
 * New: phone with animation, interview rides section, three beats.
 * ═══════════════════════════════════════════════════════════════════ */

/* Hide v1 ticker + live counter cleanly for any legacy pages */
.body-v22 .ticker-bar,
.body-v22 .hero-kicker,
.body-v22 .live-card {
  display: none !important;
}

/* ─── Sharp, angular buttons (no pill) ────────────────────────────── */
.btn-sharp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0; /* no pill */
  border: 1.5px solid transparent;
  transition:
    transform var(--dur-1) var(--ease-out),
    box-shadow var(--dur-1) var(--ease-out),
    background var(--dur-1) var(--ease-out);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.btn-sharp:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-sharp:active {
  transform: translateY(0);
}

.btn-sharp-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-ink);
  box-shadow: 4px 4px 0 var(--accent-ink);
}
.btn-sharp-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
  box-shadow: 3px 3px 0 var(--accent-ink);
}

.btn-sharp-ink {
  background: #f3eee4;
  color: var(--accent-ink);
  border-color: rgba(47, 42, 40, 0.24);
  box-shadow: 3px 3px 0 rgba(47, 42, 40, 0.1);
}
.btn-sharp-ink:hover {
  background: #ebe3d4;
  color: var(--accent-ink);
  box-shadow: 3px 3px 0 rgba(47, 42, 40, 0.16);
}

.btn-sharp-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn-sharp-ghost:hover {
  background: var(--fg);
  color: #fff;
}

.btn-sharp-lg {
  padding: 16px 28px;
  font-size: 14px;
}
.btn-sharp-xl {
  padding: 18px 32px;
  font-size: 14px;
}

/* ─── Nav v22 (tighter, no bottom border fade) ────────────────────── */
.nav-v22 {
  background: rgba(236, 232, 221, 0.92);
  backdrop-filter: saturate(1.3) blur(8px);
  -webkit-backdrop-filter: saturate(1.3) blur(8px);
  border-bottom: 1px solid rgba(47, 42, 40, 0.16);
}

/* ─── Hero v22 ────────────────────────────────────────────────────── */
.hero-v22 {
  background: linear-gradient(180deg, #f4efe4 0%, #eee7d8 100%);
  color: var(--accent-ink);
  padding: clamp(56px, 9vw, 130px) 0 clamp(80px, 10vw, 150px);
  position: relative;
  overflow: hidden;
}
.hero-v22::before {
  /* subtle dotted field for texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 12, 16, 0.1) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at top right, transparent, #000 80%);
  pointer-events: none;
}
.hero-v22 .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--s-6);
}
@media (min-width: 900px) {
  .hero-v22 .hero-grid {
    padding-inline: var(--s-10);
  }
}
@media (max-width: 860px) {
  .hero-v22 .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-v22 h1 {
  font-size: clamp(46px, 7.1vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin: 0 0 24px;
  color: var(--accent-ink);
}
.hero-v22 h1 em {
  font-style: normal;
  background: var(--accent-ink);
  color: var(--accent);
  padding: 0.02em 0.18em 0.08em;
  display: inline-block;
  transform: rotate(-1.2deg) skew(-2deg);
  box-shadow: 6px 6px 0 rgba(10, 12, 16, 0.18);
}
.hero-lede {
  max-width: 44ch;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--accent-ink);
  margin: 0 0 40px;
  font-weight: 500;
}
.hero-v22 .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Phone v22: real app palette, no tech lingo ──────────────────── */
.hero-device-v22 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(180deg, #3d3832 0%, #2d2722 100%);
  border-radius: 42px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(47, 42, 40, 0.85),
    18px 22px 50px rgba(10, 12, 16, 0.22),
    40px 40px 100px -30px rgba(10, 12, 16, 0.28);
  transform: rotate(0.6deg) translateY(-4px);
  transition: transform 600ms var(--ease-out);
}
.phone:hover {
  transform: rotate(0deg) translateY(-10px);
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  background: #fafaf7;
  border-radius: 34px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: #2f2a28;
}
.phone-icons {
  display: flex;
  gap: 6px;
  color: #2f2a28;
}
.phone-header {
  padding: 14px 20px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.phone-hello {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #2f2a28;
  line-height: 1;
}
.phone-sub {
  font-size: 12px;
  color: #5b6370;
  margin-top: 3px;
  font-weight: 500;
}
.phone-avatar {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #2f2a28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  border: 1.5px solid #2f2a28;
}

.phone-feed {
  padding: 8px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.jobcard-v22 {
  background: #ffffff;
  border: 1.2px solid rgba(47, 42, 40, 0.12);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 16px 32px -18px rgba(10, 12, 16, 0.3);
  opacity: 0;
  transform: translateY(10px);
  animation: cardSlide 600ms var(--ease-out) forwards;
}
.jobcard-anim-1 {
  animation-delay: 250ms;
}
.jobcard-anim-2 {
  animation-delay: 450ms;
}
.jobcard-anim-3 {
  animation-delay: 650ms;
}
.jobcard-anim-4 {
  animation-delay: 850ms;
}
@keyframes cardSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jobcard-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jobcard-mark {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: #635bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  border: 1.5px solid #2f2a28;
  flex-shrink: 0;
}
.jobcard-body {
  flex: 1;
  min-width: 0;
}
.jobcard-title {
  font-weight: 700;
  font-size: 13px;
  color: #2f2a28;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.jobcard-meta {
  font-size: 11px;
  color: #5b6370;
  margin-top: 2px;
  font-family: var(--font-mono);
}

.fit-chip {
  width: 42px;
  height: 42px;
  border: 1.5px solid #2f2a28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
}
.fit-chip-good {
  background: var(--accent);
  color: #2f2a28;
  animation: fitPulse 2.4s ease-in-out infinite;
}
.fit-chip-ok {
  background: #fff;
  color: #2f2a28;
}
@keyframes fitPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(214, 255, 62, 0.8);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(214, 255, 62, 0);
  }
}

.jobcard-applied {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 4px 8px;
  margin: 8px -14px -12px;
  border-top: 1.5px solid #2f2a28;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.jobcard-ghost {
  background: #f2f0e8;
  border-color: #9aa2ae;
  box-shadow: none;
  opacity: 0.82 !important;
}
.jobcard-mark-ghost {
  background: #5f6774;
  color: #fff;
  border-color: #5f6774;
}
.jobcard-title-ghost {
  color: #404754;
  text-decoration: line-through;
}
.jobcard-ghost .jobcard-meta {
  color: #596171;
}

/* Floating brand chips around the phone */
.phone-chip {
  position: absolute;
  padding: 10px 16px;
  background: #f5f3ea;
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(47, 42, 40, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 35px -24px rgba(47, 42, 40, 0.32);
  white-space: nowrap;
  z-index: 2;
}
.phone-chip-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.phone-chip-1 {
  top: 18%;
  left: -12%;
  transform: rotate(-4deg);
  animation: floatA 5s ease-in-out infinite;
}
.phone-chip-2 {
  bottom: 18%;
  right: -8%;
  transform: rotate(2deg);
  background: #fff8e4;
  color: var(--accent-ink);
  box-shadow: 0 12px 26px -18px rgba(47, 42, 40, 0.32);
  animation: floatB 6s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-8px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(10px);
  }
}

@media (max-width: 860px) {
  .phone-chip-1,
  .phone-chip-2 {
    display: none;
  }
  .hero-device-v22 {
    min-height: 520px;
  }
}

/* ─── Hired-at strip (mono / sharp, no label) ─────────────────────── */
.hired-strip {
  background: #2f2a28;
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1.5px solid #2f2a28;
  border-bottom: 2px solid var(--accent);
}

/* Rides CTA — soft, dark-on-bone button below rides copy */
.rides-cta {
  margin-top: 28px;
}
.hired-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  animation: hiredScroll 28s linear infinite;
  padding-left: 28px;
}
.hired-track span {
  color: #fff;
}
.hired-tick {
  color: var(--accent) !important;
  font-weight: 900;
}
@keyframes hiredScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── Three beats ─────────────────────────────────────────────────── */
.beats {
  padding: clamp(60px, 8vw, 120px) 0;
  background: var(--bg);
}
.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid #2f2a28;
  border-left: 1.5px solid #2f2a28;
}
@media (max-width: 860px) {
  .beats-grid {
    grid-template-columns: 1fr;
  }
}
.beat {
  padding: clamp(28px, 4vw, 56px);
  border-right: 1.5px solid #2f2a28;
  border-bottom: 1.5px solid #2f2a28;
  background: var(--bg);
  position: relative;
}
.beat-highlight {
  background: var(--accent);
}
.beat-no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: #2f2a28;
  opacity: 0.6;
}
.beat-title {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 14px;
  color: #2f2a28;
}
.beat-text {
  font-size: 16px;
  color: #2a2f36;
  line-height: 1.5;
  margin: 0;
}

/* ─── INTERVIEW SUPPORT (the brand moment — v2.5 LIGHT) ───────────── */
.rides {
  padding: clamp(80px, 10vw, 160px) 0;
  background: #f6f7f2;
  color: #2f2a28;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 12, 16, 0.06);
  border-bottom: 1px solid rgba(10, 12, 16, 0.06);
}
.rides::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(214, 255, 62, 0.28), transparent 65%),
    radial-gradient(700px 400px at 12% 82%, rgba(214, 255, 62, 0.14), transparent 70%);
  pointer-events: none;
}
.rides-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .rides-grid {
    grid-template-columns: 1fr;
  }
}

.rides .eyebrow-lg {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #2f2a28;
  background: var(--accent);
  margin-bottom: 24px;
  padding: 5px 12px;
  border: 1px solid #2f2a28;
}
.rides-h {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 0 0 24px;
  color: #2f2a28;
}
.rides-h-em {
  font-style: normal;
  background: #2f2a28;
  color: var(--accent);
  padding: 0 0.12em;
  display: inline-block;
  transform: skew(-4deg);
}
.rides-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: #2a2f36;
  max-width: 52ch;
  margin: 0 0 28px;
}
.rides-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.rides-points li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 12, 16, 0.1);
  font-size: 16px;
  color: #2f2a28;
}
.rides-check {
  color: #2f2a28;
  font-weight: 900;
  font-family: var(--font-mono);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 1px solid #2f2a28;
  font-size: 11px;
  margin-top: 1px;
}
.rides-foot {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: #5b6370;
  margin: 20px 0 0;
}

/* The receipt visual */
.receipt {
  background: #fafaf7;
  color: #2f2a28;
  border: 1.5px solid var(--accent);
  padding: 24px;
  position: relative;
  box-shadow: 10px 10px 0 var(--accent);
  transform: rotate(-1.5deg);
  max-width: 420px;
  margin-inline: auto;
}
.receipt-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 2px dashed #2f2a28;
  margin-bottom: 16px;
}
.receipt-hero {
  background: #fff;
  border: 1.5px solid #2f2a28;
  padding: 0;
  height: 180px;
  margin-bottom: 16px;
  overflow: hidden;
}
.receipt-map {
  width: 100%;
  height: 100%;
}
.receipt-rows {
  font-family: var(--font-mono);
  font-size: 13px;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(10, 12, 16, 0.2);
}
.receipt-row-total {
  border-bottom: none;
  padding-top: 14px;
  margin-top: 8px;
  border-top: 2px solid #2f2a28;
  font-weight: 700;
}
.receipt-k {
  color: #5b6370;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.receipt-v {
  color: #2f2a28;
  font-weight: 500;
}
.receipt-v-total {
  font-size: 18px;
}
.receipt-stamp {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) rotate(14deg);
  background: var(--accent);
  color: #2f2a28;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  padding: 10px 16px;
  border: 2px solid #2f2a28;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #2f2a28;
}

/* ─── Single story (replaces testimonial cards) ───────────────────── */
.story {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--surface-warm);
}
.story-container {
  max-width: 900px;
  text-align: center;
}
.story-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #2f2a28;
  margin: 0 0 40px;
  position: relative;
}
.story-mark {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  font-size: 88px;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 10px;
}
.story-by {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.story-avatar {
  width: 48px;
  height: 48px;
  background: #2f2a28;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  border: 2px solid #2f2a28;
}
.story-name {
  font-weight: 700;
  text-align: left;
  color: #2f2a28;
}
.story-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #5b6370;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Manifesto refined ───────────────────────────────────────────── */
.manifesto {
  padding: clamp(60px, 8vw, 120px) 0;
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #2f2a28;
  max-width: 18ch;
}
.manifesto-text em {
  font-style: normal;
  background: #2f2a28;
  color: var(--accent);
  padding: 0 0.12em;
}

/* ─── CTA v22 ─────────────────────────────────────────────────────── */
.cta-v22 {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--accent);
  color: #2f2a28;
  border-top: 1.5px solid #2f2a28;
}
.cta-v22-inner {
  max-width: 880px;
  text-align: center;
}
.cta-v22-h {
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  margin: 0 0 48px;
  color: #2f2a28;
}
.cta-v22-h em {
  font-style: normal;
  background: #2f2a28;
  color: var(--accent);
  padding: 0 0.16em;
  display: inline-block;
  transform: rotate(-1deg);
}
.cta-v22-form {
  display: flex;
  gap: 0;
  max-width: 580px;
  margin: 0 auto;
  border: 2px solid #2f2a28;
  background: #fff;
  box-shadow: 6px 6px 0 #2f2a28;
}
.cta-v22-form input {
  flex: 1;
  padding: 18px 22px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: var(--font-sans);
  color: #2f2a28;
  outline: none;
}
/* a11y fix (audit C2 + M2): visible focus ring on email input */
.cta-v22-form input:focus-visible {
  outline: 3px solid #2f2a28;
  outline-offset: -3px;
  box-shadow: inset 0 0 0 3px var(--accent);
}
.cta-v22-form input::placeholder {
  color: #5b6370;
} /* was #9AA2AE (2.58:1 → 6.06:1) */
.cta-v22-form button {
  border-left: 2px solid #2f2a28;
  box-shadow: none;
  background: #2f2a28;
  color: var(--accent);
  border-radius: 0;
  border-top: none;
  border-bottom: none;
  border-right: none;
  padding: 18px 28px;
}
.cta-v22-form button:hover {
  background: var(--accent);
  color: #2f2a28;
  box-shadow: none;
}
.cta-v22-small {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10, 12, 16, 0.6);
  margin-top: 20px;
}

/* ─── fx-rise animation safety (reuse v1 tokens) ──────────────────── */
.fx-rise {
  opacity: 0;
  transform: translateY(16px);
  animation: fxRise 720ms var(--ease-out) forwards;
}
.fx-rise-1 {
  animation-delay: 60ms;
}
.fx-rise-2 {
  animation-delay: 140ms;
}
.fx-rise-3 {
  animation-delay: 220ms;
}
.fx-rise-4 {
  animation-delay: 300ms;
}
@keyframes fxRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jobcard-v22,
  .fx-rise,
  .phone-chip-1,
  .phone-chip-2,
  .hired-track,
  .fit-chip-good,
  .phone-chip-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Waitlist state slots — hide by default on cta-v22 form */
/* Hide waitlist status messages by default on any form using the data-waitlist interceptor */
form[data-waitlist] > .waitlist-success,
form[data-waitlist] > .waitlist-error,
.cta-v22-form .waitlist-success,
.cta-v22-form .waitlist-error {
  display: none;
}
form[data-waitlist][data-state="success"] input,
form[data-waitlist][data-state="success"] button,
form[data-waitlist][data-state="success"] label {
  display: none;
}
form[data-waitlist][data-state="success"] > .waitlist-success {
  display: block;
  text-align: center;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 15px;
}
form[data-waitlist][data-state="error"] > .waitlist-error {
  display: block;
  color: #b00;
  font-family: var(--font-sans);
  font-size: 14px;
  margin-top: var(--s-2);
}
.cta-v22-form[data-state="success"] {
  display: block;
  text-align: center;
}
.cta-v22-form[data-state="success"] input,
.cta-v22-form[data-state="success"] button,
.cta-v22-form[data-state="success"] label {
  display: none;
}
.cta-v22-form[data-state="success"] .waitlist-success {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #2f2a28;
  padding: 22px;
  background: #fff;
  border: 2px dashed #2f2a28;
}
.cta-v22-form[data-state="error"] .waitlist-error {
  display: block;
  padding: 16px 22px;
  background: #fef2f2;
  color: #b42318;
  border-top: 2px solid #2f2a28;
  font-size: 14px;
  flex-basis: 100%;
}

/* ══════════════════════════════════════════════════════════════════════
 * PRODUCT CINEMA (v2.3) — animated product flow
 * Replaces three-card beats with a live, auto-looping 4-phase reel.
 * ═══════════════════════════════════════════════════════════════════ */

/* light-mode overhaul (0.12.7): warm paper replaces dark graphite slab. */
.cinema {
  background: linear-gradient(180deg, #faf6ee 0%, #f3eddf 100%);
  color: var(--accent-ink);
  padding: clamp(88px, 10vw, 160px) 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  border-bottom: 1.5px solid var(--accent-ink);
}
.cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 10% -15%, rgba(47, 42, 40, 0.05), transparent 72%),
    radial-gradient(1100px 520px at 92% 115%, rgba(214, 255, 62, 0.22), transparent 72%);
  pointer-events: none;
}
.cinema .container {
  position: relative;
  z-index: 1;
}

.cinema-head {
  max-width: 820px;
  margin: 0 0 clamp(28px, 3.4vw, 48px);
}
.cinema-eyebrow {
  color: var(--accent-ink);
  background: var(--accent);
  padding: 6px 12px;
  border: 1.5px solid var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.cinema-h {
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  color: var(--accent-ink);
  font-weight: 700;
}
.cinema-h-em {
  color: var(--accent-ink);
  font-style: normal;
  background: var(--accent);
  padding: 0 0.18em 0.06em;
  box-shadow: 4px 4px 0 rgba(47, 42, 40, 0.18);
}

/* Stage wrapper */
.cinema-stage {
  position: relative;
}

/* Progress rail */
/* light-mode overhaul (0.12.7): rail sits on cream paper now. */
.cph-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1.5px solid var(--accent-ink);
  background: #ffffff;
  box-shadow: 4px 4px 0 var(--accent-ink);
}
.cph-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.cph-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(47, 42, 40, 0.5);
  transition: color 0.3s ease;
}
.cph-dot i {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(47, 42, 40, 0.3);
  transform: rotate(45deg);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.cph-dot b {
  font-weight: 700;
  margin-right: 4px;
  color: rgba(47, 42, 40, 0.6);
}
.cph-dot.is-done i {
  background: rgba(47, 42, 40, 0.25);
  border-color: var(--accent-ink);
}
.cph-dot.is-done {
  color: rgba(47, 42, 40, 0.7);
}
.cph-dot.is-done b {
  color: rgba(47, 42, 40, 0.8);
}
.cph-dot.is-on {
  color: var(--accent-ink);
}
.cph-dot.is-on b {
  color: var(--accent-ink);
}
.cph-dot.is-on i {
  background: var(--accent);
  border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(214, 255, 62, 0.45);
}
.cph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 4px 10px;
  white-space: nowrap;
  min-width: 30ch;
  text-align: right;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 760px) {
  .cph-rail {
    flex-direction: column;
    align-items: flex-start;
  }
  .cph-label {
    align-self: flex-end;
  }
}

/* Canvas — 0.12.7: drop dark slab wrapper, let graphic sit flush on cream. */
.cph-canvas {
  position: relative;
  height: clamp(420px, 50vw, 520px);
  border: none;
  background: transparent;
  overflow: hidden;
}
.cph-grid {
  display: none;
}
.cph-glow {
  display: none;
}
@keyframes cphDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(140%, 30%);
  }
}

/* Phase base */
.cph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px);
  opacity: 0;
  transform: translateY(14px) scale(0.995);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}
.cph.is-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ─── PHASE 1: Register ─── */
.cph1-window {
  width: min(520px, 96%);
  background: #12151b;
  border: 1.5px solid rgba(214, 255, 62, 0.35);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  position: relative;
}
.cph1-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  background: #0e1117;
}
.cph1-chrome i {
  width: 10px;
  height: 10px;
  background: rgba(246, 247, 242, 0.25);
  border-radius: 50%;
}
.cph1-chrome i:nth-child(1) {
  background: #ff5f57;
}
.cph1-chrome i:nth-child(2) {
  background: #febc2e;
}
.cph1-chrome i:nth-child(3) {
  background: #28c840;
}
.cph1-chrome span {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(246, 247, 242, 0.55);
}
.cph1-body {
  padding: clamp(22px, 3vw, 36px);
}
.cph1-title {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 247, 242, 0.55);
  font-family: var(--font-mono);
  margin-bottom: 18px;
}
.cph1-field label,
.cph1-field .cph1-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 247, 242, 0.45);
  margin-bottom: 8px;
}
.cph1-input {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 48px;
  padding: 10px 14px;
  background: #2f2a28;
  border: 1.5px solid rgba(214, 255, 62, 0.28);
  color: #f6f7f2;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-family: var(--font-mono);
}
.cph1-typed {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  vertical-align: bottom;
}
.cph1-typed.is-typing {
  animation: cph1Type 1.9s steps(18, end) forwards;
}
@keyframes cph1Type {
  from {
    max-width: 0;
  }
  to {
    max-width: 22ch;
  }
}
.cph1-caret {
  display: inline-block;
  width: 2px;
  height: 20px;
  background: var(--accent);
  margin-left: 2px;
  animation: cph1Blink 0.8s step-end infinite;
  box-shadow: 0 0 8px rgba(214, 255, 62, 0.7);
}
@keyframes cph1Blink {
  50% {
    opacity: 0;
  }
}

.cph1-btn {
  margin-top: 18px;
  width: 100%;
  padding: 16px 22px;
  background: #12151b;
  color: rgba(246, 247, 242, 0.85);
  border: 1.5px solid rgba(214, 255, 62, 0.35);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: default;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
  position: relative;
}
.cph1-btn.is-active {
  background: var(--accent);
  color: #2f2a28;
  border-color: var(--accent);
  box-shadow:
    4px 4px 0 0 rgba(214, 255, 62, 0.25),
    0 0 40px rgba(214, 255, 62, 0.45);
  transform: translate(-2px, -2px);
}
.cph1-ok {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.cph1-ok.is-on {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PHASE 2: Résumé scan ─── */
.cph2 {
  flex-direction: column;
  gap: 18px;
}
.cph2-paper {
  position: relative;
  width: min(560px, 96%);
  height: clamp(300px, 38vw, 360px);
  background: #fafaf7;
  color: #2f2a28;
  padding: 22px 26px;
  border: 1.5px solid var(--accent-ink);
  box-shadow: 6px 6px 0 var(--accent-ink);
  overflow: hidden;
}
.cph2-head {
  border-bottom: 1.5px solid #2f2a28;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.cph2-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 18px;
  color: #2f2a28;
}
.cph2-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(10, 12, 16, 0.65);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.cph2-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
}
.cph2-col-r {
  padding-left: 14px;
  border-left: 1px dashed rgba(10, 12, 16, 0.18);
}
.cph2-section {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(10, 12, 16, 0.55);
  margin: 4px 0 10px;
}
.cph2-line {
  height: 8px;
  width: var(--w, 80%);
  background: rgba(10, 12, 16, 0.14);
  margin: 0 0 9px;
  position: relative;
  transition:
    background 280ms ease,
    box-shadow 280ms ease;
}
.cph2-line.lit {
  background: var(--accent);
  box-shadow:
    0 0 10px rgba(214, 255, 62, 0.55),
    inset 0 0 0 1px rgba(10, 12, 16, 0.1);
}
.cph2-gap {
  height: 10px;
}

.cph2-beam {
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(214, 255, 62, 0),
    rgba(214, 255, 62, 0.85) 50%,
    rgba(214, 255, 62, 0)
  );
  box-shadow:
    0 0 20px rgba(214, 255, 62, 0.8),
    0 0 40px rgba(214, 255, 62, 0.55);
  pointer-events: none;
  opacity: 0;
}
.is-scanning .cph2-beam {
  opacity: 1;
  animation: cph2Beam 2.4s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}
@keyframes cph2Beam {
  0% {
    transform: translateY(-4px);
    opacity: 0;
  }
  6% {
    opacity: 1;
  }
  100% {
    transform: translateY(360px);
    opacity: 0.9;
  }
}

.cph2-readout {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(246, 247, 242, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid rgba(214, 255, 62, 0.35);
  background: rgba(214, 255, 62, 0.05);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.cph2-readout.is-on {
  opacity: 1;
  transform: translateY(0);
}
.cph2-readout b {
  color: var(--accent);
  font-weight: 700;
}
.cph2-tick {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

/* ─── PHASE 3: Preferences ─── */
.cph3 {
  flex-direction: column;
  gap: 22px;
}
.cph3-header {
  text-align: center;
}
.cph3-prompt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(246, 247, 242, 0.7);
}
.cph3-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(820px, 96%);
}
@media (max-width: 720px) {
  .cph3-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cph3-card {
  background: #ffffff;
  border: 1.5px solid var(--accent-ink);
  padding: 18px 18px 14px;
  opacity: 0;
  transform: translateY(24px) rotateX(-8deg);
  transform-origin: top center;
  transition:
    opacity 480ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 480ms ease,
    border-color 480ms ease;
  position: relative;
}
.cph3-card.pop {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  border-color: var(--accent-ink);
  box-shadow: 4px 4px 0 var(--accent-ink);
}
.cph3-q {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent-ink);
  margin-bottom: 12px;
}
.cph3-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.cph3-opts span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border: 1px solid rgba(47, 42, 40, 0.25);
  color: rgba(47, 42, 40, 0.6);
  background: #fafaf7;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}
.cph3-opts .is-on {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-ink);
  box-shadow: 2px 2px 0 var(--accent-ink);
}
.cph3-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(47, 42, 40, 0.45);
  text-transform: uppercase;
  border-top: 1px solid rgba(47, 42, 40, 0.12);
  padding-top: 8px;
}

/* ─── PHASE 4: Matched & applied ─── */
.cph4 {
  flex-direction: column;
  gap: 14px;
}
.cph4-header {
  width: min(560px, 96%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent-ink);
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1.5px solid var(--accent-ink);
  background: #ffffff;
}
.cph4-count {
  color: var(--accent-ink);
  background: var(--accent);
  font-weight: 700;
  font-size: 14px;
  padding: 2px 8px;
  min-width: 2.5ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.cph4-stack {
  width: min(560px, 96%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cph4-job {
  background: #fafaf7;
  color: #2f2a28;
  border: 1.5px solid #2f2a28;
  padding: 14px 16px;
  opacity: 0;
  transform: translateX(42px);
  transition:
    opacity 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 320ms ease;
  box-shadow: 4px 4px 0 0 rgba(214, 255, 62, 0);
}
.cph4-job.in {
  opacity: 1;
  transform: translateX(0);
  box-shadow: 4px 4px 0 var(--accent-ink);
}
.cph4-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cph4-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f2a28;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  flex: 0 0 40px;
}
.cph4-meta {
  flex: 1;
  min-width: 0;
}
.cph4-title {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #2f2a28;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cph4-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(10, 12, 16, 0.65);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.cph4-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
  padding-left: 10px;
  border-left: 1.5px solid #2f2a28;
  min-width: 56px;
}
.cph4-s {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #2f2a28;
  min-width: 2.3ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.cph4-score span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(10, 12, 16, 0.65);
}

.cph4-applied {
  margin-top: 10px;
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: var(--accent);
  color: #2f2a28;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition:
    height 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
    padding 360ms ease;
}
.cph4-applied.on {
  height: 30px;
  padding: 0 10px;
}
.cph4-applied-dot {
  width: 8px;
  height: 8px;
  background: #2f2a28;
  border-radius: 50%;
  animation: cph4Pulse 1.4s ease-in-out infinite;
}
@keyframes cph4Pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}
.cph4-ride {
  margin-top: 8px;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #2f2a28;
  background: transparent;
  border: 1.5px dashed #2f2a28;
  padding: 6px 10px;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease;
}
.cph4-ride.on {
  opacity: 1;
  transform: translateY(0);
}

/* Footline under the cinema stage */
.cinema-foot {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
}
.cinema-foot-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 247, 242, 0.55);
}
.cinema-foot-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .cph,
  .cph3-card,
  .cph4-job,
  .cph1-typed,
  .cph2-beam,
  .cph-glow {
    animation: none !important;
    transition: none !important;
  }
  .cph1-typed.is-typing {
    max-width: 22ch;
  }
}

/* Responsive fine-tuning */
@media (max-width: 560px) {
  .cph-canvas {
    height: 420px;
  }
  .cph4-header,
  .cph4-stack {
    width: 100%;
  }
  .cph2-cols {
    grid-template-columns: 1fr;
  }
  .cph2-col-r {
    border-left: none;
    padding-left: 0;
    border-top: 1px dashed rgba(10, 12, 16, 0.18);
    padding-top: 10px;
    margin-top: 6px;
  }
}

/* Cookie consent banner — readable and tappable on mobile login/install surfaces */
.jb-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--surface-ink);
  color: var(--fg-inverse);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.24);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.jb-cookie-banner__text {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.jb-cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}

.jb-cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.jb-cookie-btn {
  border-radius: 8px;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.jb-cookie-btn--reject {
  background: transparent;
  color: var(--fg-inverse);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.jb-cookie-btn--accept {
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
}

@media (max-width: 640px) {
  .jb-cookie-banner {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .jb-cookie-banner__text {
    min-width: 100%;
    font-size: 13px;
  }

  .jb-cookie-banner__actions {
    width: 100%;
  }

  .jb-cookie-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════
 * DOWNLOAD SECTION (v2.4) — App Store / Google Play / Web
 * ═══════════════════════════════════════════════════════════════════ */
.download {
  background: #f6f7f2;
  color: #2f2a28;
  padding: clamp(80px, 10vw, 150px) 0;
  /* Softer rule so the transition from cinema graphite feels like a fade,
     not a slam. Matches cinema bottom border. */
  border-top: 1.5px solid #0e1117;
  border-bottom: 1px solid rgba(10, 12, 16, 0.12);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(214, 255, 62, 0.22), transparent 70%),
    radial-gradient(600px 260px at -10% 100%, rgba(214, 255, 62, 0.14), transparent 70%);
  pointer-events: none;
}
.download-inner {
  position: relative;
  z-index: 1;
}
.download-copy {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.download-eyebrow {
  color: #2f2a28;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  background: var(--accent);
  padding: 6px 12px;
  border: 1.5px solid #2f2a28;
  box-shadow: 3px 3px 0 #2f2a28;
}
.download-h {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 16px;
  font-weight: 800;
}
.download-h-em {
  font-style: normal;
  background: var(--accent);
  padding: 0 12px;
  box-shadow: 4px 4px 0 #2f2a28;
  display: inline-block;
  transform: rotate(-1deg);
}
.download-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: #2a2f36;
  margin: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
/* light-mode overhaul (0.12.7): download cards are light cards with ink border (brutalist
   offset shadow kept for personality). Google Play card gets the volt accent, Web card stays accent. */
.dl-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  background: #ffffff;
  color: var(--accent-ink);
  text-decoration: none;
  border: 1.5px solid var(--accent-ink);
  box-shadow: 6px 6px 0 var(--accent-ink);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  min-height: 150px;
}
.dl-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--accent);
}
.dl-card.dl-ios {
  background: var(--surface-warm);
}
.dl-card.dl-android {
  background: var(--surface-warm);
}
.dl-card.dl-web {
  background: var(--accent);
  color: var(--accent-ink);
}
.dl-card.dl-web:hover {
  box-shadow: 9px 9px 0 var(--accent-ink);
}

.dl-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dl-ico {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
.dl-small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 2px;
}
.dl-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.dl-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}
.dl-arrow {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.85;
}

.download-perks {
  list-style: none;
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  max-width: 1040px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2f2a28;
}
.download-perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dl-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 1px solid #2f2a28;
  color: #2f2a28;
  font-weight: 800;
  font-size: 11px;
}

@media (max-width: 860px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dl-card {
    min-height: 0;
    padding: 18px 18px 14px;
  }
  .dl-big {
    font-size: 20px;
  }
  .download-perks {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8px;
  }
}

/* ══════════════════════════════════════════════════════════════════════
 * MOBILE POLISH (v2.4) — fix overflow & cramped layouts below 760px
 * ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* Global container safety */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Nav: tighter logo + hide SEE IT WORK link on mobile, keep just CTA */
  .nav-v22 {
    padding: 12px 0;
  }
  .nav-v22-links a {
    display: none;
  }
  .nav-v22-links a.btn-sharp {
    display: inline-flex;
  }
  .nav-v22-links a.btn-sharp:first-child {
    display: none;
  } /* hide SEE IT WORK */
  .nav-v22-logo svg {
    height: 22px;
  }

  /* Hero v22 — stack CTAs, smaller type, tighten spacing */
  .hero-v22 {
    padding: 64px 0 48px;
  }
  .hero-v22 h1 {
    font-size: clamp(34px, 9.8vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }
  /* Slab: keep the skew + shadow from clipping viewport at 390px */
  .hero-v22 h1 em {
    padding: 0.04em 0.14em 0.1em;
    box-shadow: 4px 4px 0 rgba(10, 12, 16, 0.18);
    max-width: calc(100% - 10px);
  }
  .hero-v22 .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-v22 .hero-ctas .btn-sharp {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-lede {
    font-size: 17px;
    margin-bottom: 28px;
  }

  /* Hired strip */
  .hired-strip {
    padding: 16px 0;
  }
  .hired-track {
    font-size: 22px;
    gap: 20px;
  }

  /* Cinema — make progress rail wrap nicely, fix label overflow */
  .cinema {
    padding: 56px 0 72px;
  }
  .cinema-h {
    font-size: clamp(30px, 9vw, 44px);
  }
  .cph-rail {
    padding: 12px 14px;
    gap: 10px;
  }
  .cph-steps {
    gap: 10px 16px;
  }
  .cph-dot {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .cph-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    white-space: normal;
    text-align: right;
  }
  .cph-canvas {
    height: 440px;
  }
  .cph {
    padding: 8px;
  }

  /* Cinema phase 1 – window full width */
  .cph1-window {
    width: 100%;
  }
  .cph1-body {
    padding: 18px;
  }
  .cph1-input {
    font-size: 15px;
    padding: 10px 12px;
    min-height: 44px;
  }
  .cph1-btn {
    padding: 14px 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  /* Cinema phase 2 – paper full width, single column lines */
  .cph2 {
    gap: 12px;
  }
  .cph2-paper {
    width: 100%;
    height: 320px;
    padding: 18px 18px;
  }
  .cph2-name {
    font-size: 16px;
  }
  .cph2-line {
    height: 7px;
    margin-bottom: 8px;
  }
  .cph2-readout {
    font-size: 10px;
    padding: 8px 10px;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
  .cph2-readout span:last-child {
    word-break: break-word;
  }

  /* Cinema phase 3 – stack question cards, compact */
  .cph3 {
    gap: 14px;
  }
  .cph3-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cph3-card {
    padding: 14px 14px 10px;
  }
  .cph3-q {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .cph3-opts span {
    font-size: 10px;
    padding: 5px 8px;
    letter-spacing: 0.04em;
  }

  /* Cinema phase 4 – tighter job cards */
  .cph4 {
    gap: 10px;
  }
  .cph4-header {
    font-size: 10px;
    padding: 8px 12px;
    letter-spacing: 0.14em;
  }
  .cph4-stack {
    gap: 8px;
  }
  .cph4-job {
    padding: 12px 14px;
  }
  .cph4-logo {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    font-size: 15px;
  }
  .cph4-title {
    font-size: 13px;
  }
  .cph4-sub {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
  .cph4-s {
    font-size: 22px;
  }
  .cph4-score {
    min-width: 48px;
    padding-left: 8px;
  }
  .cph4-applied {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .cph4-applied.on {
    height: 26px;
  }
  .cph4-ride {
    font-size: 10px;
    letter-spacing: 0.04em;
    padding: 5px 8px;
  }

  .cinema-foot {
    gap: 6px;
    margin-top: 14px;
  }
  .cinema-foot-val {
    font-size: 20px;
  }

  /* Rides section — prevent receipt overflow */
  .rides {
    padding: 56px 0 72px;
  }
  .rides-h {
    font-size: clamp(32px, 9vw, 44px) !important;
  }
  .rides-grid {
    gap: 28px;
  }
  .rides-visual {
    max-width: 100%;
    overflow: hidden;
  }
  .receipt {
    transform: none !important;
    max-width: 100%;
  }
  .receipt-stamp {
    right: 14px !important;
    font-size: 10px !important;
    padding: 5px 8px !important;
  }

  /* Download — already handled above */

  /* CTA v22 — stack input + button, shrink heading */
  .cta-v22 {
    padding: 56px 0;
  }
  .cta-v22-h {
    font-size: clamp(36px, 11vw, 56px) !important;
  }
  .cta-v22-form {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    width: 100%;
    box-shadow: 4px 4px 0 #2f2a28;
  }
  .cta-v22-form input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-bottom: 2px solid #2f2a28;
  }
  .cta-v22-form button {
    width: 100%;
    border-left: none;
    padding: 14px 20px !important;
    font-size: 12px;
  }

  /* Manifesto */
  .manifesto-h,
  h2.manifesto-h {
    font-size: clamp(36px, 11vw, 56px) !important;
  }

  /* Footer columns stack */
  /* Footer responsive rules moved to the main footer block (0.12.7 overhaul) */

  /* Phone illustration scale */
  .phone-v22 {
    transform: scale(0.86);
    transform-origin: top center;
  }
}

@media (max-width: 400px) {
  .cph-canvas {
    height: 420px;
  }
  .hired-track {
    font-size: 20px;
    gap: 16px;
  }
  .cph3-opts span {
    font-size: 9px;
    padding: 4px 7px;
  }
  .cph4-row {
    gap: 8px;
  }
  .cph4-title {
    font-size: 12px;
  }
  .cph4-sub {
    font-size: 9px;
  }
  .cph4-s {
    font-size: 20px;
  }
  .cph4-score {
    min-width: 42px;
    padding-left: 6px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
 * v2.5 — Cinema Phase 1 phone-style onboarding (replaces terminal window)
 * ═══════════════════════════════════════════════════════════════════════ */
.cph1-phone {
  position: relative;
  width: min(320px, 94%);
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid #2f2a28;
  border-radius: 28px;
  padding: 14px 20px 22px;
  box-shadow:
    10px 10px 0 rgba(214, 255, 62, 0.9),
    18px 18px 0 #2f2a28;
  color: #2f2a28;
}
.cph1-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #2f2a28;
  padding: 2px 0 14px;
}
.cph1-phone-top .cph1-sig {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #2f2a28;
}
.cph1-brand {
  text-align: center;
  margin: 4px 0 20px;
}
.cph1-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: #2f2a28;
  line-height: 1;
}
.cph1-logo em {
  font-style: normal;
  background: var(--accent);
  color: #2f2a28;
  padding: 0 0.12em;
  display: inline-block;
  transform: skew(-4deg);
}
.cph1-welcome {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: #2a2f36;
}
.cph1-phone .cph1-field {
  margin-bottom: 14px;
  padding: 0;
  border: none;
  background: transparent;
}
.cph1-phone .cph1-field label,
.cph1-phone .cph1-field .cph1-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5b6370;
  margin-bottom: 6px;
}
.cph1-phone .cph1-input {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  background: #f6f7f2;
  border: 1px solid #2f2a28;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: #2f2a28;
  letter-spacing: -0.01em;
}
.cph1-phone .cph1-input-muted {
  color: #5b6370;
  font-weight: 500;
}
.cph1-phone .cph1-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-top: 6px;
  background: #2f2a28;
  color: #ffffff;
  border: 1px solid #2f2a28;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}
.cph1-phone .cph1-btn.is-active {
  background: var(--accent);
  color: #2f2a28;
}
.cph1-phone .cph1-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(214, 255, 62, 0.25);
  border: 1px solid var(--accent);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  color: #2f2a28;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}
.cph1-phone .cph1-ok.is-on {
  opacity: 1;
  transform: translateY(0);
}
.cph1-ok-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #2f2a28;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════════════════
 * v2.5 — RIDES animated scene (interview → approve → driver arriving)
 * ═══════════════════════════════════════════════════════════════════════ */
.rides-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.rscene-phone {
  position: relative;
  width: 340px;
  height: 620px;
  background: #2f2a28;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px #2f2a28,
    12px 12px 0 rgba(214, 255, 62, 0.9),
    22px 22px 0 #2f2a28;
}
.rscene-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #2f2a28;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.rscene-home {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 3px;
}
.rscene-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fafaf7;
  border-radius: 36px;
  overflow: hidden;
  color: #2f2a28;
}
.rscene-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #2f2a28;
  z-index: 2;
}
.rscene-status .rscene-icons {
  display: inline-flex;
  gap: 6px;
  color: #2f2a28;
}

/* scenes stacked, one visible at a time */
.rscene {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 28px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 380ms ease,
    transform 380ms ease;
  pointer-events: none;
}
.rscene.is-on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Scene 1 — interview card */
.rscene-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5b6370;
  margin-bottom: 10px;
}
.rscene-card {
  background: #ffffff;
  border: 1.5px solid #2f2a28;
  padding: 16px;
  box-shadow: 6px 6px 0 var(--accent);
  margin-bottom: 18px;
}
.rscene-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.rscene-logo {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cc0000;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  border: 1px solid #2f2a28;
}
.rscene-card-meta {
  flex: 1;
  min-width: 0;
}
.rscene-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: #2f2a28;
  letter-spacing: -0.02em;
}
.rscene-card-sub {
  font-size: 12px;
  color: #5b6370;
  margin-top: 2px;
}
.rscene-when {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(10, 12, 16, 0.1);
  font-family: var(--font-mono);
  font-size: 12px;
  color: #2f2a28;
  letter-spacing: 0.04em;
}
.rscene-addr {
  padding-top: 8px;
  border-top: 1px solid rgba(10, 12, 16, 0.1);
  font-size: 12px;
  color: #2a2f36;
  line-height: 1.4;
}
.rscene-cta {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: var(--accent);
  color: #2f2a28;
  border: 1.5px solid #2f2a28;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 #2f2a28;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.rscene.is-on .rscene-cta.is-pressed {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 #2f2a28;
}

/* Scene 2 — review + approve */
.rscene-review {
  background: #ffffff;
  border: 1.5px solid #2f2a28;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.rscene-review-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(10, 12, 16, 0.15);
  font-size: 13px;
}
.rscene-review-row:last-child {
  border-bottom: none;
}
.rscene-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b6370;
}
.rscene-v {
  color: #2f2a28;
  font-weight: 600;
}
.rscene-v-lg {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.rscene-review-total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1.5px solid #2f2a28 !important;
  border-bottom: none !important;
}

.rscene-review-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #2f2a28;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}
.rscene-review-status.is-on {
  opacity: 1;
  transform: translateY(0);
}
.rscene-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(214, 255, 62, 0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: rsceneSpin 0.9s linear infinite;
}
@keyframes rsceneSpin {
  to {
    transform: rotate(360deg);
  }
}

.rscene-approved {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--accent);
  border: 1.5px solid #2f2a28;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}
.rscene-approved.is-on {
  opacity: 1;
  transform: translateY(0);
}
.rscene-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #2f2a28;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.rscene-approved-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  color: #2f2a28;
  letter-spacing: -0.02em;
}
.rscene-approved-sub {
  font-size: 12px;
  color: #2f2a28;
  margin-top: 2px;
  line-height: 1.4;
}

/* Scene 3 — driver arriving with map */
.rscene-3 {
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
}
.rscene-map {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  margin-bottom: 0;
  background: #eef0e8;
}
.rscene-map svg {
  display: block;
  width: 100%;
  height: 100%;
}
.rscene-car {
  transition: transform 200ms linear;
}
.rscene-driver {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border-top: 1.5px solid #2f2a28;
}
.rscene-driver-pic {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffb084, #d97b52);
  color: #2f2a28;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
  border: 1px solid #2f2a28;
}
.rscene-driver-meta {
  flex: 1;
  min-width: 0;
}
.rscene-driver-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #2f2a28;
  letter-spacing: -0.01em;
}
.rscene-driver-sub {
  font-size: 11px;
  color: #5b6370;
  margin-top: 2px;
}
.rscene-eta {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 10px;
  background: var(--accent);
  border: 1px solid #2f2a28;
}
.rscene-eta b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #2f2a28;
  letter-spacing: -0.03em;
  line-height: 1;
}
.rscene-eta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2f2a28;
}

/* Covered-by-Jobeezy stamp */
.rides-stamp {
  position: absolute;
  right: -10px;
  bottom: 24px;
  padding: 10px 14px;
  background: #2f2a28;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
  transform: rotate(-4deg);
  z-index: 4;
}

/* ═══════════════════════════════════════════════════════════════════════
 * v2.5 — Social proof strip + download polish (ratings on cards)
 * ═══════════════════════════════════════════════════════════════════════ */
.social-proof {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #2f2a28;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.social-proof-head {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 44px);
}
.social-proof-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.social-proof-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 10px 0 0;
  color: #fff;
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}
.sp-quote {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sp-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.sp-body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.sp-attrib {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  color: #2f2a28;
  flex-shrink: 0;
}
.sp-who {
  font-weight: 700;
  color: #fff;
}
.sp-where {
  color: rgba(255, 255, 255, 0.6);
}

/* Download card ratings row */
.dl-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}
.dl-rating .dl-stars {
  color: var(--accent);
  letter-spacing: 0.06em;
}
.dl-card.dl-web .dl-rating {
  color: rgba(10, 12, 16, 0.78);
  border-top-color: rgba(10, 12, 16, 0.2);
}
.dl-card.dl-web .dl-rating .dl-stars {
  color: #2f2a28;
}

/* ═══════════════════════════════════════════════════════════════════════
 * v2.5 — Mobile @ 390px
 * ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .cph1-phone {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px 18px;
  }
  .cph1-phone .cph1-input {
    font-size: 14px;
    padding: 10px 12px;
    min-height: 42px;
  }
  .cph1-phone .cph1-btn {
    padding: 13px 16px;
    font-size: 11px;
  }
  .cph1-logo {
    font-size: 24px;
  }
  .cph1-welcome {
    font-size: 14px;
  }

  .rides-scene {
    padding: 10px 0 0;
  }
  .rscene-phone {
    width: min(300px, 90vw);
    height: 560px;
    border-radius: 38px;
    padding: 8px;
  }
  .rscene-screen {
    border-radius: 32px;
  }
  .rscene-notch {
    width: 100px;
    height: 20px;
    top: 14px;
  }
  .rscene {
    top: 38px;
    padding: 18px 16px 20px;
  }
  .rscene-card {
    padding: 14px;
    box-shadow: 4px 4px 0 var(--accent);
  }
  .rscene-logo {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .rscene-card-title {
    font-size: 15px;
  }
  .rscene-cta {
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    box-shadow: 3px 3px 0 #2f2a28;
  }
  .rscene-review {
    padding: 12px 14px;
  }
  .rscene-v-lg {
    font-size: 18px;
  }
  .rscene-approved {
    padding: 12px;
  }
  .rscene-approved-big {
    font-size: 17px;
  }
  .rscene-driver {
    padding: 14px 16px;
  }
  .rscene-driver-pic {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .rscene-eta b {
    font-size: 20px;
  }

  .rides-stamp {
    right: 8px;
    bottom: 12px;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
    box-shadow: 3px 3px 0 var(--accent);
  }

  .social-proof {
    padding: 48px 0 56px;
  }
  .sp-quote {
    padding: 20px;
  }
  .sp-body {
    font-size: 15px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   v2.5 — Sitewide hardening: a11y, mobile nav, breadcrumbs, interior hero
   ─────────────────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  z-index: 10000;
  background: var(--accent);
  color: var(--fg); /* a11y fix (audit C1): 16.99:1 contrast on volt */
  font-weight: 700;
  padding: 12px 20px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  outline: 3px solid var(--fg);
  outline-offset: 2px;
  border-radius: 0;
}

/* Mobile nav burger + sheet */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; /* a11y fix (audit M4): WCAG 2.5.5 target size */
  height: 44px;
  padding: 11px 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  margin-left: var(--s-2);
}
.nav-burger:focus-visible {
  outline: 3px solid var(--fg);
  outline-offset: 2px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  transition:
    transform var(--dur-1) var(--ease-out),
    opacity var(--dur-1) var(--ease-out);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .nav-burger {
    display: none;
  }
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: #f6f5ef;
  padding: 10px 20px 18px;
  /* Open/close animation */
  transform-origin: top;
  transform: translateY(-6px);
  opacity: 0;
  transition:
    transform 180ms var(--ease-out),
    opacity 180ms var(--ease-out);
}
.nav-mobile[hidden] {
  display: none;
}
.nav-mobile[data-state="open"] {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .nav-mobile {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
/* Backdrop dim when mobile nav is open. Sits behind nav, above page. */
html.nav-open body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(47, 42, 40, 0.38);
  z-index: 40;
  animation: navBackdropIn 160ms var(--ease-out) both;
  pointer-events: none; /* clicks pass through to the document handler */
}
@keyframes navBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  html.nav-open body::before {
    display: none;
  }
}
.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--fg);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.nav-mobile a:last-child {
  border-bottom: 0;
}
.nav-mobile a:hover {
  text-decoration: none;
  color: var(--fg);
}
.nav-mobile-cta {
  margin-top: 12px;
  padding: 14px 18px !important;
  background: var(--accent);
  color: var(--accent-ink) !important;
  border: 1.5px solid var(--accent-ink);
  text-align: center;
  border-bottom: 0 !important;
  letter-spacing: 0.02em;
  font-weight: 800;
}
html.nav-open {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

/* Hide the secondary "How it works" pill on very narrow phones to keep
   the header tidy — the mobile sheet already surfaces the link. */
@media (max-width: 520px) {
  .nav-cta-secondary {
    display: none;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg);
  font-size: 13px;
  font-family: var(--font-mono, var(--font-sans));
  letter-spacing: 0.04em;
}
.breadcrumbs .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--fg-secondary);
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-width: 40px;
  min-height: 40px;
  color: var(--fg-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(47, 42, 40, 0.25);
  text-underline-offset: 3px;
}
.breadcrumbs a:hover {
  color: var(--fg);
  text-decoration-color: var(--fg);
}
.breadcrumbs a:last-child {
  color: var(--fg);
  font-weight: 600;
  pointer-events: none;
  text-decoration: none;
}
.crumb-sep {
  color: var(--fg-muted);
  opacity: 0.95;
}

/* Interior page hero — smaller + denser than homepage */
.hero-interior {
  padding-top: var(--s-12);
  padding-bottom: var(--s-6);
}
.h1-interior {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin-bottom: var(--s-4);
}
@media (max-width: 640px) {
  .hero-interior {
    padding-top: var(--s-8);
    padding-bottom: var(--s-5);
  }
  .h1-interior {
    font-size: clamp(28px, 8vw, 40px);
  }
}

/* Footer tag copy + trust badge */
.footer-tag {
  max-width: 48ch;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}
.footer-protect {
  display: inline-block;
  margin: 4px 0 0;
  padding: 6px 12px;
  border: 1px solid rgba(214, 255, 62, 0.4);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(214, 255, 62, 0.05);
}

/* Breadcrumb bottom spacing inside hero */
.breadcrumbs + main .hero-interior,
.breadcrumbs + main .section:first-child {
  padding-top: var(--s-8);
}

/* Data tables — used on /salary/, /interview-questions/, /ats/ pages */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-6) 0;
  font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: table;
}
.data-table thead th {
  background: var(--surface-warm);
  border-bottom: 2px solid var(--fg);
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.data-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.data-table tbody tr:hover td {
  background: var(--surface-warm);
}
.data-table .num {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  font-size: 14px;
  white-space: nowrap;
}
.data-table a {
  color: var(--fg);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.data-table a:hover {
  border-bottom-color: var(--fg);
  text-decoration: none;
}

/* Scrollable wrapper when a table would overflow */
.table-scroll,
.data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--s-6) 0;
  border: 1px solid var(--border);
}
.table-scroll .data-table,
.data-table-wrap .data-table {
  margin: 0;
  border: 0;
}

@media (max-width: 640px) {
  .data-table {
    font-size: 14px;
  }
  .data-table thead th,
  .data-table tbody td {
    padding: 10px 12px;
  }
}

/* Tables inside a generic <section> container should scroll if they try to
   overflow the content column. This auto-applies to legacy salary markup. */
.section table.data-table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.section table.data-table tbody,
.section table.data-table thead,
.section table.data-table tr {
  display: table;
  width: 100%;
  table-layout: auto;
}
.section table.data-table td,
.section table.data-table th {
  white-space: nowrap;
}

/* Salary hub index cards use dense inline link lists.
   On mobile, promote each metro link into a touch-friendly chip and
   hide decorative separators so tap targets meet ergonomic guidance. */
.salary-index-role a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.salary-index-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-4) var(--s-5);
  box-shadow: 0 1px 0 rgba(31, 42, 55, 0.06);
}
.salary-index-card + .salary-index-card {
  margin-top: var(--s-3);
}
.salary-index-metros {
  margin-top: var(--s-3);
  color: var(--fg-muted);
  line-height: 1.55;
}
.salary-index-role a:hover {
  text-decoration-thickness: 2px;
}
@media (max-width: 640px) {
  .salary-index-card {
    border-radius: 14px;
    padding: var(--s-3) var(--s-3) var(--s-4);
  }
  .salary-index-metros {
    font-size: 0;
    margin-top: var(--s-3);
  }
  .salary-index-metros a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    margin: 0 8px 8px 0;
    background: var(--surface-warm);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--fg);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
  }
  .salary-index-metros a:hover {
    background: #fff;
    border-color: var(--fg);
  }
}

/* FAQ details/summary */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--s-4) 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  list-style: none;
  padding-right: 30px;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  transition: transform var(--dur-1) var(--ease-out);
}
.faq-item[open] summary::after {
  content: "\2013";
}
.faq-item p {
  margin: var(--s-3) 0 0;
  color: var(--fg-secondary);
  max-width: 72ch;
}

/* ─── App-download CTA (v2.6) ──────────────────────────────────────── */
.app-cta {
  padding-top: var(--s-16);
  padding-bottom: var(--s-16);
}
.app-cta-inner {
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}
.app-cta-copy h2 {
  color: var(--bg, #fff);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: var(--s-3) 0 var(--s-5);
  max-width: 18ch;
  margin-inline: auto;
}
.app-cta-lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: var(--s-8);
}
.app-cta-badges {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 10px;
  background: #2f2a28;
  color: #fff;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  text-decoration: none;
  min-width: 180px;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease;
}
.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 255, 62, 0.7);
}
.store-badge svg {
  flex-shrink: 0;
}
.store-badge > span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.05;
}
.store-badge-small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.store-badge-large {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.app-cta-form {
  display: flex;
  gap: var(--s-2);
  max-width: 460px;
  margin: 0 auto var(--s-4);
  flex-wrap: wrap;
}
.app-cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 0;
  font-size: 15px;
}
.app-cta-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.app-cta-fineprint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
@media (max-width: 560px) {
  .app-cta-form {
    flex-direction: column;
  }
  .app-cta-form .btn {
    width: 100%;
  }
  .store-badge {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
}

/* ─── Interview Q&A cards + prep steps (v2.6) ──────────────────────── */
.qa-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.qa-card {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-5) var(--s-4);
  background: var(--surface, #fff);
  border: 1px solid var(--border-subtle, rgba(10, 12, 16, 0.08));
  border-left: 3px solid var(--accent, #d6ff3e);
}
.qa-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--fg-muted, rgba(10, 12, 16, 0.55));
  min-width: 40px;
}
.qa-body {
  flex: 1;
}
.qa-body .mono-label {
  margin-bottom: var(--s-2);
}
.qa-question {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.35;
  color: var(--fg);
  margin: 0 0 var(--s-3);
}
.prep-steps {
  padding-left: 1.2em;
}
.prep-steps li {
  margin: var(--s-3) 0;
  line-height: 1.5;
}
@media (max-width: 560px) {
  .qa-card {
    flex-direction: column;
    gap: var(--s-2);
    padding: var(--s-4);
  }
}

/* ════════════════════════════════════════════════════════════════════════
   v2.7 — Interior hero with personality
   Applied to every non-home page so hamburger targets pop, not flat-line.
   ════════════════════════════════════════════════════════════════════════ */

.hero-int {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 94px) 0 clamp(44px, 5vw, 72px);
  border-bottom: 1.5px solid var(--accent-ink);
}
.hero-int::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10, 12, 16, 0.12) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at top right, transparent, #000 85%);
  -webkit-mask-image: radial-gradient(ellipse at top right, transparent, #000 85%);
  pointer-events: none;
}
.hero-int--accent {
  background: #eee7d8;
  color: var(--accent-ink);
}
/* light-mode overhaul (0.12.7): retire the harsh full-bleed black hero; keep the brand
   signature via a volt accent bar instead of a dark slab. Color text stays ink. */
.hero-int--ink {
  background: linear-gradient(180deg, #faf6ee 0%, #f6f1e8 100%);
  color: var(--accent-ink);
  border-top: 4px solid var(--accent);
  border-bottom-color: var(--accent-ink);
}
.hero-int--ink::before {
  background-image: radial-gradient(rgba(47, 42, 40, 0.1) 1.2px, transparent 1.2px);
}
.hero-int--bone {
  background: #f6f1e8;
  color: var(--accent-ink);
}
.hero-int--paper {
  background: #f5f6f3;
  color: var(--accent-ink);
  border-top: 1.5px solid var(--accent-ink);
} /* was #FFFFFF — soft paper (seo-design-consistency) */
.hero-int--rose {
  background: var(--surface-warm);
  color: var(--accent-ink);
}
.hero-int--cream {
  background: var(--surface-warm);
  color: var(--accent-ink);
}
.hero-int--sky {
  background: #e6f2ff;
  color: var(--accent-ink);
}

.hero-int-inner {
  position: relative;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-int-copy {
  max-width: 780px;
}
.hero-int-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1.5px solid currentColor;
  margin-bottom: 20px;
}
.hero-int-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
}
.hero-int-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: inherit;
}
.hero-int-lede {
  color: inherit;
}
.hero-int-title em {
  font-style: italic;
  font-weight: 500;
  padding: 0;
  position: relative;
  display: inline;
}
.hero-int-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.22em;
  background: var(--accent);
  z-index: -1;
  opacity: 0.85;
}
.hero-int--accent .hero-int-title em::after {
  background: var(--accent-ink);
  opacity: 0.18;
}
.hero-int--ink .hero-int-title em::after {
  background: var(--accent);
  opacity: 0.85;
}
.hero-int-lede {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  max-width: 640px;
  margin: 0 0 24px;
  opacity: 0.92;
}
.hero-int-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-int--ink .btn-sharp-ink {
  background: var(--accent-ink);
  color: #fff;
  border-color: var(--accent-ink);
}
.hero-int--ink .btn-sharp-ink:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-ink);
}
/* Contrast fix for primary CTA on cream hero-int--ink pages — avoid yellow-on-cream */
.hero-int--ink .btn-sharp-primary {
  background: var(--accent-ink);
  color: var(--accent);
  border-color: var(--accent-ink);
  box-shadow: 4px 4px 0 var(--accent-ink);
}
.hero-int--ink .btn-sharp-primary:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-ink);
  box-shadow: 6px 6px 0 var(--accent-ink);
}

/* sig strip — subtle pipeline signature below CTAs */
.hero-int-sig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-int-sig .sig-sep {
  opacity: 0.55;
}
.hero-int--accent .hero-int-sig {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}
.hero-int--ink .hero-int-sig {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}

/* ──────────────────────────────────────────────────────────────────────
   v2.7 — Section styling for interior pages
   ────────────────────────────────────────────────────────────────────── */

.section-band {
  padding: clamp(56px, 7vw, 96px) 0;
}
.section-band--alt {
  background: #fafaf7;
  border-block: 1px solid rgba(10, 12, 16, 0.06);
}
/* light-mode overhaul (0.12.7): band is no longer full-bleed black. */
.section-band--ink {
  background: linear-gradient(180deg, #faf6ee 0%, #f3eddf 100%);
  color: var(--accent-ink);
  border-top: 3px solid var(--accent);
  border-bottom: 1.5px solid var(--accent-ink);
}
.section-band--ink h2,
.section-band--ink h3 {
  color: var(--accent-ink);
}
.section-band--accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1.5px solid var(--accent-ink);
  margin: 32px 0;
}
.stat-cell {
  padding: 28px 24px;
  border-right: 1.5px solid var(--accent-ink);
  border-bottom: 1.5px solid var(--accent-ink);
}
.stat-cell:last-child {
  border-right: 0;
}
.stat-cell .stat-n {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-cell .stat-l {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Interactive quiz/card components for interview-questions page */
.iv-quiz {
  border: 1.5px solid var(--accent-ink);
  background: #fff;
  padding: 0;
  margin: 48px 0;
  box-shadow: 8px 8px 0 var(--accent-ink);
}
.iv-quiz-head {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--accent-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.iv-quiz-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
}
.iv-quiz-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--accent-ink);
  color: var(--accent);
}
.iv-quiz-body {
  padding: 28px 24px;
}
.iv-quiz-question {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 20px;
  min-height: 3em;
}
.iv-quiz-opts {
  display: grid;
  gap: 10px;
}
.iv-quiz-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--accent-ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  transition:
    transform var(--dur-1) var(--ease-out),
    background var(--dur-1) var(--ease-out);
}
.iv-quiz-opt:hover {
  transform: translateX(4px);
  background: #fafaf7;
}
.iv-quiz-opt.is-right {
  background: var(--accent);
  border-color: var(--accent-ink);
}
.iv-quiz-opt.is-wrong {
  background: var(--surface-warm);
  border-color: #b03a2e;
}
.iv-quiz-opt.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}
.iv-quiz-feedback {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fafaf7;
  border-left: 3px solid var(--accent-ink);
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}
.iv-quiz-feedback.is-show {
  display: block;
}
.iv-quiz-foot {
  padding: 18px 24px;
  border-top: 1.5px solid var(--accent-ink);
  background: #fafaf7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.iv-quiz-score {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Reveal card (used on interview role/company pages) */
.iv-reveal {
  border: 1.5px solid var(--accent-ink);
  background: #fff;
  margin: 16px 0;
}
.iv-reveal > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}
.iv-reveal > summary::-webkit-details-marker {
  display: none;
}
.iv-reveal > summary::before {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 1.5px solid var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
}
.iv-reveal[open] > summary::before {
  content: "−";
  background: var(--accent-ink);
  color: var(--accent);
}
.iv-reveal[open] > summary {
  border-bottom: 1.5px solid var(--accent-ink);
}
.iv-reveal-body {
  padding: 18px 20px 20px 62px;
  font-size: 15.5px;
  line-height: 1.55;
  background: #fafaf7;
}
.iv-reveal-body .mono-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-ink);
  color: var(--accent);
  padding: 2px 8px;
  margin-bottom: 8px;
}
.iv-reveal-body .src-link {
  display: inline-flex;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-ink);
  border-bottom: 1px solid currentColor;
}

/* Chip row for role/company filtering on interview index */
.iv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.iv-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: #fff;
  border: 1.5px solid var(--accent-ink);
  color: var(--accent-ink);
  cursor: pointer;
  transition: all var(--dur-1) var(--ease-out);
}
.iv-chip.is-on {
  background: var(--accent-ink);
  color: var(--accent);
}
.iv-chip:hover {
  transform: translateY(-1px);
}

/* Personality callout card */
.callout {
  position: relative;
  padding: 28px 32px 28px 72px;
  background: var(--accent);
  border: 1.5px solid var(--accent-ink);
  box-shadow: 6px 6px 0 var(--accent-ink);
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.4;
}
.callout::before {
  content: "!";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 32px;
  height: 32px;
  background: var(--accent-ink);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 18px;
}
.callout--tip {
  background: #e6f2ff;
}
.callout--tip::before {
  content: "?";
}
.callout--hot {
  background: var(--surface-warm);
}
.callout--hot::before {
  content: "!";
  background: #b03a2e;
  color: #fff;
}

/* Scoreboard / stats card for salary pages */
.scoreboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1.5px solid var(--accent-ink);
  background: var(--accent);
  margin: 32px 0;
}
.scoreboard > div {
  padding: 20px 18px;
  border-right: 1.5px solid var(--accent-ink);
}
.scoreboard > div:last-child {
  border-right: 0;
}
.scoreboard .sb-n {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent-ink);
}
.scoreboard .sb-l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  opacity: 0.78;
}

/* Simple inline-confetti result on interview pages */
.iv-done {
  padding: 32px;
  background: var(--accent);
  border: 1.5px solid var(--accent-ink);
  box-shadow: 8px 8px 0 var(--accent-ink);
  text-align: center;
  display: none;
}
.iv-done.is-show {
  display: block;
}
.iv-done h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 10px;
}
.iv-done-score {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 8px 0 20px;
}

/* ---- iv-role grid + cards (interview index) ---- */
.iv-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.iv-role-card {
  background: #fff;
  border: 1.5px solid var(--accent-ink);
  padding: 22px 22px 20px;
  box-shadow: 6px 6px 0 var(--accent-ink);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.22s ease;
}
.iv-role-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--accent-ink);
}
.iv-role-card[hidden] {
  display: none;
}
.iv-role-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}
.iv-role-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iv-role-bucket {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--accent-ink);
}
.iv-role-title {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  margin: 2px 0 0;
  color: var(--accent-ink);
  font-weight: 700;
}
.iv-role-stat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #5a5f66;
  margin: 0;
}
.iv-role-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding-top: 10px;
  border-top: 1px dashed #d7dae0;
}
.iv-role-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent-ink);
  text-decoration: none;
  padding: 2px 6px;
  background: #f6f7f8;
  border: 1px solid #e3e6eb;
}
.iv-role-links a:hover {
  background: var(--accent);
  border-color: var(--accent-ink);
}
.iv-role-links .iv-role-more {
  background: transparent;
  border: 1px dashed #b8bcc4;
  color: #5a5f66;
}
/* chip filter smooth transitions for any hideable group */
[data-group] {
  transition: opacity 0.2s ease;
}

/* ─────────────────────────────────────────────────────────────────────
   v2.8 — Audit fixes: a11y hardening + answer-page styles (April 2026)
   ─────────────────────────────────────────────────────────────────── */

/* Audit H1 — raise contrast where --fg-subtle was used on body copy/stats.
   Keep --fg-subtle defined for cases like dotted underlines where ratio
   doesn't matter, but re-target real text to --fg-muted (6.06:1). */
.stat-poster-src,
.stat-poster-src a,
.stat-src,
.stat-src a,
.mono-label,
.breadcrumbs,
.breadcrumbs a,
.crumb-sep,
.ui-statusbar,
.ui-app-subtitle,
.ui-jobcard-meta,
.testimonial-attrib,
.muted {
  color: var(--fg-muted);
}

/* Audit C2 / M1 — keyboard focus-visible on every interactive surface */
.btn-sharp:focus-visible,
.btn:focus-visible,
.btn-link:focus-visible,
.nav-links a:focus-visible,
.nav-mobile a:focus-visible,
.nav-brand:focus-visible,
.store-badge:focus-visible,
a.card-hover:focus-visible,
.card-hover a:focus-visible,
.footer a:focus-visible,
details > summary:focus-visible {
  outline: 3px solid var(--fg);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Audit M3 — Pause the hired-marquee on hover, focus, or pause button */
.hired-strip {
  position: relative;
}
.hired-strip:hover .hired-track,
.hired-strip:focus-within .hired-track,
.hired-strip[data-paused="true"] .hired-track {
  animation-play-state: paused;
}
/* Quiet pill nested into the bottom-right so it doesn't dominate the strip */
.hired-strip-pause {
  position: absolute;
  right: 14px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 40px;
  min-height: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  transition:
    background 120ms var(--ease-out),
    color 120ms var(--ease-out),
    border-color 120ms var(--ease-out);
}
.hired-strip-pause .hsp-glyph {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1;
  transform: translateY(-0.5px);
}
.hired-strip-pause:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}
.hired-strip-pause:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .link-grid-item,
  .iv-role-links a {
    display: inline-flex;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
  }

  .footer a,
  .btn-link,
  .iv-chip,
  main nav a,
  .salary-index-role a {
    display: inline-flex;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
  }

  .footer a {
    display: flex;
  }

  main p a,
  main li a,
  main td a,
  .related-card-title a,
  .story-title a,
  .editorial-card-title a {
    display: inline-flex;
    align-items: center;
    min-width: 40px;
    min-height: 40px;
  }
  .hired-strip-pause .hsp-text {
    display: none;
  }
  .hired-strip-pause {
    padding: 4px 7px;
  }
}

/* Generic field input focus-visible (used on /install/ and elsewhere) */
.field input[type="email"]:focus-visible,
.field input[type="text"]:focus-visible,
.app-cta-form input:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px var(--fg),
    0 0 0 6px var(--accent);
}

/* ──────── Answer-page pattern (/trust/is-jobeezy-legit/ + /compare/*) ─── */
.answer-hero {
  background: var(--surface-warm);
  border-bottom: 1.5px solid var(--fg);
  padding: clamp(48px, 7vw, 96px) 0 clamp(36px, 5vw, 64px);
}
.answer-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
}
.answer-verdict {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: var(--s-4) 0 var(--s-6);
}
.answer-verdict em {
  font-style: normal;
  background: var(--accent);
  color: var(--fg);
  padding: 0 0.15em;
}
.answer-summary {
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
  color: var(--fg-secondary);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-8) 0;
  font-size: 15px;
  border: 1.5px solid var(--fg);
}
.cmp-table th,
.cmp-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cmp-table th {
  background: var(--fg);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.cmp-table tr:last-child td {
  border-bottom: 0;
}
.cmp-table .cmp-jb {
  background: #faffe8;
  font-weight: 600;
}
.cmp-table .cmp-ok::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 700;
}
.cmp-table .cmp-no {
  color: var(--fg-muted);
}
.cmp-table .cmp-no::before {
  content: "— ";
  color: var(--fg-subtle);
}

.faq-block {
  margin: var(--s-10) 0;
}
.faq-block details {
  border-bottom: 1px solid var(--border);
  padding: var(--s-4) 0;
}
.faq-block details[open] summary::after {
  content: "−";
}
.faq-block summary {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.faq-block summary::-webkit-details-marker {
  display: none;
}
.faq-block summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--fg-muted);
}
.faq-block details > *:not(summary) {
  margin-top: var(--s-3);
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* Tight TL;DR block used at top of comparison/answer pages */
.tldr {
  border: 1.5px solid var(--fg);
  background: var(--bg);
  padding: var(--s-6) var(--s-6);
  margin: var(--s-6) 0 var(--s-8);
  position: relative;
}
.tldr::before {
  content: "TL;DR";
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--fg);
  color: var(--accent);
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tldr p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.tldr p + p {
  margin-top: var(--s-3);
}

/* ==========================================================================
   v3.1 warm-editorial additions (2026-04-22)
   - Custom install cards (replaces generic App Store/Play badges)
   - Editorial cards (replaces pink AI-template boxes on fair-chance, etc.)
   - Related salary strip with personality
   - Warm-surface section classes
   - Mobile nav logo sizing fix
   ========================================================================== */

/* Mobile header logo sizing — fixes oversized logo on phones */
.nav-brand img,
.nav-brand svg {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .nav-brand img,
  .nav-brand svg {
    height: 24px;
  }
}
@media (max-width: 380px) {
  .nav-brand img,
  .nav-brand svg {
    height: 22px;
  }
}

/* Footer logo lockup */
/* Footer logo — J mark + Jobeezy wordmark + WORKS · FOR · YOU · SINCE · 2024 */
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 100%;
}
.footer-logo img,
.footer-logo svg {
  display: block;
  width: clamp(240px, 34vw, 330px);
  height: auto;
  aspect-ratio: 420 / 96; /* matches viewBox; overrides intrinsic HTML width/height */
  max-width: 100%;
}
@media (max-width: 380px) {
  .footer-logo img,
  .footer-logo svg {
    width: 100%;
    min-width: 200px;
  }
}

/* Warm surface sections — alternative to pink/black */
.section-warm-cream {
  background: var(--surface-warm);
  color: var(--fg);
}
.section-warm-deep {
  background: var(--surface-warm-deep);
  color: var(--fg);
}
.section-warm-cream h1,
.section-warm-cream h2,
.section-warm-cream h3,
.section-warm-deep h1,
.section-warm-deep h2,
.section-warm-deep h3 {
  color: var(--fg);
}

/* ── Install cards — replaces generic store badges ──────────────────────── */
.install-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-3);
  margin: var(--s-5) 0;
}

.install-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface-warm);
  color: var(--fg);
  text-decoration: none;
  border: 1.5px solid var(--fg);
  box-shadow: 4px 4px 0 var(--fg);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
}
.install-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--fg);
  text-decoration: none;
}
.install-card:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--fg);
}

.install-card-glyph {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--fg);
  color: var(--surface-warm);
  border-radius: 0;
}
.install-card-glyph svg {
  width: 22px;
  height: 22px;
  display: block;
}

.install-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.install-card-eyebrow {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.install-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.install-card-meta {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

.install-card-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  color: var(--fg);
  opacity: 0.55;
  transition:
    opacity 0.12s,
    transform 0.12s;
}
.install-card:hover .install-card-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Accent variant — chartreuse fill */
.install-card.install-card-accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.install-card.install-card-accent .install-card-glyph {
  background: var(--accent-ink);
  color: var(--accent);
}
.install-card.install-card-accent .install-card-title,
.install-card.install-card-accent .install-card-eyebrow,
.install-card.install-card-accent .install-card-meta,
.install-card.install-card-accent .install-card-arrow {
  color: var(--accent-ink);
}

/* Dark-context install cards — when placed inside .section-deep */
/* light-mode overhaul (0.12.7): section-deep is now cream, so install-cards inherit the
   default light treatment. Keep these rules as no-op overrides for back-compat. */
.section-deep .install-card:not(.install-card-accent) {
  background: #ffffff;
  color: var(--accent-ink);
  border-color: var(--accent-ink);
  box-shadow: 4px 4px 0 var(--accent-ink);
}
.section-deep .install-card:not(.install-card-accent):hover {
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--accent-ink);
}
.section-deep .install-card:not(.install-card-accent) .install-card-glyph {
  background: var(--accent-ink);
  color: var(--accent);
}
.section-deep .install-card:not(.install-card-accent) .install-card-eyebrow {
  color: rgba(47, 42, 40, 0.74);
}
.section-deep .install-card:not(.install-card-accent) .install-card-title {
  color: var(--accent-ink);
}
.section-deep .install-card:not(.install-card-accent) .install-card-meta {
  color: rgba(47, 42, 40, 0.7);
}
.section-deep .install-card:not(.install-card-accent) .install-card-arrow {
  color: var(--accent-ink);
  opacity: 0.85;
}

/* Dark-context chartreuse variant keeps its accent styling + ink shadow */
.section-deep .install-card.install-card-accent {
  box-shadow: 4px 4px 0 var(--accent-ink);
  border-color: var(--accent-ink);
}
.section-deep .install-card.install-card-accent:hover {
  box-shadow: 6px 6px 0 var(--accent-ink);
}

@media (max-width: 520px) {
  .install-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .install-card-glyph {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
  .install-card-glyph svg {
    width: 18px;
    height: 18px;
  }
  .install-card-title {
    font-size: 15px;
  }
}

/* ── v3 Hero stat feature — replaces v2 editorial-card grid ──────────────
   Editorial long-form: giant serif number on a warm cream slab, tight
   two-column body (narrative + meta rail), hairline rules top & bottom.
   One focal point. No card soup.                                           */

.stat-feature {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 80px);
  background: var(--surface-warm);
  border-top: 1px solid rgba(31, 42, 55, 0.14);
  border-bottom: 1px solid rgba(31, 42, 55, 0.14);
}
.stat-feature-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.stat-feature-eyebrow {
  display: block;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.stat-feature-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--fg-muted);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-2px);
}
.stat-feature-number {
  display: block;
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(110px, 22vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--fg);
  margin: 0 0 clamp(20px, 3vw, 36px) 0;
  font-feature-settings:
    "lnum" 1,
    "pnum" 1;
}
.stat-feature-number .stat-unit {
  display: inline-block;
  font-size: 0.32em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: top;
  margin-left: 0.08em;
  color: var(--fg-muted);
  transform: translateY(0.25em);
}
.stat-feature-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 240px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(31, 42, 55, 0.14);
}
.stat-feature-lede {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0 0 var(--s-4) 0;
  max-width: 58ch;
}
.stat-feature-lede strong {
  font-weight: 600;
  color: var(--fg);
}
.stat-feature-body p {
  margin: 0 0 var(--s-3) 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 62ch;
}
.stat-feature-rail {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 12px;
  line-height: 1.55;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  padding-top: 4px;
}
.stat-feature-rail-item {
  display: block;
}
.stat-feature-rail-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-feature-rail a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.stat-feature-rail a:hover {
  color: var(--accent);
}

.stat-feature-pullquote {
  margin: clamp(40px, 5vw, 64px) 0 0 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--fg);
  max-width: 22ch;
}
.stat-feature-pullquote::before {
  content: "\201C";
  display: inline;
}
.stat-feature-pullquote::after {
  content: "\201D";
  display: inline;
}

@media (max-width: 720px) {
  .stat-feature-body {
    grid-template-columns: 1fr;
  }
  .stat-feature-rail {
    border-top: 1px solid rgba(31, 42, 55, 0.14);
    padding-top: var(--s-3);
  }
}

/* ── v2 compatibility shims — old markup downgrades gracefully ──────────
   Some pages may still carry .editorial-grid/.editorial-card before the
   rewriters run. Render them as a clean typographic stack, not card soup. */
.editorial-grid {
  display: block;
  max-width: 760px;
  margin: var(--s-6) auto;
}
.editorial-grid-2 {
  display: block;
}
.editorial-card {
  position: relative;
  padding: var(--s-5) 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(31, 42, 55, 0.14);
}
.editorial-card:last-child {
  border-bottom: 1px solid rgba(31, 42, 55, 0.14);
}
.editorial-card-eyebrow {
  display: block;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: var(--s-2);
}
.editorial-card-title {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 var(--s-2) 0;
  color: var(--fg);
}
.editorial-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.editorial-card p + p {
  margin-top: var(--s-2);
}
.editorial-card ul {
  margin: var(--s-2) 0 0;
  padding-left: 1.1em;
}
.editorial-card li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.editorial-card-meta {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* ── v3 Keep reading — editorial index list, no bubbles ───────────────── */

.index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(31, 42, 55, 0.14);
}
.index-list-item {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(31, 42, 55, 0.14);
}
.index-list-link {
  display: grid;
  grid-template-columns: 56px minmax(0, 160px) minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 28px) 4px;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.15s;
}
.index-list-link:hover {
  background: var(--surface-warm);
  text-decoration: none;
}
.index-list-link:hover .index-list-title {
  color: var(--accent);
}
.index-list-link:hover .index-list-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.index-list-num {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
  align-self: center;
}
.index-list-eyebrow {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  align-self: center;
}
.index-list-title {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--fg);
  transition: color 0.15s;
}
.index-list-meta {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-align: right;
  align-self: center;
}
.index-list-arrow {
  display: inline-block;
  margin-left: 6px;
  color: var(--fg-muted);
  opacity: 0.55;
  transition:
    transform 0.18s ease,
    opacity 0.15s;
}

@media (max-width: 780px) {
  .index-list-link {
    grid-template-columns: 40px minmax(0, 1fr);
    row-gap: 6px;
    padding: 18px 2px;
  }
  .index-list-eyebrow {
    grid-column: 2;
    font-size: 10px;
  }
  .index-list-title {
    grid-column: 2;
    font-size: 20px;
  }
  .index-list-meta {
    grid-column: 2;
    text-align: left;
  }
  .index-list-num {
    grid-row: 1 / span 3;
    align-self: start;
    padding-top: 4px;
  }
}

.keep-reading {
  padding: clamp(48px, 7vw, 96px) 0;
}
.keep-reading-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.keep-reading-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  margin: 0 0 clamp(28px, 3vw, 40px);
  padding-bottom: var(--s-3);
}
.keep-reading-title {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--fg);
}
.keep-reading-eyebrow {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ── v2 compatibility shims for related-* — downgrade to index list ───── */
.related-strip {
  padding: clamp(48px, 7vw, 96px) 0;
  background: transparent;
}
.related-strip-title {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-4) 0;
  color: var(--fg);
}
.related-strip-lede {
  max-width: 620px;
  margin: 0 0 var(--s-5) 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.related-strip-grid {
  display: block;
  border-top: 1px solid rgba(31, 42, 55, 0.14);
}
.related-card {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 28px) 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(31, 42, 55, 0.14);
  color: var(--fg);
  text-decoration: none;
  transform: none;
  box-shadow: none;
  transition: background 0.15s;
}
.related-card:hover {
  background: var(--surface-warm);
  border-color: rgba(31, 42, 55, 0.14);
  transform: none;
  box-shadow: none;
  text-decoration: none;
}
.related-card:hover .related-card-title {
  color: var(--accent);
}
.related-card-eyebrow {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  align-self: center;
}
.related-card-title {
  font-family: var(--font-display, "Source Serif 4", Georgia, serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--fg);
  transition: color 0.15s;
}
.related-card-meta {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-align: right;
  margin-top: 0;
  padding-top: 0;
  align-self: center;
}
.related-card-meta strong {
  color: var(--fg);
  font-weight: 500;
}
@media (max-width: 780px) {
  .related-card {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 18px 2px;
  }
  .related-card-eyebrow {
    font-size: 10px;
  }
  .related-card-title {
    font-size: 20px;
  }
  .related-card-meta {
    text-align: left;
  }
}

/* ───────────────────────────────────────────────────────────────────
   PR B — Trust & Security page structure
   Sticky TOC rail + at-a-glance commitment tiles + collapsible deep sections.
   Used by /trust/ and /about/security/.
   ────────────────────────────────────────────────────────────────── */

.trust-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: var(--s-6);
}
@media (min-width: 960px) {
  .trust-layout {
    grid-template-columns: 220px 1fr;
    gap: var(--s-12);
    padding-inline: var(--s-8);
  }
}

.trust-toc {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-toc-label {
  color: var(--fg-muted);
  font-weight: 500;
  margin: 0 0 var(--s-3);
}
.trust-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-toc li {
  margin: 0;
}
.trust-toc a {
  display: block;
  padding: 8px 0;
  color: var(--fg-secondary);
  text-decoration: none;
  border-left: 2px solid var(--border-subtle);
  padding-left: 12px;
  line-height: 1.4;
}
.trust-toc a:hover {
  color: var(--fg);
  border-left-color: var(--fg);
}
.trust-toc a[aria-current="true"] {
  color: var(--fg);
  border-left-color: var(--accent-ink);
  font-weight: 600;
}
@media (min-width: 960px) {
  .trust-toc {
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }
}
@media (max-width: 959px) {
  .trust-toc {
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: var(--s-4) var(--s-5);
    margin-bottom: var(--s-2);
  }
  .trust-toc-label {
    margin-bottom: var(--s-2);
  }
  .trust-toc a {
    padding: 6px 0 6px 10px;
    border-left-width: 2px;
  }
}

/* At-a-glance tiles */
.trust-glance {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin: 0 0 var(--s-10);
}
@media (min-width: 640px) {
  .trust-glance {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .trust-glance {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-tile {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: var(--s-5) var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-tile-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.trust-tile-claim {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--fg);
  margin: 0;
}
.trust-tile-detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-secondary);
  margin: 0;
}

/* Collapsible deep sections */
.trust-section {
  border-top: 1px solid var(--border);
  padding: var(--s-7) 0;
}
.trust-section:last-of-type {
  border-bottom: 1px solid var(--border);
}
.trust-section > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
}
.trust-section > summary::-webkit-details-marker {
  display: none;
}
.trust-section > summary > h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.015em;
  font-weight: 700;
}
.trust-section > summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
  color: var(--fg-muted);
  flex: 0 0 auto;
  width: 24px;
  text-align: right;
  transform: translateY(2px);
}
.trust-section[open] > summary::after {
  content: "−";
  color: var(--fg);
}
.trust-section > .trust-section-body {
  padding-top: var(--s-4);
}
.trust-section[open] > summary > h2 {
  color: var(--fg);
}

/* Content inside collapsibles — inherit site body styles but tighten */
.trust-section-body p,
.trust-section-body li {
  line-height: 1.65;
  color: var(--fg-secondary);
}
.trust-section-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: var(--s-5) 0 var(--s-2);
  color: var(--fg);
}
.trust-section-body ul {
  padding-left: 1.2em;
  margin: 0 0 var(--s-4);
}
.trust-section-body li {
  margin: 6px 0;
}
.trust-section-body code {
  background: var(--surface-warm, #f6f2e6);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 0.9em;
  font-family: var(--font-mono);
}

.trust-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-3) 0 var(--s-5);
  font-size: 14px;
  line-height: 1.5;
}
.trust-table th {
  text-align: left;
  padding: 10px 14px 10px 0;
  border-bottom: 2px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 600;
}
.trust-table td {
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--fg-secondary);
}
.trust-table tr:last-child td {
  border-bottom: none;
}
.trust-table strong {
  color: var(--fg);
  font-weight: 600;
}
@media (max-width: 640px) {
  .trust-table {
    font-size: 13px;
  }
  .trust-table th,
  .trust-table td {
    padding: 8px 8px 8px 0;
  }
}
