/* The Meridian Lab — vibecheck stylesheet
 * Follows MERIDIAN-DESIGN-SYSTEM.md v1.0 (canonical reference).
 * Product accent: amber (#D68B38). Material metaphor: building inspector.
 * Sharp corners. No shadows. No gradients. No illustrations.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Courier+Prime:wght@400;700&display=swap');

:root {
  /* Fonts */
  --font-mono: "Courier Prime", "JetBrains Mono", "Courier New", monospace;
  --font-sans: "Inter", "Helvetica Neue", "Arial", sans-serif;

  /* Master palette — Meridian Lab */
  --amber: #D68B38;
  --vermillion: #C34F2A;
  --burnt-umber: #782D18;
  --cream: #E8DAC0;
  --warm-gray: #D3CBB4;
  --sage: #B0B49D;
  --olive-charcoal: #454F40;
  --verdigris: #4A8778;
  --patina: #538A7B;
  --deep-pine: #1B3C35;

  /* Functional */
  --func-red: #DC2626;
  --func-red-bg: #FEF2F2;
  --func-green: #16A34A;
  --func-green-bg: #F0FDF4;
  --func-yellow: #CA8A04;
  --func-yellow-bg: #FEFCE8;

  /* Product accent — vibecheck = amber */
  --accent: #D68B38;
  --accent-deep: #A86A26;
  --accent-bg: rgba(214, 139, 56, 0.08);

  /* Page */
  --bg: #F4EBD9;          /* paper, slightly lighter than cream */
  --surface: #FFFFFF;     /* cards / forms */
  --ink: #2C342A;         /* primary text — deeper than olive-charcoal for contrast */
  --ink-muted: #6B7464;
  --hairline: rgba(69, 79, 64, 0.18);
  --hairline-strong: rgba(69, 79, 64, 0.35);

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px;

  /* Grid */
  --grid-max-width: 1200px;
  --grid-margin: 24px;
  --grid-margin-lg: 48px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box }
html, body { margin: 0; padding: 0 }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: var(--text-3xl); line-height: 1.15; letter-spacing: -0.02em }
h2 { font-size: var(--text-2xl); margin-top: var(--space-12); margin-bottom: var(--space-4) }
h3 { font-size: var(--text-lg); margin-top: var(--space-6); margin-bottom: var(--space-2) }
h4 { font-size: var(--text-base); font-weight: 600 }

p { margin: var(--space-4) 0; max-width: 65ch }
a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--hairline-strong); text-underline-offset: 3px; transition: color 0.15s, text-decoration-color 0.15s }
a:hover { color: var(--accent-deep); text-decoration-color: var(--accent) }
strong { font-weight: 600 }
small, .meta { font-size: var(--text-sm); color: var(--ink-muted) }

ul, ol { padding-left: 24px; line-height: 1.65; max-width: 65ch }
li { margin: var(--space-2) 0 }
ul.unstyled { list-style: none; padding: 0 }

code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--surface);
  padding: 1px 5px;
  border: 1px solid var(--hairline);
  border-radius: 0;
  white-space: nowrap;
  word-break: break-all;
}
pre {
  background: #2C342A;
  color: #E8DAC0;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.6;
  padding: var(--space-5) var(--space-6);
  border-radius: 0;
  overflow-x: auto;
  margin: var(--space-5) 0;
}
pre code { background: transparent; border: none; padding: 0; white-space: pre; word-break: normal }

blockquote {
  border-left: 3px solid var(--ink-muted);
  padding: var(--space-1) var(--space-5);
  margin: var(--space-5) 0;
  color: var(--ink-muted);
  max-width: 65ch;
}

/* ── Layout ── */
.container { max-width: var(--grid-max-width); margin: 0 auto; padding: 0 var(--grid-margin) }
@media (min-width: 720px) { .container { padding: 0 var(--grid-margin-lg) } }

main {
  padding: var(--space-12) 0 var(--space-24);
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--grid-margin);
  padding-right: var(--grid-margin);
}

