/* ===== MARROW LOCKED DESIGN SYSTEM v1.3 ===== */
:root {
  --bone-black: #0A0908;
  --bone-white: #FBF8F2;
  --bone-cream: #EFE9DC;
  --marrow-red: #6B0F1A;
  --marrow-red-glow: #8B1828;
  --steel: #475569;
  --steel-light: #B8C5D6;       /* bumped from #94A3B8 for better contrast on dark surfaces */
  --steel-mid: #94A3B8;          /* old steel-light, kept for use on light backgrounds where subtle is wanted */
  --ash: #2A2A28;
  --line: rgba(10, 9, 8, 0.08);
  --line-dark: rgba(251, 248, 242, 0.1);
  --display: 'Switzer', -apple-system, system-ui, sans-serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone-white);
  color: var(--bone-black);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { border: none; cursor: pointer; font-family: inherit; }
::selection { background: var(--marrow-red); color: var(--bone-white); }

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 12px 20px;
  z-index: 200;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--marrow-red);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--marrow-red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Hover only on devices that actually have hover */
@media (hover: none) {
  .pillar:hover { transform: none; border-color: var(--line); }
  .nav-cta:hover { background: var(--marrow-red); }
  .btn-primary:hover { background: var(--marrow-red); transform: none; }
  .btn-primary-light:hover { background: var(--bone-black); transform: none; }
  .cta-strip-btn:hover { transform: none; }
}

/* ===== CONSENT CHECKBOX ===== */
.consent { margin-top: 8px; margin-bottom: 28px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  cursor: pointer;
  accent-color: var(--marrow-red);
  flex-shrink: 0;
}
.consent-label a {
  color: var(--marrow-red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.consent-label a:hover { color: var(--marrow-red-glow); }

/* ===== STATUS BADGE — for "preview" labels on mocks ===== */
.preview-badge {
  display: inline-block;
  background: rgba(107, 15, 26, 0.12);
  color: var(--marrow-red);
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 16px;
  font-weight: 500;
  border: 1px solid var(--marrow-red);
}
.preview-badge::before { content: "● "; color: var(--marrow-red); }
.preview-badge.dark { background: rgba(139, 24, 40, 0.18); color: var(--marrow-red-glow); border-color: var(--marrow-red-glow); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.logo-svg { width: 32px; height: 32px; flex-shrink: 0; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--bone-black);
  text-transform: uppercase;
  line-height: 1;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--steel);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--bone-black); }
@media (max-width: 720px) { .nav-links { display: none; } }
.nav-cta {
  background: var(--marrow-red);
  color: var(--bone-white);
  padding: 10px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--marrow-red-glow); }

/* ===== HERO — CINEMATIC ===== */
.hero {
  background: var(--bone-black);
  color: var(--bone-white);
  min-height: 100vh;
  padding: 100px 0 160px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layered background system */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(107, 15, 26, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(10, 9, 8, 0.95) 0%, var(--bone-black) 70%);
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(10, 9, 8, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Animated lattice mark stage */
.hero-mark-stage {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark-glow { display: none; }
.hero-mark-spin {
  position: absolute;
  width: 200px;
  height: 200px;
  animation: hero-rotate 80s linear infinite;
  z-index: 1;
}
.hero-mark-core {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 2;
}

@keyframes hero-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero typography */
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--marrow-red-glow);
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 168px);
  letter-spacing: -0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(180deg, #FBF8F2 0%, #8B1828 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-tagline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--steel-light);
  max-width: 660px;
  margin: 0 auto 48px;
}
.hero-tagline strong { color: var(--bone-white); font-weight: 600; }
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--steel-light);
  text-decoration: none;
  z-index: 3;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-scroll-cue:hover {
  opacity: 0.95;
  transform: translateX(-50%) translateY(2px);
}
.hero-scroll-cue span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-scroll-cue svg {
  width: 18px;
  height: 30px;
}
@media (max-height: 720px) { .hero-scroll-cue { display: none; } }
@media (max-width: 720px) { .hero-scroll-cue { display: none; } }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .hero-mark-spin, .hero-mark-glow, .hero-mark-core { animation: none; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--marrow-red);
  color: var(--bone-white);
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s ease, transform 0.15s ease;
  display: inline-block;
}
.btn-primary:hover { background: var(--marrow-red-glow); transform: translateY(-1px); }
.btn-primary-light {
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s ease, transform 0.15s ease;
  display: inline-block;
}
.btn-primary-light:hover { background: var(--marrow-red); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--bone-white);
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--steel);
  border-radius: 2px;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--bone-white); background: rgba(251, 248, 242, 0.04); }

