/* ==========================================================================
   Atlas — by Kinane Labs · marketing site
   Self-contained, no external dependencies. Light theme.
   Palette matches the Atlas product design system.
   ========================================================================== */

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:target { scroll-margin-top: 92px; }

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --page: #f9f9f7;
  --surface: #ffffff;
  --surface-2: #fcfcfb;
  --ink: #14130f;
  --sub: #52514e;
  --muted: #898781;
  --line: #e1e0d9;
  --line-soft: #ecebe4;
  --track: #eceae4;

  --accent: #256abf;
  --accent-strong: #1c4f8f;
  --accent-deep: #163f73;
  --accent-soft: #eaf2fc;
  --accent-tint: #f2f7fd;

  --good: #0ca30c;   --good-text: #046604;  --good-soft: #e9f6e9;
  --warn: #fab219;   --warn-text: #8a5a00;  --warn-soft: #fdf3dd;
  --serious: #ec835a; --serious-text: #b5541f; --serious-soft: #fdeee5;
  --crit: #d03b3b;   --crit-text: #b02a2a;  --crit-soft: #fbe9e9;

  --ring: rgba(37, 106, 191, 0.35);

  --shadow-sm: 0 1px 2px rgba(20,19,15,.05), 0 1px 3px rgba(20,19,15,.05);
  --shadow-md: 0 6px 16px -6px rgba(20,19,15,.10), 0 2px 6px -2px rgba(20,19,15,.06);
  --shadow-lg: 0 24px 48px -18px rgba(28,79,143,.28), 0 10px 22px -12px rgba(20,19,15,.12);

  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 26px;

  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 34px);
  --section-y: clamp(64px, 9vw, 116px);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Variable",
    Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--page);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: -0.005em;
}

/* ---- Helpers ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); border-block: 1px solid var(--line-soft); }
.section--accent-tint { background:
    linear-gradient(180deg, var(--accent-tint), var(--page)); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 200; transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 650; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-strong);
}
.kicker::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--accent); opacity: .8;
}

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.12; letter-spacing: -0.025em; font-weight: 680;
  margin-top: 14px;
}
.section-head .lede {
  margin-top: 16px; font-size: clamp(16px, 2vw, 18.5px);
  color: var(--sub); line-height: 1.6;
}

.text-accent { color: var(--accent-strong); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 620; font-size: 15.5px; line-height: 1;
  padding: 14px 22px; border-radius: 12px;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease,
    border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 2px rgba(20,19,15,.10), 0 8px 20px -10px rgba(28,79,143,.55);
}
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(20,19,15,.12), 0 14px 28px -12px rgba(28,79,143,.6); }
.btn-secondary {
  background: var(--surface); color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: #cfccc2; background: var(--surface-2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--accent-strong); padding: 10px 14px; }
.btn-ghost:hover { background: var(--accent-soft); }
.btn-lg { padding: 16px 26px; font-size: 16.5px; }
.btn-block { width: 100%; }

.btn-onaccent {
  background: #fff; color: var(--accent-strong);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.5);
}
.btn-onaccent:hover { background: #f2f6fc; transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.75); }

:where(a, button):focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---- Brand / logo mark ------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent);
  flex-shrink: 0;
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-word { line-height: 1.12; }
.brand-word b { display: block; font-size: 16px; font-weight: 680; letter-spacing: -0.02em; }
.brand-word span { display: block; font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,249,247,.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  background: rgba(249,249,247,.92);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 68px;
}
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a.navlink {
  text-decoration: none; color: var(--sub); font-size: 15px; font-weight: 550;
  padding: 8px 12px; border-radius: 9px; transition: color .15s ease, background-color .15s ease;
}
.nav-desktop a.navlink:hover { color: var(--ink); background: var(--track); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--line);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* mobile menu panel */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px var(--pad) 20px; gap: 2px; }
.mobile-menu a.navlink {
  text-decoration: none; color: var(--ink); font-size: 16px; font-weight: 550;
  padding: 13px 12px; border-radius: 10px;
}
.mobile-menu a.navlink:hover { background: var(--track); }
.mobile-menu .btn { margin-top: 12px; }

