/* ============================================================
   MILTON — milton.md
   Built from the Milton Design System (colors_and_type.css).
   White editorial canvas · teal→purple signature gradient ·
   sharp 4px tiles · 24px-capped pills · calm 150–250ms motion.
   ============================================================ */

/* ---------- Fonts ----------
   Archivo loads from Google Fonts (per design system — no licensed
   local file). Archivo Narrow + Space Mono are self-hosted. */
@font-face {
  font-family: 'Archivo Narrow';
  src: url('../fonts/ArchivoNarrow-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo Narrow';
  src: url('../fonts/ArchivoNarrow-Italic-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 400 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --sans:   'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --narrow: 'Archivo Narrow', 'Archivo', sans-serif;
  --mono:   'Space Mono', ui-monospace, monospace;

  --grad-1: #2ABFB5;  /* teal   */
  --grad-3: #6E2FA5;  /* purple */
  --brand-grad:      linear-gradient(90deg, #2ABFB5 0%, #6E2FA5 100%);
  --brand-grad-rev:  linear-gradient(90deg, #6E2FA5 0%, #2ABFB5 100%);
  --brand-grad-band: linear-gradient(120deg, #6E2FA5 0%, #2ABFB5 100%);

  --bg:     #FFFFFF;
  --bg-2:   #F4F5F7;
  --bg-3:   #ECEEF1;
  --ink:    #0A0A0A;
  --ink-2:  #4A4F56;
  --ink-3:  #8A8F96;
  --line:   #E4E7EB;
  --line-2: #C9CDD3;

  --ph-pink:    linear-gradient(135deg, #F5A3C8, #6E2FA5);
  --ph-teal:    linear-gradient(135deg, #7FD8CE, #2ABFB5);
  --ph-magenta: linear-gradient(135deg, #C289DB, #7B3F97 55%, #3A1056);
  --ph-ink:     linear-gradient(135deg, #1C2230, #0A0A0A);
  --tile-overlay: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);

  --container:   1280px;
  --container-n: 1080px;
  --pad-x:       56px;
  --pad-x-m:     24px;
  --section-y:   120px;
  --section-y-m: 72px;

  --radius:      4px;
  --radius-pill: 24px;   /* buttons & chips — capped at 24px */

  --ease:     cubic-bezier(.2, .7, .2, 1);
  --dur-fast: 150ms;
  --dur:      200ms;
  --dur-slow: 250ms;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}
::selection { background: var(--grad-3); color: #fff; }
:focus-visible { outline: 2px solid var(--grad-3); outline-offset: 3px; }
button { font-family: var(--sans); }
img { max-width: 100%; }
a { color: inherit; text-underline-offset: 0.18em; text-decoration-thickness: 1px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.container-narrow { max-width: var(--container-n); }

/* ---------- Type scale ---------- */
.h-display { font-size: clamp(56px, 9vw, 148px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.95; margin: 0; }
.h-1 { font-size: clamp(40px, 5.6vw, 88px); font-weight: 600; letter-spacing: -0.032em; line-height: 1.0; margin: 0; }
.h-2 { font-size: clamp(28px, 3.4vw, 56px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; margin: 0; }
.h-3 { font-size: clamp(22px, 2vw, 30px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; margin: 0; }
.lead { font-size: clamp(18px, 1.4vw, 22px); font-weight: 400; line-height: 1.5; color: var(--ink-2); }
.mono { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: 0.06em; }
.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow ---------- */
.eyebrow-row { display: flex; align-items: center; gap: 14px; }
.eyebrow-bar { width: 36px; height: 2px; background: var(--brand-grad); flex: none; }
.eyebrow {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
}
.eyebrow-num { font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--grad-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; cursor: pointer;
  border: none; text-decoration: none; white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.btn-primary {
  padding: 15px 28px; border-radius: var(--radius-pill);
  background: var(--brand-grad); color: #fff; font-weight: 500;
  position: relative; overflow: hidden; z-index: 0;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--brand-grad-rev); opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
  padding: 14px 26px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink); background: transparent;
  color: var(--ink); font-weight: 600;
}
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-onlight {
  padding: 15px 28px; border-radius: var(--radius-pill);
  background: #fff; color: var(--ink); font-weight: 600;
}
.btn-onlight:hover { opacity: .9; }
.btn-full { width: 100%; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center;
  font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 14px; border: 1px solid var(--ink);
  color: var(--ink); white-space: nowrap;
}
.chip-grad { border: none; background: var(--brand-grad); color: #fff; }

/* ---------- Nav (per Milton Navigation.fig) ----------
   Centered wordmark above a floating white pill bar of uppercase
   links, with the gradient CTA pill to its right. The wordmark row
   collapses calmly once the reader scrolls. */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px var(--pad-x);
  display: flex; flex-direction: row; align-items: center; gap: 28px;
}
.nav-brand { display: flex; align-items: center; flex: none; }
.nav-brand img { height: 20px; display: block; }
.nav-row { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: flex-end; }
.nav-pill {
  display: flex; align-items: center; gap: 30px;
  background: #fff; border-radius: 999px;
  padding: 0 40px; height: 52px;
  box-shadow: 0 6px 24px rgba(10, 10, 10, 0.06);
}
.nav-pill a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; white-space: nowrap; opacity: 0.85;
  transition: opacity var(--dur) var(--ease);
}
.nav-pill a:hover { opacity: 1; }
.nav-cta {
  height: 52px; padding: 0 28px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-burger { display: none; }
.nav-drawer { display: none; background: #fff; border-top: 1px solid var(--line); }
.nav-drawer.is-open { display: block; }
.nav-drawer a {
  display: block; padding: 16px var(--pad-x-m);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line);
}
.nav-drawer a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 8px; }
.hero-top { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; flex-wrap: wrap; }
.hero-stamp { margin-left: auto; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }
.hero .h-display { max-width: 1120px; }
.hero-lead { max-width: 680px; margin: 34px 0 0; }
.hero-ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-chips {
  margin-top: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---------- Marquee ---------- */
.marquee { background: var(--brand-grad-band); overflow: hidden; padding: 22px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: mscroll 48s linear infinite; }
.marquee-run { display: inline-flex; gap: 56px; align-items: center; padding-right: 56px; }
.marquee-item {
  display: inline-flex; gap: 56px; align-items: center;
  color: #fff; font-weight: 600; font-size: 19px; letter-spacing: -0.01em; white-space: nowrap;
}
.bolt { opacity: .5; flex: none; }
@keyframes mscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section-tint { background: var(--bg-2); }
.section-head { max-width: 760px; }
.section-head .h-2 { margin-top: 24px; }
.section-head .lead { margin: 24px 0 0; }

/* ---------- Stats ---------- */
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 72px; border-top: 1px solid var(--line); padding-top: 48px;
}
.stat-num { font-size: 56px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; }
.stat-label { font-size: 15px; color: var(--ink-2); line-height: 1.45; margin: 12px 0 0; max-width: 260px; }
.stat-src { font-family: var(--mono); font-size: 11px; font-style: italic; color: var(--ink-3); margin: 14px 0 0; letter-spacing: 0.02em; }

/* ---------- Traps ---------- */
.trap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 72px; }
.trap { border-top: 1px solid var(--line-2); padding-top: 28px; position: relative; }
.trap::before { content: ""; position: absolute; top: -1px; left: 0; width: 36px; height: 2px; background: var(--brand-grad); }
.trap-tag { text-transform: uppercase; letter-spacing: 0.08em; color: var(--grad-3); font-weight: 700; font-size: 10px; }
.trap .h-3 { margin-top: 10px; }
.trap p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 14px 0 0; }

/* ---------- Paired exchange ---------- */
.exchange { margin-top: 72px; }
.exchange-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.exchange-panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.exchange-who { text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-size: 10px; margin-bottom: 12px; }
.exchange-msg { font-size: 14px; line-height: 1.45; color: var(--ink); padding: 10px 12px; border-radius: var(--radius); }
.exchange-ask { background: var(--bg-2); margin-bottom: 10px; }
.exchange-ans { border: 1px solid var(--line); }
.exchange-name { text-transform: uppercase; letter-spacing: 0.06em; color: var(--grad-3); font-weight: 700; font-size: 10px; margin-bottom: 5px; }
.exchange-src { color: var(--ink-3); font-style: italic; margin-top: 8px; font-size: 10px; letter-spacing: 0.02em; }
.exchange-record { margin-top: 18px; display: flex; align-items: center; gap: 12px; justify-content: center; }
.exchange-record .mono { text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); font-size: 10px; }

/* ---------- Prompt ticker ---------- */
.ticker { margin-top: 72px; }
.ticker-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-3); text-transform: uppercase; padding-bottom: 14px; }
.ticker-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: mscroll 40s linear infinite; }
.ticker-run { display: inline-flex; gap: 44px; align-items: center; padding-right: 44px; }
.ticker-q { font-size: 16px; color: var(--ink-2); }
.ticker-q b { color: var(--ink); font-weight: 600; }

/* ---------- Work tiles ---------- */
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 64px; }
.tile {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: none; padding: 0; cursor: pointer; text-align: left; display: block; width: 100%;
}
.tile-wide { aspect-ratio: 16 / 9; }
.tile-teal { background: var(--ph-teal); }
.tile-pink { background: var(--ph-pink); }
.tile-magenta { background: var(--ph-magenta); }
.tile-ink { background: var(--ph-ink); }
.tile::after { content: ""; position: absolute; inset: 0; background: var(--tile-overlay); }
.tile-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
}
.tile-arrow {
  position: absolute; top: 14px; right: 18px; z-index: 2; color: #fff; font-size: 22px;
  transition: transform var(--dur) var(--ease);
}
.tile:hover .tile-arrow { transform: translate(3px, -3px); }
.tile-meta { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: block; right: 18px; }
.tile-client { display: block; font-size: 10px; letter-spacing: 0.06em; color: rgba(255,255,255,.85); text-transform: uppercase; }
.tile-title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-weight: 600; font-size: 26px; letter-spacing: -0.02em; line-height: 1.1; color: #fff;
  margin-top: 6px; max-width: 360px; min-height: calc(2 * 1.1 * 26px);
}

.work-more { margin-top: 48px; }

/* ---------- Value system ---------- */
.values-list { margin-top: 64px; border-top: 1px solid var(--line); }
.value-row {
  display: grid; grid-template-columns: 48px 1fr 320px; gap: 32px;
  align-items: baseline; padding: 30px 0; border-bottom: 1px solid var(--line);
}
.value-num { color: var(--grad-3); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; }
.value-pair { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.value-strong, .value-weak {
  font-weight: 600; font-size: clamp(30px, 3.6vw, 56px);
  letter-spacing: -0.025em; line-height: 1.05;
}
.value-weak { color: var(--ink-3); }
.value-over { text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-size: 12px; }
.value-note { font-size: 14px; line-height: 1.5; color: var(--ink-2); margin: 0; }

/* ---------- Truth or stats page ---------- */
.tier-line { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.tier-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grad-3);
}
.sources td { font-size: 14px; }
.sources td.src-tier { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.sources td.src-name { color: var(--ink); font-weight: 600; }
.sources-foot { font-family: var(--mono); font-size: 11px; font-style: italic; color: var(--ink-3); letter-spacing: 0.02em; margin-top: 18px; max-width: 760px; }

/* ---------- Case studies page ---------- */
.case-hero { padding: 96px 0 24px; }
.case-hero .h-1 { margin-top: 24px; max-width: 900px; }
.case-hero .lead { max-width: 720px; margin: 24px 0 0; }
.case-note {
  margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.case-note .mono { text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); font-size: 10px; }
.case { padding: 96px 0; }
.case + .case { border-top: 1px solid var(--line); }
.case-cols { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.case-meta { position: sticky; top: 96px; display: grid; gap: 22px; }
.case-meta .field-value { font-size: 16px; }
.case-strip { height: 120px; border-radius: var(--radius); position: relative; overflow: hidden; }
.case-strip::after { content: ""; position: absolute; inset: 0; background: var(--tile-overlay); }
.case-strip .mono { position: absolute; top: 14px; left: 14px; z-index: 2; color: #fff; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.case-body .h-2 { max-width: 720px; }
.case-body .lead { max-width: 680px; margin: 24px 0 0; }
.case-body p:not(.lead):not(.stat-label):not(.stat-src) { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 18px 0 0; max-width: 680px; }
.case-outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 56px; border-top: 1px solid var(--line); padding-top: 40px;
}
.case-outcomes.two { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
.case-outcomes .stat-num { font-size: 44px; }
.case-provenance {
  margin-top: 48px; border-top: 1px solid var(--line); padding-top: 18px;
  font-family: var(--mono); font-size: 11px; font-style: italic; color: var(--ink-3); letter-spacing: 0.02em;
  max-width: 680px;
}

/* ---------- Substack library ---------- */
.essay-feature {
  margin-top: 64px; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 48px; background: #fff;
}
.essay-feature .mono-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grad-3);
}
.essay-feature .h-2 { margin-top: 16px; max-width: 760px; }
.essay-feature .lead { margin: 18px 0 0; max-width: 680px; }
.essay-feature .essay-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.essay-list { margin-top: 72px; border-top: 1px solid var(--line); }
.essay-row {
  display: grid; grid-template-columns: 56px 1fr 200px; gap: 32px;
  align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
.essay-num { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--grad-3); }
.essay-title { font-weight: 600; font-size: 22px; letter-spacing: -0.015em; line-height: 1.25; }
.essay-row:hover .essay-title { text-decoration: underline; text-underline-offset: 0.18em; text-decoration-thickness: 1.5px; }
.essay-dek { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 8px 0 0; max-width: 600px; }
.essay-meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3); text-align: right; white-space: nowrap;
}

/* ---------- Integrations ---------- */
.int-group { margin-top: 56px; }
.logo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px; margin-top: 28px;
}
.logo-tile {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 16px 20px; display: flex; flex-direction: column;
  align-items: center; gap: 14px; text-align: center;
  transition: border-color var(--dur) var(--ease);
}
.logo-tile:hover { border-color: var(--line-2); }
.logo-tile img { height: 30px; width: 30px; filter: brightness(0); opacity: 0.85; }
.logo-tile .logo-name {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
}
.logo-tile .logo-word {
  font-weight: 600; font-size: 19px; letter-spacing: -0.015em; color: var(--ink);
  height: 30px; display: flex; align-items: center;
}
.logo-disclaimer {
  font-family: var(--mono); font-size: 10px; font-style: italic;
  letter-spacing: 0.02em; color: var(--ink-3); margin-top: 40px; max-width: 760px; line-height: 1.6;
}

