/* ============================================================
   Blueveil Security — site vitrine
   Design system (light) — Space Grotesk / Manrope / JetBrains Mono
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f3f6fc;
  --bg-soft-2: #eaf0f9;
  --panel: #ffffff;
  --line: rgba(13, 23, 38, 0.10);
  --line-strong: rgba(13, 23, 38, 0.16);
  --ink: #0d1726;
  --ink-dim: #45556f;
  --ink-faint: #74849f;
  --cyan: #0aa6d6;
  --blue: #2f5fe6;
  --blue-deep: #1c3aa8;
  --green: #16a96f;
  --red: #df524a;
  --amber: #c2870f;
  --grad: linear-gradient(110deg, #0aa6d6 0%, #2f5fe6 100%);
  --grad-soft: linear-gradient(135deg, rgba(10, 166, 214, 0.12), rgba(47, 95, 230, 0.10));
  --shadow-sm: 0 1px 2px rgba(13, 23, 38, 0.05), 0 1px 3px rgba(13, 23, 38, 0.04);
  --shadow-md: 0 6px 24px rgba(13, 23, 38, 0.07), 0 2px 6px rgba(13, 23, 38, 0.05);
  --shadow-lg: 0 24px 60px rgba(16, 42, 99, 0.16);
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-variant-ligatures: none;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(64px, 9vw, 124px); position: relative; }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }

.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.kicker.center-k { justify-content: center; }

.eyebrow { color: var(--ink-faint); }

.h-display { font-size: clamp(38px, 6vw, 72px); }
.h-1 { font-size: clamp(32px, 4.6vw, 56px); }
.h-2 { font-size: clamp(26px, 3.4vw, 40px); }
.h-3 { font-size: clamp(20px, 2.2vw, 26px); }

.lead { font-size: clamp(18px, 2vw, 22px); color: var(--ink-dim); line-height: 1.55; }
.muted { color: var(--ink-dim); }
.faint { color: var(--ink-faint); }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-head .h-1, .section-head .h-2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 16px;
  padding: 14px 24px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(47, 95, 230, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47, 95, 230, 0.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.btn-outline-light { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--blue);
  font-size: 15px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { width: 32px; height: 32px; }
.brand .name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.brand .name b { font-weight: 700; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-weight: 600; font-size: 14px; color: var(--ink-dim); white-space: nowrap;
  padding: 9px 11px; border-radius: 9px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--bg-soft); }
.nav a.active { color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 18px; font-size: 14.5px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: 11px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 700px at 82% -8%, rgba(95, 200, 255, 0.30), transparent 60%),
    radial-gradient(900px 620px at -4% 112%, rgba(47, 95, 230, 0.42), transparent 55%),
    linear-gradient(135deg, #102a63 0%, #1a4bb0 56%, #2277dd 100%);
  color: #eef4ff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 55%, transparent 100%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 { color: #fff; font-size: clamp(36px, 5.4vw, 64px); }
.hero .lead { color: #c6d6f5; margin-top: 22px; max-width: 540px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #bfe2ff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 15px; border-radius: 999px; font-weight: 500;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(84, 230, 170, 0.22); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* dark generic section (CTA / accent) */
.accent-section {
  position: relative; overflow: hidden; color: #eef4ff;
  background:
    radial-gradient(900px 560px at 88% -20%, rgba(95, 200, 255, 0.26), transparent 60%),
    radial-gradient(800px 540px at 0% 120%, rgba(47, 95, 230, 0.40), transparent 55%),
    linear-gradient(135deg, #112a61 0%, #1b50b6 100%);
}
.accent-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px; pointer-events: none;
}
.accent-section .wrap { position: relative; z-index: 1; }
.accent-section h2, .accent-section h1, .accent-section h3 { color: #fff; }
.accent-section .lead { color: #c6d6f5; }

/* ---------- stat band ---------- */
.stat-band { background: #0c1a3d; color: #fff; position: relative; overflow: hidden; }
.stat-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 58px 58px; pointer-events: none;
}
.stat-band .wrap { position: relative; z-index: 1; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 14px 30px; position: relative; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
.stat .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { margin-top: 12px; color: #9fb3d8; font-size: 14.5px; line-height: 1.4; }

/* ---------- cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { font-size: 21px; }
.card p { color: var(--ink-dim); margin-top: 10px; font-size: 15.5px; }

.icon-badge {
  width: 54px; height: 54px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-soft); border: 1px solid rgba(47, 95, 230, 0.18); margin-bottom: 20px;
}
.icon-badge svg { width: 26px; height: 26px; stroke: var(--blue); }
.num-badge {
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 14px;
  color: var(--blue); border: 1px solid var(--line-strong); border-radius: 9px;
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}

/* feature list */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-dim); font-size: 16px; }
.feature-list .ck {
  flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--grad-soft);
  display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.feature-list .ck svg { width: 14px; height: 14px; stroke: var(--blue); stroke-width: 2.4; }
.feature-list b, .feature-list strong { color: var(--ink); font-weight: 700; }

/* offer cards */
.offer { display: flex; flex-direction: column; position: relative; }
.offer.featured { border-color: rgba(47, 95, 230, 0.45); box-shadow: var(--shadow-md); }
.offer .tag {
  position: absolute; top: -13px; left: 30px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  background: var(--grad); color: #fff; padding: 6px 13px; border-radius: 999px;
}
.offer .offer-name { font-size: 23px; }
.offer .offer-for { color: var(--ink-faint); font-size: 14px; margin-top: 6px; min-height: 38px; }
.offer ul { margin-top: 18px; flex: 1; }
.offer .btn { margin-top: 24px; }

/* table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
table.cmp th, table.cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th { font-family: 'Space Grotesk', sans-serif; font-size: 16px; background: var(--bg-soft); }
table.cmp thead th:not(:first-child) { text-align: center; }
table.cmp tbody td:not(:first-child) { text-align: center; }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp td:first-child { font-weight: 600; color: var(--ink); font-size: 15.5px; }
table.cmp .col-feat { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase; }
table.cmp .reco { background: rgba(47, 95, 230, 0.05); }
.mk-yes svg { width: 19px; height: 19px; stroke: var(--green); stroke-width: 2.6; }
.mk-no { color: var(--ink-faint); font-weight: 700; }
.mk-opt { font-size: 12.5px; color: var(--amber); font-weight: 700; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em; }

/* split / media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.narrow { grid-template-columns: 1.1fr 0.9fr; }

/* visual panel */
.viz {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #0e225a, #1b4cad);
  border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

/* urgent banner */
.urgent {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(120deg, #3a1414, #6e211b); color: #ffe9e7;
  border: 1px solid rgba(255, 140, 130, 0.4); border-radius: var(--radius); padding: 22px 28px;
}
.urgent .u-left { display: flex; align-items: center; gap: 16px; }
.urgent .u-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: rgba(255,140,130,0.18); display: inline-flex; align-items: center; justify-content: center; }
.urgent .u-ic svg { width: 24px; height: 24px; stroke: #ff9d95; }
.urgent strong { color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 20px; }
.urgent .btn { background: #fff; color: #8a241c; }

/* pill / badge */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink-dim);
}
.pill svg { width: 17px; height: 17px; stroke: var(--blue); }

.ft-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: #111; color: #fff; border-radius: 12px; padding: 11px 16px; font-weight: 700; font-size: 14px;
}
.ft-badge .ft-mark { color: #ff3366; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }
.ft-badge .ft-logo { object-fit: contain; flex: none; }
.ft-badge small { display: block; font-weight: 500; color: #a9a9b3; font-size: 11px; letter-spacing: 0.04em; }

/* mission quote */
.quote {
  border-left: 3px solid; border-image: var(--grad) 1; padding: 6px 0 6px 28px;
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.3; color: var(--ink); font-weight: 500;
}

/* page hero (inner pages) */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 88% -30%, rgba(47, 95, 230, 0.12), transparent 60%),
    radial-gradient(600px 360px at 0% 130%, rgba(10, 166, 214, 0.10), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(48px, 7vw, 92px); }
.page-hero .lead { margin-top: 20px; max-width: 680px; }
.page-hero .hero-actions { margin-top: 30px; }

/* legal / prose */
.prose { max-width: 800px; }
.prose h2 { font-size: 24px; margin-top: 44px; margin-bottom: 14px; }
.prose h3 { font-size: 19px; margin-top: 28px; margin-bottom: 10px; }
.prose p { color: var(--ink-dim); margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; color: var(--ink-dim); }
.prose li { margin-bottom: 7px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--blue); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .updated { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink-faint); letter-spacing: 0.04em; }
.prose .callout { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; color: var(--ink-dim); font-size: 14.5px; margin: 18px 0; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(47, 95, 230, 0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-dim); }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--blue); }
.consent a { color: var(--blue); font-weight: 600; }
.contact-aside .card { margin-bottom: 18px; }
.contact-aside .ci { display: flex; gap: 14px; align-items: flex-start; }
.contact-aside .ci + .ci { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.contact-aside .ci .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--grad-soft); display: inline-flex; align-items: center; justify-content: center; }
.contact-aside .ci .ic svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-aside .ci .lbl { font-size: 13px; color: var(--ink-faint); }
.contact-aside .ci a, .contact-aside .ci .val { font-weight: 700; color: var(--ink); }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 14px; }

