/* ============================================================
   operator-deck — STANDALONE stylesheet.
   ------------------------------------------------------------
   Design language modeled on get-ryze.ai: light + airy, white
   canvas, near-black bold display headings (tight tracking),
   black pill buttons, emerald-green "positive" semantics, soft
   diffuse shadows on rounded white cards, generous spacing, and
   mono numerals for data displays. This is intentionally and
   completely distinct from the playbook family's dark-editorial
   lime-on-ink system — operator-deck no longer borrows the
   playbook base CSS; everything below is authored fresh.

   themeCss() injects domain.visual_identity at the END of the
   :root block, mapping:
     primary  -> --ink   (near-black headings / text / buttons)
     accent   -> --accent (brand highlight: eyebrows, links, bars)
     fonts    -> --font-display / --font-sans
   Green (--positive) and red (--negative) are FIXED semantic
   colors (the get-ryze audit aesthetic) so they read the same
   regardless of brand accent.
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #FFFFFF;
  --bg-soft:   #F6F8F7;   /* alternating section wash, faint cool-green */
  --bg-tint:   #F2F7F3;   /* spotlight wash */
  --surface:   #FFFFFF;
  --surface-2: #F4F6F8;
  --line:      #E7EAE8;
  --line-2:    #D7DCDA;

  /* ink ramp (primary injected over --ink) */
  --ink:       #11181C;
  --ink-mid:   #495257;
  --ink-dim:   #6C757B;
  --ink-muted: #9AA2A7;

  /* brand accent (injected) + fixed semantics */
  --accent:      #15B881;          /* default emerald; brand accent overrides */
  --accent-soft: rgba(21,184,129,0.10);
  --accent-ink:  #0B1411;          /* text on accent chips */
  --positive:    #16A86E;          /* fixed green — "works", yes */
  --positive-soft: rgba(22,168,110,0.09);
  --negative:    #E0524E;          /* fixed red — "falls short", no */
  --negative-soft: rgba(224,82,78,0.08);
  --warm:        #E8A93B;          /* fixed amber — "mid" */
  --warm-soft:   rgba(232,169,59,0.12);

  /* black action surface (get-ryze CTA) */
  --btn:        #0A0C0E;
  --btn-hover:  #1F262B;
  --on-dark:    #FFFFFF;

  /* baseline ref for chart visual */
  --primary:    #B7BFC2;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-full: 999px;

  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw:       1120px;
  --maxw-prose: 760px;

  --shadow-sm: 0 1px 2px rgba(16,24,40,0.04), 0 1px 3px rgba(16,24,40,0.05);
  --shadow-md: 0 10px 30px -12px rgba(16,24,40,0.14), 0 2px 6px rgba(16,24,40,0.05);
  --shadow-lg: 0 30px 70px -24px rgba(16,24,40,0.28), 0 8px 24px -12px rgba(16,24,40,0.10);

  --ink: #0C0A09;
  --accent: #EAB308;
  --font-display: "Inter Tight", "Inter Tight", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent); color: var(--accent-ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-prose {
  max-width: var(--maxw-prose);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .wrap, .wrap-prose { padding: 0 20px; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.reading-progress { display: none; }
.muted { color: var(--ink-dim); }
.mono { font-family: var(--font-mono); }

/* ============================================================
   NAV — light, translucent, black CTA
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--btn);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-mid);
}
.nav-links a { transition: color 120ms ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 6px;
  background: var(--btn);
  color: var(--on-dark) !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background 130ms ease, transform 130ms ease;
}
.nav-cta:hover { background: var(--btn-hover); transform: translateY(-1px); }
@media (max-width: 820px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================================
   BUTTONS — black pill (get-ryze), small radius
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 130ms ease, transform 130ms ease, box-shadow 130ms ease, border-color 130ms ease, color 130ms ease;
}
.btn-primary {
  background: var(--btn);
  color: var(--on-dark);
  box-shadow: 0 1px 2px rgba(16,24,40,0.18);
}
.btn-primary:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost,
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover,
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--ink-dim);
}

/* ============================================================
   HERO — airy, copy-left + floating data card right
   ============================================================ */
.od-hero {
  position: relative;
  padding: 84px 0 72px;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(232,200,90,0.16), transparent 60%),
    radial-gradient(820px 520px at 8% 18%, rgba(120,200,170,0.16), transparent 62%),
    linear-gradient(180deg, #F1F7F3 0%, #FBFCFB 56%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.od-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .od-hero .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: var(--r-full);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 4px var(--positive-soft);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 78px);
  letter-spacing: -0.038em;
  line-height: 1.02;
  margin: 22px 0 22px;
  color: var(--ink);
}
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
}
.trust-line .avatars { display: inline-flex; }
.trust-line .avatars > span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cfd6d3, #9aa3a0);
  border: 2px solid var(--bg);
  margin-left: -9px;
}
.trust-line .avatars > span:first-child { margin-left: 0; }
.trust-line .avatars > span:nth-child(1) { background: linear-gradient(135deg, var(--positive), #0c7a4f); }
.trust-line .avatars > span:nth-child(2) { background: linear-gradient(135deg, var(--accent), #b9842a); }
.trust-line .avatars > span:nth-child(3) { background: linear-gradient(135deg, #7fc4e8, #2d6f97); }
.trust-line .avatars > span:nth-child(4) { background: linear-gradient(135deg, #e9ece9, #aeb6b2); }

/* Right rail — big stat tile + chart visual, floating-card treatment */
.od-hero-data {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.od-hero-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.od-hero-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 6.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 10px;
}
.od-hero-stat-label {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 380px;
}
@media (max-width: 980px) {
  .od-hero-stat { padding: 22px 24px; }
}

/* Chart mock — clean light dashboard panel */
.hero-visual,
.hv-window {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hv-tabbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
}
.hv-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.hv-dot.r { background: #ff5f56; }
.hv-dot.y { background: #ffbd2e; }
.hv-dot.g { background: #28c941; }
.hv-url { margin-left: 10px; opacity: 0.75; }
.hv-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.hv-line-chart { width: 100%; aspect-ratio: 16 / 7; }
.hv-line-chart svg { width: 100%; height: 100%; display: block; }
.hv-legend {
  display: flex;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.hv-legend span { display: inline-flex; align-items: center; gap: 7px; }
.sw { width: 11px; height: 3px; border-radius: 2px; display: inline-block; }

/* Image hero variant — sits under the big stat card in the right rail.
   Framed like the other floating cards so a chart-on-white asset reads as a
   clean panel rather than a borderless cutout. Scoped to operator-deck. */
.od-hero-data .hero-visual-image {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 18px;
  display: grid;
  place-items: center;
}
.od-hero-data .hero-visual-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.social-strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 26px 0;
}
.social-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.social-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 6px;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark .note {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

/* ============================================================
   STATS strip — mono numerals
   ============================================================ */
.stats {
  padding: 56px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
}
.stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.stat .v em { color: var(--ink-dim); font-style: normal; font-weight: 500; }
.stat .l {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--ink-dim);
  line-height: 1.5;
  text-transform: uppercase;
}

/* ============================================================
   SECTION primitives
   ============================================================ */
.section { padding: 92px 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.section-num .slash { color: var(--ink-muted); margin: 0 6px; }
.section-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.036em;
  line-height: 1.04;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-h em { font-style: normal; color: var(--accent); }
.section-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0;
  max-width: 62ch;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.034em;
  line-height: 1.08;
  margin: 0 0 36px;
  color: var(--ink);
}

/* ============================================================
   TOOLS GRID — ranked white cards w/ faint watermark number
   ============================================================ */
.tools-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tools-grid { grid-template-columns: 1fr; } }

.tool-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.tool-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.tool-card-link { cursor: pointer; }
.tool-card-link h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.tool-card-link:hover { border-color: var(--accent); }
.tool-card-link:focus-within { border-color: var(--accent); }

/* first ranked card = editor's pick, faint green-tinted surface */
.tool-card-ranked:first-child {
  border-color: color-mix(in oklab, var(--positive) 45%, var(--line));
  background: linear-gradient(180deg, var(--positive-soft), var(--surface) 64%);
}
.tool-pin {
  position: absolute;
  top: -11px;
  left: 22px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: var(--positive);
  padding: 5px 11px;
  border-radius: var(--r-full);
  font-weight: 700;
}
.tool-rank {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--line-2);
  line-height: 1;
}
.tool-card-ranked:first-child .tool-rank { color: color-mix(in oklab, var(--positive) 55%, var(--line-2)); }
.tool-head { display: flex; align-items: center; gap: 13px; }
.tool-logo {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  overflow: hidden;
}
.tool-logo-img { background: #fff; padding: 7px; }
.tool-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.tool-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.024em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.tool-card h3 a { transition: color 120ms ease; }
.tool-card-link:hover h3 a,
.tool-card h3 a:hover { color: var(--accent); }
.tool-domain {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  margin: 3px 0 0;
}
.tool-angle {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin: 0;
}

/* ============================================================
   SCORECARD — clean light comparison table
   ============================================================ */
.cmp-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}
table.cmp {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 14.5px;
}
table.cmp th, table.cmp td {
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
table.cmp thead th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-2);
  font-weight: 600;
}
table.cmp thead th:first-child,
table.cmp td:first-child { font-weight: 600; color: var(--ink); }
table.cmp thead th.u { color: var(--accent); }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp tbody tr:hover td { background: var(--bg-soft); }
table.cmp td.u { color: var(--ink); }
table.cmp .pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
table.cmp .pill svg { width: 12px; height: 12px; }
table.cmp .pill-yes { background: var(--positive-soft); color: var(--positive); }
table.cmp .pill-mid { background: var(--warm-soft); color: #b27d18; }
table.cmp .pill-no { background: var(--negative-soft); color: var(--negative); }
table.cmp .pill-strong { background: var(--positive); color: var(--on-dark); }
.cmp-cell-text { color: var(--ink-mid); font-size: 13.5px; display: inline-block; margin-left: 4px; }
.cmp-cell-text.muted { color: var(--ink-dim); }

.verdict {
  margin-top: 26px;
  padding: 22px 28px;
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  border-radius: var(--r-sm);
}
.verdict p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ============================================================
   THE DISCIPLINE — works / falls-short audit cards
   ============================================================ */
.od-discipline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
.od-discipline-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}
.od-discipline-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}
.od-discipline-task {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.024em;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.od-discipline-feature {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-transform: uppercase;
}
.od-discipline-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.od-discipline-cell {
  padding: 15px 16px 15px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  color: var(--ink-mid);
}
.od-discipline-cell::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  border-radius: var(--r-full);
}
.od-discipline-cell.works { background: var(--positive-soft); }
.od-discipline-cell.works::before { background: var(--positive); }
.od-discipline-cell.falls-short { background: var(--negative-soft); }
.od-discipline-cell.falls-short::before { background: var(--negative); }
.od-discipline-cell-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 5px;
}
.od-discipline-cell.works .od-discipline-cell-label { color: var(--positive); }
.od-discipline-cell.falls-short .od-discipline-cell-label { color: var(--negative); }
@media (max-width: 900px) {
  .od-discipline-row { grid-template-columns: 1fr; gap: 18px; }
  .od-discipline-body { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURED SPOTLIGHT
   ============================================================ */
.featured { padding: 24px 0 64px; }
.featured-card {
  background:
    radial-gradient(620px 280px at 100% 0%, var(--accent-soft), transparent 60%),
    radial-gradient(520px 280px at 0% 100%, var(--positive-soft), transparent 60%),
    var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .featured-card { grid-template-columns: 1fr; gap: 34px; } }
.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: var(--btn);
  padding: 6px 12px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}
.featured-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.032em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 14px;
}
.featured-h em { font-style: normal; color: var(--accent); }
.featured-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0 0 20px;
  max-width: 52ch;
}
.featured-lede .name,
.featured .lede .name {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}
.featured-body p { font-size: 15px; line-height: 1.65; color: var(--ink-mid); margin: 0 0 24px; }
.featured-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.featured-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-mid);
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}
.featured-badges .badge svg { color: var(--positive); }

/* product mock — clean light dashboard */
.product-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pv-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.pv-tab .dots { display: inline-flex; gap: 6px; margin-right: 8px; }
.pv-tab .dots > span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.pv-tab .dots > span:first-child { background: #ff5f56; }
.pv-tab .dots > span:nth-child(2) { background: #ffbd2e; }
.pv-tab .dots > span:nth-child(3) { background: #28c941; }
.pv-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.pv-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.pv-thumb {
  width: 56px; height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e9efec, #dfe7e3);
  position: relative;
  overflow: hidden;
}
.pv-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, var(--positive-soft) 50%, transparent 60%);
}
.pv-meta { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.pv-meta b { font-family: var(--font-mono); font-weight: 600; color: var(--ink); font-size: 12.5px; }
.pv-meta span { font-size: 11.5px; color: var(--ink-dim); font-family: var(--font-mono); }
.pv-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
}
.pv-roas { font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--positive); }

/* ============================================================
   EVIDENCE — case-study cards
   ============================================================ */
.od-evidence-grid {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.od-evidence-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-md);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.od-evidence-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.od-evidence-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.od-evidence-meta .date { color: var(--accent); }
.od-evidence-meta .tool { color: var(--ink-dim); }
.od-evidence-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.022em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.od-evidence-finding { font-size: 14px; line-height: 1.6; color: var(--ink-mid); margin: 0; }
.od-evidence-caption { font-size: 12px; color: var(--ink-muted); margin: 0; font-style: italic; }
@media (max-width: 720px) { .od-evidence-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANSWER CARD / BOTTOM LINE
   ============================================================ */
.answer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px clamp(28px, 4vw, 52px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.answer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--accent);
}
.answer-label,
.answer-card .label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.answer-body,
.answer-card > p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.4;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 64ch;
}
.answer-card > p:last-child { margin-bottom: 0; }
.answer-body strong, .answer-card > p strong { color: var(--ink); font-weight: 700; }
.tldr { border-top: 1px solid var(--line); padding-top: 26px; margin-top: 4px; }
.tldr-heading {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 16px;
}
.tldr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.tldr li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.tldr li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--positive);
}
.bottom-line-section { padding-top: 24px; padding-bottom: 24px; }
.bottom-line-card { max-width: var(--maxw-prose); margin: 0 auto; }
.bottom-line-intro {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

/* ============================================================
   FAQ — clean divider rows + chevron
   ============================================================ */
#faq .section-head { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; max-width: 820px; margin: 0 auto; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.022em;
  line-height: 1.35;
  color: var(--ink);
  position: relative;
  padding-right: 38px;
  transition: color 120ms ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: -2px;
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  transition: transform 150ms ease;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details:hover summary { color: var(--accent); }
.faq-answer { padding: 14px 38px 2px 0; font-size: 16px; line-height: 1.65; color: var(--ink-mid); }
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   RELATED / TOPICS — big-box feature cards (faint number)
   ============================================================ */
.related-boxes {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 88px;
  margin: 72px 0;
}
.related-boxes .section-eyebrow,
.related-boxes .section-title { text-align: center; }
.related-boxes .section-title { font-size: clamp(26px, 3vw, 40px); margin: 8px 0 44px; }
.related-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.related-card-link {
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
  height: 100%;
  width: 100%;
  min-height: 256px;
  position: relative;
}
.related-card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--line-2);
  line-height: 1;
  margin-bottom: 16px;
}
.related-card-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.2vw, 27px);
  letter-spacing: -0.028em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.related-card-kw {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}