/* ===== SECTION SCAFFOLD ===== */
section { padding: 120px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--marrow-red);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.005em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section-lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.65;
  color: var(--steel);
  max-width: 680px;
  margin-bottom: 64px;
}
.section-lede strong { color: var(--bone-black); font-weight: 600; }

/* ===== MANIFESTO ===== */
.manifesto { background: var(--bone-cream); text-align: center; }
.manifesto-line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--bone-black);
  max-width: 920px;
  margin: 0 auto;
}
.manifesto-line em {
  color: var(--marrow-red);
  font-style: normal;
  font-weight: 800;
}

/* ===== THE WALL (3-card before/during/after) ===== */
.wall { background: var(--bone-cream); text-align: center; }
.wall .section-title { max-width: 880px; margin: 0 auto 28px; }
.wall .section-lede { max-width: 720px; margin: 0 auto 64px; text-align: center; }

.wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wall-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.wall-cards-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--bone-black);
  text-align: center;
  max-width: 920px;
  margin: 0 auto 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.wall-cards-tag em {
  color: var(--marrow-red);
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 920px) { .wall-grid, .wall-grid-3 { grid-template-columns: 1fr; max-width: 560px; } }

.wall-card {
  background: var(--bone-white);
  padding: 56px 40px;
  border: 1px solid var(--line);
  text-align: left;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 380px;
}
.wall-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(10, 9, 8, 0.06); border-color: var(--bone-black); }
.wall-card.featured {
  background: var(--bone-black);
  color: var(--bone-white);
  border-color: var(--bone-black);
}
.wall-card.featured:hover { border-color: var(--marrow-red); box-shadow: 0 24px 48px rgba(107, 15, 26, 0.25); }

.wall-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bone-black);
  margin-bottom: 32px;
}
.wall-mark {
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
}
.wall-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.wall-card.featured .wall-eyebrow { color: var(--marrow-red-glow); }
.wall-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--bone-black);
  margin-bottom: 20px;
}
.wall-card.featured .wall-headline { color: var(--bone-white); }
.wall-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
  flex: 1;
}
.wall-card.featured .wall-body { color: var(--bone-cream); }

/* ===== NETWORK + EVENTS ===== */
.network-events { background: var(--bone-black); color: var(--bone-white); }
.network-events .section-title { color: var(--bone-white); }
.network-events .section-eyebrow { color: var(--marrow-red-glow); }
.network-events .section-lede { color: var(--steel-light); }
.network-events .section-lede strong { color: var(--bone-white); font-weight: 600; }
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .network-grid { grid-template-columns: 1fr; } }
.network-card {
  background: rgba(251, 248, 242, 0.04);
  padding: 40px 32px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.network-card.featured {
  background: var(--marrow-red);
  border-color: var(--marrow-red);
}
.network-card.featured .network-eyebrow { color: var(--bone-cream); }
.network-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--marrow-red-glow);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.network-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--bone-white);
}
.network-card-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone-cream);
  opacity: 0.85;
}
.network-card.featured .network-card-desc { color: var(--bone-white); opacity: 1; }

/* ===== ATHLETES PAGE COMPONENTS ===== */
.athlete-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .athlete-benefits { grid-template-columns: 1fr; } }
.athlete-benefit {
  background: var(--bone-cream);
  padding: 40px;
  border: 1px solid var(--line);
}
.athlete-benefit-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.athlete-benefit-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}
.athlete-benefit-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bone-white);
  padding: 32px;
  border: 1px solid var(--line);
}
.why-card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.why-card-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
}

.pricing-honest {
  background: var(--bone-cream);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  max-width: 720px;
}
.pricing-honest-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  gap: 20px;
}
.pricing-honest-row:last-child { border-bottom: none; }
.pricing-honest-label {
  font-size: 14px;
  color: var(--steel);
  font-weight: 500;
}
.pricing-honest-value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--bone-black);
  letter-spacing: 0.005em;
  text-align: right;
}

