/* DepletionIQ shared site stylesheet.
   Extracted from index.html so /blog pages render with identical brand
   tokens, nav, buttons and footer. Edit here, not inline. */
:root {
  --paper:     #FFFFFF;
  --paper-2:   #FFFFFF;   /* legacy alias — now pure white, borders do the separation */
  --cream:     #FFFFFF;   /* legacy alias — now white */
  --oak:       #1F1A12;    /* reserved for dark UI surfaces: buttons, compare band, brand mark */
  --oak-2:     #1F1A12;    /* legacy alias — body text */
  --ink:       #1F1A12;    /* BODY copy color — black-oak */
  --ink-2:     #1F1A12;    /* TITLES / headings — black-oak */
  --ink-70:    #3B352C;    /* one step down from body for dense secondary copy */
  --ink-55:    #5A5348;    /* ledes, card snippets, captions */
  --ink-15:    rgba(31,26,18,0.20);
  --ink-08:    rgba(31,26,18,0.08);
  /* legacy oak-* aliases track the ink scale */
  --oak-70:    #3B352C;
  --oak-55:    #5A5348;
  --oak-15:    rgba(31,26,18,0.20);
  --oak-08:    rgba(31,26,18,0.08);
  --sky:       #0369A2;    /* retained for occasional data/UI accents */
  --line:      #E9E5DA;    /* subtle warm gray border */
  --amber:     #B45309;
  --amber-2:   #8A3F07;    /* darker amber for hover */
  --amber-tint:#F5D9B0;
  --coral:     #DB5461;
  --muted:     #6B6459;    /* warm gray for small captions/meta — no blue cast */
  --green:     #4F7F4A;
  --rust:      #A34A2A;

  --radius: 6px;
  --shadow-card:   0 1px 2px rgba(31,26,18,0.04), 0 2px 8px -2px rgba(31,26,18,0.05);
  --shadow-image:  0 30px 60px -25px rgba(31,26,18,0.35), 0 12px 24px -12px rgba(31,26,18,0.15);
  --shadow-float:  0 12px 32px -10px rgba(31,26,18,0.22), 0 4px 10px -4px rgba(31,26,18,0.10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }

/* Fraunces reserved for HERO H1, wordmark and section headings ONLY. All numbers/values (pills, KPIs, prices) use Inter with lining tabular figures. */
.display { font-family: 'Fraunces', ui-serif, Georgia, serif; }
.mono    { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.90);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1240px; margin: 0 auto;
}
.brand {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 24px;
  letter-spacing: -0.025em; color: var(--ink-2); text-decoration: none;
  display: inline-flex; align-items: baseline;
}
.brand-depl { font-weight: 700; }
.brand-iq {
  font-weight: 400; font-style: italic;
  color: var(--amber);
  margin-left: 0.15em;
}
.nav-links {
  display: none; gap: 32px; align-items: center;
  font-size: 14px; font-weight: 500;
}
.nav-links a {
  color: var(--oak-70); text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink-2); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ---------- BUTTONS (weight-driven, one accent) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  line-height: 1; letter-spacing: -0.005em;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
}
a.btn { text-decoration: none; }
.btn-primary { background: var(--oak); color: var(--cream); border-color: var(--oak); }
.btn-primary:hover { background: var(--amber); border-color: var(--amber); color: var(--cream); }
.btn-secondary { background: transparent; color: var(--oak); border-color: var(--oak); }
.btn-secondary:hover { background: var(--oak); color: var(--cream); }
.btn-quiet { background: transparent; color: var(--oak-70); border-color: transparent; padding: 10px 14px; }
.btn-quiet:hover { color: var(--ink-2); }
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

/* ---------- HERO (asymmetric split) ---------- */
.hero { padding: 72px 0 88px; position: relative; }
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 56px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--oak-2);
  margin-bottom: 24px;
}
.hero-tag .tag-mark {
  color: var(--amber); font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 700;
  letter-spacing: 0; text-transform: none;
  font-size: 14px;
}

