/* =========================================================
   vms.nik.co — Supplement Brands 2026
   Void black + amber. Fraunces display + Inter body.
   ========================================================= */

:root {
  --black: #000000;
  --near-black: #090909;
  --card: #0a0a0a;
  --card-2: #111111;
  --white: #ffffff;
  --silver: #a6a6a6;
  --mute: rgba(255,255,255,0.6);
  --mute-2: rgba(255,255,255,0.4);
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.05);
  --frost: rgba(255,255,255,0.06);
  --frost-hover: rgba(255,255,255,0.1);
  --amber: #fbbf24;
  --amber-hover: #fcd34d;
  --amber-glow: rgba(251,191,36,0.15);
  --amber-ring: rgba(251,191,36,0.3);
  --amber-muted: rgba(251,191,36,0.1);
  --green: #22c55e;
  --red: #ef4444;
  --blue: #60a5fa;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Variable', 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro', system-ui, sans-serif;
  --mono: 'SF Mono', 'Fira Code', 'JetBrains Mono', ui-monospace, monospace;
  --max: 1200px;
  --read: 780px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-feature-settings: "cv01","cv05","cv09","cv11","ss03","ss07";
  font-variant-ligatures: common-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
::selection { background: var(--amber); color: var(--black); }

a { color: var(--amber); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--amber-hover); }
button { font-family: inherit; cursor: pointer; background: none; color: inherit; border: none; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =========================================================
   GATE — editorial redesign (Stripe Press meets Ramp annual report)
   ========================================================= */
.gate {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: opacity .8s ease, transform .8s ease;
  display: flex;
  flex-direction: column;
}
.gate.fade-out { opacity: 0; transform: translateY(-30px); pointer-events: none; }

.gate-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(251,191,36,0.10), transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 80%, rgba(251,191,36,0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 5%, rgba(251,191,36,0.03), transparent 70%);
  pointer-events: none;
}

/* TOP BAR */
.gate-topbar {
  position: relative; z-index: 2;
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.4);
}
.gate-topbar-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.gate-topbar .gate-mark {
  font-size: 14px; font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0;
}
.gate-topbar-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute);
}
.gate-topbar-eyebrow { color: var(--amber); }
.gate-topbar-sep { opacity: 0.5; }
.gate-topbar-issue { color: var(--mute); }

/* MAIN GRID: content left, preview right */
.gate-grid {
  position: relative; z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  width: 100%;
  align-items: start;
}

/* LEFT CONTENT COLUMN */
.gate-col-content { max-width: 620px; }

.gate-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber);
  padding: 6px 12px;
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 100px;
  background: rgba(251,191,36,0.06);
  margin-bottom: 32px;
}

.gate-hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
  color: var(--white);
}
.gate-hero-title .gate-hero-line-1,
.gate-hero-title .gate-hero-line-2,
.gate-hero-title .gate-hero-line-year {
  display: block;
}
.gate-hero-title .gate-hero-line-year { color: var(--amber); }

.gate-hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--silver);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 48px;
}

/* INLINE STAT STRIP */
.gate-stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gate-stats-inline .gate-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gate-stats-inline .gate-stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.gate-stats-inline .gate-stat-unit {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--mute);
  margin-left: 2px;
  letter-spacing: 0;
}
.gate-stats-inline .gate-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* EMAIL FORM */
.gate-form {
  display: flex; gap: 8px;
  max-width: 540px;
  background: var(--frost);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px;
  margin-bottom: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gate-form:focus-within {
  border-color: var(--amber-ring);
  box-shadow: 0 0 0 4px var(--amber-glow);
}
.gate-form input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  padding: 14px 20px;
  min-width: 0;
}
.gate-form input::placeholder { color: var(--mute-2); }

.gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gate-btn-label { }
.gate-btn-arrow { transition: transform .2s ease; }
.gate-btn:hover .gate-btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--amber);
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .15s ease, transform .1s ease;
}
.btn-primary:hover { background: var(--amber-hover); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.6; cursor: wait; }

.btn-ghost {
  background: var(--frost);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--border);
  transition: background .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { background: var(--frost-hover); color: var(--white); }

.gate-fineprint {
  font-size: 12px;
  color: var(--mute-2);
  margin-bottom: 40px;
}
.gate-error { font-size: 13px; color: var(--red); margin-top: 10px; min-height: 1em; }