/* ===== MISSION PAGE ===== */
.mission-hero {
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(107, 15, 26, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(10, 9, 8, 1) 0%, transparent 60%);
  z-index: 0;
}
.mission-hero .container { position: relative; z-index: 1; }
.mission-hero .page-hero-eyebrow { color: var(--marrow-red-glow); margin-bottom: 32px; }
.mission-hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: -0.005em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--bone-white);
  max-width: 1100px;
  margin: 0 auto;
}

.mission-block {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.mission-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.mission-block-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.005em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--bone-black);
}
.mission-block-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--steel);
  margin-bottom: 20px;
}
.mission-block-body strong { color: var(--bone-black); font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bone-cream);
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.value-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.value-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.1;
}
.value-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel);
}

/* ===== MISSION SECTION (homepage) ===== */
.mission { background: var(--bone-white); padding: 120px 0; }
.mission-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.mission-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--marrow-red);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.mission-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.005em;
  line-height: 1.05;
  color: var(--bone-black);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.mission-body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--steel);
  max-width: 720px;
  margin: 0 auto;
}
.mission-body strong { color: var(--bone-black); font-weight: 600; }

/* ===== FOUNDER SECTION ===== */
.founder { background: var(--bone-cream); padding: 120px 0; }
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 920px) { .founder-grid { grid-template-columns: 1fr; gap: 48px; max-width: 560px; } }

/* === LIVING LATTICE VISUAL (frameless) === */
.founder-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
}
.founder-visual-svg { width: 100%; height: 100%; display: block; }

/* Pulse rings (heartbeat) */
.founder-pulse {
  fill: none;
  transform-origin: 200px 200px;
  animation: founder-pulse-out 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}
.founder-pulse-1 { animation-delay: 0s; }
.founder-pulse-2 { animation-delay: 1.6s; }
.founder-pulse-3 { animation-delay: 3.2s; }

@keyframes founder-pulse-out {
  0% { transform: scale(0.5); opacity: 0; }
  15% { opacity: 0.65; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Slow rotation (cortical + trabecular) */
.founder-rotate-slow {
  transform-origin: 200px 200px;
  animation: founder-rotate 90s linear infinite;
}
@keyframes founder-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Floating particles */
.founder-particle {
  animation: founder-drift 14s ease-in-out infinite;
  transform-origin: center;
}
.founder-particle.p1 { animation-delay: 0s; }
.founder-particle.p2 { animation-delay: 2s; animation-duration: 18s; }
.founder-particle.p3 { animation-delay: 4s; animation-duration: 16s; }
.founder-particle.p4 { animation-delay: 6s; animation-duration: 20s; }
.founder-particle.p5 { animation-delay: 1s; animation-duration: 17s; }
.founder-particle.p6 { animation-delay: 3s; animation-duration: 15s; }

@keyframes founder-drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(8px, -6px); opacity: 0.8; }
  50% { transform: translate(-4px, -10px); opacity: 0.5; }
  75% { transform: translate(-10px, 4px); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-pulse, .founder-rotate-slow, .founder-particle { animation: none; }
  .founder-pulse { opacity: 0.4; }
}

/* === FOUNDER CONTENT === */
.founder-content {}
.founder-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 5.6vw, 64px);
  letter-spacing: -0.005em;
  line-height: 0.95;
  margin-bottom: 14px;
  text-transform: none;
  color: var(--bone-black);
}
.founder-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 36px;
}
.founder-bio {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 24px;
}
.founder-bio strong { color: var(--bone-black); font-weight: 600; }
.founder-bio-close {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--bone-black);
  margin-top: 8px;
  margin-bottom: 40px;
  letter-spacing: 0.002em;
}
.founder-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.founder-signature-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--bone-black);
  font-style: italic;
}
.founder-signature-arrow {
  font-family: var(--display);
  font-size: 20px;
  color: var(--marrow-red);
  font-weight: 600;
}
.founder-signature-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--marrow-red);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.founder-signature-cta:hover { color: var(--marrow-red-glow); }

