/* ==========================================================================
   simple4u.io — shared shell + component CSS
   Source of truth for tokens, nav, drawer, footer, hero, cards, forms.
   Page files keep only their page-specific rules in an inline <style>.
   Locked palette: Cobalt on Ivory (index.html :root, copied verbatim).
   Scale decisions: 2026-09-22 (DECISIONS approved by Slava).
   Allowed font sizes in page CSS: 11 · 13 · 15 · 17 · 19 · 20 px + var(--h1) / var(--h2).
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* --- locked Cobalt-on-Ivory tokens (verbatim from index.html) --- */
  --bg: #F0EDE4; --bg-elev: #F8F5EC; --bg-elev-2: #E6E1D4; --fg: #0B0E1A; --fg-muted: #3A4057; --fg-subtle: #6B7186; --accent: #3B3EDB; --accent-2: #5C5FEA; --accent-glow: rgba(59, 62, 219, 0.20); --border: rgba(11, 14, 26, 0.13); --border-strong: rgba(11, 14, 26, 0.24); --surface: rgba(11, 14, 26, 0.035); --surface-strong: rgba(11, 14, 26, 0.06); --border-subtle: rgba(11, 14, 26, 0.08); --display: 'JetBrains Mono', ui-monospace, monospace; --body: 'Inter', system-ui, -apple-system, sans-serif; --mono: 'JetBrains Mono', ui-monospace, monospace; --ease: cubic-bezier(.4, 0, .2, 1); --transition-fast: 200ms var(--ease); --radius: 14px; --radius-lg: 22px; --radius-full: 999px; --shell-max: 1180px;

  /* --- type scale (DECISIONS 2026-09-22) --- */
  --h1: clamp(40px, 5vw, 64px);      /* .hero h1, max-width 22ch */
  --h2: clamp(30px, 3vw, 40px);      /* .section-title, max-width 26ch */
  --h3: 20px;                        /* headings inside cards */
  --fs-lede: 19px;                   /* hero lede, 60ch */
  --fs-section-lede: 17px;           /* section lede, 62ch */
  --fs-body: 15px;
  --fs-small: 13px;
  --fs-label: 11px;                  /* mono, uppercase, .22em */

  /* --- spacing --- */
  --hero-pt: 120px; --hero-pb: 48px;
  --block-pt: 72px;
  --card-pad: 28px;
  --card-pad-sm: 24px;               /* small tiles: team-card, scope-card, metric-card, example */
  /* measured height of the fixed nav (64px bar + pills row). The hero floors its top padding at
     --nav-h + 16px so copy never sits under the nav: 120px (DECISIONS) < 136px nav. See build report. */
  --nav-h: 136px;
}
@media (max-width: 600px) {
  :root { --hero-pt: 100px; --hero-pb: 32px; --block-pt: 56px; --card-pad: 20px; --card-pad-sm: 18px; --nav-h: 134px; }
}

html, body { margin: 0; padding: 0; }
body { font-family: var(--body); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; } button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; } img, svg { display: block; max-width: 100%; }
.section { max-width: var(--shell-max); margin: 0 auto; padding: 0 32px; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #fff; padding: 8px 16px; z-index: 200; font-size: 15px; font-weight: 600; }
.skip-link:focus { top: 0; }

/* ---------- nav ---------- */
nav.main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(20px) saturate(1.4); border-bottom: 1px solid var(--border-subtle); }
.nav-inner { max-width: var(--shell-max); margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: var(--display); font-weight: 500; font-size: 17px; letter-spacing: -0.04em; }
.nav-cta { padding: 10px 22px; font-size: 13px; font-weight: 600; background: var(--fg); color: var(--bg); border-radius: var(--radius-full); transition: transform 200ms var(--ease); white-space: nowrap; }
.nav-cta:hover { transform: translateY(-1px); color: var(--bg); }
.nav-pills-wrap { padding: 0 16px 14px; text-align: center; }
.category-pills { display: inline-flex; gap: 6px; background: var(--fg); color: var(--bg); padding: 8px; border-radius: var(--radius-full); flex-wrap: wrap; justify-content: center; }
.category-pills a { padding: 10px 20px; font-size: 13px; font-weight: 500; color: rgba(240,237,228,.72); border-radius: var(--radius-full); transition: var(--transition-fast); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em; }
.category-pills a:hover { color: var(--bg); background: rgba(240,237,228,.08); }
.category-pills a[aria-current="page"] { background: var(--accent); color: #fff; }
.category-pills .pill-group.has-current > a { color: var(--bg); }
/* keep the nav CTA clear of the fixed drawer toggle (right: 96px + 40px wide + 12px gap) until the 1180px shell has enough side room */
@media (max-width: 1400px) and (min-width: 641px) { .nav-inner { padding-right: 148px; } }
@media (max-width: 720px) { .nav-pills-wrap { padding: 0 12px 12px; } .category-pills { flex-wrap: nowrap; max-width: calc(100vw - 32px); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; justify-content: flex-start; -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 28px), transparent 100%); } .category-pills::-webkit-scrollbar { display: none; } .category-pills a { flex-shrink: 0; } }