/* SOCIAL PROOF ROW */
.gate-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.gate-proof-item { display: flex; flex-direction: column; gap: 4px; }
.gate-proof-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute-2);
}
.gate-proof-value {
  font-size: 14px; font-weight: 600;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.gate-proof-detail {
  font-weight: 400;
  color: var(--mute);
  margin-left: 4px;
}
.gate-proof-divider {
  width: 1px; height: 28px;
  background: var(--border);
}

/* RIGHT PREVIEW COLUMN */
.gate-col-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  perspective: 1200px;
}
.preview-card {
  background: var(--surface-2, #0a0a0a);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: transform .4s ease;
}
.preview-card:hover { transform: translateY(-2px); }

.preview-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.preview-card-section {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
}
.preview-card-lock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute);
}
.preview-card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 16px;
}
.preview-card-list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: pc-item;
}
.preview-card-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  counter-increment: pc-item;
}
.preview-card-list li:last-child { border-bottom: none; }
.preview-card-list li::before {
  content: counter(pc-item, decimal-leading-zero);
  position: absolute;
  left: 0; top: 11px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.preview-card-list li strong { color: var(--white); font-weight: 600; }
.preview-card-tease {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-style: italic;
  color: var(--mute);
  text-align: center;
}

.preview-card-blur {
  position: relative;
  overflow: hidden;
}
.preview-card-blur .preview-card-body-blur {
  filter: blur(3px);
  opacity: 0.6;
  user-select: none;
  pointer-events: none;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
}
.preview-card-blur .preview-card-body-blur p { margin-bottom: 10px; }
.preview-card-blur::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.preview-card-deep { opacity: 0.65; transform: scale(0.98); }

/* BOTTOM TOC TEASER STRIP */
.gate-toc-teaser {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 40px 60px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.gate-toc-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.gate-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.gate-toc-item {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--silver);
  background: var(--black);
  font-feature-settings: "tnum";
  transition: background .15s ease, color .15s ease;
}
.gate-toc-item:hover {
  background: var(--surface-2, #0a0a0a);
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .gate-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 40px;
  }
  .gate-col-preview {
    max-width: 560px;
  }
}
@media (max-width: 720px) {
  .gate-topbar { padding: 14px 20px; }
  .gate-topbar-meta { display: none; }
  .gate-grid { padding: 40px 20px; gap: 40px; }
  .gate-eyebrow { margin-bottom: 24px; font-size: 10px; padding: 5px 10px; }
  .gate-hero-title { margin-bottom: 24px; }
  .gate-hero-sub { font-size: 15px; margin-bottom: 32px; }
  .gate-stats-inline {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
  }
  .gate-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .gate-proof-divider { display: none; }
  .preview-card { padding: 18px; }
  .preview-card-title { font-size: 16px; }
  .gate-toc-teaser { padding: 32px 20px 40px; }
  .gate-toc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gate-form { flex-direction: column; border-radius: 18px; padding: 10px; gap: 10px; }
  .gate-form input { text-align: left; padding: 14px 16px; }
  .gate-btn { width: 100%; padding: 14px; justify-content: center; }
}

/* =========================================================
   REPORT — Progress / Nav / TOC
   ========================================================= */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: transparent;
  z-index: 100;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-hover));
  transition: width .1s linear;
}

.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.nav-logo {
  font-weight: 600; font-size: 15px;
  color: var(--white); white-space: nowrap;
}
.nav-logo:hover { color: var(--amber); }
.nav-sections {
  display: flex; gap: 2px; overflow-x: auto;
  scrollbar-width: none;
}
.nav-sections::-webkit-scrollbar { display: none; }
.nav-sections a {
  color: var(--mute);
  font-size: 13px; font-weight: 500;
  padding: 6px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav-sections a:hover { color: var(--white); background: var(--frost); }
.nav-sections a.active { color: var(--amber); background: var(--amber-muted); }

.nav-toc-btn {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--frost);
  color: var(--white);
  font-size: 20px;
}

@media (max-width: 900px) {
  .nav-sections { display: none; }
  .nav-toc-btn { display: inline-flex; align-items: center; justify-content: center; }
}

