/* ═══════════════════════════════════════════════════════════════════
   Dojo Newsletter — site styles
   Modeled on the Dojo marketing site (Apr 24 Final).
   Pure white, sage f6f9f9 for rhythm sections, big Polymath Display
   headers, 1px borders, dark rounded panels for banners + footer.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --site-w: 1640px;
  --gutter: 48px;
  --inner-w: calc(var(--site-w) - var(--gutter) * 2);

  --font-marketing: "Polymath Display", "Lexend", "Helvetica Neue", Helvetica, sans-serif;
  --font-marketing-body: "Polymath Display", "Lexend", "Helvetica Neue", Helvetica, sans-serif;

  --ink: #121919;
  --ink-mid: #2f3b3b;
  --ink-soft: #566666;
  --rule: rgba(0,0,0,0.10);
  --rule-mid: rgba(0,0,0,0.18);
  --sage: #f6f9f9;
  --sage-deep: #e8f0ed;
  --teal-on-dark: rgba(246,249,249,0.7);
}

* { box-sizing: border-box; }
/* Account for the fixed nav when jumping to anchors (#subscribe, #research, etc.) */
html { scroll-padding-top: 120px; }
@media (max-width: 900px) { html { scroll-padding-top: 96px; } }
@media (max-width: 560px) { html { scroll-padding-top: 80px; } }