/* ===== TOOLKIT ===== */
.toolkit { background: var(--bone-white); padding: 120px 0; }
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 920px) { .toolkit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .toolkit-grid { grid-template-columns: 1fr; } }
.toolkit-item {
  padding: 28px 24px;
  background: var(--bone-cream);
  border-radius: 4px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.toolkit-item:hover {
  transform: translateY(-3px);
  border-color: var(--marrow-red);
}
.toolkit-dot {
  width: 8px;
  height: 8px;
  background: var(--marrow-red);
  border-radius: 50%;
  margin-bottom: 16px;
}
.toolkit-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--bone-black);
  line-height: 1.1;
}
.toolkit-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}

/* ===== TESTIMONIAL ===== */
.testimonial { background: var(--bone-black); color: var(--bone-white); padding: 140px 0; position: relative; overflow: hidden; }
.testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(107, 15, 26, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.testimonial-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: var(--marrow-red-glow);
  margin-bottom: 16px;
}
.testimonial-quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: var(--bone-white);
  margin-bottom: 48px;
}
.testimonial-quote strong { color: var(--marrow-red-glow); font-weight: 800; }
.testimonial-attr {}
.testimonial-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.005em;
  color: var(--bone-white);
  margin-bottom: 6px;
}
.testimonial-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--steel-light);
  text-transform: uppercase;
}

/* ===== SCARCITY COUNTER ===== */
.scarcity {
  background: rgba(139, 24, 40, 0.12);
  border: 1px solid var(--marrow-red-glow);
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.scarcity-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--marrow-red-glow);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.scarcity-bar {
  width: 100%;
  height: 6px;
  background: rgba(251, 248, 242, 0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.scarcity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--marrow-red) 0%, var(--marrow-red-glow) 100%);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scarcity-numbers {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--bone-cream);
  text-transform: uppercase;
}
.scarcity-numbers strong {
  color: var(--marrow-red-glow);
  font-weight: 700;
  font-size: 14px;
}

/* ===== 14-DAY GUARANTEE ===== */
.pricing-guarantee {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-light);
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--marrow-red);
  color: var(--bone-white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--sans);
}

.apply-trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--bone-white);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.apply-trust-item {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.apply-trust-item span {
  color: var(--marrow-red);
  font-family: var(--sans);
  font-weight: 700;
}

/* ===== ATHLETES THREE PATHS ===== */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .paths-grid { grid-template-columns: 1fr; } }

.path-card {
  background: var(--bone-cream);
  padding: 48px 36px;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 9, 8, 0.08);
}
.path-card-featured {
  background: var(--bone-black);
  color: var(--bone-white);
  border-color: var(--bone-black);
}
.path-card-featured .path-eyebrow { color: var(--marrow-red-glow); }
.path-card-featured .path-title { color: var(--bone-white); }
.path-card-featured .path-body { color: var(--bone-cream); }
.path-card-featured .path-price { color: var(--marrow-red-glow); border-top-color: var(--line-dark); }
.path-card-featured .path-cta { background: var(--marrow-red); color: var(--bone-white); }

.path-card-founder {
  background: linear-gradient(180deg, var(--bone-black) 0%, #1a0d0f 100%);
  color: var(--bone-white);
  border-color: var(--marrow-red);
  position: relative;
}
.path-card-founder::before {
  content: "FOUNDER ACCESS";
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--marrow-red);
  color: var(--bone-white);
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 500;
  border-radius: 2px;
}
.path-card-founder .path-eyebrow { color: var(--marrow-red-glow); }
.path-card-founder .path-title { color: var(--bone-white); }
.path-card-founder .path-body { color: var(--bone-cream); }
.path-card-founder .path-price { color: var(--marrow-red-glow); border-top-color: var(--line-dark); }
.path-card-founder .path-cta { background: var(--marrow-red); color: var(--bone-white); }

.path-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.path-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--bone-black);
  line-height: 1;
}
.path-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 28px;
  flex: 1;
}
.path-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--marrow-red);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}
.path-cta {
  display: inline-block;
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 14px 24px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.path-cta:hover { background: var(--marrow-red); }

/* ===== HOMEPAGE THREE-DOOR AUDIENCE SELECTOR (editorial v3) ===== */
.three-doors {
  background: var(--bone-cream);
  padding: 120px 0;
}

.three-doors-header {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
}
.three-doors-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--marrow-red);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.three-doors-h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 64px);
  letter-spacing: 0.002em;
  line-height: 1;
  color: var(--bone-black);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.three-doors-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--steel);
  max-width: 640px;
  margin: 0 auto;
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .doors-grid { grid-template-columns: 1fr; gap: 20px; max-width: 560px; margin-left: auto; margin-right: auto; } }

