/* catchupdepreciation.com — style (vanilla port of Claude Design prototype) */

:root {
  --bg-dark: #0a1628;
  --bg-dark-2: #0d1c33;
  --bg-light: #f7f6f2;
  --surface: #ffffff;
  --ink: #0e1620;
  --ink-2: #2a3440;
  --ink-3: #5a6776;
  --ink-on-dark: #f4f1ea;
  --ink-on-dark-2: #b8c2d1;
  --ink-on-dark-3: #6c7a90;
  --line-dark: rgba(255,255,255,0.08);
  --line-dark-2: rgba(255,255,255,0.14);
  --line-light: #e7e4dc;
  --line-light-2: #d2cec3;
  --accent: #10b981;
  --accent-deep: #0a8a64;
  --accent-soft: rgba(16,185,129,0.12);
  --warn: #d4a574;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-card: 0 1px 0 rgba(10,22,40,0.04), 0 8px 24px rgba(10,22,40,0.06);
}

/* Mobile baseline (network-wide) */
input:not([type=hidden]), select, textarea {
  font-size: 16px !important;
}
nav a, .nav a, button {
  min-height: 44px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  color: var(--ink);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.tabnum { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; }

/* Header */
.site-header {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  border-bottom: 1px solid var(--line-dark);
  position: sticky; top: 0; z-index: 50;
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; font-size: 17px; }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-name-accent { color: var(--ink-on-dark-2); font-weight: 500; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--ink-on-dark-2); font-size: 14.5px; font-weight: 500; transition: color 0.15s; padding: 8px 0; }
.site-nav a:hover { color: var(--ink-on-dark); }
.nav-cta { background: var(--accent); color: #052e22 !important; padding: 9px 16px; border-radius: 8px; font-weight: 600 !important; }
.nav-cta:hover { background: #0fc78f; }
@media (max-width: 720px) { .site-nav a:not(.nav-cta) { display: none; } }

/* Hero */
.hero {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(16,185,129,0.10), transparent 60%),
    radial-gradient(700px 300px at 10% 110%, rgba(16,185,129,0.06), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-on-dark-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark-2);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 28px;
}
.hero-eyebrow .pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.22);
}
.h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.04; letter-spacing: -0.025em; font-weight: 700;
  margin: 0 0 24px; max-width: 18ch; text-wrap: balance;
}
.h1 .h1-accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink-on-dark-2);
  max-width: 60ch; margin: 0 0 40px; line-height: 1.55;
}
.hero-sub strong { color: var(--ink-on-dark); font-weight: 600; }

/* Calculator */
.calc-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.calc-wrap-inline { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); }
.calc-collapsed { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.calc-collapsed-meta { color: var(--ink-on-dark-3); font-size: 13.5px; }
.calc-expanded { display: flex; flex-direction: column; gap: 24px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field-label { font-size: 13px; font-weight: 500; color: var(--ink-on-dark-2); letter-spacing: 0.005em; }
@media (max-width: 640px) { .calc-grid { grid-template-columns: 1fr; } }

.input, .select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark-2);
  color: var(--ink-on-dark);
  padding: 13px 14px;
  border-radius: 9px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.input:focus, .select:focus { border-color: var(--accent); background: rgba(16,185,129,0.06); }
.select { appearance: none; -webkit-appearance: none; padding-right: 38px; }
.select-wrap { position: relative; }
.select-chev { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--ink-on-dark-3); pointer-events: none; }

.money-input { position: relative; display: flex; align-items: center; }
.money-prefix { position: absolute; left: 14px; color: var(--ink-on-dark-3); font-weight: 500; pointer-events: none; }
.input-money { padding-left: 28px; font-variant-numeric: tabular-nums; font-weight: 500; }

