/* Industry — design-system tokens and component classes. This file is the source of truth for the system's look; retune it here and see readme.md. */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&family=Barlow+Condensed:wght@400;600&display=swap');

:root {
  --color-bg: #f2f2f3;
  --color-surface: #e9e9ea;
  --color-text: #1d1f20;
  --color-accent: #5980a6;
  --color-accent-2: #728fab;
  --color-divider: color-mix(in srgb, #1d1f20 16%, transparent);

  /* Tonal ramps — generated in OKLCH on one shared lightness scale, so the
     same step of any role matches the others in visual value. */
  --color-neutral-100: #f5f5f8;
  --color-neutral-200: #e7e7ea;
  --color-neutral-300: #d4d4d7;
  --color-neutral-400: #b7b7ba;
  --color-neutral-500: #98989b;
  --color-neutral-600: #7a7a7d;
  --color-neutral-700: #5d5d60;
  --color-neutral-800: #424244;
  --color-neutral-900: #2b2b2d;

  --color-accent-100: #eef6ff;
  --color-accent-200: #d6ebff;
  --color-accent-300: #b5d9fd;
  --color-accent-400: #94bce3;
  --color-accent-500: #749dc4;
  --color-accent-600: #597ea3;
  --color-accent-700: #416180;
  --color-accent-800: #2c455d;
  --color-accent-900: #1d2d3d;

  --color-accent-2-100: #eef6ff;
  --color-accent-2-200: #d6ebff;
  --color-accent-2-300: #bdd8f2;
  --color-accent-2-400: #9ebbd8;
  --color-accent-2-500: #7e9cb8;
  --color-accent-2-600: #627d98;
  --color-accent-2-700: #486077;
  --color-accent-2-800: #314457;
  --color-accent-2-900: #1f2d3a;

  --font-heading: "Barlow Condensed", system-ui, sans-serif;
  --font-heading-weight: 600;
  --font-body: "Barlow", system-ui, sans-serif;

  --space-1: 3.4px;
  --space-2: 6.8px;
  --space-3: 10.2px;
  --space-4: 13.6px;
  --space-6: 20.4px;
  --space-8: 27.2px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;

  /* Elevation — derived from the ground: soft ink-tinted shadows on a
     light theme, a hairline edge + ambient darkness on a dark one. */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2b2b2d 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2b2b2d 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2b2b2d 22%, transparent);
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); }

.blueprint {
  position: relative;
  border: 1px solid var(--color-divider);
  border-radius: 0;
}
/* The overlay image treatments (halftone, duotone) clip their overlay
   (overflow:hidden); a blueprint wrapper draws its registration marks
   outside the box, so when both classes share a wrapper the frame must
   win. */
.blueprint.halftone, .blueprint.plate, .blueprint.duotone { overflow: visible; }
.blueprint > .corner {
  position: absolute; width: 11px; height: 11px;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.blueprint > .corner::before, .blueprint > .corner::after {
  content: ""; position: absolute; background: currentColor;
}
.blueprint > .corner::before { left: 5px; top: 0; width: 1px; height: 100%; }
.blueprint > .corner::after  { top: 5px; left: 0; width: 100%; height: 1px; }
.blueprint > .corner.tl { top: -6px; left: -6px; }
.blueprint > .corner.tr { top: -6px; right: -6px; }
.blueprint > .corner.bl { bottom: -6px; left: -6px; }
.blueprint > .corner.br { bottom: -6px; right: -6px; }

.duotone{position:relative;overflow:hidden}

/* ══════════════════════════════════════════════════════════════════════════
   Components — built with the tokens above. Plain CSS
   on plain HTML: no JavaScript, no build step. Each class is documented in
   readme.md and demonstrated in foundations/ and components/.
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 15px; line-height: 1.55; font-weight: 400; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }
h6 { letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-accent); text-underline-offset: 3px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* — rules — */
.hr {
  height: 1px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text); /* matches the .input's 14px —
     the pair sits side by side in sign-up rows */
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-600); }
.btn-primary:active { background: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
.btn-icon { width: 36px; height: 36px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); }