/* ── Top nav ── */
.nav {
  height: 64px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--grid-margin);
  max-width: var(--grid-max-width);
  margin: 0 auto;
}
@media (min-width: 720px) { .nav { padding: 0 var(--grid-margin-lg) } }

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); text-decoration: none }
.brand-mark {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  transform: translateY(2px);
}
.brand-mark::after {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--ink); opacity: 0.55;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: var(--text-sm);
}
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink) }
.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* ── Mobile nav toggle ── */
/* The toggle is a hidden checkbox; the label is a hamburger icon.
   On desktop the checkbox + label are display:none and the links sit
   inline as usual. Below 720px the inline links collapse into a
   dropdown panel toggled by the checkbox. No JS required. */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 32px; height: 32px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-left: var(--space-3);
  border: 1px solid var(--hairline);
  background: transparent;
}
.nav-toggle-label::before,
.nav-toggle-label::after,
.nav-toggle-label span {
  content: '';
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}
.nav-toggle-label::before { top: 9px; }
.nav-toggle-label span    { top: 15px; }
.nav-toggle-label::after  { top: 21px; }

@media (max-width: 720px) {
  /* The nav itself becomes the positioning context. */
  .nav { position: relative; }

  .nav-toggle-label { display: inline-block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    /* Hidden by default; toggled on by the checkbox. */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
    z-index: 50;
  }
  .nav-links a {
    padding: 12px var(--grid-margin);
    border-top: 1px solid var(--hairline);
    color: var(--ink);
    font-size: var(--text-base, 16px);
    font-weight: 500;
  }
  .nav-links a:first-child { border-top: 0; }

  .nav-toggle:checked ~ .nav-links {
    max-height: 80vh;
  }
  /* Animate the hamburger into an "X" when open. */
  .nav-toggle:checked ~ .nav-toggle-label::before {
    top: 15px;
    transform: rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label::after {
    top: 15px;
    transform: rotate(-45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span {
    opacity: 0;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, border-color 0.15s, color 0.15s, background 0.15s;
}
.btn:hover { text-decoration: none }
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-primary:hover { opacity: 0.85; color: var(--ink) }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink) }

/* ── Form ── */
form.scan {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-8) 0 var(--space-12);
  max-width: 560px;
}
input[type="url"], input[type="text"], input[type="email"], textarea {
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-radius: 0;
  color: var(--ink);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input[type="url"]:focus, input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
form label.consent {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}
form label.consent input[type="checkbox"] { margin-top: 4px; accent-color: var(--accent) }
form .spinner {
  display: none; align-items: center; gap: 10px;
  color: var(--ink-muted); font-size: var(--text-sm);
}
form .spinner.active { display: flex }
form .spinner::before {
  content: ''; width: 12px; height: 12px;
  border: 2px solid var(--ink-muted); border-top-color: transparent;
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: var(--space-6) var(--space-8);
  border-radius: 0;
  margin: var(--space-3) 0;
}
.card.accented { border-left: 3px solid var(--accent) }
.card h3 { margin-top: 0 }

/* ── Severity / status indicators ── */
/* Sharp-cornered, uppercase, hairline border. No pills. */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ink);
}
.tag.crit { color: var(--func-red); border-color: var(--func-red) }
.tag.high { color: var(--accent-deep); border-color: var(--accent-deep) }
.tag.med  { color: var(--func-yellow); border-color: var(--func-yellow) }
.tag.low  { color: var(--func-green); border-color: var(--func-green) }
.tag.info { color: var(--ink-muted); border-color: var(--hairline-strong) }
.tag.solid {
  background: var(--accent); color: var(--ink); border-color: var(--accent);
}

/* ── Grade box ── */
.grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
}
.grade.F, .grade.D { border-color: var(--func-red); color: var(--func-red) }
.grade.C { border-color: var(--func-yellow); color: var(--func-yellow) }
.grade.A, .grade.B { border-color: var(--func-green); color: var(--func-green) }

.grade-row { display: flex; align-items: center; gap: var(--space-5); margin: var(--space-6) 0 var(--space-8) }
.grade-row h1 { font-size: var(--text-xl); letter-spacing: -0.01em }
.grade-row .meta-line { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-1) }

