/* ═══════════════════════════════════════════════════════════════
   FLEETIRA — Waitlist Site
   Premium cobalt · liquid glass · Geist
   Owned by AHMEDMEDIAGROUP
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  /* Keep anchor jumps clear of the fixed nav */
  scroll-padding-top: calc(var(--nav-h) + var(--nav-offset) + 1rem);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  min-height: 100svh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ring);
}
/* Input inside the pill waitlist form: parent already glows via :focus-within */
.waitlist input:focus-visible { box-shadow: none; }
/* FAQ summary inherits its <details> card's rounded shape */
.faq summary:focus-visible { border-radius: var(--r-md); }
::selection { background: rgba(96, 165, 250, 0.32); color: #fff; }

/* ── 2. Tokens ────────────────────────────────────────────────── */
:root {
  /* cursor position — updated by JS */
  --mx: 50%;
  --my: 30%;

  /* Background scale — near-black with subtle blue cast */
  --bg:        #050811;
  --bg-elev-1: rgba(148, 180, 255, 0.025);
  --bg-elev-2: rgba(148, 180, 255, 0.05);

  /* Hairline borders — blue-tinted, not white */
  --line:        rgba(148, 180, 255, 0.10);
  --line-strong: rgba(148, 180, 255, 0.18);
  --line-blue:   rgba(96, 165, 250, 0.34);

  /* Premium blue scale — royal sapphire → soft */
  --blue-700: #1e40af;   /* royal */
  --blue-500: #2563eb;   /* true blue — primary CTA */
  --blue-400: #3b82f6;   /* sky */
  --blue-300: #60a5fa;   /* bright */
  --blue-200: #93c5fd;   /* soft */

  /* Semantic aliases */
  --blue:        var(--blue-500);
  --blue-hover:  var(--blue-400);
  --blue-bright: var(--blue-300);
  --blue-soft:   var(--blue-200);
  --blue-tint:   rgba(37, 99, 235, 0.10);
  --ring:        rgba(96, 165, 250, 0.55);

  /* Accents — emerald reserved for "live/healthy" only */
  --emerald: #34d399;
  --rose:    #fb7185;

  /* Text */
  --text:      #ffffff;
  --text-body: #b6c1d4;
  --text-soft: #6b7689;
  --text-dim:  #4a5468;

  /* Type */
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Radius */
  --r-sm:   8px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-nav:       0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 36px -10px rgba(0, 0, 0, 0.5);
  --glow-blue:        0 8px 30px -8px rgba(37, 99, 235, 0.45);
  --glow-blue-strong: 0 14px 44px -8px rgba(37, 99, 235, 0.7);

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      200ms;

  /* Layout */
  --container:      1080px;
  --content-narrow: 720px;
  --gutter:         clamp(1rem, 3vw, 1.75rem);
  --nav-h:          56px;
  --nav-offset:     14px;
}

/* ── 3. Base typography ──────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--text);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2rem, 5.5vw + .5rem, 4.25rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.65rem, 3.5vw + .5rem, 2.85rem); line-height: 1.12; letter-spacing: -0.028em; }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; }
h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); }
p  { color: var(--text-body); }

.lead { font-size: 1.0625rem; color: var(--text-body); line-height: 1.6; max-width: 36rem; }
.section-head .lead { margin-left: auto; margin-right: auto; }

/* ── 4. Utilities ────────────────────────────────────────────── */
.link { color: var(--blue-bright); transition: color var(--dur); }
.link:hover { color: var(--blue-soft); }

/* Inline <svg><defs/></svg> wrapper — referenced via <use> in nav/footer */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  padding: .55rem .9rem;
  background: var(--blue-700);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── 5. Background decoration ────────────────────────────────── */
.bg-deco {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-deco__glow {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 140vw);
  height: 800px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(37, 99, 235, 0.30), transparent 65%);
  filter: blur(30px);
  animation: glow-breathe 14s var(--ease) infinite alternate;
}
.bg-deco__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  background-position: 50% 0;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black, transparent 78%);
}
.bg-deco__spot {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.32) 1px, transparent 1px);
  background-size: 58px 58px;
  background-position: 50% 0;
  -webkit-mask-image: radial-gradient(420px circle at var(--mx) var(--my), black, transparent 65%);
          mask-image: radial-gradient(420px circle at var(--mx) var(--my), black, transparent 65%);
  will-change: mask-image, -webkit-mask-image;
}
.bg-deco__cursor-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--mx) var(--my),
    rgba(37, 99, 235, 0.18),
    transparent 50%
  );
  will-change: background;
}
@keyframes glow-breathe {
  0%   { opacity: 0.55; transform: translateX(-50%) scale(1); }
  100% { opacity: 1;    transform: translateX(-50%) scale(1.12); }
}
@media (hover: none) {
  .bg-deco__spot, .bg-deco__cursor-glow { display: none; }
}