/* The one and only italic-serif accent on the whole page */
h1.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700; letter-spacing: -0.03em; line-height: 0.98;
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
  margin: 0 0 24px; color: var(--ink-2);
}
h1.hero-h1 .see {
  display: inline-block;
  font-style: italic; font-weight: 500;
  color: var(--amber);
  /* subtle underline swash */
  position: relative;
}
h1.hero-h1 .see::after {
  content: "";
  position: absolute; left: 4%; right: 4%; bottom: -6px;
  height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6' preserveAspectRatio='none'><path d='M0 3 Q 25 6 50 3 T 100 3' fill='none' stroke='%23B45309' stroke-width='1.6' opacity='0.55'/></svg>") no-repeat center/100% 100%;
}
.hero-lede {
  font-size: 1.1875rem; line-height: 1.55;
  color: var(--oak-2); max-width: 540px;
  margin: 0 0 32px;
}
.hero-lede strong { font-weight: 600; color: var(--ink-2); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.trust-row {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13.5px; color: var(--oak-55); font-weight: 500;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { color: var(--green); flex-shrink: 0; }

/* ---------- HERO MEDIA + FLOATING PILLS ---------- */
.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 4 / 3;
}
.hero-media-frame img { width: 100%; height: 100%; object-fit: cover; }
/* subtle warm vignette */
.hero-media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(210deg, transparent 55%, rgba(31,26,18,0.14));
  pointer-events: none;
}

.float-pill {
  position: absolute; z-index: 3;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-float);
  font-family: 'Inter', sans-serif;
  min-width: 200px;
}
.float-pill .pip {
  width: 34px; height: 34px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-pill.a .pip { background: rgba(180,83,9,0.10); color: var(--amber); }
.float-pill.b .pip { background: rgba(79,127,74,0.10); color: var(--green); }
.float-pill.c .pip { background: rgba(3,105,162,0.10); color: var(--ink-2); }
.float-pill .label {
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.02em;
}
.float-pill .value {
  font-family: 'Inter', sans-serif; font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700; font-size: 17px; color: var(--ink-2);
  letter-spacing: -0.015em; line-height: 1.1;
  margin-top: 1px;
}
.float-pill.a { top: 22px; right: -18px; }
.float-pill.b { bottom: 32px; left: -22px; }
.float-pill.c { bottom: -18px; right: 32px; }
@media (max-width: 640px) {
  .float-pill.a { right: 8px; }
  .float-pill.b { left: 8px; }
  .float-pill.c { right: 12px; }
}

/* ---------- MARQUEE (industry belt) ---------- */
.belt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 22px 0;
}
.belt-inner {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  justify-content: space-between;
}
.belt-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--oak-55);
}
.belt-items { display: flex; gap: 32px; flex-wrap: wrap; }
.belt-items span {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--oak);
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
}
.belt-items span::before {
  content: "";
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--ink); opacity: 0.35;
}
.belt-items span.belt-lead {
  color: var(--oak); font-weight: 700; font-size: 15.5px; letter-spacing: -0.005em;
}
.belt-items span.belt-lead::before {
  background: var(--amber); opacity: 1;
  width: 6px; height: 6px;
}

/* ---------- SECTIONS ---------- */
section { padding: 108px 0; position: relative; }
section.band-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.band-dark { background: var(--oak); color: var(--cream); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--oak-55);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--oak-55);
  display: inline-block;
}
.band-dark .section-eyebrow { color: rgba(250,247,242,0.55); }
.band-dark .section-eyebrow::before { background: rgba(250,247,242,0.55); }

/* Section titles: Inter Bold. No italic. No amber. Weight-driven. */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700; letter-spacing: -0.03em;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  margin: 0 0 20px; color: var(--ink-2);
}
.band-dark .section-title { color: var(--cream); }
.section-lede {
  font-size: 1.125rem; line-height: 1.55;
  color: var(--oak-55); margin: 0;
  max-width: 620px;
}
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.band-dark .section-lede { color: rgba(250,247,242,0.65); }