html { background: #fff; }
body {
  margin: 0;
  background: #fff;
  font-family: var(--font-text);
  color: #000;
  font-synthesis: style weight;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em, i { font-style: italic; }

.page {
  width: var(--site-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ───────── Atoms ───────── */
.eyebrow {
  font-family: var(--font-marketing-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
}
.mono {
  font-family: var(--font-mono), "SF Mono", monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.section-h {
  margin: 0;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #000;
}
.section-h i, .section-h em {
  color: rgba(18,25,25,0.45);
  font-weight: 400;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING PILL NAV
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { display: block; width: 32px; height: 32px; }

.nav-pub {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #121919;
  padding-left: 14px;
  border-left: 1px solid rgba(0,0,0,0.12);
  margin-left: 4px;
}
.nav-pub small {
  display: block;
  font-family: var(--font-mono), monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #566666;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 8px;
}
.nav-link {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #121919;
  position: relative;
  padding: 4px 0;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -6px;
  width: 44px; height: 2px;
  background: #121919;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 4px;
  background: #121919;
  color: #fff;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 13.5px;
}

/* ═══════════════════════════════════════════════════════════════════
   ISSUE BAR (small, immediately under hero)
   ═══════════════════════════════════════════════════════════════════ */
.issue-strip {
  width: var(--site-w);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule-mid);
  border-bottom: 1px solid var(--rule-mid);
  font-family: var(--font-marketing-body);
  font-size: 13px;
  color: #566666;
  background: #fff;
}
.issue-strip > div {
  display: flex; gap: 10px; align-items: baseline;
}
.issue-strip span {
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9eaeae;
}
.issue-strip b {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 14px;
  color: #121919;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: var(--site-w);
  height: 829px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 32px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.08) 1px, transparent 1px) 0 0 / calc((100% - 1px) / 12) 100%,
    linear-gradient(to bottom, rgba(0,0,0,0.06) 1px, transparent 1px) 0 0 / 100% calc((100% - 1px) / 8);
  background-color: #fff;
}
.hero-eyebrow {
  position: absolute;
  left: 50%;
  top: 220px;
  transform: translateX(-50%);
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
}
.hero-eyebrow .square { width: 8px; height: 8px; background: #121919; display: inline-block; }
.hero-title {
  position: absolute;
  left: 50%;
  top: 260px;
  transform: translateX(-50%);
  width: 1100px;
  margin: 0;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 144px;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-align: center;
  color: #000;
}
.hero-title em {
  color: rgba(18,25,25,0.45);
  font-weight: 400;
  font-style: normal;
}
.hero-dek {
  position: absolute;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  width: 720px;
  margin: 0;
  text-align: center;
  font-family: var(--font-marketing-body);
  font-size: 22px;
  line-height: 1.32;
  color: #2f3b3b;
}
.hero-dek b { color: #121919; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════
   GENERIC SECTION SHELL
   ═══════════════════════════════════════════════════════════════════ */
section.module {
  width: var(--site-w);
  margin: 0 auto;
  padding: 120px 64px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.10);
}
section.module.sage { background: var(--sage); }

.module-header {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.module-header h2 { margin: 0; }
.module-header .meta {
  font-family: var(--font-marketing-body);
  font-size: 14px;
  color: #566666;
  letter-spacing: 0.01em;
  text-align: right;
  line-height: 1.8;
}
.module-header .meta b {
  font-family: var(--font-marketing);
  font-weight: 700;
  color: #121919;
  display: block;
  font-size: 16px;
}
.module-header .meta .num {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9eaeae;
}
.module-header .sub {
  margin: 24px 0 0;
  font-family: var(--font-marketing-body);
  font-size: 22px;
  line-height: 1.35;
  color: #2f3b3b;
  max-width: 700px;
  letter-spacing: -0.005em;
}
.module-header .sub b { color: #121919; font-weight: 700; }

/* Standalone subheader paragraph that sits between module-header and content */
.module-subhead {
  font-family: var(--font-marketing-body);
  font-size: 22px;
  line-height: 1.35;
  color: #2f3b3b;
  max-width: 900px;
  margin: -40px 0 64px;
  letter-spacing: -0.005em;
}
.module-subhead b { color: #121919; font-weight: 700; }
.module-subhead em { color: rgba(18,25,25,0.45); font-style: italic; font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════════
   01 / RESEARCH DESK
   ═══════════════════════════════════════════════════════════════════ */
.slate-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}
.slate-meta b { color: #121919; font-weight: 700; }

.research-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}

/* picks list */
.picks {
  border-top: 1px solid rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.pick {
  display: grid;
  grid-template-columns: 36px 52px 70px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: background 0.12s ease;
}
.pick:last-child { border-bottom: 0; }
.pick:hover { background: var(--sage); }
.pick.is-featured { background: #fafaf6; }
.pick > .n,
.pick > .lg,
.pick > .t {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9eaeae;
}
.pick > .lg { color: #566666; }
.pick > .body {
  font-family: var(--font-marketing);
  font-size: 17px;
  font-weight: 700;
  color: #121919;
  letter-spacing: -0.01em;
}
.pick > .body .matchup {
  display: block;
  font-family: var(--font-marketing-body);
  font-weight: 400;
  font-size: 13px;
  color: #566666;
  margin-top: 4px;
  letter-spacing: 0;
}
.pick > .tag {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,0.18);
  color: #121919;
  background: #fff;
}
.pick.is-featured > .tag {
  background: #121919;
  color: #fff;
  border-color: #121919;
}

/* Feature card — dark, rounded */
.feature-card {
  background: #121919;
  color: #fff;
  border-radius: 12px;
  padding: 32px 36px 32px;
  position: relative;
}
.feature-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.feature-card-head .live { color: #fff; font-weight: 600; }
.feature-card-head .live .dot {
  display: inline-block; width: 8px; height: 8px;
  background: #f8364e; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 8px rgba(248,54,78,0.6);
}
.feature-card-sub {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}
.feature-card h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  color: #fff;
}
.feature-card h3 em {
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-style: normal;
}
.feature-card .lead {
  font-family: var(--font-marketing-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(246,249,249,0.78);
  margin: 0 0 24px;
}
.feature-insights-head {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 8px;
}
.insight {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.insight:last-of-type { border-bottom: 0; }
.insight-n {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.insight-body strong {
  display: block;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.insight-body span {
  display: block;
  font-family: var(--font-marketing-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(246,249,249,0.65);
}
.feature-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.feature-card-foot .stamp {
  font-weight: 700;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   02 / STAT OF THE DAY — bordered grid of 2 cells
   ═══════════════════════════════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(0,0,0,0.18);
}
.stat-cell {
  padding: 40px 44px 36px;
  border-right: 1px solid rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell.dark {
  background: #121919;
  color: #fff;
  border-right: 0;
  position: relative;
  overflow: hidden;
}
.stat-cell.dark .grid-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 56px 100%,
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 100% 56px;
}
.stat-cell.dark > * { position: relative; z-index: 1; }
.stat-cell .stat-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
  margin-bottom: 36px;
}
.stat-cell .stat-meta b { color: #121919; font-weight: 700; }
.stat-cell.dark .stat-meta { color: rgba(255,255,255,0.6); }
.stat-cell.dark .stat-meta b { color: #fff; }

.stat-value {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 144px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #000;
  margin-bottom: 24px;
}
.stat-cell.dark .stat-value { color: #fff; font-size: 120px; }
.stat-value .unit { font-size: 56px; color: rgba(18,25,25,0.45); font-weight: 700; }
.stat-cell.dark .stat-value .unit { color: rgba(255,255,255,0.55); }

.stat-body {
  font-family: var(--font-marketing-body);
  font-size: 17px;
  line-height: 1.45;
  color: #121919;
  max-width: 480px;
  margin: 0;
}
.stat-cell.dark .stat-body { color: rgba(246,249,249,0.85); }
.stat-source {
  margin-top: auto; padding-top: 24px;
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9eaeae;
}
.stat-cell.dark .stat-source { color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════════════════════════
   03 / INDUSTRY INSIGHTS — sage section
   ═══════════════════════════════════════════════════════════════════ */

/* Series banner — dark rounded panel */
.series-banner {
  background: #121919;
  color: #fff;
  border-radius: 12px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}
.series-banner .label {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e2a83a;
  font-weight: 600;
}
.series-banner h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  color: #fff;
}
.series-banner h3 em {
  color: rgba(255,255,255,0.6);
  font-weight: 400; font-style: normal;
}
.series-banner p {
  margin: 8px 0 0;
  font-family: var(--font-marketing-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(246,249,249,0.7);
  max-width: 720px;
}
.series-banner .pill {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 11px 16px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  border-radius: 999px;
}
.series-banner .pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e2a83a;
}

/* Featured essay block */
.featured-essay {
  padding: 64px 0 0;
}
.fe-head {
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 28px;
}
.fe-head .square { width: 9px; height: 9px; background: #121919; display: inline-block; }
.fe-head .ser { color: #121919; font-weight: 700; }
.fe-title {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 144px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: #000;
  max-width: 1240px;
}
.fe-title em {
  color: rgba(18,25,25,0.4);
  font-weight: 400; font-style: normal;
}
.fe-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: end;
  padding-top: 16px;
}
.fe-dek {
  font-family: var(--font-marketing-body);
  font-size: 24px;
  line-height: 1.32;
  color: #2f3b3b;
  margin: 0;
  max-width: 920px;
  letter-spacing: -0.005em;
}
.fe-dek b { color: #121919; font-weight: 700; }
.fe-meta {
  text-align: right;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
  line-height: 1.9;
}
.fe-meta b { color: #121919; font-weight: 700; }

.fe-byline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.18);
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #121919;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.byline-name {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 16px;
  color: #121919;
  letter-spacing: -0.01em;
}
.byline-role {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
  margin-top: 4px;
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  background: #121919;
  color: #fff;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 0; cursor: pointer;
}
.btn:hover { background: #000; }
.btn.ghost {
  background: transparent;
  color: #121919;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn.ghost:hover { background: #121919; color: #fff; }

/* Full index — 2x3 grid of bordered cards */
.full-index {
  margin-top: 96px;
  border-top: 1px solid rgba(0,0,0,0.18);
  padding-top: 56px;
}
.full-index-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.full-index-head h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: #000;
}
.full-index-head h3 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.full-index-head .left,
.full-index-head .right {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
  line-height: 1.7;
}
.full-index-head .left b,
.full-index-head .right b { color: #121919; font-weight: 700; display: block; }
.full-index-head .right { text-align: right; }

.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(0,0,0,0.18);
}
.index-card {
  border-right: 1px solid rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding: 28px 32px 28px;
  background: #fff;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.index-card:hover { background: #fff; }
.index-card:nth-child(3n) { border-right: 0; }
.index-card:nth-last-child(-n+3) { border-bottom: 0; }
.index-card .part-line {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.index-card .part-line .ser { color: #121919; font-weight: 700; }
.index-card h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: #000;
  margin: 0;
}
.index-card h3 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.index-card p {
  font-family: var(--font-marketing-body);
  font-size: 15px;
  line-height: 1.5;
  color: #2f3b3b;
  margin: 0;
}
.index-card .foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.10);
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
}
.index-card .foot b { color: #121919; font-weight: 700; }

.publisher-line {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.18);
  font-family: var(--font-marketing-body);
  font-size: 15px;
  line-height: 1.55;
  color: #2f3b3b;
}
.publisher-line .label {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}
.publisher-line b {
  font-family: var(--font-marketing);
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   04 / TRACK RECORD
   ═══════════════════════════════════════════════════════════════════ */
.track-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.track-copy {
  font-family: var(--font-marketing-body);
  font-size: 18px;
  line-height: 1.55;
  color: #121919;
  max-width: 640px;
}
.track-copy b { color: #000; font-weight: 700; }
.track-copy p { margin: 0 0 22px; }
.track-copy .note { color: #566666; font-size: 15px; margin-top: 28px; }

.track-card {
  border: 1px solid rgba(0,0,0,0.18);
  padding: 32px 36px 32px;
  background: #fff;
}
.track-card .head {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}
.track-card .head b { color: #121919; font-weight: 700; }
.track-card .lead {
  font-family: var(--font-marketing-body);
  font-size: 16px;
  line-height: 1.5;
  color: #121919;
  margin: 18px 0 28px;
}
.track-card .lead b { font-weight: 700; }

.track-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,0.18);
  padding-top: 22px;
}
.track-stat { padding-right: 24px; border-right: 1px solid rgba(0,0,0,0.10); }
.track-stat:last-child { border-right: 0; padding-left: 24px; padding-right: 0; }
.track-stat .lbl {
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}
.track-stat .v {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #121919;
  margin-top: 8px;
}
.track-stat .v.up { color: #158a3e; }
.track-card .see-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  width: 100%;
  height: 48px;
  margin-top: 28px;
  padding: 0 18px;
  background: #121919;
  color: #fff;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   Ethos page — minimal hero (only used on /ethos/)
   ═══════════════════════════════════════════════════════════════════ */
.ethos-hero {
  padding: 160px 48px 64px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.ethos-hero .page { max-width: var(--site-w); margin: 0 auto; }
.ethos-hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18,25,25,0.55);
  margin-bottom: 40px;
}
.ethos-hero-meta .num { color: #121919; font-weight: 700; }
.ethos-hero-meta .dot { color: rgba(0,0,0,0.25); }
.ethos-hero-title {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 144px;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #000;
  margin: 0 0 32px;
}
.ethos-hero-title em {
  color: rgba(18,25,25,0.45);
  font-style: italic;
  font-weight: 400;
}
.ethos-hero-dek {
  font-family: var(--font-marketing-body);
  font-size: 22px;
  line-height: 1.45;
  color: #2f3b3b;
  max-width: 820px;
  margin: 0;
  letter-spacing: -0.002em;
}
@media (max-width: 1400px) {
  .ethos-hero-title { font-size: 112px; }
}
@media (max-width: 900px) {
  .ethos-hero { padding: 120px 32px 48px; }
  .ethos-hero-title { font-size: 72px; }
  .ethos-hero-dek { font-size: 18px; }
}
@media (max-width: 560px) {
  .ethos-hero-title { font-size: 56px; }
}

/* ═══════════════════════════════════════════════════════════════════
   05 / ETHOS — centered quote-card pattern + cols
   ═══════════════════════════════════════════════════════════════════ */
.ethos-quote-card {
  margin: 0 auto;
  max-width: 920px;
  padding: 96px 0 56px;
  text-align: center;
}
.ethos-quote-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  font-size: 30px; color: #121919;
  margin-bottom: 40px;
}
.ethos-quote {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: #000;
  margin: 0 0 32px;
}
.ethos-quote em {
  color: rgba(18,25,25,0.45);
  font-style: normal; font-weight: 400;
}
.ethos-quote-attr {
  font-family: var(--font-marketing-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}

.ethos-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid rgba(0,0,0,0.18);
}
.ethos-col h4 {
  margin: 0 0 18px;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  text-transform: none;
}
.ethos-col p {
  font-family: var(--font-marketing-body);
  font-size: 16px;
  line-height: 1.5;
  color: #2f3b3b;
  margin: 0 0 16px;
  max-width: 380px;
}
.ethos-col p b { color: #121919; font-weight: 700; }
.ethos-col .num {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
  display: block;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════
   POWERPLAY building section — 3 platform cards
   ═══════════════════════════════════════════════════════════════════ */
.pp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.pp-intro h2 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 80px;
  line-height: 0.95;
  letter-spacing: -0.012em;
  margin: 0;
  color: #000;
}
.pp-intro h2 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.pp-intro .pp-lead {
  font-family: var(--font-marketing-body);
  font-size: 22px;
  line-height: 1.35;
  color: #2f3b3b;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.pp-intro .pp-lead b { color: #121919; font-weight: 700; }
.pp-intro .pp-body {
  font-family: var(--font-marketing-body);
  font-size: 16px;
  line-height: 1.55;
  color: #121919;
}
.pp-intro .pp-body p { margin: 0 0 14px; }
.pp-intro .pp-body b { font-weight: 700; }

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(0,0,0,0.18);
}
.platform {
  border-right: 1px solid rgba(0,0,0,0.18);
  padding: 36px 36px 40px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 380px;
  background: #fff;
}
.platform:last-child { border-right: 0; }
.platform .label {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
}
.platform-icon {
  width: 32px; height: 32px;
  color: #121919;
  margin-bottom: auto;
}
.platform-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.platform h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #000;
}
.platform h3 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.platform p {
  font-family: var(--font-marketing-body);
  font-size: 16px;
  line-height: 1.45;
  color: #566666;
  margin: 0;
  max-width: 320px;
}

.pp-tagline {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.18);
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: #000;
  max-width: 1240px;
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.pp-tagline em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════
   SUBSCRIBE — sage panel
   ═══════════════════════════════════════════════════════════════════ */
.subscribe-block {
  width: var(--site-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  background: #fff;
}
.subscribe-card {
  background: var(--sage);
  border-radius: 12px;
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.subscribe-card h2 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 0 0 20px;
  color: #000;
}
.subscribe-card h2 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.subscribe-card p {
  font-family: var(--font-marketing-body);
  font-size: 17px;
  line-height: 1.5;
  color: #2f3b3b;
  margin: 0;
}
.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  border: 1px solid rgba(0,0,0,0.10);
}
.subscribe-form input {
  border: 0; outline: 0; background: transparent;
  padding: 14px 22px;
  font-family: var(--font-marketing);
  font-size: 15px;
  color: #121919;
  font-weight: 500;
}
.subscribe-form input::placeholder { color: #9eaeae; font-weight: 400; }
.subscribe-form button {
  border: 0;
  background: #121919;
  color: #fff;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  height: 44px;
}
.subscribe-meta {
  margin-top: 14px;
  display: flex; gap: 24px;
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA — photo + headline + button
   ═══════════════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  width: var(--site-w);
  margin: 0 auto;
  padding: 0;
  background: #fff;
}
.cta-photo {
  width: var(--inner-w);
  margin: 0 auto;
  height: 540px;
  overflow: hidden;
  border-radius: 12px;
  margin-top: 32px;
}
.cta-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.cta-content {
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 0 120px;
}
.cta-h {
  margin: 0;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.018em;
  color: #000;
}
.cta-h em {
  color: rgba(18,25,25,0.45);
  font-style: normal; font-weight: 400;
}
.cta-trust {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-marketing-body);
  font-size: 15px;
  color: #121919;
}
.avatars { display: inline-flex; }
.avatars .av {
  display: inline-block; width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff;
}
.avatars .av + .av { margin-left: -8px; }
.cta-btn {
  display: inline-flex; align-items: center;
  height: 52px; padding: 0 22px;
  border-radius: 4px; background: #121919; color: #fff;
  margin-top: 28px;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — DOJO marquee in dark rounded panel
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  width: calc(100vw - 64px);
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 0 12px;
  background: #fff;
}
.footer-inner {
  position: relative;
  border-radius: 24px;
  background: #121919;
  color: #fff;
  padding: 56px 60px 36px;
  overflow: hidden;
}
.footer-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 56px;
  gap: 32px;
}
.footer-symbol { filter: invert(1); width: 40px; height: 40px; }
.footer-tag-headline {
  text-align: center;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: rgba(246,249,249,0.8);
  line-height: 1;
}
.footer-tag-headline em {
  color: rgba(246,249,249,0.5);
  font-style: italic; font-weight: 700;
}
.footer-social { display: flex; gap: 18px; align-items: center; }
.social {
  width: 32px; height: 32px;
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
}
.social svg { width: 24px; height: 24px; }

.footer-mark {
  margin: 64px 0 32px;
  display: flex; justify-content: center;
}
.footer-mark img {
  width: 100%;
  max-width: 1256px;
  height: auto;
  display: block;
  filter: invert(1);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-legal {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 36px;
}
.footer-legal a {
  font-family: var(--font-marketing-body);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
}
.footer-legal a:hover { color: #fff; }
.footer-copy {
  font-family: var(--font-marketing-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════════
   ESSAY PAGE
   ═══════════════════════════════════════════════════════════════════ */
.essay-shell { background: #fff; }

.essay-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
}
.essay-topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--gutter);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
}
.essay-topbar-inner b { color: #121919; font-weight: 700; }
.essay-topbar-inner .meter {
  width: 220px; height: 3px;
  background: rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
}
.essay-topbar-inner .meter span {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 22%;
  background: #121919;
}

.essay-hero {
  width: var(--site-w);
  margin: 0 auto;
  padding: 96px 64px 64px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.essay-hero .part-line {
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #566666;
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 24px;
}
.essay-hero .part-line .square { width: 9px; height: 9px; background: #121919; display: inline-block; }
.essay-hero .part-line .ser { color: #121919; font-weight: 700; }
.essay-hero .tag-chip {
  display: inline-flex;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid #121919;
  color: #121919;
  margin-bottom: 36px;
}
.essay-title {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 168px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 36px;
  color: #000;
  max-width: 1280px;
}
.essay-title em {
  color: rgba(18,25,25,0.4);
  font-weight: 400; font-style: normal;
}
.essay-dek {
  font-family: var(--font-marketing-body);
  font-size: 28px;
  line-height: 1.32;
  color: #2f3b3b;
  margin: 0 0 56px;
  letter-spacing: -0.005em;
  max-width: 1100px;
}
.essay-dek b { color: #121919; font-weight: 700; }

.essay-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,0.10);
  padding-top: 28px;
}
.essay-meta > div {
  padding-right: 24px;
  border-right: 1px solid rgba(0,0,0,0.10);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
  line-height: 1.7;
}
.essay-meta > div:last-child { border-right: 0; }
.essay-meta > div + div { padding-left: 24px; }
.essay-meta b { color: #121919; font-weight: 700; font-size: 14px; display: block; margin-top: 4px; letter-spacing: 0.04em; }
.essay-meta .author { display: flex; align-items: center; gap: 14px; padding-left: 0; }
.essay-meta .author .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: #121919; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-marketing); font-weight: 700; font-size: 13px;
}
.essay-meta .author .who { line-height: 1.5; }
.essay-meta .author .who b { font-size: 14px; margin: 0; }

/* essay body */
.essay-body {
  width: var(--site-w);
  margin: 0 auto;
  padding: 80px 64px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.essay-toc {
  position: sticky;
  top: 80px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
}
.essay-toc .group {
  border-top: 1px solid rgba(0,0,0,0.10);
  padding: 20px 0;
}
.essay-toc .group:first-child { border-top: 0; padding-top: 0; }
.essay-toc .group b {
  display: block;
  color: #121919; font-weight: 700;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.essay-toc ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.essay-toc ol li {
  padding: 7px 0;
  color: #566666;
  font-size: 11.5px;
}
.essay-toc ol li.is-active { color: #121919; font-weight: 600; }
.essay-toc ol li:hover { color: #121919; }
.essay-toc .small { font-size: 10.5px; color: #9eaeae; display:block; margin-bottom: 10px; }

.essay-prose {
  max-width: 740px;
  font-family: var(--font-marketing-body);
  font-size: 19px;
  line-height: 1.7;
  color: #121919;
  letter-spacing: -0.002em;
}
.essay-prose p { margin: 0 0 26px; }
.essay-prose b, .essay-prose strong { font-weight: 700; color: #000; }
.essay-prose em { font-style: italic; }
.essay-prose .dropcap::first-letter {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 110px;
  line-height: 0.86;
  float: left;
  padding: 8px 18px 0 0;
  color: #000;
  letter-spacing: -0.04em;
}

.essay-prose .section-h {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: baseline;
  margin: 72px 0 32px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.10);
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0;
}
.essay-prose .section-h .num {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(18,25,25,0.18);
}
.essay-prose .section-h .label {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #566666;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}
.essay-prose .section-h h2 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #000;
  margin: 0;
}
.essay-prose .section-h h2 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}

.essay-figure {
  margin: 36px 0 40px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.essay-figure-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 24px 28px 22px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  background: var(--sage);
}
.essay-figure-head .lbl {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
  line-height: 1.6;
}
.essay-figure-head .ttl {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: #121919;
}
.essay-figure-head .ttl em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.essay-figure table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-marketing-body);
  font-size: 16px;
  line-height: 1.5;
  color: #121919;
}
.essay-figure thead th {
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
  text-align: left;
  font-weight: 500;
  padding: 16px 26px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.essay-figure thead th:last-child { text-align: right; }
.essay-figure tbody td {
  padding: 18px 26px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.essay-figure tbody tr:last-child td { border-bottom: 0; }
.essay-figure tbody td.left { font-weight: 600; }
.essay-figure tbody td.arrow {
  width: 40px; color: #9eaeae;
  font-family: var(--font-mono), monospace;
  text-align: center;
}
.essay-figure tbody td.right { text-align: right; }
.essay-figure-foot {
  padding: 16px 26px;
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9eaeae;
  border-top: 1px solid rgba(0,0,0,0.10);
  background: var(--sage);
}

/* 4-layer figure variant */
.fig-layers tbody td { padding: 24px 28px; vertical-align: top; }
.fig-layers .layer-num {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: #121919;
  width: 96px;
  line-height: 1;
}
.fig-layers .fn-name {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.012em;
}
.fig-layers .fn-desc {
  font-size: 14px; color: #566666; margin-top: 6px; max-width: 360px;
  line-height: 1.5;
}
.fig-layers .col-eq {
  font-family: var(--font-mono), monospace;
  font-size: 13px;
  color: #121919;
  letter-spacing: 0;
  line-height: 1.6;
}

.status-pill {
  display: inline-flex;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid #121919;
  color: #121919;
  font-weight: 700;
  margin-left: 6px;
  border-radius: 3px;
}
.status-pill.open    { background: #e2a83a; border-color: #e2a83a; }
.status-pill.emerging{ background: var(--sage); border-color: rgba(0,0,0,0.18); color: #566666; }
.status-pill.empty   { background: #121919; color: #fff; }

/* Build-order figure */
.fig-steps { padding: 28px; }
.fig-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.fig-step .step-num {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  color: #121919;
  display: inline-block;
  padding: 5px 9px;
  margin-bottom: 14px;
  border-radius: 3px;
}
.fig-step.last .step-num { background: #121919; color: #fff; border-color: #121919; }
.fig-step .step-lbl {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
  margin-bottom: 8px;
}
.fig-step h4 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #000;
}
.fig-step h4 em {
  color: rgba(18,25,25,0.45);
  font-style: normal; font-weight: 400;
}
.fig-step p {
  font-family: var(--font-marketing-body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #2f3b3b;
}

/* pullquote */
.pullquote {
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid #121919;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: #000;
}
.pullquote-attr {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9eaeae;
  margin-top: 18px;
  font-weight: 500;
}

.essay-prose ul.crisp {
  list-style: none; padding: 0; margin: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.essay-prose ul.crisp li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  font-size: 17px;
}
.essay-prose ul.crisp li::before {
  content: "—";
  color: #9eaeae;
  font-family: var(--font-mono), monospace;
}

/* End of part */
.essay-endpart {
  text-align: center;
  margin: 64px 0 32px;
  padding: 40px 0 32px;
  border-top: 1px solid #121919;
  border-bottom: 1px solid #121919;
}
.essay-endpart .quote {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: #000;
  margin: 0 0 20px;
}
.essay-endpart .quote b { font-weight: 700; }
.essay-endpart .quote em {
  color: rgba(18,25,25,0.45);
  font-style: italic; font-weight: 700;
}
.essay-endpart .attr {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #566666;
}

/* Author bio */
.author-bio {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.author-bio .photo {
  width: 100%; aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(180deg,#3b4a44 0%,#7a8a82 60%,#dbe2dd 100%);
  position: relative;
  overflow: hidden;
}
.author-bio .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
}
.author-bio .photo .name-tag {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  z-index: 1;
}
.author-bio .copy {
  font-family: var(--font-marketing-body);
  font-size: 17px;
  line-height: 1.6;
  color: #121919;
}
.author-bio .copy b { font-weight: 700; }

/* Series continues — bordered grid */
.continues {
  width: var(--site-w);
  margin: 0 auto;
  padding: 96px 64px;
  background: var(--sage);
  border-top: 1px solid rgba(0,0,0,0.10);
}
.continues-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.continues-head h2 {
  text-align: center;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 0;
  color: #000;
}
.continues-head h2 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.continues-head .left,
.continues-head .right {
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #566666;
  line-height: 1.7;
}
.continues-head .right { text-align: right; }
.continues-head b { color: #121919; font-weight: 700; display: block; }
.continues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.continues-card {
  border-right: 1px solid rgba(0,0,0,0.18);
  padding: 28px 30px;
  background: #fff;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  cursor: pointer;
}
.continues-card:last-child { border-right: 0; }
.continues-card:hover { background: var(--sage); }
.continues-card .part-line {
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #566666;
}
.continues-card .part-line .ser { color: #121919; font-weight: 700; }
.continues-card h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000;
  margin: 0;
}
.continues-card h3 em {
  color: rgba(18,25,25,0.45);
  font-weight: 400; font-style: normal;
}
.continues-card .foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.10);
  font-family: var(--font-mono), monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
  display: flex; justify-content: space-between;
}


/* ═══════════════════════════════════════════════════════════════════
   Animations — composed, restrained
   Reveal-on-scroll, hover lifts, hero entry. No bounces, no springs.
   ═══════════════════════════════════════════════════════════════════ */

/* prefers-reduced-motion: skip animations but keep positioning */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-eyebrow, .hero-title, .hero-dek {
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
    transition: none !important;
  }
  .nav {
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
    transition: none !important;
  }
  .hero-grid { opacity: 1 !important; transition: none !important; }
}

/* Reveal-on-scroll base — gated on JS so no-JS users see content */
.reveal {
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 0ms,
              transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 0ms;
  will-change: opacity, transform;
}
html.js-anim .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}
.reveal[data-delay="1"] { transition-delay: 80ms;  }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }
.reveal[data-delay="5"] { transition-delay: 400ms; }
.reveal[data-delay="6"] { transition-delay: 480ms; }

/* Stagger children of any container with .reveal-stagger */
.reveal-stagger > * {
  transition: opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
html.js-anim .reveal-stagger:not(.is-visible) > * {
  opacity: 0;
  transform: translateY(14px);
}
.reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 60ms; }
.reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 420ms; }
.reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 480ms; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 540ms; }
.reveal-stagger.is-visible > *:nth-child(11) { transition-delay: 600ms; }
.reveal-stagger.is-visible > *:nth-child(12) { transition-delay: 660ms; }
.reveal-stagger.is-visible > *:nth-child(13) { transition-delay: 720ms; }
.reveal-stagger.is-visible > *:nth-child(14) { transition-delay: 780ms; }

/* ── Hero entry on load (JS-triggered transitions, preserve X centering) ── */
.hero-eyebrow,
.hero-title,
.hero-dek {
  transition: opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
html.js-anim .hero-eyebrow { opacity: 0; transform: translate(-50%, 24px); }
html.js-anim .hero-title   { opacity: 0; transform: translate(-50%, 32px); }
html.js-anim .hero-dek     { opacity: 0; transform: translate(-50%, 24px); }
html.js-anim.is-loaded .hero-eyebrow { opacity: 1; transform: translate(-50%, 0); transition-delay: 100ms; }
html.js-anim.is-loaded .hero-title   { opacity: 1; transform: translate(-50%, 0); transition-delay: 220ms; }
html.js-anim.is-loaded .hero-dek     { opacity: 1; transform: translate(-50%, 0); transition-delay: 520ms; }

/* Subtle grid fade-in (JS-gated) */
.hero-grid { transition: opacity 1400ms ease-out 200ms; }
html.js-anim .hero-grid { opacity: 0; }
html.js-anim.is-loaded .hero-grid { opacity: 1; }

/* Floating nav slide-down on load (preserve X centering) */
.nav { transition: opacity 720ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1); }
html.js-anim .nav { opacity: 0; transform: translate(-50%, -100%); }
html.js-anim.is-loaded .nav { opacity: 1; transform: translate(-50%, 0); transition-delay: 80ms; }

/* ── Hover micro-interactions ── */
.pick {
  transition: background 180ms ease-out, padding-left 180ms ease-out;
}
.pick:hover { padding-left: 10px; }
.pick .tag {
  transition: background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
}

.feature-card {
  transition: transform 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Index card lift on hover */
.index-card {
  transition: background 180ms ease-out, transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.index-card:hover { transform: translateY(-2px); }

/* Continues-card lift */
.continues-card {
  transition: background 180ms ease-out, transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.continues-card:hover { transform: translateY(-2px); }

/* Platform card subtle border darken */
.platform { transition: background 200ms ease-out; }
.platform:hover { background: #fafafa; }

/* Pill nav link underline grow */
.nav-link {
  position: relative;
  transition: color 180ms ease-out;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%) scaleX(0);
  width: 44px; height: 2px;
  background: #121919;
  transform-origin: center;
  transition: transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link.is-active::after { transform: translateX(-50%) scaleX(1); }

/* Buttons: subtle press */
.btn, .nav-cta, .cta-btn, .subscribe-form button, .see-btn {
  transition: background 180ms ease-out, color 180ms ease-out, transform 120ms ease-out;
}
.btn:active, .nav-cta:active, .cta-btn:active, .subscribe-form button:active, .see-btn:active {
  transform: translateY(1px);
}

/* Live-pulse animation (track record) */
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 163, 93, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(16, 163, 93, 0); }
}
.tr-util .pulse { animation: live-pulse 2.4s ease-out infinite; }
.feature-card-head .live .dot { animation: live-pulse 2.4s ease-out infinite; }

/* SVG path draw animation (subtle, only for chart paths) */
@keyframes path-draw {
  from { stroke-dashoffset: 4000; }
  to   { stroke-dashoffset: 0; }
}
.tr-chart-svg .tr-pl-line.is-drawn,
.tr-chart-svg .tr-wr-line.is-drawn {
  stroke-dasharray: 4000;
  animation: path-draw 2200ms ease-out forwards;
}

/* Number reveal pulse for stat values */
@keyframes stat-pulse {
  0%   { opacity: 0; transform: scale(0.96); }
  60%  { opacity: 1; transform: scale(1.01); }
  100% { opacity: 1; transform: scale(1); }
}
.tr-kpi.is-visible .val {
  animation: stat-pulse 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Featured pick row gentle shimmer */
@keyframes featured-shimmer {
  0%, 100% { background-color: #fafafa; }
  50%      { background-color: #f1ede4; }
}
/* Active (currently-selected) pick — clicked or default-featured */
.pick.is-active {
  background: #f6f0e2;
  box-shadow: inset 3px 0 0 #121919;
}
.pick { cursor: pointer; outline: none; }
.pick:focus-visible { background: #f6f0e2; box-shadow: inset 3px 0 0 #121919; }

/* Marquee headline subtle drift (footer "The Edge is in the Why") */
@keyframes drift-fade {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.footer-tag-headline { animation: drift-fade 4s ease-in-out infinite; }


/* ═══════════════════════════════════════════════════════════════════
   Hero with video background (matches dojosports.com)
   ═══════════════════════════════════════════════════════════════════ */
.hero.hero--video {
  background: #0a0e0e;
  height: 760px;
}
.hero.hero--video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero.hero--video .hero-video-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero.hero--video .hero-title {
  position: absolute;
  left: 50%;
  top: 220px;
  transform: translateX(-50%);
  width: 1100px;
  text-align: center;
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 168px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
.hero.hero--video .hero-title em {
  color: rgba(255,255,255,0.55);
  font-style: normal;
  font-weight: 400;
}
.hero.hero--video .hero-dek {
  position: absolute;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  width: 820px;
  text-align: center;
  font-family: var(--font-marketing-body);
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  z-index: 2;
  margin: 0;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.hero.hero--video .hero-dek b {
  color: #fff;
  font-weight: 700;
}

/* Nav over the dark hero — make it pop on dark too */
.hero.hero--video + .issue-strip { border-top: 0; }

/* Hero entry transform for video variant: preserve X translation */
html.js-anim .hero.hero--video .hero-title { transform: translate(-50%, 32px); }
html.js-anim .hero.hero--video .hero-dek   { transform: translate(-50%, 24px); }
html.js-anim.is-loaded .hero.hero--video .hero-title { transform: translate(-50%, 0); }
html.js-anim.is-loaded .hero.hero--video .hero-dek   { transform: translate(-50%, 0); }


/* ═══════════════════════════════════════════════════════════════════
   Nav — compact pill at bottom of hero → expanded bar at top on scroll
   ═══════════════════════════════════════════════════════════════════ */
.nav.nav--bar {
  position: fixed;
  left: 50%;
  top: 20px;
  bottom: auto;
  z-index: 50;

  /* compact default width */
  width: 760px;
  max-width: calc(100vw - 64px);

  transform: translateX(-50%);
  transition: width 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.nav--bar .nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 10px 14px 10px 22px;
  background: #121919;
  border: 0;
  border-radius: 999px;
  backdrop-filter: none;
  transition: padding 720ms cubic-bezier(0.65, 0, 0.35, 1),
              border-radius 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.nav--bar .nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav.nav--bar .nav-wordmark {
  display: block;
  width: auto;
  height: 18px;
  filter: invert(1);
  transition: height 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.nav--bar .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  transition: gap 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.nav--bar .nav-link {
  font-family: var(--font-marketing);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  letter-spacing: -0.005em;
  transition: color 220ms ease-out, font-size 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.nav--bar .nav-link:hover { color: #fff; }
.nav.nav--bar .nav-link.is-active { color: #fff; }
.nav.nav--bar .nav-link::after,
.nav.nav--bar .nav-link.is-active::after {
  background: #fff;
  bottom: 0;
}
.nav.nav--bar .nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: #fff;
  color: #121919;
  border-radius: 999px;
  font-family: var(--font-marketing);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background 200ms ease-out, color 200ms ease-out,
              height 720ms cubic-bezier(0.65, 0, 0.35, 1),
              padding 720ms cubic-bezier(0.65, 0, 0.35, 1),
              font-size 720ms cubic-bezier(0.65, 0, 0.35, 1),
              border-radius 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.nav--bar .nav-cta:hover { background: rgba(255,255,255,0.92); }

/* Pinned (expanded) state — only width and shape change, NO vertical movement */
.nav.nav--bar.is-pinned {
  width: calc(100vw - 64px);
  max-width: 1640px;
}
.nav.nav--bar.is-pinned .nav-inner {
  padding: 18px 28px;
  border-radius: 18px;
}
.nav.nav--bar.is-pinned .nav-wordmark { height: 28px; }
.nav.nav--bar.is-pinned .nav-links { gap: 56px; }
.nav.nav--bar.is-pinned .nav-link { font-size: 16px; }
.nav.nav--bar.is-pinned .nav-cta {
  height: 44px;
  padding: 0 22px;
  font-size: 14.5px;
  border-radius: 12px;
}

/* Entry animation */
html.js-anim .nav.nav--bar { opacity: 0; transform: translate(-50%, 20px); }
html.js-anim.is-loaded .nav.nav--bar { opacity: 1; transform: translate(-50%, 0); transition: opacity 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 200ms, transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1) 200ms, top 720ms cubic-bezier(0.65, 0, 0.35, 1), bottom 720ms cubic-bezier(0.65, 0, 0.35, 1), width 720ms cubic-bezier(0.65, 0, 0.35, 1); }

/* ── Hero (grid variant) — bigger centered headline to match Framer ── */
.hero { height: 760px; }
.hero .hero-title {
  font-size: 168px;
  top: 240px;
  line-height: 0.9;
}
.hero .hero-dek {
  font-size: 22px;
  bottom: 100px;
  width: 820px;
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════════════════
   Koenig editor — required width classes for in-post media cards
   ═══════════════════════════════════════════════════════════════════ */
.kg-content { position: relative; }

.kg-width-wide,
.kg-content .kg-width-wide {
  width: min(1100px, 92vw);
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: none;
}

.kg-width-full,
.kg-content .kg-width-full {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: none;
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
  height: auto;
  display: block;
}

.kg-image-card,
.kg-card.kg-image-card {
  margin: 36px 0;
}

.kg-bookmark-card {
  display: flex;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 8px;
  overflow: hidden;
  margin: 28px 0;
  background: #fff;
}
.kg-bookmark-container {
  display: flex; flex: 1; flex-direction: column;
  padding: 22px 24px;
  text-decoration: none; color: inherit;
}
.kg-bookmark-title {
  font-family: var(--font-marketing);
  font-weight: 700; font-size: 18px;
  color: #000; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.kg-bookmark-description {
  font-family: var(--font-marketing-body);
  font-size: 14.5px; line-height: 1.5;
  color: #566666; margin-bottom: 12px;
}
.kg-bookmark-metadata {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-mono), monospace;
  font-size: 11px; color: #9eaeae;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.kg-bookmark-thumbnail {
  width: 260px;
  background-size: cover; background-position: center;
}
.kg-bookmark-thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
}

.kg-gallery-container {
  display: grid; gap: 12px; margin: 28px 0;
}
.kg-gallery-row { display: flex; gap: 12px; }
.kg-gallery-image img { width: 100%; height: auto; }

.kg-callout-card {
  display: flex; gap: 16px;
  padding: 20px 24px;
  background: var(--sage);
  border-left: 3px solid #121919;
  margin: 28px 0;
  border-radius: 4px;
}
.kg-callout-emoji { flex-shrink: 0; font-size: 24px; line-height: 1.3; }
.kg-callout-text {
  font-family: var(--font-marketing-body);
  font-size: 16px; line-height: 1.55; color: #121919;
}

.kg-toggle-card {
  margin: 24px 0; padding: 0;
  border-top: 1px solid rgba(0,0,0,0.10);
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.kg-toggle-heading { padding: 18px 0; cursor: pointer; }
.kg-toggle-heading-text {
  font-family: var(--font-marketing);
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
}
.kg-toggle-content { padding: 0 0 18px; }

.kg-button-card { margin: 32px 0; text-align: center; }
.kg-btn {
  display: inline-flex; align-items: center;
  height: 48px; padding: 0 24px;
  background: #121919; color: #fff;
  font-family: var(--font-marketing);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 4px; text-decoration: none;
}

.kg-embed-card { margin: 32px 0; }
.kg-embed-card iframe { width: 100%; }

.kg-product-card { margin: 28px 0; }
.kg-header-card { margin: 32px 0; }
.kg-video-card { margin: 32px 0; }
.kg-audio-card { margin: 24px 0; padding: 20px; background: var(--sage); border-radius: 8px; }
.kg-file-card  { margin: 24px 0; padding: 18px 22px; background: var(--sage); border-radius: 8px; }


/* ═══════════════════════════════════════════════════════════════════
   Research Desk — single-post-per-day slate
   The editor writes ONE Ghost post tagged #slate.
   These styles render its title + body content as the picks panel.
   Markdown tables in the body are styled to look like a picks ledger.
   ═══════════════════════════════════════════════════════════════════ */
.slate {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 40px 48px 48px;
  position: relative;
}

.slate-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.slate-title {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: #000;
}
.slate-title em {
  color: rgba(18,25,25,0.45);
  font-style: italic;
  font-weight: 400;
}
.slate-dek {
  font-family: var(--font-marketing-body);
  font-size: 18px;
  line-height: 1.4;
  color: #2f3b3b;
  margin: 14px 0 0;
  letter-spacing: -0.002em;
  max-width: 720px;
}

.slate-meta-block {
  text-align: right;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
  line-height: 1.9;
}
.slate-meta-block .num { color: #9eaeae; display: block; }
.slate-meta-block b {
  color: #121919;
  font-weight: 700;
  font-size: 14px;
  display: block;
}

/* Body — styled to feel like the original pick list, but content-driven */
.slate-body {
  font-family: var(--font-marketing-body);
  font-size: 17px;
  line-height: 1.6;
  color: #121919;
  letter-spacing: -0.002em;
}
.slate-body p { margin: 0 0 18px; }
.slate-body strong, .slate-body b { font-weight: 700; color: #000; }
.slate-body em, .slate-body i { font-style: italic; }
.slate-body a {
  color: #121919;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.slate-body h2 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 44px 0 14px;
  color: #000;
}
.slate-body h2 em { color: rgba(18,25,25,0.45); font-style: italic; font-weight: 400; }
.slate-body h2:first-child { margin-top: 0; }

.slate-body h3 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin: 32px 0 10px;
  color: #000;
}

.slate-body h4 {
  font-family: var(--font-marketing);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 24px 0 6px;
  color: #000;
}

/* Tables — the killer feature; this is how the editor lists picks */
.slate-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-family: var(--font-marketing-body);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.slate-body thead th {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #566666;
  font-weight: 600;
  background: var(--sage);
}
.slate-body tbody td {
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
  color: #121919;
}
.slate-body tbody tr:last-child td { border-bottom: 0; }
.slate-body tbody tr:hover { background: #fafafa; }

.slate-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--sage);
  border-left: 3px solid #121919;
  font-family: var(--font-marketing);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #000;
  border-radius: 4px;
}
.slate-body blockquote p { margin: 0; }

.slate-body ul, .slate-body ol {
  margin: 18px 0 24px;
  padding-left: 24px;
}
.slate-body li { margin-bottom: 10px; line-height: 1.55; }
.slate-body li::marker { color: #9eaeae; }

.slate-body hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.18);
  margin: 40px 0;
}

.slate-body code {
  font-family: var(--font-mono), monospace;
  background: var(--sage);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #121919;
}

/* Empty state */
.slate.slate--empty {
  text-align: center;
  padding: 96px 48px;
  color: #566666;
  font-family: var(--font-marketing-body);
  font-size: 17px;
}
.slate.slate--empty code {
  font-family: var(--font-mono), monospace;
  background: var(--sage);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  color: #121919;
}


/* ═══════════════════════════════════════════════════════════════════
   Settled-pick chip styles (homepage slate rows + feature card)
   Used by slate-hydrate.js when a pick has a result tag (W/L/P).
   ═══════════════════════════════════════════════════════════════════ */
.picks .pick .pick-result {
  display: inline-block;
  font-family: var(--font-mono), monospace;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 0.5px solid currentColor;
}
.picks .pick .pick-result.is-win  { color: #166534; background: #dcfce7; border-color: transparent; }
.picks .pick .pick-result.is-loss { color: #991b1b; background: #fee2e2; border-color: transparent; }
.picks .pick .pick-result.is-push { color: #566666; background: #eef3f3; border-color: transparent; }
.picks .pick.is-settled.is-l { opacity: 0.72; }
.picks .pick.is-settled.is-p { opacity: 0.78; }
.feature-price-row {
  margin: -8px 0 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-left: 2px solid #d4a316;
  font-family: var(--font-mono), monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  display: inline-block;
}
.feature-price-row b { font-weight: 700; letter-spacing: 0.18em; margin-left: 2px; }
.feature-price-row b.r-w { color: #4ade80; }
.feature-price-row b.r-l { color: #f87171; }
.feature-price-row b.r-p { color: #9eaeae; }

/* ═══════════════════════════════════════════════════════════════════
   Page transition — Dojo loader fade
   ─────────────────────────────────────────────────────────────────
   A clean light overlay with the animated Dojo symbol centered.
   Fades in on outgoing nav, fades out on arrival. One motion total
   — no rise / fall double-take.

   States (driven by classes on <html>):
     .is-rising            → fade in over destination page (on click)
     .has-arrival-curtain  → already visible on first paint (set by
                             inline head script before any render)
     .has-arrival-curtain.is-leaving → fade out
   ═══════════════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #f6f9f9;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0ms, visibility 0ms;
}
.page-loader .page-loader-mark {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
}
.page-loader .page-loader-cap {
  position: absolute;
  bottom: 56px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono), "Source Code Pro", monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(18, 25, 25, 0.42);
}

/* Covering — snapped on, no transition (covers first paint cleanly) */
html.loader-on .page-loader {
  opacity: 1;
  visibility: visible;
  transition: none;
}
/* Fading out */
html.loader-leaving .page-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease-in, visibility 0ms linear 320ms;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   Responsive — desktop → tablet → mobile
   The design is built for 1640px. Below that we scale gracefully.
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1400px and below: tighter padding, slightly smaller hero ── */
@media (max-width: 1400px) {
  :root { --site-w: 100%; --gutter: 32px; }
  .hero .hero-title { font-size: 128px; }
  .essay-title { font-size: 128px; }
  .fe-title { font-size: 112px; }
  .section-h { font-size: 64px; }
}

/* ── 1200px and below: tablet landscape ── */
@media (max-width: 1200px) {
  .nav.nav--bar { width: 720px; }
  .nav.nav--bar.is-pinned { width: calc(100vw - 48px); }

  .hero { height: 640px; }
  .hero .hero-title { font-size: 96px; top: 200px; }
  .hero .hero-dek { width: 90%; max-width: 680px; font-size: 19px; bottom: 80px; }

  section.module { padding: 80px 48px; }
  .module-header { gap: 48px; margin-bottom: 56px; grid-template-columns: 1fr 1fr; }
  .module-subhead { font-size: 19px; max-width: 100%; }

  .research-grid { grid-template-columns: 1fr; gap: 48px; }

  .index-grid { grid-template-columns: repeat(2, 1fr); }
  .index-card:nth-child(3n) { border-right: 1px solid rgba(0,0,0,0.18); }
  .index-card:nth-child(2n) { border-right: 0; }
  .index-card:nth-last-child(-n+3) { border-bottom: 1px solid rgba(0,0,0,0.18); }
  .index-card:nth-last-child(-n+2) { border-bottom: 0; }

  .platforms { grid-template-columns: repeat(2, 1fr); }
  .platform:nth-child(2n) { border-right: 0; }
  .platform:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.18); border-right: 1px solid rgba(0,0,0,0.18); }

  .ethos-cols { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ethos-col:last-child { grid-column: span 2; }

  .track-layout { grid-template-columns: 1fr; gap: 48px; }

  .pp-intro { grid-template-columns: 1fr; gap: 32px; }

  .continues-grid { grid-template-columns: repeat(2, 1fr); }
  .continues-card:nth-child(2n) { border-right: 0; }
  .continues-card:nth-child(1), .continues-card:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.18); }

  .subscribe-card { padding: 56px 56px; gap: 40px; }

  .tr-kpi-band { grid-template-columns: 1fr; }
  .tr-kpi { border-right: 0; border-bottom: 0.5px solid rgba(255,255,255,0.18); }
  .tr-kpi:last-child { border-bottom: 0; }

  .essay-body { grid-template-columns: 1fr; gap: 32px; padding: 64px 48px; }
  .essay-toc { position: relative; top: auto; padding: 0 0 24px; border-bottom: 1px solid rgba(0,0,0,0.10); margin-bottom: 24px; }
  .essay-toc .group { display: inline-block; padding: 0; margin-right: 32px; border-top: 0; vertical-align: top; }
  .essay-toc ol { display: flex; gap: 20px; flex-wrap: wrap; }
  .essay-toc ol li { padding: 4px 0; }

  .feature-card { padding: 28px 28px; }
  .fe-title { font-size: 88px; }
  .feature-card h3 { font-size: 32px; }
  .essay-title { font-size: 96px; }

  .footer-inner { padding: 40px 36px 28px; }
  .footer-tag-headline { font-size: 18px; }
}

/* ── 900px and below: tablet portrait ── */
@media (max-width: 900px) {
  .nav.nav--bar { width: calc(100% - 40px); top: 16px; }
  .nav.nav--bar .nav-inner { padding: 10px 14px 10px 18px; }
  .nav.nav--bar .nav-wordmark { height: 16px; }
  .nav.nav--bar .nav-links { gap: 20px; }
  .nav.nav--bar .nav-link { font-size: 13px; }
  .nav.nav--bar.is-pinned .nav-inner { padding: 14px 18px; }
  .nav.nav--bar.is-pinned .nav-wordmark { height: 22px; }
  .nav.nav--bar.is-pinned .nav-links { gap: 28px; }

  .hero { height: 540px; }
  .hero .hero-title { font-size: 64px; top: 180px; width: 90%; }
  .hero .hero-dek { font-size: 17px; width: 90%; bottom: 60px; }

  section.module { padding: 64px 32px; }
  .module-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .module-header .meta { text-align: left; }
  .module-subhead { font-size: 17px; margin: 0 0 40px; }
  .section-h { font-size: 48px; }

  .issue-strip { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 32px; }
  .issue-strip > div { flex-direction: column; gap: 4px; }

  .picks .pick {
    grid-template-columns: 32px 44px 60px 1fr;
    gap: 10px;
    padding: 12px 4px;
  }
  .picks .pick .tag { grid-column: 4; justify-self: end; margin-top: 4px; font-size: 9px; padding: 4px 8px; }
  .picks .pick .body { font-size: 15px; }
  .picks .pick .body .matchup { font-size: 12px; }

  .feature-card { padding: 24px; }
  .feature-card h3 { font-size: 24px; }

  .index-grid, .continues-grid { grid-template-columns: 1fr; }
  .index-card, .continues-card { border-right: 0 !important; border-bottom: 1px solid rgba(0,0,0,0.18) !important; min-height: auto; }
  .index-card:last-child, .continues-card:last-child { border-bottom: 0 !important; }

  .platforms { grid-template-columns: 1fr; }
  .platform { border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.18); min-height: auto; padding: 28px; }
  .platform:last-child { border-bottom: 0; }

  .ethos-cols { grid-template-columns: 1fr; gap: 32px; }
  .ethos-col:last-child { grid-column: auto; }

  .ethos-quote { font-size: 36px; }
  .ethos-quote-card { padding: 64px 0 32px; }

  .subscribe-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .subscribe-card h2 { font-size: 40px; }
  .subscribe-meta { flex-wrap: wrap; gap: 12px; }

  .pp-tagline { font-size: 36px; padding-top: 32px; margin-top: 56px; }

  .footer { padding: 0 16px 12px; }
  .footer-inner { padding: 36px 24px 24px; border-radius: 16px; }
  .footer-head { grid-template-columns: 1fr; gap: 20px; text-align: center; height: auto; }
  .footer-social { justify-content: center; }
  .footer-tag-headline { font-size: 16px; }
  .footer-mark { margin: 32px 0 24px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .essay-title { font-size: 64px; }
  .essay-dek { font-size: 19px; }
  .fe-title { font-size: 56px; }
  .essay-body { padding: 48px 32px; }
  .essay-hero { padding: 64px 32px 48px; }
  .essay-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .essay-meta > div { border-right: 0; padding: 0; }

  .essay-prose { font-size: 17px; }
  .essay-prose .section-h { grid-template-columns: 56px 1fr; gap: 16px; margin: 48px 0 24px; padding-top: 32px; }
  .essay-prose .section-h .num { font-size: 48px; }
  .essay-prose .section-h h2 { font-size: 32px; }

  /* Track page */
  .tr-page-head .row { grid-template-columns: 1fr; gap: 16px; }
  .tr-page-head .right { text-align: left; }
  .tr-page-deck { grid-template-columns: 1fr; gap: 16px; }
  .tr-page-head h1 { font-size: 56px; }
  .tr-kpi { padding: 32px 24px; }
  .tr-kpi .val { font-size: 64px; }
  .tr-kpi .val.pos, .tr-kpi .val.neg { font-size: 64px; }
  .tr-chart-card { padding: 40px 0; }
  .tr-chart-card .head { grid-template-columns: 1fr; gap: 16px; }
  .tr-chart-card .head .meta { text-align: left; }
  .tr-sport-grid { grid-template-columns: 1fr; }
  .tr-sport-card { border-right: 0; border-bottom: 0.5px solid var(--n85); }
  .tr-sport-card:last-child { border-bottom: 0; }
  .tr-sport-card .sc-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tr-stripe-grid { grid-template-columns: 1fr; }
  .tr-stripe-col { border-right: 0; border-bottom: 0.5px solid var(--n85); }
  .tr-stripe-col:last-child { border-bottom: 0; }
  .tr-day-band { grid-template-columns: 1fr; }
  .tr-day-cell { border-right: 0; border-bottom: 0.5px solid var(--n85); }
  .tr-day-cell:last-child { border-bottom: 0; }
  .tr-haul-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tr-haul-ratio { grid-column: span 2; }
  .tr-daily-table { font-size: 13px; }
  .tr-daily-table thead th { padding: 10px 8px; font-size: 10px; }
  .tr-daily-table tbody td { padding: 12px 8px; }
  .tr-methodology { padding: 48px 0; }
  .tr-methodology .row { grid-template-columns: 1fr; gap: 16px; }
  .tr-methodology h2 { font-size: 36px; }

  /* Slate dropcap loses its dropcap on mobile (too cramped) */
  .essay-prose.dropcap::first-letter { font-size: 64px; }

  /* Hide TOC on small screens entirely */
  .essay-toc { display: none; }
  .essay-body { grid-template-columns: 1fr; }
}

/* ── 560px and below: phone ── */
@media (max-width: 560px) {
  .nav.nav--bar .nav-links { display: none; }
  .nav.nav--bar.is-pinned .nav-links { display: none; }
  .nav.nav--bar { width: auto; max-width: calc(100vw - 32px); }
  .nav.nav--bar .nav-inner { padding: 8px 8px 8px 16px; }

  .hero { height: 460px; }
  .hero .hero-title { font-size: 48px; top: 160px; }
  .hero .hero-dek { font-size: 15px; }

  .issue-strip { grid-template-columns: 1fr; gap: 12px; }

  section.module { padding: 48px 20px; }
  .section-h { font-size: 36px; }
  .module-subhead { font-size: 16px; }

  .picks .pick {
    grid-template-columns: 28px 1fr;
    gap: 6px;
    padding: 12px 4px;
  }
  .picks .pick .lg, .picks .pick .t { display: none; }
  .picks .pick .tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 6px;
  }

  .feature-card h3 { font-size: 22px; }
  .feature-card .lead { font-size: 14px; }
  .insight-body strong { font-size: 14px; }
  .insight-body span { font-size: 13px; }

  .footer-inner { padding: 28px 20px 20px; border-radius: 12px; }

  .essay-title { font-size: 40px; }
  .essay-dek { font-size: 16px; }
  .essay-hero { padding: 48px 20px 32px; }
  .essay-body { padding: 32px 20px; }

  .tr-page-head h1 { font-size: 40px; }
  .tr-kpi .val { font-size: 48px; }
}