/* ── 6. Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(3rem, 7vw, 6.5rem);
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + var(--nav-offset) + 1rem);
}
.section + .section { border-top: 1px solid var(--line); }
.section-head {
  text-align: center;
  max-width: var(--content-narrow);
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}
.section-head h2 { margin-bottom: 1rem; }

/* ── 7. Components ───────────────────────────────────────────── */

/* 7.1 Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
  background: var(--blue-tint);
  border: 1px solid rgba(96, 165, 250, 0.24);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
}

/* 7.2 Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1.15rem;
  height: 40px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur),
    color var(--dur),
    box-shadow var(--dur),
    transform var(--dur);
}
.btn--sm    { height: 36px; padding: 0 .95rem; font-size: 0.875rem; }
.btn--lg    { height: 48px; padding: 0 1.4rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn .arrow { width: 14px; height: 14px; transition: transform var(--dur); }
.btn:hover .arrow { transform: translateX(2px); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 700ms var(--ease);
  pointer-events: none;
}
.btn--primary:hover {
  background: var(--blue-hover);
  box-shadow: var(--glow-blue-strong), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.btn--primary:hover::after { transform: translateX(110%); }
.btn--primary:active       { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--secondary:hover {
  border-color: var(--line-blue);
  background: var(--bg-elev-1);
}

/* 7.3 Card surface w/ cursor spotlight */
.card {
  position: relative;
  background: var(--bg-elev-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition:
    border-color var(--dur),
    background var(--dur),
    transform 260ms var(--ease-out),
    box-shadow var(--dur);
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    240px circle at var(--card-mx, 50%) var(--card-my, 50%),
    rgba(96, 165, 250, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 240ms var(--ease);
  pointer-events: none;
  mix-blend-mode: plus-lighter;
}
.card:hover {
  border-color: var(--line-strong);
  background: var(--bg-elev-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.55);
}
.card:hover::after { opacity: 1; }

/* 7.4 Icon tile — shared by step / feature / contact / link */
.icon-tile {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-tint);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: var(--r-md);
  color: var(--blue-bright);
  flex-shrink: 0;
}
.icon-tile svg { width: 18px; height: 18px; }

/* 7.5 Field */
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field label { font-size: 0.8125rem; color: var(--text); font-weight: 500; }
.field input,
.field textarea {
  background: rgba(0, 0, 0, 0.30);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .7rem .85rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--dur), box-shadow var(--dur);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--line-blue);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.10);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(251, 113, 133, 0.55);
}
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.14);
}

/* ── 8. Floating pill header ─────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--nav-offset);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - (var(--gutter) * 2));
  max-width: 680px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 .5rem 0 1.25rem;
  background: rgba(10, 18, 40, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-nav);
  transition: top 240ms var(--ease), background 240ms, border-color 240ms;
}
.nav.is-scrolled {
  top: 10px;
  background: rgba(10, 18, 40, 0.82);
  border-color: var(--line-strong);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  line-height: 0; /* prevent inline-image baseline gap */
}
.brand-mark {
  height: 32px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}
.nav-links { display: none; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-body);
  font-weight: 500;
  transition: color var(--dur);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: .4rem; }

@media (min-width: 900px) { .nav-links { display: inline-flex; } }
/* Hide the nav CTA below the desktop breakpoint — it lives in the drawer */
@media (max-width: 899px) {
  .nav-actions .btn--primary { display: none; }
}
@media (max-width: 740px) { .nav { padding: 0 .5rem 0 1rem; } }
@media (max-width: 480px) {
  .nav { width: calc(100% - 16px); padding: 0 .4rem 0 .85rem; gap: .5rem; }
  .brand-mark { height: 26px; }
  .nav-toggle { width: 34px; height: 34px; }
}

.nav-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: var(--bg-elev-1);
  border: 1px solid var(--line);
  position: relative; z-index: 110;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  border-radius: 1.5px;
  transition: background var(--dur);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  width: 16px; height: 1.5px;
  background: var(--text);
  border-radius: 1.5px;
  transition: transform var(--dur), top var(--dur);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top:  5px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.drawer {
  position: fixed;
  top: calc(var(--nav-offset) + var(--nav-h) + 12px);
  left: 50%;
  width: calc(100% - (var(--gutter) * 2));
  max-width: 680px;
  background: rgba(10, 18, 40, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: .25rem;
  opacity: 0; pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity var(--dur), transform var(--dur);
  z-index: 99;
}
.drawer.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.drawer a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: .65rem .25rem;
  border-bottom: 1px solid var(--line);
}
.drawer .btn { border-bottom: 0; margin-top: .75rem; }