/* ---------- STEPS (chain) ---------- */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  counter-reset: step;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}
.step {
  counter-increment: step;
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .step { border-bottom: 0; border-right: 1px solid var(--line); }
  .step:last-child { border-right: 0; }
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  color: var(--amber); margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.step-num::before { content: "0"; }
.step:nth-child(1) .step-num::after { content: "1"; }
.step:nth-child(2) .step-num::after { content: "2"; }
.step:nth-child(3) .step-num::after { content: "3"; }
.step:nth-child(4) .step-num::after { content: "4"; }
.step:nth-child(5) .step-num::after { content: "5"; }
.step-icon { width: 28px; height: 28px; margin-bottom: 16px; color: var(--ink-2); stroke-width: 1.5; }
.step h3 {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 17px; margin: 0 0 8px; color: var(--ink-2);
  letter-spacing: -0.01em;
}
.step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ---------- INDUSTRY SPLIT ---------- */
.industry {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
  padding: 64px 0;
}
@media (min-width: 1000px) {
  .industry { grid-template-columns: 1fr 1fr; gap: 88px; padding: 96px 0; }
  .industry.reverse .ind-media { order: 2; }
  .industry.reverse .ind-body { order: 1; }
}
.industry + .industry { border-top: 1px solid var(--line); }

/* ---------- LEAD INDUSTRY (Distilleries — flagship category) ---------- */
.industry.lead { padding: 40px 0 108px; }
@media (min-width: 1000px) {
  .industry.lead { grid-template-columns: 1.15fr 1fr; gap: 96px; padding: 40px 0 128px; }
}
.industry.lead .ind-frame { aspect-ratio: 5 / 4; }
.industry.lead .ind-cat { color: var(--amber); font-weight: 600; }
.industry.lead .ind-cat::before { background: var(--amber); width: 28px; height: 2px; }
.lead-flag {
  position: absolute; top: 20px; left: -20px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  box-shadow: var(--shadow-float);
  z-index: 3;
}
.lead-flag .dot {
  width: 6px; height: 6px; border-radius: 999px; background: #fff;
  animation: pulse 2s ease-in-out infinite;
}
.industry.lead .stat-line {
  border-left: 2px solid var(--amber);
  padding-left: 14px;
}

/* ---------- INDUSTRY DEMO LINK ---------- */
.demo-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 10px 0 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: -0.005em;
  color: var(--oak); text-decoration: none;
  border-bottom: 1.5px solid var(--amber);
  transition: gap .2s ease, color .15s ease;
}
.demo-link:hover { color: var(--amber); gap: 14px; }
.demo-link svg { width: 15px; height: 15px; }
.demo-link .live-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(79,127,74,0.14);
  animation: pulse 2s ease-in-out infinite;
}
.industry.lead .demo-link { font-size: 16px; }

.ind-media {
  position: relative;
}
.ind-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 4 / 3;
  background: var(--oak);
}
.ind-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.ind-frame:hover img { transform: scale(1.03); }
.ind-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(200deg, transparent 55%, rgba(31,26,18,0.20));
}

.ind-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.ind-cat::before {
  content: ""; width: 20px; height: 1px; background: var(--amber);
}
.ind-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 0 0 18px; color: var(--ink-2);
}
.ind-lede { font-size: 1.0625rem; line-height: 1.6; color: var(--oak-55); margin: 0 0 24px; }

.ind-list { list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 560px) { .ind-list { grid-template-columns: 1fr 1fr; column-gap: 24px; } }
.ind-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--oak-2); line-height: 1.45;
}
.ind-list li svg { flex-shrink: 0; margin-top: 4px; color: var(--amber); width: 14px; height: 14px; }