/* Side TOC */
.toc {
  position: fixed; top: 80px; left: 24px;
  width: 200px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  z-index: 80;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  font-size: 12px;
  display: none; /* desktop wide only */
}
.toc-title {
  color: var(--mute-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 12px;
}
.toc-list {
  list-style: none;
  counter-reset: toc;
}
.toc-list li {
  counter-increment: toc;
  margin-bottom: 2px;
}
.toc-list a {
  color: var(--silver);
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
  transition: all .15s ease;
  border-left: 2px solid transparent;
}
.toc-list a::before {
  content: counter(toc, decimal-leading-zero) " ";
  color: var(--mute-2);
  margin-right: 6px;
  font-variant-numeric: tabular-nums;
}
.toc-list a:hover { color: var(--white); background: var(--frost); }
.toc-list a.active { color: var(--amber); border-left-color: var(--amber); }
.toc-meta {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 11px; color: var(--mute-2);
  display: flex; flex-direction: column; gap: 6px;
}
.toc-meta span { color: var(--amber); font-variant-numeric: tabular-nums; }

@media (min-width: 1400px) { .toc { display: block; } }

.toc.mobile-open {
  display: block;
  position: fixed;
  top: 64px; left: 16px; right: 16px;
  width: auto; max-height: 70vh;
}

/* =========================================================
   SECTIONS — shared
   ========================================================= */
.report-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
section.s {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
section.s:last-child { border-bottom: none; }
@media (max-width: 640px) { section.s { padding: 80px 0 60px; } }

.s-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 900px;
}
.s-kicker {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--silver);
  line-height: 1.5;
  max-width: var(--read);
  margin-bottom: 56px;
}
.s-prose {
  max-width: var(--read);
  font-size: 17px; line-height: 1.65;
  color: var(--silver);
}
.s-prose p { margin-bottom: 20px; }
.s-prose p:last-child { margin-bottom: 0; }
.s-prose strong { color: var(--white); font-weight: 600; }
.s-prose em { color: var(--white); font-style: italic; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* =========================================================
   SECTION 0 — Cold open
   ========================================================= */
.cold-open { text-align: center; padding: 140px 0 100px; }
.cold-stat {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 32px;
}
.cold-stat .amber { color: var(--amber); }
.cold-sub {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--silver);
  max-width: 680px;
  margin: 0 auto 80px;
  line-height: 1.4;
}
.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: "↓";
  color: var(--amber);
  font-size: 16px;
}
@keyframes bob { 50% { transform: translateY(6px); } }

/* =========================================================
   SECTION 1 — Executive Summary (7 theses)
   ========================================================= */
.theses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.thesis {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px;
  transition: all .2s ease;
  position: relative;
}
.thesis:hover {
  border-color: var(--amber-ring);
  box-shadow: 0 0 0 1px var(--amber-glow);
  transform: translateY(-2px);
}
.thesis-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.thesis-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 12px; color: var(--mute-2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}
.thesis-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 12px;
}
.thesis-body {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.55;
  margin-bottom: 16px;
}
.thesis-link {
  font-size: 13px; font-weight: 500;
  color: var(--amber);
}
.thesis-link:hover { color: var(--amber-hover); }

/* =========================================================
   SECTION 2 — Funnel
   ========================================================= */
.funnel-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1000px) { .funnel-wrap { grid-template-columns: 1fr; } }

.funnel {
  display: flex; flex-direction: column;
  gap: 12px;
}
.funnel-stage {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 22px;
  cursor: pointer;
  transition: all .2s ease;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  width: 100%;
}
.funnel-stage:hover, .funnel-stage.active {
  border-color: var(--amber-ring);
  background: var(--card-2);
}
.funnel-stage.active {
  box-shadow: 0 0 0 1px var(--amber-glow);
}
.funnel-stage-main { display: flex; align-items: center; gap: 14px; }
.funnel-num {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600;
  color: var(--amber);
  min-width: 28px;
}
.funnel-label {
  font-size: 16px; font-weight: 500;
  color: var(--white);
}
.funnel-desc {
  font-size: 13px; color: var(--mute);
  margin-top: 2px;
}
.funnel-chev { color: var(--mute-2); font-size: 18px; }
.funnel-stage.active .funnel-chev { color: var(--amber); }

/* Funnel width tapering */
.funnel-stage:nth-child(1) { width: 100%; }
.funnel-stage:nth-child(2) { width: 95%; }
.funnel-stage:nth-child(3) { width: 88%; }
.funnel-stage:nth-child(4) { width: 78%; }
.funnel-stage:nth-child(5) { width: 66%; }
.funnel-stage:nth-child(6) { width: 52%; }
@media (max-width: 1000px) {
  .funnel-stage { width: 100% !important; }
}