.seg-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark-2);
  padding: 4px; border-radius: 9px;
}
.seg {
  background: transparent; border: 0;
  color: var(--ink-on-dark-2);
  padding: 9px 0; border-radius: 6px;
  font-weight: 500; font-size: 14px;
  transition: all 0.15s;
  font-variant-numeric: tabular-nums;
  min-height: 44px;
}
.seg:hover { color: var(--ink-on-dark); }
.seg-active { background: var(--accent); color: #052e22; }

.radio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 640px) { .radio-row { grid-template-columns: 1fr; } }
.radio {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark-2);
  color: var(--ink-on-dark-2);
  padding: 13px 14px; border-radius: 9px;
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 500;
  transition: all 0.15s;
}
.radio:hover { border-color: rgba(255,255,255,0.25); color: var(--ink-on-dark); }
.radio-dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--ink-on-dark-3); flex-shrink: 0; transition: all 0.15s; }
.radio-active { border-color: var(--accent); background: rgba(16,185,129,0.08); color: var(--ink-on-dark); }
.radio-active .radio-dot { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px var(--bg-dark); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 9px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #042418; box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 1px 2px rgba(0,0,0,0.1); }
.btn-primary:hover { background: #0fc78f; transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 6px 18px rgba(16,185,129,0.3); }
.btn-large { padding: 14px 22px; font-size: 15.5px; }
.btn-xl { padding: 16px 28px; font-size: 16.5px; border-radius: 10px; }
.btn-ghost { background: transparent; color: var(--ink-on-dark-2); border-color: var(--line-dark-2); }
.btn-ghost:hover { color: var(--ink-on-dark); }

.calc-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Result card */
.result-card {
  margin-top: 8px;
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 22px;
  animation: result-in 0.4s ease;
}
@keyframes result-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.result-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); }
.result-stack { display: flex; flex-direction: column; gap: 16px; }
.rrow { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line-light); }
.rrow:last-child { border-bottom: 0; padding-bottom: 0; }
.rrow-label { font-size: 14.5px; color: var(--ink-2); font-weight: 500; max-width: 60%; }
.rrow-value { font-weight: 600; letter-spacing: -0.02em; font-size: 28px; }
.rrow-hero .rrow-value { font-size: clamp(48px, 7vw, 88px); line-height: 1; font-weight: 700; letter-spacing: -0.03em; }
.rrow-hero .rrow-label { font-size: 15px; }
.rrow-accent .rrow-value { color: var(--accent-deep); }
.rrow-muted .rrow-value { color: var(--ink-2); font-size: 22px; }
.rrow-muted .rrow-label { color: var(--ink-3); }
.result-foot { font-size: 13px; color: var(--ink-3); }
.result-verdict-maybe { background: rgba(212,165,116,0.12); border-left: 3px solid var(--warn); padding: 12px 14px; border-radius: 4px; font-size: 14px; color: var(--ink-2); }
.countdown { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13.5px; color: var(--ink-3); padding-top: 4px; flex-wrap: wrap; }
.countdown-num { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #042418; font-weight: 700; font-variant-numeric: tabular-nums; font-size: 13px; }
.countdown-cancel { color: var(--ink-3); border-bottom: 1px solid var(--line-light-2); padding: 0 0 1px; transition: color 0.15s, border-color 0.15s; min-height: 0; }
.countdown-cancel:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }

/* Sections */
.section { padding: 96px 0; }
.section-head { margin-bottom: 48px; }
.eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; margin: 0 0 12px; max-width: 22ch; text-wrap: balance; }
.lede { font-size: 17px; color: var(--ink-2); max-width: 60ch; margin: 0; }

.section-answer { background: var(--bg-light); padding: 80px 0; }
.answer-card {
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  font-size: 18px; line-height: 1.7; color: var(--ink);
  box-shadow: var(--shadow-card);
  position: relative;
}
.answer-card::before { content: ''; position: absolute; left: 0; top: 24px; bottom: 24px; width: 3px; background: var(--accent); border-radius: 0 2px 2px 0; }
.answer-card p { margin: 0; padding-left: 12px; }
.answer-card .num { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--accent-deep); }
.answer-card strong { font-weight: 600; }