/* ---------- Footer "Runs on" strip ---------- */
.footer-runs {
  display: flex; align-items: center; gap: 16px 28px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
}
.runs-label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.runs-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,.75);
}
.runs-item img { height: 16px; width: 16px; filter: brightness(0) invert(1); opacity: 0.8; }

/* ============================================================
   VISUAL KIT, on-brand graphics to balance copy
   (tinted tiles double as photo slots: add a background-image to
   .media-tile / .pullquote-media later and the overlay keeps text
   legible, per the design system's "tinted tile placeholder" rule)
   ============================================================ */

/* ---------- Pull-quote band (ink statement, gradient bar) ---------- */
.pullquote {
  max-width: var(--container); margin: 0 auto; padding: 96px var(--pad-x);
}
.pullquote-inner { max-width: 1000px; }
.pullquote .bar { width: 56px; height: 3px; background: var(--brand-grad); margin-bottom: 28px; }
.pullquote p {
  font-size: clamp(28px, 4vw, 52px); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.1; color: var(--ink); margin: 0; max-width: 16ch; max-width: 900px;
}
.pullquote .attrib {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 28px;
}
.section-tint + .pullquote, .pullquote + .section-tint { }

/* ---------- Media tile (tinted now, photo-ready) ---------- */
.media-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ph-teal); background-size: cover; background-position: center;
  min-height: 280px; display: block;
}
.media-tile.t-magenta { background-color: #7B3F97; background-image: var(--ph-magenta); }
.media-tile.t-ink { background-image: var(--ph-ink); }
.media-tile.t-pink { background-image: var(--ph-pink); }
.media-tile.t-grad { background-image: var(--brand-grad-band); }
.media-tile::after { content: ""; position: absolute; inset: 0; background: var(--tile-overlay); }
.media-tile .media-label {
  position: absolute; left: 22px; bottom: 20px; z-index: 2; right: 22px;
}
.media-tile .media-eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
}
.media-tile .media-line {
  font-weight: 600; font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.015em;
  line-height: 1.15; color: #fff; margin-top: 8px;
}
.media-tile .media-corner { position: absolute; top: 16px; right: 20px; z-index: 2; color: #fff; font-size: 20px; }

/* Hero statement band (wide media tile under the hero) */
.hero-band { padding: 8px 0 0; }
.hero-band .media-tile { min-height: 340px; }
.hero-band .media-statement {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: center; padding: 0 clamp(28px, 6vw, 80px);
}
.hero-band .media-statement .he {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
}
.hero-band .media-statement h2 {
  font-size: clamp(28px, 4vw, 56px); font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.04; color: #fff; margin: 16px 0 0; max-width: 860px;
}

/* ---------- Pairing diagram (org-chart visual) ---------- */
.pairing { margin-top: 64px; display: grid; gap: 14px; max-width: 920px; }
.pair-row {
  display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center; gap: 0;
}
.pair-node {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: #fff;
}
.pair-node .pn-role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.pair-node .pn-name { font-weight: 600; font-size: 19px; letter-spacing: -0.015em; margin-top: 4px; }
.pair-node.agent { border-color: transparent; background: var(--bg-2); }
.pair-node.agent .pn-name { color: var(--grad-3); }
.pair-link { height: 2px; background: var(--brand-grad); position: relative; }
.pair-link::after {
  content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--grad-3);
}
.pairing-note { font-family: var(--mono); font-size: 11px; font-style: italic; color: var(--ink-3); margin-top: 8px; letter-spacing: 0.02em; }