/* ── Findings list ── */
ul.findings {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
  border-top: 1px solid var(--hairline);
}
ul.findings li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
ul.findings li .case {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
ul.findings .meta { display: block; margin-top: var(--space-1) }

/* ── Details / autofix ── */
details {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-4) 0;
  border-radius: 0;
}
details > summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 2px 0;
}
details > summary::-webkit-details-marker { display: none }
details > summary::before {
  content: "+";
  display: inline-block;
  width: 14px;
  font-family: var(--font-mono);
  color: var(--ink-muted);
  font-weight: 400;
}
details[open] > summary::before { content: "−" }
details > pre { margin-top: var(--space-3); margin-bottom: 0; max-height: 480px }

.actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin: var(--space-3) 0 var(--space-2) }

/* ── FAQ blocks ── */
.faq { margin: var(--space-8) 0 }
.faq details { background: var(--surface); padding: var(--space-4) var(--space-5) }
.faq summary { font-weight: 600 }
.faq details > p { margin: var(--space-3) 0 0 22px; color: var(--ink) }

/* ── Banners / callouts ── */
.banner {
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--accent);
  background: var(--accent-bg);
  padding: var(--space-3) var(--space-5);
  margin: var(--space-6) 0;
  font-size: var(--text-sm);
  color: var(--ink);
}
.callout { background: var(--surface); border: 1px solid var(--hairline); padding: var(--space-4) var(--space-5); margin: var(--space-5) 0 }
.callout.crit { border-left: 3px solid var(--func-red) }
.callout.warn { border-left: 3px solid var(--accent) }

/* ── Quick answer (article hero block) ── */
.quick-answer {
  background: var(--surface);
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--accent);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-6) 0 var(--space-10);
  font-size: var(--text-base);
}
.quick-answer .label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-2);
}

/* ── Article page ── */
article {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-12) var(--grid-margin) var(--space-24);
}
article .byline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--hairline);
}
article .lede { font-size: var(--text-lg); color: var(--ink-muted); margin: var(--space-5) 0 var(--space-8); max-width: 60ch }
article hr { border: none; border-top: 1px solid var(--hairline); margin: var(--space-12) 0 }
article h1 { font-size: var(--text-3xl) }
@media (min-width: 720px) { article h1 { font-size: var(--text-4xl) } }

.related { background: var(--surface); border: 1px solid var(--hairline); padding: var(--space-5) var(--space-6); margin-top: var(--space-12) }
.related h3 { font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 var(--space-3) }
.related ul { list-style: none; padding: 0; margin: 0 }
.related li { padding: var(--space-2) 0; border-bottom: 1px solid var(--hairline) }
.related li:last-child { border-bottom: none }
.related li a { color: var(--ink); text-decoration: none }
.related li a:hover { color: var(--accent-deep); text-decoration: underline }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--hairline);
  padding: var(--space-8) var(--grid-margin);
  max-width: var(--grid-max-width);
  margin: var(--space-16) auto 0;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer a { color: var(--ink-muted); text-decoration: underline; text-decoration-color: var(--hairline-strong) }
.footer a:hover { color: var(--ink) }
.endorsement { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-muted) }

/* ── Misc ── */
.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.divider {
  height: 1px;
  background: var(--hairline);
  margin: var(--space-12) 0;
  position: relative;
}
.divider::before {
  content: ''; position: absolute; left: 50%; top: -3px;
  width: 7px; height: 7px; background: var(--accent);
  transform: translateX(-50%);
}

/* ────────────────────────────────────────────────────────────────────
 * Section / hero primitives — used by top-level pages that opt out of
 * the narrow 720px main column. Page sets `main { max-width: none;
 * padding: 0 }` inline, then composes a flow of <section class="section
 * section--cream|--surface"> blocks. Each section has clamp() vertical
 * padding so it breathes at all viewports.
 * ──────────────────────────────────────────────────────────────────── */
.section {
  padding: clamp(56px, 10vh, 112px) var(--grid-margin);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 720px) { .section { padding-left: var(--grid-margin-lg); padding-right: var(--grid-margin-lg) } }