/* ---- Hero -------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(37,106,191,.14), transparent 60%),
    radial-gradient(700px 460px at 8% 4%, rgba(37,106,191,.07), transparent 55%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--sub); font-size: 13.5px; font-weight: 560;
  padding: 7px 14px 7px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-eyebrow svg { width: 15px; height: 15px; color: var(--accent); }
.hero h1 {
  margin-top: 22px;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.04; letter-spacing: -0.035em; font-weight: 700;
}
.hero h1 .em { color: var(--accent-strong); }
.hero-sub {
  margin-top: 22px; font-size: clamp(17px, 2vw, 20px);
  color: var(--sub); line-height: 1.58; max-width: 560px;
}
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted);
}
.hero-note svg { width: 16px; height: 16px; color: var(--good); flex-shrink: 0; }

/* Hero example card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--line-soft);
}
.hc-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent); flex-shrink: 0;
}
.hc-mark svg { width: 19px; height: 19px; }
.hc-titles { flex: 1; min-width: 0; }
.hc-title { font-size: 14.5px; font-weight: 640; letter-spacing: -0.01em; }
.hc-sub { font-size: 12px; color: var(--muted); }
.hc-tag {
  font-size: 11px; font-weight: 640; letter-spacing: .03em; text-transform: uppercase;
  color: var(--accent-strong); background: var(--accent-soft);
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.hero-card-body {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
  padding: 22px 20px;
}
.hc-ring { position: relative; width: 118px; height: 118px; flex-shrink: 0; }
.hc-ring svg { width: 118px; height: 118px; transform: rotate(-90deg); }
.hc-ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.hc-ring-label .v { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.hc-ring-label .l { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.hc-findings { display: flex; flex-direction: column; gap: 10px; }
.hc-findings li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--sub); }
.hc-findings .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.hc-findings .fname { flex: 1; min-width: 0; }
.sev {
  font-size: 11px; font-weight: 660; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.dot.crit, .sev.crit  { }
.sev.crit    { background: var(--crit-soft);    color: var(--crit-text); }
.sev.serious { background: var(--serious-soft); color: var(--serious-text); }
.sev.warn    { background: var(--warn-soft);    color: var(--warn-text); }
.sev.good    { background: var(--good-soft);    color: var(--good-text); }
.dot.crit    { background: var(--crit); }
.dot.serious { background: var(--serious); }
.dot.warn    { background: var(--warn); }
.dot.good    { background: var(--good); }
.hero-card-foot {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px; border-top: 1px solid var(--line-soft);
  background: var(--surface-2); font-size: 12.5px; color: var(--muted);
}
.hero-card-foot svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* ---- Trust bar --------------------------------------------------------- */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-2);
}
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 30px; padding-block: 22px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 560; color: var(--sub);
}
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--line); }

/* ---- Card grids -------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 16px;
}
.icon-tile svg { width: 23px; height: 23px; }

/* ---- Risk cards -------------------------------------------------------- */
.risk-grid { margin-top: 48px; grid-template-columns: repeat(3, 1fr); }
.risk-card { }
.risk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d6d3c8; }
.risk-card h3 { font-size: 18px; font-weight: 640; letter-spacing: -0.015em; }
.risk-card p { margin-top: 9px; color: var(--sub); font-size: 15px; line-height: 1.58; }
.risk-card .fix {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--accent-strong);
}
.risk-card .fix svg { width: 15px; height: 15px; }
.risk-foot {
  margin-top: 40px; text-align: center; font-size: 16px; color: var(--sub);
}
.risk-foot b { color: var(--ink); font-weight: 640; }

/* ---- Service cards ----------------------------------------------------- */
.services-grid { margin-top: 48px; align-items: stretch; }
.service-card {
  display: flex; flex-direction: column;
  border-top: 3px solid var(--accent);
}
.service-card .step-tag {
  font-size: 12.5px; font-weight: 640; letter-spacing: .02em; color: var(--accent-strong);
  text-transform: uppercase; margin-bottom: 6px;
}
.service-card h3 { font-size: 22px; font-weight: 680; letter-spacing: -0.02em; }
.service-card > p { margin-top: 12px; color: var(--sub); font-size: 15.5px; line-height: 1.6; }
.service-list { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--sub); line-height: 1.5; }
.service-list svg { width: 18px; height: 18px; color: var(--good); flex-shrink: 0; margin-top: 1px; }
.service-note {
  margin-top: 18px; padding: 12px 14px; border-radius: var(--r-sm);
  background: var(--accent-tint); border: 1px solid var(--line-soft);
  font-size: 13px; color: var(--sub); line-height: 1.5;
}
.service-note b { color: var(--ink); font-weight: 620; }
.service-spacer { flex: 1; }

/* ---- How it works flow ------------------------------------------------- */
.flow { margin-top: 52px; position: relative; }
.flow-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.flow-step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.flow-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 17px;
  box-shadow: 0 6px 16px -8px rgba(28,79,143,.7);
}
.flow-step h3 { margin-top: 18px; font-size: 19px; font-weight: 660; letter-spacing: -0.015em; }
.flow-step p { margin-top: 9px; color: var(--sub); font-size: 15px; line-height: 1.56; }
.flow-arrow {
  position: absolute; top: 46px; right: -32px; z-index: 2; color: #c7c4b8;
}
.flow-arrow svg { width: 26px; height: 26px; }
.flow-note {
  margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--muted);
}