.related-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  align-self: flex-start;
}
.related-card:hover .related-card-cta { gap: 12px; }
@media (max-width: 760px) {
  .related-boxes { padding: 56px 0 64px; margin: 56px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card-link { padding: 28px 24px 24px; }
}

/* ============================================================
   METHODOLOGY card
   ============================================================ */
.method-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) { .method-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; } }
.author-block { display: flex; flex-direction: column; gap: 14px; }
.author-block .photo-placeholder,
.author-block img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--accent);
}
.author-block .who { display: flex; flex-direction: column; gap: 4px; }
.author-block b { font-family: var(--font-display); font-size: 17px; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
.author-block span { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-dim); }
.author-block a { color: var(--accent); font-family: var(--font-mono); font-size: 13px; margin-top: 4px; }
.method-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.028em;
  margin: 0 0 14px;
  color: var(--ink);
}
.meta-text p { font-size: 15.5px; line-height: 1.65; color: var(--ink-mid); margin: 0 0 14px; }
.updated-line { font-family: var(--font-mono); font-size: 12.5px; color: var(--accent); margin: 0; letter-spacing: 0.01em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: 0;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-dim);
  background: var(--bg-soft);
}
.footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { color: var(--accent); }
.footer a:hover { text-decoration: underline; }

/* ============================================================
   CLUSTER PAGE
   ============================================================ */