/* — forms — */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 90px; resize: vertical; }
.radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; }
.radio input, .seg-opt input {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.radio .dot {
  width: 16px; height: 16px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--color-divider);
}
.radio:hover .dot { border-color: var(--color-accent); }
.radio input:checked + .dot {
  border-color: var(--color-accent); background: var(--color-accent);
  box-shadow: inset 0 0 0 4px var(--color-bg);
}
.radio input:focus-visible + .dot { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.seg {
  display: inline-flex; overflow: hidden;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
}
.seg-opt {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt:has(input:checked) { background: var(--color-accent); color: var(--color-bg); }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

/* — cards — */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md); background: var(--color-surface);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 17px; line-height: 1.2;
}
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 6px; font-size: 11px;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}
.elev-sm { box-shadow: var(--shadow-sm); }
.elev-md { box-shadow: var(--shadow-md); }
.elev-lg { box-shadow: var(--shadow-lg); }

/* — tags — */
.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 3px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* — navigation — */
.nav {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: none;
  position: relative;
}
.nav-brand {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 18px; margin-right: auto;
}
.nav a { color: inherit; text-decoration: none; font-size: 14px; }
.nav a:hover, .nav a[aria-current='page'] { color: var(--color-accent); }

.nav-links { display: flex; align-items: center; gap: var(--space-4); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 0;
  background: none; border: none; cursor: pointer; color: inherit;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* — tables — */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 1px solid var(--color-divider);
}
.table td {
  padding: var(--space-2);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* — dialog — */
.dialog-backdrop {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-neutral-900) 50%, transparent);
}
.dialog {
  width: min(440px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-surface); box-shadow: var(--shadow-lg);
}
.dialog-title {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 20px;
}
.dialog-body { font-size: 14px; opacity: 0.85; }
.dialog-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-2); }

/* — blueprint frame: components are wireframe objects (see .blueprint
     and .corner above) — square, transparent, hairline-bordered — */
.card, .btn, .input, .tag, .seg, .dialog { border-radius: 0; }
.card, .dialog { background: transparent; border: 1px solid var(--color-divider); }
.btn { border: 1px solid var(--color-divider); }
.btn-primary { border-color: var(--color-accent); }
.btn-ghost { border-color: transparent; }

/* ══════════════════════════════════════════════════════════════════════════
   Site layout — page shell, sections and components specific to the
   WhereIsTheLoad marketing site (built on the tokens/components above).
   ══════════════════════════════════════════════════════════════════════ */

.page-shell {
  background: var(--color-bg); color: var(--color-text); min-height: 100vh;
  display: flex; flex-direction: column;
}

.site-nav {
  max-width: none;
  padding: var(--space-4) var(--space-6);
}
.site-nav--sticky {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-accent-900);
  border-bottom: 1px solid color-mix(in srgb, white 12%, transparent);
}
.site-nav--sticky a:not(.btn) { color: white; }
.site-nav--sticky .nav-brand, .site-nav--sticky .nav-toggle { color: white; }
.site-nav--sticky a:hover, .site-nav--sticky a[aria-current='page'] { color: var(--color-accent-400); }
.site-nav--fixed {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: none;
}
.site-nav--fixed a:not(.btn) { color: white; text-shadow: 0 1px 3px color-mix(in srgb, black 40%, transparent); }
.site-nav--fixed .nav-brand, .site-nav--fixed .nav-toggle { color: white; }
.site-nav--fixed a:hover, .site-nav--fixed a[aria-current='page'] { color: var(--color-accent-400); }
.site-nav--fixed.is-scrolled, .site-nav--fixed.nav-menu-open {
  background: var(--color-accent-900);
  border-bottom: 1px solid color-mix(in srgb, white 12%, transparent);
}

.section { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-6); }
.section-narrow { max-width: 900px; margin: 0 auto; padding: 0 var(--space-6); }
.section-form { max-width: 720px; margin: 0 auto; padding: 0 var(--space-6); }
.section-surface { background: var(--color-surface); }
.section-accent { background: var(--color-accent-900); }

.section-pad { padding-top: calc(var(--space-8) * 2.4); padding-bottom: calc(var(--space-8) * 2.4); }
.section-pad-lg { padding-top: calc(var(--space-8) * 2.2); padding-bottom: calc(var(--space-8) * 2); }
.section-pad-md { padding-top: calc(var(--space-8) * 1.8); padding-bottom: calc(var(--space-8) * 1.8); }
.section-pad-sm { padding-top: calc(var(--space-8) * 1.4); padding-bottom: calc(var(--space-8) * 1.4); }