/* ── 9. Hero ─────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(6rem, 10vw, 9.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  text-align: center;
}
.hero__inner {
  max-width: var(--content-narrow);
  margin-inline: auto;
}
.hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 0 80px rgba(96, 165, 250, 0.18);
}
.hero .lead {
  margin: 0 auto 2rem;
  font-size: clamp(0.9375rem, 0.5vw + .9rem, 1.2rem);
  color: var(--text-body);
  max-width: 36rem;
}

/* Waitlist form */
.waitlist {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem;
  background: var(--bg-elev-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  max-width: 480px;
  margin: 0 auto;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.waitlist:focus-within {
  border-color: var(--line-blue);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.10);
}
.waitlist:has(input[aria-invalid="true"]) {
  border-color: rgba(251, 113, 133, 0.55);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.14);
}
.waitlist input {
  flex: 1; min-width: 0;
  padding: 0 1rem;
  height: 42px;
  background: transparent;
  border: 0;
  font-size: 0.9375rem;
  color: var(--text);
}
.waitlist input::placeholder { color: var(--text-soft); }
.waitlist input:focus { outline: none; }
.waitlist-msg {
  margin-top: .9rem;
  font-size: 0.875rem;
  color: var(--emerald);
  min-height: 1.2em;
}
.waitlist-msg.is-error { color: var(--rose); }
@media (max-width: 420px) {
  /* Reclaim space inside the pill on tiny phones — keep inline layout. */
  .waitlist { gap: .3rem; }
  .waitlist input { padding: 0 .75rem; }
  .waitlist .btn { padding: 0 .85rem; }
}

/* Compatible platforms */
.platforms {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.platforms__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
.platforms__row {
  display: flex;
  justify-content: center;
}
.platforms__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
}
.platforms__item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity var(--dur), color var(--dur);
}
.platforms__item:hover { opacity: 1; color: var(--text); }
.platforms__item svg { width: 18px; height: 18px; }

/* ── 10. Card-grid collections ───────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .card-grid--3-lg { grid-template-columns: repeat(3, 1fr); } }
.card-grid--single { max-width: 26rem; margin-inline: auto; }

.card--padded {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  margin-bottom: .25rem;
}
.card__step-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
}
.card h3 { color: var(--text); }
.card p  { font-size: 0.9375rem; line-height: 1.6; color: var(--text-soft); }

/* ── 11. Pricing ─────────────────────────────────────────────── */
.price {
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  position: relative;
  border-color: var(--line-blue);
  background: var(--bg-elev-2);
  box-shadow: var(--glow-blue);
}
.price:hover {
  box-shadow: var(--glow-blue-strong);
}
.price__head h3 { font-size: 1.25rem; color: var(--text); margin-bottom: .25rem; }
.price__head p  { font-size: 0.875rem; color: var(--text-soft); }
.price__price { display: flex; align-items: baseline; gap: .25rem; }
.price__currency { font-size: 1.25rem; color: var(--text-soft); font-weight: 500; }
.price__amount { font-size: 2.75rem; font-weight: 600; color: var(--text); line-height: 1; letter-spacing: -0.038em; }
.price__unit { font-size: 0.875rem; color: var(--text-soft); margin-left: .4rem; }
.price__note { font-size: 0.8125rem; color: var(--text-soft); margin-top: -.6rem; }
.price__list {
  flex: 1;
  display: flex; flex-direction: column; gap: .65rem;
  margin-top: .25rem;
}
.price__list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: 0.875rem;
  color: var(--text-body);
}
.price__list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2393c5fd' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8 7 11 12.5 5'/></svg>") center/11px no-repeat,
    rgba(96, 165, 250, 0.14);
}

/* ── 12. Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.contact-copy h2 { margin-bottom: 1rem; text-align: left; }
.contact-copy .lead { margin-bottom: 0; max-width: 32rem; }

.contact-form {
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form:hover { transform: none; }
.contact-msg { font-size: 0.8125rem; color: var(--emerald); }
.contact-msg:empty { display: none; }
.contact-msg.is-error { color: var(--rose); }

/* ── 13. FAQs ────────────────────────────────────────────────── */
.faqs {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  align-items: start;
}
@media (min-width: 720px) {
  .faqs { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
.faq {
  background: var(--bg-elev-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--dur), background var(--dur);
}
.faq:hover         { border-color: var(--line-strong); }
.faq[open]         { border-color: var(--line-blue); background: var(--bg-elev-2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--blue-bright);
  background: var(--blue-tint);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--dur), background var(--dur), color var(--dur);
  line-height: 1;
}
.faq[open] .faq-chev {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
.faq-body { padding: 0 1.25rem 1.2rem; }
.faq-body p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Shared inline-code style (legal body) */
.legal-body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  padding: .1rem .35rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--blue-soft);
}