/* ---- Why grid ---------------------------------------------------------- */
.why-grid { margin-top: 48px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-item { padding: 24px; }
.why-item .icon-tile { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 14px; }
.why-item .icon-tile svg { width: 21px; height: 21px; }
.why-item h3 { font-size: 17px; font-weight: 640; letter-spacing: -0.01em; }
.why-item p { margin-top: 8px; color: var(--sub); font-size: 14.5px; line-height: 1.58; }

/* ---- Report anatomy ---------------------------------------------------- */
.anatomy-grid {
  margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px); align-items: center;
}
.anatomy-points { display: flex; flex-direction: column; gap: 20px; }
.anatomy-point { display: flex; gap: 16px; }
.anatomy-badge {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.anatomy-point h3 { font-size: 16.5px; font-weight: 640; }
.anatomy-point p { margin-top: 4px; color: var(--sub); font-size: 14.5px; line-height: 1.5; }

/* example finding document */
.finding-doc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden;
}
.finding-doc-head {
  padding: 18px 22px; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.finding-doc-head .ex {
  font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
  margin-left: auto;
}
.finding-doc-head h4 { font-size: 16.5px; font-weight: 660; letter-spacing: -0.015em; flex: 1; min-width: 60%; }
.finding-doc-body { padding: 6px 22px 22px; }
.finding-block { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.finding-block:last-child { border-bottom: 0; }
.finding-block .lbl {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--accent-strong); display: flex; align-items: center; gap: 7px;
}
.finding-block .lbl svg { width: 14px; height: 14px; }
.finding-block p { margin-top: 6px; font-size: 14px; color: var(--sub); line-height: 1.55; }

/* ---- FAQ --------------------------------------------------------------- */
.faq-list { margin-top: 40px; max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-size: 16.5px; font-weight: 600; cursor: pointer;
  list-style: none; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0; color: var(--muted); transition: transform .2s ease;
}
.faq-item summary .chev svg { width: 20px; height: 20px; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--accent-strong); }
.faq-body { padding: 0 22px 20px; color: var(--sub); font-size: 15px; line-height: 1.62; }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(700px 340px at 85% -30%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(135deg, var(--accent-strong), var(--accent-deep));
  color: #fff;
}
.cta-inner { text-align: center; padding-block: clamp(56px, 8vw, 92px); }
.cta-inner .kicker { color: #a9cbf1; justify-content: center; }
.cta-inner .kicker::before { background: #a9cbf1; }
.cta-inner h2 {
  margin-top: 14px; font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.12; letter-spacing: -0.03em; font-weight: 700; color: #fff;
  max-width: 720px; margin-inline: auto;
}
.cta-inner p {
  margin-top: 18px; font-size: clamp(16px, 2vw, 19px); color: #d6e4f6;
  max-width: 640px; margin-inline: auto; line-height: 1.6;
}
.cta-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-email {
  margin-top: 22px; font-size: 15px; color: #cfe0f5;
}
.cta-email a { color: #fff; font-weight: 600; text-underline-offset: 3px; }
.cta-reassure {
  margin-top: 24px; display: inline-flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center;
  font-size: 13.5px; color: #bcd2ef;
}
.cta-reassure span { display: inline-flex; align-items: center; gap: 7px; }
.cta-reassure svg { width: 16px; height: 16px; color: #a9cbf1; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--surface-2); border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-block: clamp(44px, 6vw, 64px);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--sub); font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.footer-brand .foot-email {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--accent-strong); text-decoration: none;
}
.footer-brand .foot-email:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-brand .foot-email svg { width: 17px; height: 17px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--sub); font-size: 14.5px; }
.footer-col a:hover { color: var(--ink); }
.footer-col a.signin { display: inline-flex; align-items: center; gap: 7px; }
.footer-col a.signin svg { width: 14px; height: 14px; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12.5px; color: var(--muted); line-height: 1.6; max-width: 720px; }
.footer-bottom .loc { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.footer-bottom .loc svg { width: 15px; height: 15px; color: var(--accent); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid-3, .risk-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: 1fr; gap: 16px; }
  .flow-arrow { top: auto; right: auto; bottom: -30px; left: 50%; transform: translateX(-50%) rotate(90deg); }
  .anatomy-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 48px 8px; }
  .hero-visual { order: 2; margin-top: 8px; }
  .hero-sub { max-width: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .risk-grid, .why-grid, .services-grid { grid-template-columns: 1fr; }
  .hero-card-body { grid-template-columns: 1fr; justify-items: center; text-align: left; gap: 18px; }
  .hc-findings { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-sep { display: none; }
  .card { padding: 22px; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

/* ---- Motion & print ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .mobile-menu, .cta-band, .hero-actions, .nav-toggle { display: none !important; }
  body { background: #fff; }
  .card, .flow-step, .hero-card { box-shadow: none; }
}