.door {
  display: flex !important;
  flex-direction: column;
  text-decoration: none;
  color: var(--bone-black);
  background: var(--bone-white);
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 540px;
  box-shadow: 0 1px 0 rgba(10, 9, 8, 0.04);
}
.door:hover {
  transform: translateY(-6px);
  border-color: var(--bone-black);
  box-shadow: 0 32px 64px rgba(10, 9, 8, 0.1);
}
.door-dark {
  background: var(--bone-black);
  color: var(--bone-white);
}
.door-dark:hover {
  border-color: var(--marrow-red);
  box-shadow: 0 32px 64px rgba(107, 15, 26, 0.3);
}

.door-top {
  padding: 56px 40px 40px;
  flex: 1;
}

.door-mark-svg {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 36px;
  color: var(--bone-black);
}
.door-dark .door-mark-svg { color: var(--bone-white); }

.door-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.door-dark .door-eyebrow { color: var(--marrow-red-glow); }

.door-h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 4vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 20px;
  color: inherit;
  text-transform: none;
}

.door-tagline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: 0.002em;
  color: var(--bone-black);
  max-width: 320px;
}
.door-dark .door-tagline { color: var(--bone-white); }

.door-bottom {
  padding: 32px 40px 40px;
  border-top: 1px solid var(--line);
}
.door-dark .door-bottom { border-top-color: var(--line-dark); }

.door-list-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.door-dark .door-list-label { color: var(--steel-light); }

.door-list {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}
.door-list li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel);
  padding: 7px 0;
  display: flex;
  gap: 10px;
}
.door-list li::before {
  content: "—";
  font-family: var(--mono);
  color: var(--marrow-red);
  font-weight: 500;
  flex-shrink: 0;
}
.door-dark .door-list li { color: var(--bone-cream); }

.door-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bone-black);
  color: var(--bone-white);
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.door:hover .door-cta-row {
  background: var(--marrow-red);
  transform: translateX(2px);
}
.door-dark .door-cta-row { background: var(--marrow-red); color: var(--bone-white); }
.door-dark:hover .door-cta-row { background: var(--marrow-red-glow); }

.door-cta-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.door-cta-arrow {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.door:hover .door-cta-arrow { transform: translateX(4px); }

/* ===== Bumped who-tags to 3 columns to fit 6 ===== */
.who-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 920px) { .who-tags { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .who-tags { grid-template-columns: 1fr; } }

/* ===== WHO IT'S FOR (tag styling — grid is defined above for 6-tag layout) ===== */
.who-for { background: var(--bone-cream); }
.who-tag {
  background: var(--bone-white);
  padding: 32px 32px 32px 56px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.who-tag::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 28px;
  width: 10px;
  height: 10px;
  background: var(--marrow-red);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.who-tag:hover {
  transform: translateY(-3px);
  border-color: var(--marrow-red);
  box-shadow: 0 16px 32px rgba(10, 9, 8, 0.06);
}
.who-tag:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(107, 15, 26, 0.15);
}
.who-tag-strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--bone-black);
  line-height: 1;
}
.who-tag span:not(.who-tag-strong) {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel);
}

/* ===== HOW IT WORKS (visual upgrade) ===== */
.how { background: var(--bone-cream); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .how-steps { grid-template-columns: 1fr; } }

.how-step {
  background: linear-gradient(180deg, var(--bone-white) 0%, #F7F1E5 100%);
  padding: 56px 40px 48px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
}
.how-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--marrow-red) 0%, var(--marrow-red-glow) 100%);
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 9, 8, 0.08);
}
.how-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--marrow-red);
  margin-bottom: 28px;
  display: block;
}
.how-step-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.002em;
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--bone-black);
}
.how-step-desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
}