/* ---------- Article pull-quote ---------- */
.article-pull {
  max-width: 720px; margin: 44px 0; padding-left: 24px; border-left: 3px solid;
  border-image: var(--brand-grad) 1;
}
.article-pull p {
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.25; color: var(--ink); margin: 0;
}

@media (max-width: 760px) {
  .pullquote { padding: 64px var(--pad-x); }
  .pair-row { grid-template-columns: 1fr; gap: 8px; }
  .pair-link { width: 2px; height: 24px; margin: 0 auto; }
  .pair-link::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%); }
}

.x404-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 88px; }
.x404-actions .btn { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ---------- One pager ---------- */
.tldr-box {
  margin-top: 56px; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 34px; max-width: 880px;
}
.tldr-box .mono-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grad-3);
}
.tldr-box ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 14px; }
.tldr-box li { font-size: 16px; line-height: 1.55; color: var(--ink); padding-left: 22px; position: relative; }
.tldr-box li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 10px; height: 2px; background: var(--brand-grad); }
.opager-section { padding: 72px 0; }
.opager-section + .opager-section { border-top: 1px solid var(--line); }
.opager-link { margin-top: 28px; }
.values-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0; display: flex; gap: 14px 28px; flex-wrap: wrap; align-items: center;
}
.values-strip .mono { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--ink-2); font-size: 11px; }