/* Floating outcome pills over industry images */
.ind-pill {
  position: absolute; z-index: 3;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow-float);
  display: flex; align-items: center; gap: 12px;
  max-width: 260px;
}
.ind-pill .pip {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(180,83,9,0.10); color: var(--amber);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ind-pill .kv-label {
  font-size: 11px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.03em;
}
.ind-pill .kv-value {
  font-family: 'Inter', sans-serif; font-variant-numeric: lining-nums tabular-nums; font-weight: 700;
  font-size: 14px; color: var(--ink-2); letter-spacing: -0.015em;
  margin-top: 2px;
}
.ind-pill.tl { top: 20px; left: -20px; }
.ind-pill.br { bottom: 24px; right: -22px; }
.ind-pill.bl { bottom: 24px; left: -22px; }
.ind-pill.tr { top: 20px; right: -20px; }
@media (max-width: 640px) {
  .ind-pill.tl, .ind-pill.bl { left: 8px; }
  .ind-pill.br, .ind-pill.tr { right: 8px; }
}

.stat-line {
  display: inline-flex; align-items: baseline; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted); letter-spacing: 0.005em;
}
.stat-line strong {
  font-family: 'Inter', sans-serif; font-weight: 700;
  color: var(--ink-2); font-size: 15px;
  letter-spacing: -0.01em;
}

/* ---------- DASHBOARD PANEL ---------- */
.dash {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-image);
}
.dash-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 999px; background: var(--oak-15); }
.dash-url {
  margin-left: 14px; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
}
.dash-body { padding: 28px; }
.dash-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.dash-name {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -0.015em; margin: 0;
}
.dash-meta { font-size: 13px; color: var(--muted); margin: 4px 0 0; }
.live-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green);
  padding: 5px 10px; border-radius: 4px;
  background: rgba(79,127,74,0.10);
}
.live-tag .pulse {
  width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.kpi-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
@media (min-width: 720px) { .kpi-row { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}
.kpi .k { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 500;
          letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.kpi .v { font-family: 'Inter', sans-serif; font-variant-numeric: lining-nums tabular-nums; font-weight: 700; font-size: 24px;
          color: var(--ink-2); letter-spacing: -0.015em; margin: 0; line-height: 1; }
.kpi .d { font-size: 12px; margin-top: 6px; font-weight: 500; }
.kpi .d.up { color: var(--green); }
.kpi .d.down { color: var(--rust); }

.dash-screenshot-link {
  display: block;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: opacity .2s ease;
}
.dash-screenshot-link:hover { opacity: 0.96; }
.dash-screenshot-link img {
  display: block; width: 100%; height: auto;
}
.dash-cols { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .dash-cols { grid-template-columns: 1.5fr 1fr; } }
.panel { background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
.panel-t { font-size: 13px; font-weight: 600; color: var(--ink-2); margin: 0 0 4px; }
.panel-s { font-size: 11.5px; color: var(--muted); margin: 0 0 14px; letter-spacing: 0.02em; }

.row-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
}
.row-item + .row-item { margin-top: 8px; }
.row-item .name { font-weight: 600; color: var(--ink-2); }
.row-item .meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; letter-spacing: 0.01em; }
.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 8px; border-radius: 4px;
}
.chip.hot  { background: rgba(180,83,9,0.12); color: var(--amber); }
.chip.warn { background: rgba(163,74,42,0.12); color: var(--rust); }
.chip.good { background: rgba(79,127,74,0.12); color: var(--green); }

/* ---------- INVEST / PULL ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 36px;
  position: relative;
}
.split-card.invest { border-top: 3px solid var(--green); }
.split-card.pull   { border-top: 3px solid var(--rust); }
.split-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.split-card.invest .split-tag { color: var(--green); }
.split-card.pull   .split-tag { color: var(--rust); }
.split-tag::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.split-title {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.split-lede { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0 0 22px; }
.split-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.split-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--oak-2); line-height: 1.5;
}
.split-list li svg { flex-shrink: 0; margin-top: 4px; width: 12px; height: 12px; }
.split-card.invest .split-list svg { color: var(--green); }
.split-card.pull   .split-list svg { color: var(--rust); }

/* ---------- DISTRIBUTOR PARTNERSHIP ---------- */
.lag-compare { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 48px; }
.lag-row {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 32px 30px;
}
.lag-row.old { border-top: 3px solid var(--rust); }
.lag-row.new { border-top: 3px solid var(--green); }
.lag-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 10px;
}
.lag-label::before { content: ""; width: 18px; height: 1px; background: currentColor; }
.lag-row.old .lag-label { color: var(--rust); }
.lag-row.new .lag-label { color: var(--green); }
.lag-steps { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px 0; }
.lag-step { flex: 1 1 220px; min-width: 200px; }
.lag-day {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.05em;
  color: var(--amber); margin-bottom: 6px;
}
.lag-row.old .lag-day { color: var(--muted); }
.lag-step p {
  margin: 0; font-size: 14.5px; line-height: 1.5;
  color: var(--oak-2); font-weight: 500; padding-right: 24px;
}
.lag-arrow { flex: 0 0 auto; align-self: center; color: var(--oak-15); padding: 0 24px 0 6px; }
.lag-arrow svg { width: 18px; height: 18px; display: block; }
@media (max-width: 760px) {
  .lag-arrow { display: none; }
  .lag-step { flex-basis: 100%; min-width: 0; }
  .lag-step p { padding-right: 0; }
}