[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* — hero — */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  overflow: hidden; background: var(--color-accent-900);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, var(--color-accent-800) 0px, var(--color-accent-800) 2px, var(--color-accent-900) 2px, var(--color-accent-900) 34px);
  opacity: .7;
}
.hero-photo-note {
  position: absolute; bottom: var(--space-4); right: var(--space-6);
  font-family: monospace; font-size: 11px;
  color: color-mix(in srgb, white 55%, transparent);
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, color-mix(in srgb, var(--color-accent-900) 70%, transparent) 0, transparent 140px),
    linear-gradient(100deg, color-mix(in srgb, var(--color-accent-900) 88%, transparent) 0%, color-mix(in srgb, var(--color-accent-900) 55%, transparent) 55%, color-mix(in srgb, var(--color-accent-900) 30%, transparent) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 0 var(--space-6); width: 100%; }
.hero-content { max-width: 640px; }
.hero-content h1 { color: white; font-size: 56px; margin: var(--space-4) 0 var(--space-4); }
.hero-content p { color: color-mix(in srgb, white 80%, transparent); font-size: 17px; line-height: 1.6; max-width: 520px; margin: 0 0 var(--space-6); }
.hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-actions .btn-secondary { color: white; border-color: color-mix(in srgb, white 40%, transparent); }

/* — page header (About / Services / Devices) — */
.page-header { padding-top: calc(var(--space-8) * 2); padding-bottom: var(--space-6); }
.page-header h1 { margin: var(--space-4) 0 var(--space-3); max-width: 680px; }
.page-header p { font-size: 17px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 78%, transparent); max-width: 640px; }

/* — split (image + text) rows — */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.split-media {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(60deg, var(--color-neutral-200) 0px, var(--color-neutral-200) 2px, var(--color-neutral-300) 2px, var(--color-neutral-300) 22px);
}
.split-media--alt {
  background: repeating-linear-gradient(60deg, var(--color-neutral-300) 0px, var(--color-neutral-300) 2px, var(--color-neutral-400) 2px, var(--color-neutral-400) 22px);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media-note { font-family: monospace; font-size: 11px; color: var(--color-neutral-700); text-align: center; padding: 0 20px; }

/* — device rows: narrow media, wide text — */
.device-row { display: grid; grid-template-columns: 340px 1fr; gap: var(--space-8); align-items: start; }
.device-row .split-media { aspect-ratio: 3/4; }
.device-row ul { margin: 0; padding-left: 20px; font-size: 15px; line-height: 1.8; color: color-mix(in srgb, var(--color-text) 78%, transparent); }
.device-row ul strong { color: var(--color-text); }
.device-bullets { display: flex; flex-direction: column; gap: var(--space-3); }

/* — feature card grid — */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }
.card-grid .card { transition: transform .2s ease, box-shadow .2s ease; }
.card-grid .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* — roadmap list — */
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-6) calc(var(--space-6) * 1.6); }
.roadmap-item { display: flex; gap: var(--space-3); }
.roadmap-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent-400); margin-top: 8px; flex-shrink: 0; }
.roadmap-item p { color: color-mix(in srgb, white 85%, transparent); font-size: 15px; line-height: 1.7; margin: 0; }
.roadmap-item strong { color: white; }

/* — accordion (Services, FAQ) — */
.accordion-item { width: 100%; margin-bottom: var(--space-4); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: none; border: none; cursor: pointer; padding: var(--space-4); text-align: left;
  font-family: var(--font-heading); font-size: 19px; font-weight: 600; color: var(--color-text);
}
.accordion-symbol {
  font-size: 22px; color: var(--color-accent); flex-shrink: 0;
  display: inline-block; transition: transform .2s ease;
}
/* "+" rotated 45deg reads as "x" (closed/collapse) - same morph trick as
   the mobile nav's hamburger-to-X, so the symbol itself can stay a plain
   "+" in the markup instead of swapping characters via JS. */
.accordion-item.is-open .accordion-symbol { transform: rotate(45deg); }
/* Animating from height:auto isn't possible directly, so the wrapper is a
   grid row that transitions between a 0fr and 1fr track - the row (and
   everything in it) ends up animating to/from its natural content height
   with no JS needed to measure pixels. */
.accordion-body-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.accordion-item.is-open .accordion-body-wrap { grid-template-rows: 1fr; }
/* This inner element (not .accordion-body itself) is what clips to the
   collapsing grid row. With border-box sizing, a border/padding on the
   clipped element itself puts a floor under how short it can get - its
   rendered height can never go below its own padding, no matter what the
   grid row computes to - so the padding has to live one level further in,
   on .accordion-body, leaving this wrapper free of any. */
.accordion-body-inner { overflow: hidden; min-height: 0; }
.accordion-body { margin: 0; padding: 0 var(--space-4) var(--space-4); font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 78%, transparent); }