/* ---------- Article pages ---------- */
.article-hero { padding: 80px 0 0; }
.article-hero .h-1 { margin-top: 24px; max-width: 880px; font-size: clamp(36px, 4.6vw, 68px); }
.article-dek { max-width: 680px; margin: 24px 0 0; }
.article-metaline {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
}
.article-body { max-width: 720px; margin: 56px 0 0; }
.article-body p { font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0 0 24px; }
.article-body h2 {
  font-size: clamp(22px, 2vw, 30px); font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.2; margin: 48px 0 18px;
}
.article-body blockquote {
  border-left: 2px solid var(--grad-3); margin: 32px 0; padding: 4px 0 4px 22px;
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
}
.article-stat { margin: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.article-sources { max-width: 720px; margin: 56px 0 0; border-top: 1px solid var(--line); padding-top: 24px; }
.article-sources .mono-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.article-sources ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.article-sources li { font-family: var(--mono); font-size: 11px; line-height: 1.5; letter-spacing: 0.02em; color: var(--ink-2); }
.article-backrow { max-width: 720px; margin: 48px 0 0; display: flex; gap: 14px; flex-wrap: wrap; }
.essay-group { margin-top: 72px; }
.essay-group-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-2);
}
.essay-group-head .mono { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--ink-2); font-size: 11px; }