/* ---------- footer ---------- */
.site-footer { background: #0a1426; color: #b9c6df; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 58px 58px; pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 64px 48px; }
.footer-brand .brand .name { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; color: #8395b5; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 14px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: #aab9d6; font-size: 14.5px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); display: inline-flex; align-items: center; justify-content: center; color: #cdd9f0; transition: background .15s, border-color .15s; }
.footer-social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 24px 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; font-size: 13.5px; color: #7286a8; }
.footer-bottom .fb-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .cookie-link { background: none; border: none; color: #7286a8; font: inherit; cursor: pointer; padding: 0; }
.footer-bottom .cookie-link:hover { color: #fff; }
.footer-ft { display: flex; align-items: center; gap: 14px; margin-top: 24px; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; z-index: 200; left: 50%; transform: translateX(-50%) translateY(140%);
  bottom: 20px; width: min(720px, calc(100% - 32px));
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px 24px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner h4 { font-size: 17px; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.cookie-banner h4 svg { width: 20px; height: 20px; stroke: var(--blue); }
.cookie-banner p { font-size: 14px; color: var(--ink-dim); margin-bottom: 16px; }
.cookie-banner p a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-actions .btn { padding: 12px 22px; font-size: 15px; }

/* ---------- hero radar visual ---------- */
.hero-viz-wrap { justify-self: end; width: 100%; max-width: 520px; }
.radar {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: radial-gradient(120% 120% at 30% 20%, rgba(95,200,255,0.16), transparent 55%), linear-gradient(160deg, #0b1f53, #14397f);
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-lg); overflow: hidden;
}
.radar .scope { position: absolute; inset: 12%; border-radius: 50%; border: 1px solid rgba(120,200,255,0.28); }
.radar .scope::before, .radar .scope::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(120,200,255,0.18); }
.radar .scope::before { inset: 16%; }
.radar .scope::after { inset: 33%; }
.radar .cross { position:absolute; inset:12%; }
.radar .cross::before, .radar .cross::after { content:""; position:absolute; background: rgba(120,200,255,0.16); }
.radar .cross::before { left:50%; top:0; bottom:0; width:1px; transform:translateX(-.5px); }
.radar .cross::after { top:50%; left:0; right:0; height:1px; transform:translateY(-.5px); }
.radar .sweep {
  position:absolute; inset:12%; border-radius:50%;
  background: conic-gradient(from 0deg, rgba(95,225,255,0.42), rgba(95,225,255,0.04) 60deg, transparent 120deg);
  -webkit-mask: radial-gradient(circle, transparent 0, #000 0); animation: radar-spin 4.2s linear infinite;
}
.radar .core { position:absolute; left:50%; top:50%; width:14px; height:14px; margin:-7px; border-radius:50%; background:#7be4ff; box-shadow:0 0 18px 5px rgba(95,225,255,0.6); }
.radar .blip { position:absolute; width:9px; height:9px; border-radius:50%; background:#54e6aa; box-shadow:0 0 12px 2px rgba(84,230,170,0.7); animation: blip-pulse 2.6s ease-in-out infinite; }
.radar .blip.b1 { left:32%; top:30%; animation-delay:.2s; }
.radar .blip.b2 { left:68%; top:58%; background:#ffd169; box-shadow:0 0 12px 2px rgba(255,209,105,0.7); animation-delay:1.1s; }
.radar .blip.b3 { left:58%; top:24%; animation-delay:1.9s; }
.radar .tag {
  position:absolute; font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.06em;
  color:#bfe2ff; background:rgba(8,20,52,0.62); border:1px solid rgba(255,255,255,0.14);
  padding:5px 9px; border-radius:8px; backdrop-filter: blur(3px);
}
.radar .t1 { top:16px; left:16px; }
.radar .t2 { bottom:16px; right:16px; color:#9fffd6; }
@keyframes radar-spin { to { transform: rotate(360deg); } }
@keyframes blip-pulse { 0%,100%{ transform:scale(.6); opacity:.45;} 50%{ transform:scale(1.15); opacity:1;} }
@media (prefers-reduced-motion: reduce) { .radar .sweep, .radar .blip { animation: none; } }

/* mini metric chips under content */
.proof-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.proof-chip { display:inline-flex; align-items:center; gap:8px; white-space:nowrap; font-family:'JetBrains Mono',monospace; font-size:12.5px; letter-spacing:.04em; color:#cfe0ff; background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.16); padding:8px 13px; border-radius:999px; }
.proof-chip b { color:#fff; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-viz-wrap { max-width: 460px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .split, .split.narrow { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1200px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px var(--pad-x) 22px; box-shadow: var(--shadow-md);
  }
  .mobile-open .nav a { padding: 13px 14px; font-size: 16px; }
}
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stat:nth-child(3) { border-left: none; }
}
@media (max-width: 680px) {
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 16px 0; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn, .page-hero .hero-actions .btn { width: 100%; justify-content: center; }
}