/* pill-dropdown v3 — hover bridge + mobile-safe */
@media (min-width: 721px) { .category-pills { overflow: visible; } }
.category-pills .pill-group { position: relative; display: inline-block; }
.category-pills .pill-group > a { display: inline-block; position: relative; z-index: 2; }
/* Invisible bridge so hover persists when cursor crosses gap */
.pill-group::after {
  content: ""; position: absolute;
  top: 100%; left: -8px; right: -8px;
  height: 18px; z-index: 1;
}
.pill-dropdown {
  position: absolute;
  top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px; padding: 8px 6px;
  text-align: left;
  background: var(--fg, #0B0E1A);
  border-radius: 18px;
  box-shadow: 0 20px 50px -16px rgba(11,14,26,0.45), 0 4px 12px -4px rgba(11,14,26,0.18);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms cubic-bezier(.16,1,.3,1), transform 220ms cubic-bezier(.16,1,.3,1);
  z-index: 250;
  display: flex; flex-direction: column; gap: 2px;
}
.pill-group:hover .pill-dropdown,
.pill-group:focus-within .pill-dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.pill-dropdown a {
  display: block; padding: 10px 18px;
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(240,237,228,0.72);
  border-radius: 12px;
  white-space: nowrap; text-decoration: none;
  transition: background 150ms, color 150ms;
}
.pill-dropdown a:hover {
  color: var(--bg, #F0EDE4);
  background: rgba(240,237,228,0.08);
}
.pill-dropdown a[aria-current="page"] {
  color: #fff; background: var(--accent, #3B3EDB);
}
@media (max-width: 720px) {
  .pill-dropdown { display: none; }
  .pill-group::after { display: none; }
  /* the dropdown is hidden here, so the group pill itself carries the current-page highlight */
  .category-pills .pill-group.has-current > a { background: var(--accent); color: #fff; }
}

/* ---------- drawer ---------- */
.drawer-toggle { position: fixed; top: 12px; right: 96px; width: 40px; height: 40px; border-radius: 50%; background: var(--fg); color: var(--bg); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 110; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: transform 200ms var(--ease, cubic-bezier(.4,0,.2,1)); }
.drawer-toggle:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.drawer-toggle svg { width: 18px; height: 18px; }
.drawer-overlay { position: fixed; inset: 0; background: rgba(11, 14, 26, 0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 115; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 340px; max-width: 88vw; background: var(--fg); color: var(--bg); z-index: 120; transform: translateX(100%); transition: transform 0.35s var(--ease, cubic-bezier(.4,0,.2,1)); display: flex; flex-direction: column; overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(240,237,228,0.08); }
.drawer-brand { font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: -0.04em; }
.drawer-close { width: 32px; height: 32px; border-radius: 50%; background: rgba(240,237,228,0.08); border: none; color: var(--bg); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 200ms; }
.drawer-close:hover { background: rgba(240,237,228,0.18); }
.drawer-section { padding: 20px 0; border-bottom: 1px solid rgba(240,237,228,0.06); }
.drawer-section:last-child { border-bottom: none; }
.drawer-section h4 { padding: 0 28px; font-family: var(--mono); font-size: 11px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(240,237,228,0.45); margin-bottom: 8px; }
.drawer-section a { display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; color: rgba(240,237,228,0.85); font-family: var(--body); font-size: 15px; font-weight: 500; transition: 200ms; border-left: 3px solid transparent; }
.drawer-section a:hover { background: rgba(240,237,228,0.05); color: var(--bg); border-left-color: var(--accent); }
.drawer-section a .arrow { opacity: 0.4; font-size: 15px; transition: 200ms; }
.drawer-section a:hover .arrow { opacity: 1; transform: translateX(2px); }
.drawer-section a.primary { background: var(--accent); margin: 8px 20px; border-radius: var(--radius-full); padding: 12px 24px; justify-content: center; font-weight: 600; color: #fff; }
.drawer-section a.primary:hover { background: #5C5FEA; border-left-color: transparent; transform: translateY(-1px); color: #fff; }
.drawer-footer { margin-top: auto; padding: 20px 28px; font-size: 13px; color: rgba(240,237,228,0.4); border-top: 1px solid rgba(240,237,228,0.08); }
@media (max-width: 640px) { .drawer-toggle { top: 12px; right: 16px; } .nav-cta { display: none; } }

/* ---------- hero ---------- */
.hero { padding: max(var(--hero-pt), calc(var(--nav-h) + 16px)) 0 var(--hero-pb); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 45% at 70% 25%, var(--accent-glow), transparent 70%); }
.hero.quiet::before { display: none; }
.hero.quiet { padding-bottom: 24px; }
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); padding: 6px 14px; border-radius: var(--radius-full); background: color-mix(in srgb, var(--accent) 10%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent); margin-bottom: 28px; }
.hero h1 { font-family: var(--display); font-weight: 500; font-size: var(--h1); line-height: 1.0; letter-spacing: -0.04em; margin: 0 0 24px; max-width: 22ch; }
.hero h1 .period { color: var(--accent); }
.hero p.lede { font-size: var(--fs-lede); line-height: 1.55; color: var(--fg-muted); max-width: 60ch; margin: 0 0 32px; }
.hero p.lede:last-child { margin-bottom: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: var(--radius-full); font-size: 15px; font-weight: 600; white-space: nowrap; transition: transform 200ms var(--ease); cursor: pointer; }
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { transform: translateY(-1px); color: var(--bg); }
.btn-ghost { background: var(--surface); color: var(--fg); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface-strong); color: var(--fg); }
/* buttons inside a .plain prose column must not inherit the page-level `.plain a` link colour/underline */
.plain a.btn { border-bottom: 0; }
.plain a.btn-primary { color: var(--bg); }
.plain a.btn-ghost { color: var(--fg); }

/* ---------- sections ---------- */
.block { padding-top: var(--block-pt); position: relative; }
.section-label { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--fg-subtle); margin-bottom: 20px; }
.section-label::before { content: ""; width: 24px; height: 1px; background: var(--border-strong); }
.section-title { font-family: var(--display); font-weight: 500; font-size: var(--h2); line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 18px; max-width: 26ch; }
.section-lede { font-size: var(--fs-section-lede); line-height: 1.6; color: var(--fg-muted); max-width: 62ch; margin: 0 0 40px; }

/* ---------- cards ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cap-card { padding: var(--card-pad); background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.cap-card .num { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cap-card h3 { font-family: var(--display); font-weight: 500; font-size: var(--h3); letter-spacing: -0.03em; margin: 0 0 12px; }
.cap-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin: 0 0 14px; }
.cap-card ul { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.cap-card ul li { font-size: 13px; color: var(--fg-muted); position: relative; padding-left: 18px; line-height: 1.5; }
.cap-card ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.cap-card .deep { margin-top: auto; padding-top: 12px; }
.cap-card .deep a { font-size: 13px; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.cap-card .deep a:hover { text-decoration: underline; }
.cap-card .buy { margin-top: auto; padding-top: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.cap-card .buy .btn { padding: 11px 20px; }
.cap-card .buy small { font-size: 13px; color: var(--fg-subtle); line-height: 1.4; }
.stack-row { padding: var(--card-pad) 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-top: 16px; display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.stack-row h3 { font-family: var(--display); font-weight: 500; font-size: var(--h3); margin: 0; letter-spacing: -0.02em; }
.stack-row .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-row .tag { display: inline-flex; align-items: center; padding: 7px 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg); background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-full); }
.retainer-bar { padding: 36px 40px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg); display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; margin-top: 24px; }
.retainer-bar h3 { font-family: var(--display); font-weight: 500; font-size: var(--h3); letter-spacing: -0.03em; margin: 0 0 12px; }
.retainer-bar p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.retainer-price { font-family: var(--display); font-weight: 500; font-size: var(--h2); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.retainer-price .pm { font-size: 17px; color: var(--fg-subtle); margin-left: 6px; letter-spacing: 0; font-family: var(--body); font-weight: 400; }
.retainer-price-sub { font-size: 13px; color: var(--fg-subtle); }
.proof-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.proof { background: var(--surface, var(--bg-elev)); border: 1px solid var(--border); border-radius: 22px; padding: var(--card-pad); }
.proof .num { font-family: var(--display); font-size: var(--h2); font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px; color: var(--fg); }
.proof .num small { font-size: 15px; color: var(--fg-subtle); letter-spacing: 0; margin-left: 6px; }
.proof h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.proof p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.proof .src { display: block; margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--fg-subtle); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: step; }
.step { background: var(--surface, var(--bg-elev)); border: 1px solid var(--border); border-radius: 22px; padding: var(--card-pad); }
.step .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.step h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--display); font-weight: 500; font-size: 17px; letter-spacing: -0.01em; cursor: pointer; }
.faq-q::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 17px; flex: none; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; padding: 0 0 20px; max-width: 70ch; }

/* ---------- closing block: lead form + side ---------- */
.lead-block { padding-bottom: 84px; }
.lead-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .lead-wrap { grid-template-columns: 1fr; } }
.lead-form { background: var(--surface, var(--bg-elev)); border: 1px solid var(--border); border-radius: 22px; padding: var(--card-pad); }
.lead-form h3 { font-family: var(--display); font-weight: 500; font-size: var(--h3); letter-spacing: -0.03em; margin-bottom: 6px; }
.lead-form .sub { color: var(--fg-muted); font-size: 15px; margin-bottom: 20px; }
.lead-form label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-muted); margin: 14px 0 6px; }
.lead-form input, .lead-form textarea { width: 100%; font: inherit; font-size: 15px; color: var(--fg); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; outline: none; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .lead-form .row { grid-template-columns: 1fr; } }
.lead-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-form .btn { margin-top: 20px; width: 100%; justify-content: center; }
.lead-form .status { margin-top: 12px; font-size: 15px; min-height: 20px; color: var(--fg-muted); }
.lead-form .status.err { color: #B3261E; }
.lead-form .status.ok { color: #1B6E3A; }
.lead-side h3 { font-family: var(--display); font-weight: 500; font-size: var(--h3); letter-spacing: -0.03em; margin-bottom: 10px; }
.lead-side p { color: var(--fg-muted); font-size: 15px; line-height: 1.65; margin-bottom: 14px; max-width: 46ch; }
.lead-side .contact-lines { display: grid; gap: 8px; margin: 18px 0 22px; font-size: 15px; }
.lead-side .contact-lines a { color: var(--fg); border-bottom: 1px solid var(--border); }
.lead-side .contact-lines a:hover { border-color: var(--accent); }

/* ---------- prose column (text pages) ---------- */
.plain { max-width: 720px; }
.plain p { font-size: 17px; line-height: 1.65; color: var(--fg-muted); margin-bottom: 16px; }
.plain p strong { color: var(--fg); font-weight: 600; }
.plain ul { margin: 0 0 16px 20px; color: var(--fg-muted); font-size: 17px; line-height: 1.65; }
.plain li { margin-bottom: 6px; }

/* ---------- footer ---------- */
footer[role="contentinfo"] { border-top: 1px solid var(--border); padding: 56px 0 32px; background: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-block { max-width: 32ch; }
.footer-brand { font-family: var(--display); font-weight: 500; font-size: 20px; margin-bottom: 10px; letter-spacing: -0.04em; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); max-width: 32ch; line-height: 1.55; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-subtle); margin: 0 0 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--fg-muted); padding: 4px 0; transition: color 200ms; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--fg-subtle); flex-wrap: wrap; gap: 16px; }

