/* ============================================================
   ArkForge MCP — Design System "Official Journal"
   Aesthetic: EU regulatory authority meets developer terminal
   Typography: Playfair Display × IBM Plex Sans × IBM Plex Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; }
a { color: inherit; }

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  /* Paper */
  --paper:        #faf8f2;
  --paper-1:      #f4f0e6;
  --paper-2:      #ece6d4;
  --paper-ink:    #141420;

  /* Ink */
  --ink:          #141420;
  --ink-2:        #2d3047;
  --ink-muted:    #6b6f80;
  --ink-faint:    #9fa3b0;

  /* Rules */
  --rule:         #d8d2c0;
  --rule-strong:  #b4a890;

  /* Signal */
  --red:          #c41a1a;
  --red-deep:     #991414;
  --red-bg:       #fef5f5;
  --red-border:   #f4a4a4;

  --gold:         #9d7c2e;
  --gold-deep:    #7a5f1e;
  --gold-bg:      #fefaed;
  --gold-border:  #e8cb7c;

  --navy:         #1a3a8f;
  --navy-bg:      #f0f4ff;
  --navy-border:  #a0b4e8;

  --green:        #1a6641;
  --green-bg:     #f0fdf6;
  --green-border: #86c4a4;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-ui:      'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max-w:      1240px;
  --col-gap:    clamp(1.5rem, 4vw, 3rem);
}

/* ── Base ────────────────────────────────────────────────────── */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
code, pre { font-family: var(--font-mono); }
ul { list-style: none; }

/* ── Masthead ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.masthead-ticker {
  background: var(--red);
  color: #fff;
  padding: 0.45rem var(--col-gap);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.ticker-badge {
  background: rgba(255,255,255,0.18);
  padding: 0.15rem 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.65rem;
}
.ticker-count {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}
.ticker-text { opacity: 0.88; white-space: nowrap; }

.masthead-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.9rem var(--col-gap);
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
}
.masthead-meta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-family: var(--font-ui);
}
.site-logo, .masthead-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  text-align: center;
  display: block;
}
.masthead-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
}
.lang-switch {
  display: flex;
  gap: 0.5rem;
}
.lang-switch a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: all 0.15s;
}
.lang-switch a.active,
.lang-switch a:hover { color: var(--ink); border-color: var(--ink); }

.site-nav {
  padding: 0 var(--col-gap);
  display: flex;
  align-items: center;
  min-height: 0;
}
.site-nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  padding: 0.55rem 0;
  flex: 1;
}
.site-nav-links li { margin: 0; }
.site-nav-links a {
  display: block;
  padding: 0.3rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s;
  border-right: 1px solid var(--rule);
}
.site-nav-links li:first-child a { border-left: 1px solid var(--rule); }
.site-nav-links a:hover,
.site-nav-links a.active { color: var(--ink); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.menu-toggle span { display: block; width: 20px; height: 1px; background: var(--ink); }

/* ── Hero ────────────────────────────────────────────────────── */
.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) var(--col-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-bottom: 1px solid var(--rule);
}
.hero-left {}
.hero-right { position: relative; }