/* ===== PILLARS (each with unique visual identity) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--bone-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 56px 40px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--marrow-red);
  transition: height 0.3s ease;
}
/* Each pillar gets a unique radial accent in the upper-right */
.pillar::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pillar:nth-child(1)::after {
  background: radial-gradient(circle, var(--marrow-red) 0%, transparent 70%);
}
.pillar:nth-child(2)::after {
  background: radial-gradient(circle, var(--bone-black) 0%, transparent 70%);
}
.pillar:nth-child(3)::after {
  background: radial-gradient(circle, var(--steel) 0%, transparent 70%);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(10, 9, 8, 0.1);
  border-color: var(--bone-black);
}
.pillar:hover::before { height: 6px; }
.pillar:hover::after { opacity: 0.12; transform: scale(1.1); }

.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  position: relative;
}
.pillar-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
  position: relative;
}
.pillar-name span { color: var(--marrow-red); }
.pillar-desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 32px;
  position: relative;
}
.pillar-desc strong { color: var(--bone-black); font-weight: 600; }
.pillar-detail {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--steel);
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  line-height: 1.8;
  font-weight: 500;
  position: relative;
}

/* ===== PRICING TEASE — Three Founding Offers ===== */
.pricing-tease { background: var(--bone-cream); }
.pricing-tease-header { text-align: center; max-width: 880px; margin: 0 auto 64px; }
.pricing-tease-header .section-title { margin-bottom: 24px; }
.pricing-tease-header .section-lede { margin: 0 auto; }

.founding-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 920px) {
  .founding-offers { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

.offer-card {
  background: var(--bone-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(10, 9, 8, 0.08);
  border-color: var(--bone-black);
}
.offer-card-featured {
  background: var(--bone-black);
  color: var(--bone-white);
  border-color: var(--bone-black);
}
.offer-card-featured::before {
  content: "FOUNDER ACCESS";
  position: absolute;
  top: -10px;
  left: 32px;
  background: var(--marrow-red);
  color: var(--bone-white);
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 500;
  border-radius: 2px;
}
.offer-card-featured:hover {
  border-color: var(--marrow-red);
  box-shadow: 0 24px 48px rgba(107, 15, 26, 0.25);
}

.offer-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.offer-card-featured .offer-eyebrow { color: var(--marrow-red-glow); }

.offer-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--bone-black);
  line-height: 1.1;
}
.offer-card-featured .offer-name { color: var(--bone-white); }

.offer-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bone-black);
  margin-bottom: 6px;
}
.offer-card-featured .offer-price { color: var(--bone-white); }
.offer-price span {
  font-size: 16px;
  color: var(--steel);
  font-weight: 600;
}
.offer-card-featured .offer-price span { color: var(--steel-light); }

.offer-plus {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--marrow-red);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.offer-card-featured .offer-plus {
  color: var(--marrow-red-glow);
  border-bottom-color: var(--line-dark);
}

.offer-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.offer-features li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  padding: 6px 0 6px 22px;
  position: relative;
}
.offer-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--marrow-red);
  border-radius: 50%;
}
.offer-card-featured .offer-features li { color: var(--bone-cream); }

.offer-scarcity {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--marrow-red);
  border-radius: 2px;
}
.offer-card-featured .offer-scarcity {
  color: var(--marrow-red-glow);
  border-color: var(--marrow-red);
}

.offer-cta {
  display: block;
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.offer-cta:hover { background: var(--marrow-red); }
.offer-card-featured .offer-cta { background: var(--marrow-red); }
.offer-card-featured .offer-cta:hover { background: var(--marrow-red-glow); }

.pricing-tease-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.pricing-tease-trust {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card {
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 56px 48px;
  border-radius: 4px;
}
.pricing-tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--marrow-red-glow);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--bone-white);
}
.pricing-price span {
  font-size: 24px;
  color: var(--steel-light);
  font-weight: 600;
}
.pricing-plus {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--bone-cream);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--bone-cream);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  background: var(--marrow-red);
  border-radius: 50%;
}
.pricing-founding {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--marrow-red-glow);
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--marrow-red);
  border-radius: 2px;
  line-height: 1.6;
}

/* ===== POSITIONING ===== */
.positioning-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bone-white);
  border: 1px solid var(--line);
}
.positioning-table th, .positioning-table td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel);
}
.positioning-table th {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bone-cream);
}
.positioning-table td.brand-cell {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--bone-black);
  text-transform: uppercase;
  width: 22%;
}
.positioning-table tr.marrow-row { background: var(--bone-black); }
.positioning-table tr.marrow-row td { color: var(--bone-white); border-bottom-color: var(--ash); }
.positioning-table tr.marrow-row td.brand-cell { color: var(--marrow-red-glow); }
@media (max-width: 720px) {
  .positioning-table th:nth-child(4), .positioning-table td:nth-child(4) { display: none; }
}