.funnel-panel {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px;
  position: sticky; top: 90px;
  min-height: 320px;
}
.funnel-panel-stage {
  font-size: 11px; color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.funnel-panel-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.funnel-panel-body {
  font-size: 14px; color: var(--silver);
  line-height: 1.6;
  margin-bottom: 16px;
}
.funnel-panel-examples {
  font-size: 13px; color: var(--mute);
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}
.funnel-panel-examples strong { color: var(--white); display: block; margin-bottom: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.funnel-panel-data {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--amber-muted);
  border: 1px solid var(--amber-ring);
  border-radius: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 500;
}

/* =========================================================
   SECTION 3 — ATF hotspots
   ========================================================= */
.atf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.atf-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: all .2s ease;
}
.atf-card:hover { border-color: var(--amber-ring); }
.atf-image {
  background: var(--card-2);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.atf-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.atf-image-placeholder {
  color: var(--mute-2);
  font-size: 13px;
  font-family: var(--mono);
}
.atf-hotspot {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(251,191,36,0.2);
  transition: transform .15s ease;
  animation: pulse 2.5s ease-in-out infinite;
}
.atf-hotspot:hover { transform: scale(1.15); }
.atf-hotspot[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--amber-ring);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 400;
  white-space: normal;
  width: 220px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  line-height: 1.4;
  text-align: left;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(251,191,36,0.2); }
  50% { box-shadow: 0 0 0 10px rgba(251,191,36,0.05); }
}
.atf-meta {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.atf-brand { font-weight: 600; font-size: 15px; color: var(--white); }
.atf-sub { font-size: 12px; color: var(--mute); }

/* =========================================================
   SECTION 4 — Subscription calculator
   ========================================================= */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 860px) { .calc-wrap { grid-template-columns: 1fr; } }

.calc {
  background: var(--card);
  border: 1px solid var(--amber-ring);
  border-radius: 16px;
  padding: 28px;
}
.calc-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--white);
}
.calc-input { margin-bottom: 18px; }
.calc-input label {
  display: block;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--mute); margin-bottom: 8px;
  font-weight: 600;
}
.calc-input-row {
  display: flex; align-items: center;
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px 10px;
}
.calc-input-row:focus-within {
  border-color: var(--amber-ring);
  box-shadow: 0 0 0 3px var(--amber-glow);
}
.calc-input-prefix { color: var(--mute); font-size: 15px; padding: 0 4px; }
.calc-input-row input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); font-family: inherit; font-size: 15px;
  padding: 10px 4px;
  width: 100%;
  font-variant-numeric: tabular-nums;
}

.calc-output {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px;
}
.calc-tier {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: baseline;
}
.calc-tier:last-child { border-bottom: none; }
.calc-tier-label {
  font-size: 13px; color: var(--silver);
}
.calc-tier-val {
  font-family: var(--serif);
  font-weight: 600; font-size: 20px;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.calc-tier.best { background: var(--amber-muted); margin: 8px -28px; padding: 14px 28px; border-radius: 8px; border: none; }
.calc-tier.best .calc-tier-val { color: var(--amber); }
.calc-insight {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--amber-muted);
  border: 1px solid var(--amber-ring);
  border-radius: 8px;
  font-size: 13px;
  color: var(--amber-hover);
  line-height: 1.5;
}

.ladder-table {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
  font-size: 14px;
}
.ladder-table th, .ladder-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.ladder-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  font-weight: 600;
}
.ladder-table td { color: var(--silver); }
.ladder-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.ladder-table tr:hover td { background: rgba(251,191,36,0.04); }
.ladder-brand { color: var(--white); font-weight: 600; }
.ladder-amber { color: var(--amber); font-weight: 600; }

/* =========================================================
   SECTION 5 — Niche map
   ========================================================= */