.section:last-of-type { border-bottom: 0 }
.section-inner { max-width: 1100px; margin: 0 auto }
.section-inner.narrow { max-width: 760px }
.section--surface { background: var(--surface) }
.section--cream   { background: var(--bg) }
.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream) }
.section--ink p { color: rgba(232, 218, 192, 0.78) }
.section--ink .eyebrow { color: rgba(232, 218, 192, 0.55) }
.section--ink a { color: var(--accent); text-decoration-color: rgba(214, 139, 56, 0.4) }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 var(--space-5);
}
.eyebrow .accent { color: var(--accent) }

/* Display-class headline for page heroes. Use sparingly — one per page. */
.display {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-5);
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--accent-deep) }

/* Section sub-heading (smaller than display, bigger than h2 default). */
.section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
  line-height: 1.15;
}
.section h2:not(:first-child) { margin-top: var(--space-8) }

/* Lede paragraph used at the top of sections. */
.lede-large {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 var(--space-7);
}

/* Hero grid — used for two-column hero rows on homepage and page headers. */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px } }

/* Two-column content row for "copy + visual" sections below the hero. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px } }

/* Dark code snippet block used in agent / API sections. */
.snippet {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  padding: 22px 24px;
  overflow-x: auto;
  margin: 0;
}
.snippet .c { color: rgba(232, 218, 192, 0.45) }
.snippet .k { color: var(--accent) }
.snippet .s { color: var(--cream) }

/* Stats row — numbers + labels, used by /pricing and /agents tier breakdowns. */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--hairline);
  background: var(--surface);
  margin: var(--space-7) 0;
}
.stats-row > div {
  padding: var(--space-5) var(--space-6);
  border-right: 1px solid var(--hairline);
}
.stats-row > div:last-child { border-right: 0 }
.stats-row .num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
.stats-row .num small { font-size: 0.6em; color: var(--ink-muted); font-weight: 400 }
.stats-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 4px 0 0;
}

/* Tier card grid for /pricing. */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.tier {
  padding: var(--space-7) var(--space-6) var(--space-6);
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}
.tier:last-child { border-right: 0 }
@media (max-width: 800px) { .tier { border-right: 0; border-bottom: 1px solid var(--hairline) } }
.tier.featured { background: var(--accent-bg); position: relative }
.tier.featured::before {
  content: "Recommended";
  position: absolute; top: -1px; right: -1px;
  background: var(--accent); color: var(--ink);
  padding: 4px 10px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.tier h3 { margin: 0 0 var(--space-3); font-size: var(--text-lg) }
.tier .price {
  font-family: var(--font-mono);
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--space-1);
  line-height: 1;
}
.tier .price small { font-size: 0.5em; color: var(--ink-muted); margin-left: 4px; font-family: var(--font-mono) }
.tier .price-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-muted); margin: 0 0 var(--space-5); text-transform: uppercase }
.tier ul { list-style: none; padding: 0; margin: 0 0 var(--space-6); flex: 1 }
.tier ul li {
  padding: var(--space-2) 0 var(--space-2) 22px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  color: var(--ink-muted);
  position: relative;
  line-height: 1.45;
  margin: 0;
}
.tier ul li:last-child { border-bottom: 0 }
.tier ul li::before {
  content: "→";
  position: absolute; left: 0; top: var(--space-2);
  color: var(--accent-deep);
  font-family: var(--font-mono);
}
.tier ul li.no::before { content: "—"; color: var(--ink-muted); opacity: 0.5 }

/* ── Posts list (blog index) ── */
.posts { margin: var(--space-8) 0 0; border-top: 1px solid var(--hairline) }
.post { padding: var(--space-6) 0; border-bottom: 1px solid var(--hairline); display: grid; grid-template-columns: 120px 1fr; gap: var(--space-6); align-items: start }
@media (max-width: 600px) { .post { grid-template-columns: 1fr; gap: var(--space-2) } }
.post .post-meta { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.04em; color: var(--ink-muted); text-transform: uppercase }
.post .post-title { font-size: var(--text-lg); font-weight: 600; color: var(--ink); text-decoration: none; display: block; margin-bottom: var(--space-1); line-height: 1.3 }
.post .post-title:hover { color: var(--accent-deep); text-decoration: underline }
.post .post-desc { color: var(--ink-muted); font-size: var(--text-base); margin: var(--space-2) 0 0 }