/* ---------- Ladder ---------- */
.ladder-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; margin-top: 64px; align-items: start; }
.ladder-list { border-top: 1px solid var(--line-2); }
.ladder-row {
  width: 100%; text-align: left; border: none; border-bottom: 1px solid var(--line-2);
  background: transparent; cursor: pointer; padding: 20px 18px;
  display: flex; align-items: center; gap: 18px;
  transition: background var(--dur) var(--ease);
}
.ladder-row.is-active { background: #fff; }
.ladder-id { font-size: 14px; font-weight: 700; color: var(--ink-3); width: 30px; flex: none; }
.ladder-row.is-active .ladder-id { color: var(--grad-3); }
.ladder-name { font-weight: 600; font-size: 18px; color: var(--ink-2); flex: 1; letter-spacing: -0.01em; }
.ladder-row.is-active .ladder-name { color: var(--ink); }
.ladder-time { font-size: 11px; color: var(--ink-3); }
.ladder-arrow { color: transparent; transition: color var(--dur) var(--ease); }
.ladder-row.is-active .ladder-arrow, .ladder-row:hover .ladder-arrow { color: var(--ink); }
.ladder-detail {
  position: sticky; top: 96px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 34px;
}
.ladder-detail-head { display: flex; align-items: baseline; gap: 14px; }
.ladder-detail-id { font-size: 56px; font-weight: 600; letter-spacing: -0.032em; line-height: 1; }
.ladder-fields { display: flex; gap: 24px; margin-top: 18px; }
.field-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.field-value { font-weight: 600; font-size: 18px; margin-top: 6px; }
.ladder-desc { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 24px 0 0; }

/* ---------- Comparison ---------- */
.table-wrap { margin-top: 64px; overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare th {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); text-align: left; padding: 12px 14px; font-weight: 700;
  border-bottom: 1px solid var(--line-2);
}
.compare th.compare-milton { color: var(--grad-3); border-bottom: 2px solid var(--grad-3); }
.compare td { font-size: 15px; line-height: 1.45; color: var(--ink-2); padding: 16px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare td.compare-label { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); padding-top: 19px; }
.compare td.compare-hl { color: var(--ink); font-weight: 600; background: var(--bg-2); }

/* ---------- Human side ---------- */
.human-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 72px; }
.human-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.human-tag { text-transform: uppercase; letter-spacing: 0.08em; color: var(--grad-3); font-weight: 700; font-size: 10px; }
.human-card .h-3 { margin-top: 12px; }
.human-card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 14px 0 0; }
.authority-list { list-style: none; padding: 0; margin: 18px 0 0; }
.authority-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.authority-who { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; font-size: 10px; color: var(--grad-3); }
.authority-human { color: var(--ink); }
.authority-note { font-size: 13px; }