/* — generic content sections — */
.centered-text { text-align: center; }
.text-body { font-size: 16px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 78%, transparent); }
.text-body-lg { font-size: 17px; line-height: 1.7; color: color-mix(in srgb, var(--color-text) 78%, transparent); }

/* — request demo form — */
.demo-form { display: flex; flex-direction: column; gap: var(--space-4); }
.demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form input[type="tel"],
.demo-form input[type="number"],
.demo-form input[type="url"],
.demo-form input[type="date"],
.demo-form select,
.demo-form textarea {
  width: 100%; min-height: 36px; padding: 6px 10px; font: inherit;
  font-size: 14px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-surface);
  border: 1px solid var(--color-divider); border-radius: 0;
}
.demo-form input:hover, .demo-form textarea:hover, .demo-form select:hover {
  border-color: color-mix(in srgb, var(--color-text) 45%, transparent);
}
.demo-form input:focus-visible, .demo-form textarea:focus-visible, .demo-form select:focus-visible {
  border-color: var(--color-accent); outline: none;
}
.demo-form textarea { min-height: 90px; resize: vertical; }
.demo-form-disclaimer {
  font-size: 12.5px; line-height: 1.6; color: color-mix(in srgb, var(--color-text) 55%, transparent);
  text-align: center; margin: var(--space-2) 0 0;
}
.demo-thankyou { text-align: center; }

/* — policy / legal content — */
.policy-body { font-size: 15.5px; line-height: 1.75; color: color-mix(in srgb, var(--color-text) 82%, transparent); }
.policy-body h2 { font-size: 22px; margin: var(--space-8) 0 var(--space-3); }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 { font-size: 17px; margin: var(--space-6) 0 var(--space-2); }
.policy-body p { margin: 0 0 var(--space-4); }
.policy-body ul, .policy-body ol { margin: 0 0 var(--space-4); padding-left: 22px; }
.policy-body li { margin-bottom: var(--space-2); }
.policy-body a { color: var(--color-accent); }

/* — cookie banner — */
.cookie-banner {
  position: fixed; left: var(--space-4); right: var(--space-4); bottom: var(--space-4); z-index: 200;
  max-width: 640px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4);
  padding: var(--space-4); border-radius: var(--radius-lg);
  background: var(--color-accent-900); color: color-mix(in srgb, white 88%, transparent);
  box-shadow: var(--shadow-lg);
}
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.6; flex: 1 1 260px; }
.cookie-banner a { color: var(--color-accent-400); }
.cookie-banner-actions { display: flex; gap: var(--space-2); flex-shrink: 0; }
.cookie-banner .btn-primary { color: #fff; }
.cookie-banner .btn-secondary { color: color-mix(in srgb, white 88%, transparent); border-color: color-mix(in srgb, white 30%, transparent); }
.cookie-banner[hidden] { display: none; }

/* — footer — */
.site-footer {
  /* Pushes the footer to the bottom of .page-shell's flex column when the
     page content is shorter than the viewport, instead of leaving it
     stranded right after a short section with empty space beneath it. */
  margin-top: auto;
  background: var(--color-accent-900);
  color: color-mix(in srgb, white 85%, transparent);
  border-top: 1px solid color-mix(in srgb, white 12%, transparent);
}
.site-footer-grid {
  max-width: 1240px; margin: 0 auto; padding: var(--space-8) var(--space-6);
  display: flex; flex-wrap: wrap; gap: var(--space-6) var(--space-8);
}
.site-footer-grid > div:first-child { flex: 1.4 1 240px; }
.site-footer-grid > div:not(:first-child) { flex: 1 1 140px; }
.site-footer-grid a { display: block; color: color-mix(in srgb, white 70%, transparent); margin-bottom: var(--space-2); }
.site-footer-grid a:hover { color: var(--color-accent-400); }
.site-footer-grid h6 { margin-bottom: var(--space-3); color: white; }
.site-footer .nav-brand { color: white; }

@media (max-width: 780px) {
  .split, .device-row { grid-template-columns: 1fr; }
  .site-footer-grid > div { flex-basis: 45%; }
  .hero-content h1 { font-size: 40px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 10;
    flex-direction: column; align-items: stretch; gap: var(--space-2);
    padding: var(--space-4); background: var(--color-accent-900);
    border-top: 1px solid color-mix(in srgb, white 12%, transparent);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: var(--space-2) 0; }
  .nav-links .btn-primary { margin-left: 0 !important; margin-top: var(--space-2); }
}