/* ── 14. Footer (single bar) ─────────────────────────────────── */
.footer {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--text-soft);
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .85rem 1.5rem;
}
.footer-copy { margin: 0; }
.footer-copy a {
  color: var(--text-body);
  transition: color var(--dur);
}
.footer-copy a:hover { color: var(--blue-bright); }
.footer-sep {
  margin: 0 .35rem;
  color: var(--text-dim);
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-links a {
  color: var(--text-soft);
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--text); }
.footer-links a[aria-current="page"] {
  color: var(--blue-bright);
  font-weight: 500;
}
@media (max-width: 540px) {
  .footer-bar { flex-direction: column; text-align: center; gap: .55rem; }
}

/* ── 15. Legal & 404 pages ───────────────────────────────────── */
.standalone {
  padding-top: clamp(7rem, 11vw, 9rem);
  padding-bottom: 4.5rem;
}
.standalone-inner { max-width: var(--content-narrow); margin: 0 auto; }

.legal-head { text-align: center; margin-bottom: 3rem; }
.legal-head h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.85rem);
  margin-bottom: .5rem;
  letter-spacing: -0.032em;
}
.legal-updated {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.legal-toc { padding: 1.5rem 1.75rem; margin-bottom: 3rem; }
.legal-toc:hover { transform: none; }
.legal-toc h4 { margin-bottom: 1rem; }
.legal-toc ol {
  list-style: decimal inside;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .9rem;
  font-size: 0.875rem;
  color: var(--text-body);
}
@media (max-width: 540px) { .legal-toc ol { grid-template-columns: 1fr; } }
.legal-toc a {
  color: var(--text-body);
  transition: color var(--dur);
}
.legal-toc a:hover { color: var(--blue-bright); }

.legal-body { counter-reset: lc; }
.legal-body section {
  margin-bottom: 2.25rem;
  scroll-margin-top: calc(var(--nav-h) + var(--nav-offset) + 1rem);
}
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .85rem;
  display: flex;
  align-items: baseline;
  gap: .55rem;
  letter-spacing: -0.02em;
}
.legal-body h2::before {
  content: counter(lc, decimal-leading-zero);
  counter-increment: lc;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--blue-bright);
  font-weight: 500;
}
.legal-body p,
.legal-body li {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.legal-body ul,
.legal-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}
.legal-body ol { list-style: decimal; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body a {
  color: var(--blue-bright);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur);
}
.legal-body a:hover { border-bottom-color: var(--blue-bright); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  transition: color var(--dur);
}
.back-link svg { width: 13px; height: 13px; }
.back-link:hover { color: var(--blue-bright); }

/* 404 */
.notfound { text-align: center; }
.notfound__num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(6rem, 18vw + 1rem, 10rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--blue-300);
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(96, 165, 250, 0.25);
}
.notfound h1 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  margin-bottom: 1rem;
}
.notfound p.lead { margin: 0 auto 2rem; }
.notfound__actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
}
.notfound__hint {
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: var(--text-soft);
}

/* ── 16. Privacy notice (JS-injected, no-tracking site) ──────── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 760px;
  margin-inline: auto;
  background: rgba(10, 18, 40, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 1rem;
  animation: cookie-in 500ms var(--ease-out) backwards;
}
@media (min-width: 640px) {
  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.cookie-banner__title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cookie-banner p {
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner a {
  color: var(--blue-bright);
  border-bottom: 1px dashed currentColor;
  transition: color var(--dur);
}
.cookie-banner a:hover { color: var(--blue-soft); }
.cookie-banner__actions {
  display: flex;
  gap: .5rem;
}
.cookie-banner__actions .btn { min-width: 96px; }
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Honeypot — visually hidden, accessible-tree hidden */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ── 17. Animations & motion preferences ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fade-in 800ms var(--ease-out) forwards;
}
.fade-in[data-delay="1"] { animation-delay: 60ms; }
.fade-in[data-delay="2"] { animation-delay: 180ms; }
.fade-in[data-delay="3"] { animation-delay: 320ms; }
.fade-in[data-delay="4"] { animation-delay: 480ms; }
@keyframes fade-in {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-in { opacity: 1; transform: none; animation: none; }
  .bg-deco__glow, .cookie-banner { animation: none; }
  .btn--primary::after { display: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