/* ---------- The firm ---------- */
.firm-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: center; }
.firm-bust { width: 100%; display: block; }
.firm-copy { max-width: 620px; }
.firm-copy .h-2 { margin-top: 24px; }
.firm-copy .lead { margin: 24px 0 0; }
.firm-copy p:not(.lead) { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 18px 0 0; }
.firm-stamp {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line);
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-size: 11px;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 56px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q > span:first-child { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); }
.faq-glyph { font-size: 18px; color: var(--ink-3); flex: none; transition: color var(--dur) var(--ease); }
.faq-q[aria-expanded="true"] .faq-glyph { color: var(--grad-3); }
.faq-a p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; padding: 0 0 24px; max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--brand-grad-band); color: #fff; }
.cta-inner {
  max-width: var(--container); margin: 0 auto; padding: 84px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-headline { margin: 0; max-width: 760px; font-size: clamp(34px, 4vw, 60px); font-weight: 600; letter-spacing: -0.032em; line-height: 1.0; }
.cta-inner .btn-onlight { font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 72px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-wordmark { height: 22px; filter: invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); margin: 18px 0 0; max-width: 280px; line-height: 1.55; }
.footer-head { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.footer-col ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; }
.footer-col a:hover { text-decoration: underline; }
.footer-base { display: flex; justify-content: space-between; margin-top: 28px; flex-wrap: wrap; gap: 12px; }
.footer-base .mono { color: rgba(255,255,255,.45); letter-spacing: 0.04em; }

/* ---------- Case overlay ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(10,10,10,.55);
  display: flex; justify-content: flex-end;
  animation: mfade var(--dur) var(--ease);
}
.overlay-panel {
  width: min(560px, 92vw); height: 100%; background: #fff; overflow: auto;
  animation: mslide var(--dur-slow) var(--ease);
}
.overlay-hero { height: 240px; position: relative; }
.overlay-hero::after { content: ""; position: absolute; inset: 0; background: var(--tile-overlay); }
.overlay-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.5);
  color: #fff; width: 34px; height: 34px; border-radius: var(--radius-pill);
  cursor: pointer; font-size: 16px;
}
.overlay-hero-meta { position: absolute; left: 32px; bottom: 24px; z-index: 2; right: 32px; }
.overlay-client { font-size: 10px; letter-spacing: 0.06em; color: rgba(255,255,255,.85); text-transform: uppercase; }
.overlay-title { color: #fff; font-size: 34px; margin-top: 6px; }
.overlay-body { padding: 36px 32px 48px; }
.overlay-body > p { font-size: 16px; line-height: 1.6; color: var(--ink); margin: 22px 0 0; }
.overlay-metric { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 24px; }
.metric-num { font-size: 48px; }
.metric-note { font-style: italic; color: var(--ink-3); margin: 10px 0 0; letter-spacing: 0.02em; }

/* ---------- Book modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 120; background: rgba(10,10,10,.55);
  display: flex; align-items: center; justify-content: center;
  animation: mfade var(--dur) var(--ease);
}
.modal-panel {
  width: min(480px, 92vw); max-height: 92vh; overflow: auto; background: #fff;
  border-radius: var(--radius); padding: 40px; position: relative;
  animation: mpop var(--dur-slow) var(--ease);
}
.modal-title { font-size: 34px; margin: 18px 0 0; }
.modal-lead { font-size: 15px; color: var(--ink-2); margin: 14px 0 0; line-height: 1.5; }
.modal-x {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--ink-3); font-size: 16px; cursor: pointer; padding: 6px;
}
.modal .hs-form-frame { margin-top: 26px; min-height: 320px; }
#book-form { display: grid; gap: 14px; margin-top: 26px; }
.input-label { display: block; }
.input-label .mono { display: block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.input-label input {
  width: 100%; margin-top: 7px; padding: 12px 14px;
  border: 1.5px solid var(--line-2); border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px; outline: none;
  transition: border-color var(--dur) var(--ease);
}
.input-label input:focus { border-color: var(--grad-3); }
#book-form .btn { margin-top: 12px; }
#book-sent-state { text-align: center; padding: 20px 0; }
#book-sent-state .btn { margin-top: 24px; }

[hidden] { display: none !important; }

/* ---------- Animations ---------- */
@keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mslide { from { transform: translateX(24px); opacity: .6; } to { transform: translateX(0); opacity: 1; } }
@keyframes mpop { from { transform: translateY(10px); opacity: .6; } to { transform: translateY(0); opacity: 1; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .overlay, .overlay-panel, .modal, .modal-panel { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-pill { gap: 22px; padding: 0 26px; }
  .stat-grid, .trap-grid, .human-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { gap: 40px; }
  .ladder-grid { grid-template-columns: 1fr; }
  .ladder-detail { position: static; }
  .value-row { grid-template-columns: 40px 1fr; }
  .value-note { grid-column: 2; }
  .case-cols { grid-template-columns: 1fr; gap: 36px; }
  .case-meta { position: static; grid-template-columns: 1fr 1fr; }
  .case-meta .case-strip { grid-column: 1 / -1; }
  .firm-grid { grid-template-columns: 1fr; gap: 40px; }
  .firm-bust { max-width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --pad-x: 24px; }
  .section { padding: var(--section-y-m) 0; }
  .nav-pill { display: none; }
  .nav-inner { padding: 12px var(--pad-x); gap: 14px; }
  .nav-cta { height: 44px; padding: 0 22px; }
  .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding: 0 18px; background: #fff;
    border: 1px solid var(--ink); border-radius: var(--radius-pill);
    font-family: var(--sans); font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); cursor: pointer;
  }
  .hero { padding-top: 64px; }
  .hero-stamp { display: none; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile-title { font-size: 22px; min-height: calc(2 * 1.1 * 22px); }
  .exchange-grid { grid-template-columns: 1fr; }
  .ladder-name { font-size: 15px; }
  .ladder-time { display: none; }
  .cta-inner { padding: 64px var(--pad-x); }
  .footer-grid { grid-template-columns: 1fr; }
  .case { padding: 64px 0; }
  .case-outcomes, .case-outcomes.two { grid-template-columns: 1fr; gap: 32px; }
  .essay-feature { padding: 28px 24px; }
  .essay-row { grid-template-columns: 40px 1fr; }
  .essay-meta { grid-column: 2; text-align: left; }
}

/* Whole-product "what the workforce covers" list */
.whole-list{list-style:none;margin:1.25rem 0 0;padding:0;display:grid;gap:1.1rem;}
.whole-list li{padding-left:1.4rem;position:relative;line-height:1.55;}
.whole-list li::before{content:"";position:absolute;left:0;top:.62em;width:.7rem;height:2px;background:currentColor;opacity:.45;}

/* ============ Red-team conversion components ============ */

/* Hero "not a..." line (plain text, deliberately not button-styled) */
.hero-nots { margin: 36px 0 0; font-size: 15px; color: var(--ink-3); }
.case-typical { font-size: 14px; color: var(--ink-3); margin: 16px 0 0; max-width: 640px; }
.hero-nots .grad-text { font-weight: 600; }

/* Buyer filter (built for / not for) */
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.bf-col { border: 1px solid var(--line); border-left: 3px solid var(--line-2); border-radius: var(--radius); padding: 26px 28px; background: #fff; }
.bf-for { border-left-color: var(--grad-1); }
.bf-head { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grad-3); margin-bottom: 16px; }
.bf-not .bf-head { color: var(--ink-3); }
.bf-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.bf-col li { font-size: 14px; line-height: 1.5; color: var(--ink-2); padding-left: 22px; position: relative; }
.bf-for li::before { content: "✓"; position: absolute; left: 0; color: var(--grad-1); font-weight: 700; }
.bf-not li::before { content: "✕"; position: absolute; left: 0; color: var(--ink-3); }

/* M1 assessment block */
.m1-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 44px; margin-top: 56px; align-items: start; }
.m1-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grad-3); margin-bottom: 20px; }
.m1-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.m1-list li { font-size: 16px; line-height: 1.5; color: var(--ink); padding-left: 28px; position: relative; }
.m1-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 16px; height: 2px; background: var(--brand-grad); }
.m1-side { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--bg-2); display: grid; gap: 14px; }
.m1-facts { display: grid; gap: 16px; margin-bottom: 6px; }
.m1-side .btn { width: 100%; }

/* Role cards (for your seat) */
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 64px; }
.role { border-top: 1px solid var(--line-2); padding-top: 24px; position: relative; }
.role::before { content: ""; position: absolute; top: -1px; left: 0; width: 36px; height: 2px; background: var(--brand-grad); }
.role-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grad-3); }
.role p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 12px 0 0; }

/* What-happens-next steps */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.step { border-top: 1px solid var(--line-2); padding-top: 24px; }
.step-num { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--grad-3); }
.step .h-3 { margin-top: 8px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 12px 0 0; }

@media (max-width: 1024px) {
  .m1-grid { grid-template-columns: 1fr; gap: 32px; }
  .role-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .bf-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
}