.od-cluster-hero {
  padding: 60px 0 28px;
  background: linear-gradient(180deg, #F2F7F4 0%, var(--bg) 80%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--ink-muted); margin: 0 8px; }
.breadcrumb .current { color: var(--ink-mid); }
.od-cluster-hero .eyebrow { margin-bottom: 16px; }
.od-cluster-hero .hero-h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 16px 0 0;
  max-width: 20ch;
}
.od-cluster-hero-sub {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 720px;
}

/* setup card */
.od-cluster-setup { padding: 28px 0 12px; }
.od-cluster-setup-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
}
.od-cluster-setup-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 20px;
  border-right: 1px solid var(--line);
}
.od-cluster-setup-col:first-child { padding-left: 0; }
.od-cluster-setup-col:last-child { padding-right: 0; border-right: none; }
.od-cluster-setup-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.od-cluster-setup-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.od-cluster-setup-value .mono { font-family: var(--font-mono); font-weight: 500; color: var(--accent); }
@media (max-width: 720px) {
  .od-cluster-setup-card { grid-template-columns: 1fr; gap: 16px; padding: 18px 20px; }
  .od-cluster-setup-col { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 14px; }
  .od-cluster-setup-col:last-child { padding-bottom: 0; border-bottom: none; }
}

.cluster-body { padding: 36px 0 24px; }
.cluster-body .wrap { max-width: var(--maxw-prose); }
.od-finding-card { border-left: none; }
.od-finding-card::before { background: var(--positive); }