/* ---------- cookie notice (US: notice-only; markup in partials/footer.html, script in partials/scripts.html) ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--fg); color: var(--bg); padding: 16px 24px; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; line-height: 1.5; box-shadow: 0 -4px 20px rgba(0,0,0,0.12); }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: #c7d2fe; text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 8px 18px; border-radius: var(--radius-full); border: none; font-family: var(--body); font-size: 13px; font-weight: 500; cursor: pointer; }
.cookie-accept { background: var(--bg); color: var(--fg); }
@media (max-width: 768px) { .cookie-banner { flex-direction: column; text-align: center; } }

/* ---------- breakpoints ---------- */
@media (max-width: 960px) { .cap-grid { grid-template-columns: 1fr; } .stack-row { grid-template-columns: 1fr; gap: 18px; } .retainer-bar { grid-template-columns: 1fr; gap: 24px; } .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .section { padding-left: 20px; padding-right: 20px; } .nav-inner { padding-left: 20px; padding-right: 20px; } .lead-block { padding-top: var(--block-pt); } .stack-row { padding: var(--card-pad) 20px; } .retainer-bar { padding: 28px 20px; } .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 20px; } .footer-brand-block { grid-column: 1 / -1; max-width: none; } .lead-block { padding-bottom: 56px; } }
@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