.partner-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
}
.partner-card .pc-icon {
  width: 28px; height: 28px; margin-bottom: 18px;
  color: var(--amber); stroke-width: 1.5;
}
.partner-card h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 19px; margin: 0 0 10px; color: var(--ink-2);
  letter-spacing: -0.015em; line-height: 1.2;
}
.partner-card p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.partner-close { margin-top: 44px; }

/* ---------- COMPARE ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .compare-grid { grid-template-columns: repeat(3, 1fr); } }
.compare {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.10);
  border-radius: 10px;
  padding: 32px 28px;
}
.compare.us {
  background: rgba(180,83,9,0.10);
  border-color: rgba(245,217,176,0.30);
}
.compare h4 {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 15px; margin: 0 0 6px;
  color: rgba(250,247,242,0.95);
  letter-spacing: 0;
}
.compare .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; color: var(--amber-tint);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.compare ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.compare ul li {
  padding: 8px 0; color: rgba(250,247,242,0.78);
  border-top: 1px solid rgba(250,247,242,0.06);
  display: flex; align-items: flex-start; gap: 10px;
}
.compare ul li:first-child { border-top: 0; }
.compare ul li::before {
  content: "—"; color: rgba(250,247,242,0.30); flex-shrink: 0;
}
.compare.us ul li::before {
  content: "✓"; color: var(--amber-tint); font-weight: 700;
}

/* ---------- PRICING TIERS ---------- */
.tier-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
@media (min-width: 900px) { .tier-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.tier {
  position: relative;
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.12);
  border-radius: 12px;
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
}
.tier.featured {
  background: rgba(180,83,9,0.12);
  border-color: rgba(245,217,176,0.42);
  box-shadow: 0 0 0 1px rgba(245,217,176,0.10);
}
@media (min-width: 900px) {
  .tier.featured { transform: translateY(-8px); }
}
.tier-ribbon {
  position: absolute; top: -13px; left: 28px;
  background: var(--amber); color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.tier-name {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 700;
  font-size: 22px; color: rgba(250,247,242,0.95);
  margin: 0 0 4px; letter-spacing: -0.01em;
}
.tier-audience {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--amber-tint);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.tier-price {
  font-family: 'Inter', sans-serif; font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  font-size: 32px; color: rgba(250,247,242,0.98);
  letter-spacing: -0.02em; line-height: 1;
  margin: 0 0 4px;
}
.tier-price .per {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 500;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0;
}
.tier-axis {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(250,247,242,0.72);
  margin: 0 0 8px;
}
.tier-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; color: rgba(250,247,242,0.55);
  margin: 0 0 24px; font-style: italic;
}
.tier-divider {
  border: 0; border-top: 1px solid rgba(250,247,242,0.10);
  margin: 0 0 20px;
}
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; font-size: 14px; flex: 1; }
.tier ul li {
  padding: 8px 0; color: rgba(250,247,242,0.78);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.tier ul li::before {
  content: "✓"; color: rgba(245,217,176,0.55); font-weight: 700; flex-shrink: 0;
  margin-top: 1px;
}
.tier.featured ul li::before { color: var(--amber-tint); }
.tier .btn {
  justify-content: center;
  background: transparent;
  color: rgba(250,247,242,0.95);
  border: 1px solid rgba(250,247,242,0.28);
}
.tier .btn:hover {
  background: var(--cream);
  color: var(--oak);
  border-color: var(--cream);
}
.tier.featured .btn {
  background: var(--amber);
  color: var(--cream);
  border-color: var(--amber);
}
.tier.featured .btn:hover {
  background: var(--amber-2);
  border-color: var(--amber-2);
  color: var(--cream);
}

/* ---------- ONBOARDING BAND ---------- */
.onboarding-band {
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(245,217,176,0.20);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center;
}
@media (min-width: 900px) {
  .onboarding-band { grid-template-columns: 1.5fr 1fr; }
}
.onboarding-band .ob-price {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px; color: var(--amber-tint);
  letter-spacing: 0; line-height: 1.4;
  margin: 0 0 8px;
}
.onboarding-band .ob-price strong,
.onboarding-band .ob-price .amt { color: var(--amber-tint); font-weight: 700; }
.onboarding-band .ob-price .ob-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; font-style: normal;
  color: rgba(250,247,242,0.55);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 6px;
}
.onboarding-band p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px; color: rgba(250,247,242,0.75);
  margin: 0; line-height: 1.55;
}
.onboarding-band strong {
  color: rgba(250,247,242,0.95);
  font-weight: 600;
}
.pricing-fine {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; color: rgba(250,247,242,0.45);
  font-style: italic; line-height: 1.6;
}
.pricing-fine p { margin: 0 0 6px; }