.kicker {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before { content: ''; display: block; width: 1.8rem; height: 1px; background: var(--red); }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2.5rem;
}
.hero-stat {
  background: var(--paper);
  padding: 1.4rem 1.5rem;
}
.hero-stat:hover { background: var(--paper-1); }
.stat-number, .hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.2rem;
  letter-spacing: -0.03em;
}
.stat-number.urgent, .hero-stat-num.urgent { color: var(--red); }
.stat-label, .hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ── Terminal ─────────────────────────────────────────────────── */
.demo-terminal, .hero-terminal {
  background: #0d1117;
  border: 1px solid #30363d;
  overflow: hidden;
  position: sticky;
  top: 9rem;
}
.terminal-header {
  background: #161b22;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #30363d;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot.red   { background: #ff5f57; }
.terminal-dot.yellow{ background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #8b949e;
  margin-left: auto;
}
.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.85;
  color: #e6edf3;
  overflow-x: auto;
}
.t-prompt { color: #58a6ff; }
.t-cmd    { color: #e6edf3; }
.t-comment{ color: #8b949e; }
.t-ok     { color: #3fb950; }
.t-warn   { color: #d29922; }
.t-err    { color: #f85149; }
.t-val    { color: #79c0ff; }
.t-key    { color: #d2a8ff; }
.t-sec    { color: #ffa657; }
/* backward compat */
.prompt   { color: #58a6ff; }
.cmd      { color: #e6edf3; }
.output   { color: #8b949e; }
.success  { color: #3fb950; }
.warning  { color: #d29922; }
.danger   { color: #f85149; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.cursor::after { content: '▋'; animation: blink 1s step-end infinite; color: #3fb950; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-red, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

/* ── Section wrappers ─────────────────────────────────────────── */
.content-wrapper, .section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--col-gap);
}
.section-full { padding: clamp(2.5rem, 5vw, 4.5rem) var(--col-gap); }
.section-border { border-top: 1px solid var(--rule); }
.section-border-strong { border-top: 2px solid var(--rule-strong); }

.section-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.section-subtitle, .section-body {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── Feature / Info Cards ─────────────────────────────────────── */
.grid-3, .grid-2 {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card, .stat-card, .card {
  background: var(--paper);
  padding: 2rem;
  transition: background 0.15s;
}
.feature-card:hover, .stat-card:hover, .card:hover { background: var(--paper-1); }

.card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--rule-strong);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.04em;
}
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}
.card-title, .feature-card h3 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.card-body, .feature-card p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; }

.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  margin-top: 0.75rem;
}
.tag-red   { background: var(--red-bg);  color: var(--red);  border: 1px solid var(--red-border); }
.tag-gold  { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-border); }
.tag-navy  { background: var(--navy-bg); color: var(--navy); border: 1px solid var(--navy-border); }
.tag-green { background: var(--green-bg); color: var(--green); border: 1px solid var(--green-border); }

/* ── Risk / Urgency Banner ────────────────────────────────────── */
.risk-banner {
  background: var(--red);
  color: #fff;
}
.risk-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) var(--col-gap);
  text-align: center;
}
.risk-banner .section-label {
  color: rgba(255,255,255,0.55);
  justify-content: center;
}
.risk-banner .section-label::before {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.25);
}
.risk-banner .section-label::after { background: rgba(255,255,255,0.25); }
.risk-banner .section-title, .fine-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.fine-amount { font-size: clamp(3rem, 7vw, 5.5rem); }
.risk-banner .section-body { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 auto 2rem; }

/* Countdown */
.countdown-display {
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
  margin: 2rem 0;
}
.countdown-unit {
  padding: 1.2rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  min-width: 100px;
}
.countdown-unit:last-child { border-right: none; }
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
  display: block;
  margin-top: 0.4rem;
}

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2rem;
}
.pricing-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--paper);
}

.pricing-plan {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.pricing-card.featured .pricing-plan { color: rgba(250,248,242,0.45); }

.price {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 0.2rem;
}
.price span {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-muted);
}
.pricing-card.featured .price { color: var(--paper); }
.pricing-card.featured .price span { color: rgba(250,248,242,0.45); }

.pricing-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}
.pricing-card.featured .pricing-desc { color: rgba(250,248,242,0.55); }

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--ink-2);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-card.featured .pricing-features li {
  color: rgba(250,248,242,0.8);
  border-color: rgba(250,248,242,0.1);
}
.pricing-features li::before {
  content: '—';
  color: var(--ink-faint);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.05rem;
}
.pricing-card.featured .pricing-features li::before { color: rgba(250,248,242,0.3); }