.niche-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.niche-filter {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  background: var(--frost);
  border: 1px solid var(--border);
  color: var(--silver);
  transition: all .15s ease;
}
.niche-filter:hover { background: var(--frost-hover); color: var(--white); }
.niche-filter.active {
  background: var(--amber-muted);
  border-color: var(--amber-ring);
  color: var(--amber);
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.niche-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}
.niche-card:hover { border-color: var(--amber-ring); transform: translateY(-2px); }
.niche-card.whitespace {
  border-color: var(--amber-ring);
  box-shadow: 0 0 0 1px var(--amber-glow);
}
.niche-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 600;
  padding: 4px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.niche-badge.ws {
  background: var(--amber-muted);
  color: var(--amber);
  border: 1px solid var(--amber-ring);
}
.niche-name {
  font-family: var(--serif);
  font-weight: 600; font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
  padding-right: 80px;
  line-height: 1.2;
}
.niche-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--silver);
}
.niche-meta-row { display: flex; justify-content: space-between; }
.niche-meta-label { color: var(--mute); font-size: 12px; }
.niche-meta-val { color: var(--white); font-variant-numeric: tabular-nums; font-weight: 500; font-size: 12px; }
.niche-expand {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px; color: var(--silver);
  line-height: 1.5;
  display: none;
}
.niche-card.expanded .niche-expand { display: block; }
.niche-card.expanded { box-shadow: 0 0 0 1px var(--amber-glow); border-color: var(--amber-ring); }

/* =========================================================
   SECTION 6 — Cancel-save ladder
   ========================================================= */
.ladder {
  margin-top: 40px;
  position: relative;
}
.ladder::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(var(--amber), var(--amber-muted));
}
.ladder-step {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
  align-items: start;
  position: relative;
}
@media (max-width: 760px) {
  .ladder-step { grid-template-columns: 60px 1fr; }
  .ladder-step .ladder-example { grid-column: 2; margin-top: 8px; }
}
.ladder-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--black);
  font-family: var(--serif);
  font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; position: relative;
}
.ladder-step-title {
  font-family: var(--serif);
  font-weight: 600; font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.ladder-step-body {
  font-size: 14px; color: var(--silver);
  line-height: 1.55;
}
.ladder-step-rate {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--amber);
  background: var(--amber-muted);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ladder-example {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 16px 18px;
}
.ladder-example-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 6px;
}
.ladder-example-body {
  font-size: 13px; color: var(--silver);
  line-height: 1.5;
}

/* =========================================================
   SECTION 7 — Email flow accordion
   ========================================================= */
.accordion { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.acc-item {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.acc-item.open { border-color: var(--amber-ring); }
.acc-head {
  width: 100%;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  gap: 20px;
}
.acc-head-title {
  font-family: var(--serif);
  font-weight: 600; font-size: 20px;
  color: var(--white);
}
.acc-head-meta {
  font-size: 12px;
  color: var(--mute);
}
.acc-chev {
  color: var(--amber);
  font-size: 18px;
  transition: transform .2s ease;
}
.acc-item.open .acc-chev { transform: rotate(180deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.acc-item.open .acc-body { max-height: 1400px; }
.acc-body-inner {
  padding: 0 22px 22px;
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
}
.email-flow { display: flex; flex-direction: column; gap: 12px; }
.email-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.email-row:last-child { border-bottom: none; }
.email-day {
  color: var(--amber);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.email-subject {
  font-weight: 500; color: var(--white);
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 15px;
}
.email-note {
  color: var(--silver);
  font-size: 13px; line-height: 1.4;
}

/* =========================================================
   SECTION 8 — Brand cards
   ========================================================= */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.brand-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px;
  transition: all .2s ease;
  display: flex; flex-direction: column;
}
.brand-card:hover {
  border-color: var(--amber-ring);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.brand-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  gap: 12px;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
}
.brand-domain {
  font-size: 11px; color: var(--mute);
  font-family: var(--mono);
}
.brand-win {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.brand-miss {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 600;
  margin: 14px 0 6px;
}
.brand-body {
  font-size: 13px; color: var(--silver);
  line-height: 1.55;
}
.brand-links {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.brand-link {
  font-size: 12px;
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .15s ease;
}
.brand-link:hover { color: var(--amber); }
.brand-link-icon { color: var(--amber); }

/* =========================================================
   SECTION 9 — Meta-thesis 3 columns
   ========================================================= */
.meta-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .meta-cols { grid-template-columns: 1fr; } }
.meta-col { display: flex; flex-direction: column; gap: 12px; }
.meta-col-head {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 4px;
}
.meta-col-head.dying {
  background: rgba(239,68,68,0.1);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.2);
}
.meta-col-head.changing {
  background: var(--amber-muted);
  color: var(--amber);
  border: 1px solid var(--amber-ring);
}
.meta-col-head.born {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}
.meta-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
}
.meta-card strong { color: var(--white); font-weight: 600; }

/* =========================================================
   SECTION 10 — Shareable quotes
   ========================================================= */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.quote-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 28px;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  display: flex; flex-direction: column; min-height: 220px;
}
.quote-card:hover {
  border-color: var(--amber-ring);
  transform: translateY(-2px);
}
.quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--amber);
  line-height: 0;
  margin-top: 16px;
  opacity: 0.5;
}
.quote-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  color: var(--white);
  flex: 1;
  letter-spacing: -0.01em;
  margin: 16px 0;
}
.quote-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 12px;
  color: var(--mute);
}
.quote-share {
  color: var(--amber);
  font-weight: 600;
  font-size: 12px;
}