/* How it works */
.section-how { background: var(--surface); border-top: 1px solid var(--line-light); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 720px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { display: flex; flex-direction: column; gap: 12px; }
.how-num { font-variant-numeric: tabular-nums; font-size: 36px; font-weight: 700; color: var(--accent-deep); letter-spacing: -0.02em; line-height: 1; }
.how-title { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.how-body { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* Examples */
.section-examples { background: var(--surface); }
.ex-table { display: flex; flex-direction: column; border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.ex-row { display: grid; grid-template-columns: 2.4fr 1fr 0.9fr 0.9fr 1.1fr 1.3fr; gap: 16px; padding: 18px 24px; align-items: center; border-bottom: 1px solid var(--line-light); font-size: 14.5px; }
.ex-row:last-child { border-bottom: 0; }
.ex-head { background: #faf9f5; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); padding-top: 14px; padding-bottom: 14px; }
.ex-name { font-weight: 600; color: var(--ink); font-size: 15px; }
.ex-sub { color: var(--ink-3); font-size: 13px; margin-top: 2px; }
.num-col { text-align: right; }
.num-strong { font-weight: 600; color: var(--ink); font-size: 16px; }
.num-accent { font-weight: 600; color: var(--accent-deep); font-size: 16px; }
@media (max-width: 820px) {
  .ex-row { grid-template-columns: 1fr 1fr; gap: 6px 16px; padding: 16px 18px; }
  .ex-head { display: none; }
  .ex-row [role="cell"]:first-child { grid-column: 1 / -1; margin-bottom: 6px; }
  .num-col { text-align: left; }
}
.ex-cta-row { margin-top: 32px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.link-arrow { font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line-light-2); padding-bottom: 1px; transition: color 0.15s, border-color 0.15s; }
.link-arrow:hover { color: var(--accent-deep); border-color: var(--accent); }

/* Compare */
.section-compare { background: var(--bg-light); }
.cmp-table { border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.cmp-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--line-light); }
.cmp-row:last-child { border-bottom: 0; }
.cmp-cell { padding: 18px 24px; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.cmp-feat { color: var(--ink-3); font-weight: 500; background: #faf9f5; }
.cmp-a { background: rgba(16,185,129,0.04); color: var(--ink); font-weight: 500; border-left: 1px solid var(--line-light); border-right: 1px solid var(--line-light); }
.cmp-b { color: var(--ink-2); }
.cmp-head { background: #faf9f5; }
.cmp-head .cmp-cell { flex-direction: column; align-items: flex-start; gap: 8px; padding: 24px; }
.cmp-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; background: var(--line-light); color: var(--ink-3); }
.cmp-tag-good { background: var(--accent-soft); color: var(--accent-deep); }
.cmp-title { font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.cmp-pip { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); flex-shrink: 0; opacity: 0.5; }
.cmp-pip-good { background: var(--accent); opacity: 1; }
.cmp-foot { margin-top: 24px; font-size: 16px; color: var(--ink-2); max-width: 70ch; line-height: 1.6; }
@media (max-width: 720px) {
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-cell { padding: 12px 18px; }
  .cmp-feat { font-weight: 600; color: var(--ink); }
  .cmp-a, .cmp-b { border-left: 0; border-right: 0; }
}

/* Guides grid */
.section-guides { background: var(--surface); border-top: 1px solid var(--line-light); }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .guides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .guides-grid { grid-template-columns: 1fr; } }
.guide-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; border: 1px solid var(--line-light); border-radius: var(--radius-lg); transition: border-color 0.15s, transform 0.1s; }
.guide-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.guide-eyebrow { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); }
.guide-title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
.guide-meta { font-size: 13px; color: var(--ink-3); margin-top: auto; }

/* FAQ */
.section-faq { background: var(--surface); }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: transparent; border: 0; padding: 22px 4px; font-size: 17px; font-weight: 500; color: var(--ink); text-align: left; letter-spacing: -0.005em; }
.faq-chev { color: var(--ink-3); display: inline-flex; transition: transform 0.2s; font-size: 18px; }
.faq-open .faq-chev { transform: rotate(180deg); color: var(--accent-deep); }
.faq-a { padding: 0 4px 22px; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; max-width: 70ch; display: none; }
.faq-open .faq-a { display: block; }

/* Final CTA */
.section-final { background: var(--bg-dark); color: var(--ink-on-dark); padding: 120px 0; position: relative; overflow: hidden; }
.section-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 400px at 50% 100%, rgba(16,185,129,0.14), transparent 60%); pointer-events: none; }
.section-final > * { position: relative; }
.final-eyebrow { font-size: clamp(24px, 3vw, 36px); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 28px; }
.final-number { font-size: clamp(96px, 14vw, 180px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--accent); margin-bottom: 16px; }
.final-sub { color: var(--ink-on-dark-2); font-size: 17px; margin-bottom: 36px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.trust-strip { margin-top: 32px; display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 14px; font-size: 13px; color: var(--ink-on-dark-3); }
.trust-strip .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-on-dark-3); }

/* Footer */
.site-footer { background: #050d1a; color: var(--ink-on-dark-2); padding: 64px 0 32px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--ink-on-dark-2); font-size: 14px; transition: color 0.15s; padding: 4px 0; }
.footer-col a:hover { color: var(--ink-on-dark); }
.footer-h { color: var(--ink-on-dark); font-weight: 600; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--ink-on-dark); font-weight: 600; margin-bottom: 12px; }
.footer-disclosure { font-size: 13.5px; color: var(--ink-on-dark-3); line-height: 1.6; max-width: 38ch; margin: 0; }
.footer-disclosure a { color: var(--ink-on-dark-2); border-bottom: 1px solid var(--line-dark-2); }
.footer-fine { font-size: 12.5px; color: var(--ink-on-dark-3); border-top: 1px solid var(--line-dark); padding-top: 24px; }