/* ---------- CTA ---------- */
.cta {
  padding: 128px 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta h2 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.03em; line-height: 1.05;
  margin: 0 0 20px;
}
.cta h2 .quiet { color: var(--muted); font-style: italic; font-weight: 400; }
.cta p { font-size: 1.125rem; color: var(--oak-55); margin: 0 auto 32px; max-width: 580px; line-height: 1.55; }
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.foot {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.foot-top {
  display: flex; width: 100%; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13.5px; }
.foot-links a { color: var(--oak-55); text-decoration: none; }
.foot-links a:hover { color: var(--ink-2); }
.foot-meta {
  display: flex; width: 100%; justify-content: space-between;
  color: var(--oak-55); font-size: 12.5px; flex-wrap: wrap; gap: 8px;
  padding-top: 20px; border-top: 1px solid var(--line);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; padding: 22px 0; list-style: none;
  font-family: 'Fraunces', serif; font-size: 1.18rem; font-weight: 600; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'JetBrains Mono', monospace; font-size: 20px;
  color: var(--amber); flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item p { margin: 0 0 22px; color: var(--muted); line-height: 1.65; max-width: 660px; }

/* Section rule (divider between page head and next section) */
.section-rule { border: 0; border-top: 1px solid var(--line); margin: 0 0 108px; }

/* ---------- LEGAL PAGES ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--ink); margin: 26px 0 6px; }
.legal p, .legal li { color: var(--muted); line-height: 1.55; font-size: 11px; }
.legal p { margin: 0 0 10px; }
.legal li { margin-bottom: 4px; }
.legal ul { padding-left: 20px; margin: 6px 0 10px; }
.legal .legal-updated { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