/* ===== WHO IT'S FOR ===== */
.who-for { background: var(--bone-cream); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  background: var(--bone-white);
  padding: 40px;
  border: 1px solid var(--line);
}
.who-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.who-desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
}

/* ===== APPLY ===== */
.apply { background: var(--bone-cream); }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 920px) { .apply-grid { grid-template-columns: 1fr; gap: 56px; } }

.apply-detail {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
  max-width: 460px;
  margin-bottom: 40px;
}

.apply-receipts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--bone-black);
  color: var(--bone-white);
  border-radius: 4px;
}
@media (max-width: 720px) { .apply-receipts { grid-template-columns: 1fr; gap: 16px; } }
.apply-receipt-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--marrow-red-glow);
  margin-bottom: 8px;
}
.apply-receipt-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-light);
  text-transform: uppercase;
  line-height: 1.6;
}

.apply-form {
  background: var(--bone-white);
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: 4px;
}
@media (max-width: 720px) { .apply-form { padding: 32px 24px; } }

.apply-form-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--marrow-red);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.apply-form-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.1;
}
.field { margin-bottom: 24px; }
.field-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.field-input,
.field-textarea {
  width: 100%;
  background: var(--bone-cream);
  border: 1px solid transparent;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--bone-black);
  border-radius: 2px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--marrow-red);
  background: var(--bone-white);
}
.field-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field-help {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--steel);
  margin-top: 6px;
  line-height: 1.5;
}
.submit-btn {
  width: 100%;
  background: var(--bone-black);
  color: var(--bone-white);
  padding: 18px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.submit-btn:hover { background: var(--marrow-red); }
.submit-disclaimer {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  line-height: 1.7;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--marrow-red);
  color: var(--bone-white);
  text-align: center;
  padding: 80px 0;
}
.cta-strip-line {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.cta-strip-btn {
  background: var(--bone-white);
  color: var(--marrow-red);
  padding: 18px 40px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: transform 0.15s ease;
}
.cta-strip-btn:hover { transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: var(--bone-black);
  color: var(--steel-light);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--bone-white);
  text-transform: uppercase;
}
.footer-bio {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel-light);
  max-width: 360px;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 2;
}
.footer-col a {
  color: var(--steel-light);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--bone-white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
}

/* ===== INTERIOR PAGE STYLES ===== */
.page-hero {
  background: var(--bone-cream);
  padding: 100px 0 80px;
  text-align: center;
}
.page-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--marrow-red);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.page-hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.page-hero-lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 680px;
  margin: 0 auto;
}
.page-hero-lede strong { color: var(--bone-black); font-weight: 600; }

/* Pricing page */
.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 920px) { .pricing-comparison { grid-template-columns: 1fr; } }
.pricing-tier-card {
  background: var(--bone-white);
  padding: 48px;
  border: 1px solid var(--line);
}
.pricing-tier-card.featured {
  background: var(--bone-black);
  color: var(--bone-white);
  border-color: var(--bone-black);
  position: relative;
}
.pricing-tier-card.featured::before {
  content: "FOUNDING COHORT";
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--marrow-red);
  color: var(--bone-white);
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 500;
  border-radius: 2px;
}
.pricing-tier-card-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-tier-card.featured .pricing-tier-card-name { color: var(--marrow-red-glow); }
.pricing-tier-card-tagline {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--steel);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-tier-card.featured .pricing-tier-card-tagline { color: var(--steel-light); }
.pricing-tier-card-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pricing-tier-card-price span {
  font-size: 18px;
  color: var(--steel);
  font-weight: 500;
}
.pricing-tier-card.featured .pricing-tier-card-price span { color: var(--steel-light); }
.pricing-tier-card-plus {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--marrow-red);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.pricing-tier-card.featured .pricing-tier-card-plus {
  color: var(--marrow-red-glow);
  border-bottom-color: var(--line-dark);
}
.pricing-tier-card-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-tier-card-features li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--steel);
  padding: 10px 0;
  padding-left: 26px;
  position: relative;
}
.pricing-tier-card.featured .pricing-tier-card-features li { color: var(--steel-light); }
.pricing-tier-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  background: var(--marrow-red);
  border-radius: 50%;
}