/* Guide series strip (horizontal nav at top of every guide) */
.guide-series { background: var(--bg-light); border-bottom: 1px solid var(--line-light); padding: 24px 0; }
.guide-series-head { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.guide-series-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 1000px) { .guide-series-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .guide-series-list { grid-template-columns: repeat(2, 1fr); } }
.guide-series-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 0.15s, transform 0.1s, background 0.15s;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-2);
  font-weight: 500;
  min-height: 44px;
}
.guide-series-item:hover { border-color: var(--accent); transform: translateY(-1px); }
.guide-series-num { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--accent-deep); }
.guide-series-item.is-active { background: var(--bg-dark); color: var(--ink-on-dark); border-color: var(--bg-dark); }
.guide-series-item.is-active .guide-series-num { color: var(--accent); }

/* Guides index page (the "all guides" landing page) */
.guides-index { background: var(--surface); padding: 64px 0 96px; min-height: 80vh; }
.guides-index-header { margin-bottom: 48px; }
.guides-index-eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.guides-index-h1 { font-size: clamp(32px, 4.4vw, 48px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 16px; max-width: 28ch; }
.guides-index-lede { font-size: 17px; color: var(--ink-2); max-width: 60ch; margin: 0; }
.guides-index-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .guides-index-list { grid-template-columns: 1fr; } }
.guides-index-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; border: 1px solid var(--line-light); border-radius: var(--radius-lg); transition: border-color 0.15s, transform 0.1s; }
.guides-index-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.guides-index-num { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--accent-deep); }
.guides-index-title { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; color: var(--ink); }
.guides-index-desc { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.guides-index-meta { font-size: 13px; color: var(--ink-3); margin-top: auto; padding-top: 8px; }

/* Article (blog post) styles */
.article { background: var(--surface); padding: 64px 0 96px; min-height: 80vh; }
.article-header { margin-bottom: 48px; }
.article-eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.article-h1 { font-size: clamp(32px, 4.4vw, 48px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; margin: 0 0 16px; max-width: 28ch; }
.article-meta { font-size: 14px; color: var(--ink-3); }
.article-body { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.article-body h2 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin: 48px 0 16px; line-height: 1.25; }
.article-body h3 { font-size: 19px; font-weight: 600; color: var(--ink); margin: 32px 0 12px; }
.article-body p { margin: 0 0 20px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--accent-deep); border-bottom: 1px solid var(--accent-soft); }
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body .callout { background: var(--bg-light); border-left: 3px solid var(--accent); padding: 16px 20px; margin: 24px 0; border-radius: 0 6px 6px 0; font-size: 16px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.article-body th, .article-body td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line-light); }
.article-body th { background: var(--bg-light); font-weight: 600; color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.article-cta { background: var(--bg-dark); color: var(--ink-on-dark); padding: 32px; border-radius: var(--radius-lg); margin: 48px 0; }
.article-cta-h { font-size: 22px; font-weight: 600; margin: 0 0 12px; color: var(--ink-on-dark); letter-spacing: -0.01em; }
.article-cta p { margin: 0 0 20px; color: var(--ink-on-dark-2); font-size: 15px; }
.article-cta .btn { margin-right: 12px; }
.article-related { padding: 48px 0; border-top: 1px solid var(--line-light); margin-top: 48px; }
.article-related-h { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.article-related-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .article-related-list { grid-template-columns: 1fr; } }
.article-related-list a { display: block; padding: 16px 20px; border: 1px solid var(--line-light); border-radius: 10px; font-weight: 500; color: var(--ink); transition: border-color 0.15s; }
.article-related-list a:hover { border-color: var(--accent); }

/* Consent banner (network-standard) */
#cs-consent-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 640px; margin: 0 auto;
  background: var(--bg-dark); color: var(--ink-on-dark);
  border: 1px solid var(--line-dark-2);
  border-radius: 12px; padding: 16px 20px;
  font-size: 14px; line-height: 1.5;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 1000;
}
#cs-consent-banner p { margin: 0; flex: 1; min-width: 240px; color: var(--ink-on-dark-2); }
#cs-consent-banner a { color: var(--accent); text-decoration: underline; }
#cs-consent-banner button { padding: 8px 14px; border-radius: 7px; font-size: 13px; font-weight: 500; border: 1px solid var(--line-dark-2); background: transparent; color: var(--ink-on-dark); }
#cs-consent-banner button.cs-accept { background: var(--accent); color: #052e22; border-color: var(--accent); font-weight: 600; }

/* Utility */
.spacer-lg { height: 96px; }