/* =========================================================
   SECTION 11 — Playbook checklist
   ========================================================= */
.play-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .play-phases { grid-template-columns: 1fr; } }
.play-phase {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px;
}
.play-phase-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.play-phase-title {
  font-size: 11px; text-transform: uppercase;
  color: var(--mute);
  letter-spacing: 0.1em; font-weight: 600;
  margin-bottom: 20px;
}
.play-task {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  align-items: flex-start;
}
.play-task:last-child { border-bottom: none; }
.play-check {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  background: var(--near-black);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  transition: all .15s ease;
}
.play-task.done .play-check {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}
.play-check::after { content: "✓"; font-weight: 700; font-size: 13px; opacity: 0; }
.play-task.done .play-check::after { opacity: 1; }
.play-label {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.5;
}
.play-task.done .play-label {
  color: var(--mute-2);
  text-decoration: line-through;
}

/* =========================================================
   RELATED RESOURCES
   ========================================================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--card);
  border: 1px solid var(--amber-ring);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: all .2s ease;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  background: var(--card-2);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--amber-glow), 0 10px 40px rgba(251,191,36,0.05);
}
.related-icon { font-size: 36px; margin-bottom: 16px; }
.related-name {
  font-family: var(--serif);
  font-weight: 600; font-size: 22px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.related-desc {
  font-size: 14px; color: var(--silver);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 20px;
}
.related-cta {
  font-size: 13px; font-weight: 600;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 6px;
}

/* =========================================================
   SECTION 12 — Outro
   ========================================================= */
.outro { text-align: center; }
.outro-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.outro-sub {
  font-size: 18px; color: var(--silver);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.outro-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.outro-universe {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 48px;
}
.outro-universe a { color: var(--amber); margin: 0 6px; }
.outro-share {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.share-btn {
  padding: 10px 18px;
  background: var(--frost);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px; color: var(--white); font-weight: 500;
  transition: all .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.share-btn:hover { background: var(--frost-hover); color: var(--amber); }
.outro-credits {
  color: var(--mute-2);
  font-size: 12px;
  margin-top: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--border-soft);
  padding: 60px 24px 40px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 16px;
}
.footer-links {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--mute);
}
.footer-links a:hover { color: var(--amber); }
.footer-links a.disabled {
  color: var(--mute-2);
  cursor: not-allowed;
  pointer-events: none;
}
.footer-fine {
  color: var(--mute-2);
  font-size: 11px;
}

/* =========================================================
   MODALS
   ========================================================= */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--amber-ring);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.modal-card-wide { max-width: 720px; }
.modal-close {
  position: absolute; top: 12px; right: 14px;
  font-size: 24px; color: var(--mute);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.modal-close:hover { background: var(--frost); color: var(--white); }
.modal-title {
  font-family: var(--serif);
  font-weight: 600; font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}
.modal-body { font-size: 14px; color: var(--silver); line-height: 1.55; }

.share-tweet {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.share-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Brand modal specific */
.brand-modal-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 20px; gap: 14px;
}
.brand-modal-name {
  font-family: var(--serif);
  font-weight: 600; font-size: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-modal-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.brand-modal-section:last-child { border-bottom: none; padding-bottom: 0; }
.brand-modal-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}
.brand-modal-label.green { color: var(--green); }
.brand-modal-label.red { color: var(--red); }
.brand-modal-body {
  font-size: 14px; color: var(--silver); line-height: 1.6;
}

/* =========================================================
   MISC
   ========================================================= */
.inline-link {
  color: var(--amber);
  font-size: 12px;
  margin-left: 6px;
  white-space: nowrap;
  border-bottom: 1px dashed rgba(251,191,36,0.4);
  padding-bottom: 1px;
}
.inline-link:hover { border-bottom-color: var(--amber); }

.stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--amber-muted);
  border: 1px solid var(--amber-ring);
  border-radius: 100px;
  padding: 3px 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-right: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