/* ── Code blocks ──────────────────────────────────────────────── */
.code-block, pre.code {
  background: #0d1117;
  border: 1px solid #30363d;
  padding: 1.4rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.85;
  color: #e6edf3;
  overflow-x: auto;
}
.code-label {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

/* ── Product card (framework guides) ─────────────────────────── */
.product-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s;
}
.product-card:hover { border-color: var(--rule-strong); background: var(--paper-1); }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.product-card p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; }

/* ── CTA section ──────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--col-gap);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.75rem;
}
.cta-section p { color: rgba(250,248,242,0.6); max-width: 52ch; margin: 0 auto 2rem; }

/* ── Install/steps ────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2rem;
  counter-reset: step;
}
.step {
  background: var(--paper);
  padding: 2rem;
  counter-increment: step;
  position: relative;
}
.step:hover { background: var(--paper-1); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--rule-strong);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.step h3 {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.step p { font-size: 0.87rem; color: var(--ink-muted); line-height: 1.6; }

/* ── Highlight box ────────────────────────────────────────────── */
.highlight-box {
  background: var(--paper-1);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--ink-2);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.65;
}
.highlight-box.red  { border-left-color: var(--red);  background: var(--red-bg); }
.highlight-box.gold { border-left-color: var(--gold); background: var(--gold-bg); }
.highlight-box.navy { border-left-color: var(--navy); background: var(--navy-bg); }

/* ── Article reference chip ───────────────────────────────────── */
.art-ref {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  background: var(--paper-1);
  border: 1px solid var(--rule);
  color: var(--ink-muted);
}
.art-ref.critical { background: var(--red-bg); border-color: var(--red-border); color: var(--red); }
.art-ref.gold     { background: var(--gold-bg); border-color: var(--gold-border); color: var(--gold); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  border-top: 2px solid var(--ink);
  padding: 1.75rem var(--col-gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--paper);
}
.footer-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.2rem 0.9rem;
  border-right: 1px solid var(--rule);
  transition: color 0.15s;
  font-weight: 500;
}
.footer-links a:first-child { padding-left: 0; }
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ── Page hero (non-homepage) ─────────────────────────────────── */
.page-hero-simple {
  padding: clamp(2.5rem, 5vw, 4rem) var(--col-gap);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.page-hero-simple h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.page-hero-simple p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* backward compat — old class names */
.gradient-text { color: var(--ink); }
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  background: var(--navy-bg);
  color: var(--navy);
  border: 1px solid var(--navy-border);
  margin-bottom: 1rem;
}
.last-updated { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 2rem; }
.content-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--col-gap);
}
.content-narrow .card {
  border: 1px solid var(--rule);
  padding: 2rem;
  margin-bottom: 1px;
}
.content-narrow .card h2 {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.content-narrow .card h3 { font-size: 0.9rem; font-weight: 600; margin: 1rem 0 0.4rem; color: var(--ink-2); }
.content-narrow .card p  { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 0.6rem; line-height: 1.65; }
.content-narrow .card ul { padding-left: 1.2rem; }
.content-narrow .card li { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 0.4rem; list-style: disc; }
.content-narrow .card a  { color: var(--navy); text-decoration: underline; }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fade-up 0.5s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.35s; }
.fade-up-4 { animation-delay: 0.5s; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; }
  .hero-right { position: static; display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps  { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .masthead-top { grid-template-columns: 1fr auto; }
  .masthead-meta { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .countdown-display { flex-wrap: wrap; }
  .countdown-unit { flex: 1; min-width: 80px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .menu-toggle { display: flex; }
  .site-nav-links { display: none; flex-direction: column; gap: 0; width: 100%; border-top: 1px solid var(--rule); }
  .site-nav-links.open { display: flex; }
  .site-nav-links a { border-right: none; border-left: none; border-bottom: 1px solid var(--rule); padding: 0.8rem 0; }
  .site-nav-links li:first-child a { border-left: none; }
}