/* Math example */
.math-example {
  background: var(--bone-white);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-top: 48px;
}
.math-example-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--marrow-red);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.math-example-rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .math-example-rows { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .math-example-rows { grid-template-columns: 1fr; } }
.math-row {
  padding: 24px;
  background: var(--bone-cream);
  border-radius: 2px;
}
.math-row.featured { background: var(--bone-black); color: var(--bone-white); }
.math-row-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.math-row.featured .math-row-label { color: var(--steel-light); }
.math-row-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.math-row.featured .math-row-value { color: var(--marrow-red-glow); }

/* ===== METHOD page ===== */
.method-deep { background: var(--bone-black); color: var(--bone-white); }
.method-deep .section-eyebrow { color: var(--marrow-red-glow); }
.method-deep .section-title { color: var(--bone-white); }
.method-deep .section-lede { color: var(--steel-light); }

.deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 920px) { .deep-grid { grid-template-columns: 1fr; gap: 56px; } }
.deep-content p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  color: var(--steel-light);
  margin-bottom: 24px;
}
.deep-content p strong { color: var(--bone-white); font-weight: 600; }
.deep-tagline {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--bone-white);
  text-transform: uppercase;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.deep-tagline em { color: var(--marrow-red-glow); font-style: normal; }

/* Coach dashboard preview */
.dash-preview {
  background: var(--bone-black);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(10, 9, 8, 0.2);
  margin-top: 48px;
}
.dash-preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 24px;
}
.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ash);
}
.dash-dot.red { background: #FF5F57; }
.dash-dot.yellow { background: #FEBC2E; }
.dash-dot.green { background: #28C840; }

.dash-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  min-height: 500px;
  color: var(--bone-white);
}
@media (max-width: 720px) { .dash-content { grid-template-columns: 1fr; } }

.dash-sidebar {
  background: rgba(251, 248, 242, 0.03);
  border-radius: 4px;
  padding: 24px 0;
}
.dash-sidebar-section {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--steel);
  text-transform: uppercase;
  padding: 0 24px;
  margin-bottom: 12px;
  margin-top: 16px;
}
.dash-sidebar-section:first-child { margin-top: 0; }
.dash-sidebar-item {
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--steel-light);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.dash-sidebar-item:hover { background: rgba(251, 248, 242, 0.05); color: var(--bone-white); }
.dash-sidebar-item.active {
  background: rgba(107, 15, 26, 0.2);
  color: var(--bone-white);
  border-left: 2px solid var(--marrow-red);
}

.dash-main { padding: 8px 16px; }
.dash-greeting {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.dash-subtitle {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--steel-light);
  margin-bottom: 32px;
}
.dash-alert {
  background: rgba(107, 15, 26, 0.15);
  border: 1px solid var(--marrow-red);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.dash-alert-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--marrow-red-glow);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.dash-alert-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.dash-alert-detail {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--steel-light);
  line-height: 1.6;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.dash-metric {
  background: rgba(251, 248, 242, 0.03);
  padding: 16px;
  border-radius: 4px;
}
.dash-metric-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dash-metric-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.dash-metric.featured .dash-metric-value { color: var(--marrow-red-glow); }

.dash-table {
  background: rgba(251, 248, 242, 0.02);
  border-radius: 4px;
  overflow: hidden;
}
.dash-table-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 100px;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--steel-light);
  align-items: center;
}
.dash-table-row:last-child { border-bottom: none; }
.dash-table-row.header {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
  background: rgba(251, 248, 242, 0.04);
}
.dash-table-row.flagged { background: rgba(107, 15, 26, 0.08); color: var(--bone-white); }

/* Generic page section overrides */
.page-section { padding: 80px 0; }

/* Thank you page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bone-cream);
}
.thank-you-content {
  max-width: 600px;
  padding: 0 32px;
}
.thank-you-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 40px;
  display: block;
}
.thank-you-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.005em;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.thank-you-message {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 40px;
}
.thank-you-message strong { color: var(--bone-black); font-weight: 600; }