/* prose */
.prose {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--ink-mid);
  max-width: var(--maxw-prose);
  margin: 44px auto 0;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin: 52px 0 18px;
  scroll-margin-top: 100px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 22px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.prose a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 22px; }
.prose li { margin-bottom: 8px; }
.prose code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid var(--line);
}
.prose pre {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  overflow-x: auto;
  color: var(--ink);
  line-height: 1.55;
  margin: 22px 0;
}

/* inline callout */
.inline-callout {
  background: var(--bg-tint);
  border: 1px solid color-mix(in oklab, var(--positive) 28%, var(--line));
  border-radius: var(--r-lg);
  padding: 32px 36px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
@media (max-width: 720px) {
  .inline-callout { grid-template-columns: 1fr; padding: 26px 24px; gap: 22px; }
}
.ic-body { display: flex; flex-direction: column; }
.ic-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.inline-callout p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink-mid); }
.ic-cta {
  width: fit-content;
  min-width: 160px;
  justify-content: center;
  text-align: center;
  align-self: center;
  color: var(--on-dark) !important;
  white-space: nowrap;
}
.ic-cta-label { display: inline-block; text-align: center; width: 100%; }
@media (max-width: 720px) { .ic-cta { width: 100%; } }

/* takeaways */
.od-takeaways-section { padding: 64px 0 24px; }
.od-takeaways-grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.od-takeaway {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.od-takeaway-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.od-takeaway-text { font-size: 14.5px; line-height: 1.55; color: var(--ink-mid); margin: 0; }

/* ============================================================
   EDITORIAL BYLINE + AUTHOR CARD (cluster pages)
   ============================================================ */
.ed-byline-section { padding: 12px 0 8px; }
.ed-byline-section .wrap { display: flex; }
.ed-byline {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.ed-byline-photo img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ed-byline-meta { display: flex; flex-wrap: wrap; gap: 2px 12px; align-items: baseline; flex: 1; }
.ed-byline-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  flex-basis: 100%;
}
.ed-byline-name { margin: 0; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 14px; letter-spacing: -0.01em; }
.ed-byline-role { margin: 0; font-size: 12.5px; color: var(--ink-dim); }
.ed-byline-link { color: var(--accent); font-size: 12.5px; }
.ed-byline-dates { margin: 0; font-size: 11.5px; color: var(--ink-muted); display: flex; gap: 8px; white-space: nowrap; font-family: var(--font-mono); }
.ed-dot { color: var(--ink-muted); }
.ed-byline-reviewers {
  margin: 0; font-size: 11.5px; color: var(--ink-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1 1 auto; min-width: 0;
}
.ed-byline-reviewers a { color: var(--ink-dim); }
.ed-byline-bio { margin: 4px 0 0; font-size: 13px; line-height: 1.55; color: var(--ink-mid); flex-basis: 100%; }
@media (max-width: 720px) {
  .ed-byline { flex-wrap: wrap; }
  .ed-byline-reviewers { flex-basis: 100%; white-space: normal; }
}

.ed-author-card-section { padding: 40px 0 60px; }
.ed-author-card-section .wrap { display: flex; flex-direction: column; gap: 16px; }
.ed-author-card,
.ed-reviewer-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.ed-author-card-photo img,
.ed-reviewer-card .ed-byline-photo img {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ed-author-card-eyebrow,
.ed-reviewer-card .ed-byline-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.ed-author-card-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 4px; }
.ed-author-card-role,
.ed-reviewer-card .ed-byline-role { font-size: 13px; color: var(--ink-dim); margin: 0 0 10px; }
.ed-author-card-bio,
.ed-reviewer-card .ed-byline-bio { font-size: 14px; line-height: 1.6; color: var(--ink-mid); margin: 0; }
.ed-reviewer-card .ed-byline-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); margin: 0 0 2px; }
.ed-prior-work { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ed-prior-work a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-mid);
  padding: 5px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}
.ed-author-card-cta { margin-top: 16px; }
.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background 130ms ease, transform 130ms ease;
}
.ed-btn-primary { background: var(--btn); color: var(--on-dark); }
.ed-btn-primary:hover { background: var(--btn-hover); transform: translateY(-1px); }
@media (max-width: 600px) {
  .ed-author-card, .ed-reviewer-card { flex-direction: column; gap: 14px; }
}
