/* =================================================================
   Axxvion — Design System
   Palette: Navy blue, white, blue subtones, gold accent
   Pure HTML + CSS. No external dependencies.
   ================================================================= */

:root {
  /* Navy core */
  --navy-950: #060f26;
  --navy-900: #0a1633;
  --navy-800: #0d1f4c;
  --navy-700: #132a63;
  --navy-600: #1b3a80;

  /* Blue subtones */
  --blue-600: #2350a8;
  --blue-500: #2f66cc;
  --blue-400: #4d84e6;
  --blue-300: #7ba6f0;
  --blue-200: #aecbf7;
  --blue-100: #dde9fc;
  --blue-50:  #eff5fe;

  /* Gold accents */
  --gold-600: #b8891f;
  --gold-500: #d4af37;
  --gold-400: #e3c25c;
  --gold-300: #f0d888;
  --gold-100: #f8ecc4;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f6f9ff;
  --ink: #0c1730;
  --muted: #5a6b8c;
  --line: #e2eafb;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(10, 22, 51, 0.08), 0 1px 2px rgba(10, 22, 51, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 22, 51, 0.10), 0 4px 10px rgba(10, 22, 51, 0.06);
  --shadow-lg: 0 30px 70px rgba(10, 22, 51, 0.18), 0 10px 24px rgba(10, 22, 51, 0.10);
  --shadow-gold: 0 14px 34px rgba(212, 175, 55, 0.32);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --gradient-navy: linear-gradient(160deg, #0a1633 0%, #0d1f4c 45%, #132a63 100%);
  --gradient-gold: linear-gradient(135deg, #f0d888 0%, #d4af37 55%, #b8891f 100%);
  --gradient-blue: linear-gradient(135deg, #4d84e6 0%, #2f66cc 100%);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1rem; }

a { color: var(--blue-500); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--blue-600); }

img, svg { max-width: 100%; display: block; }

::selection { background: var(--gold-300); color: var(--navy-900); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.text-gold { color: var(--gold-600); }
.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--gradient-gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(212,175,55,0.42); color: var(--navy-950); }
.btn--dark {
  background: var(--navy-800);
  color: var(--white);
}
.btn--dark:hover { transform: translateY(-2px); background: var(--navy-700); color: var(--white); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); color: var(--white); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border-color: var(--blue-200);
  color: var(--navy-800);
}
.btn--outline:hover { border-color: var(--blue-400); color: var(--navy-900); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
.brand__name b { color: var(--gold-600); font-weight: 700; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--navy-800);
  font-weight: 500;
  font-size: 0.98rem;
}
.nav__links a:hover { background: var(--blue-50); color: var(--navy-900); }
.nav__links a.active { color: var(--blue-600); background: var(--blue-50); }
.nav__cta { margin-left: 8px; }
.nav__cta .btn { padding: 10px 20px; font-size: 0.95rem; }

/* Mobile menu via checkbox hack */
.nav__toggle, .nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--gradient-navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0 clamp(80px, 11vw, 140px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(212,175,55,0.20), transparent 60%),
    radial-gradient(50% 50% at 8% 88%, rgba(77,132,230,0.28), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero h1 .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: rgba(233, 240, 255, 0.82); font-size: 1.22rem; max-width: 52ch; margin-bottom: 32px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 8px 7px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  font-size: 0.86rem;
  color: rgba(233,240,255,0.9);
  margin-bottom: 26px;
}
.hero__pill b { color: var(--gold-400); }
.hero__pill span.tag {
  background: var(--gradient-gold); color: var(--navy-900);
  padding: 3px 12px; border-radius: 999px; font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.04em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: rgba(233,240,255,0.65);
  font-size: 0.9rem;
}
.hero__trust b { color: var(--white); display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }

.hero__art { position: relative; }
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* wave divider */
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero__wave svg { width: 100%; height: auto; }

/* ---------- Marquee / logos row ---------- */
.platforms-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.platforms-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 6vw, 72px); flex-wrap: wrap;
  color: var(--muted);
}
.platform-badge { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy-800); }
.platform-badge svg { width: 30px; height: 30px; color: var(--blue-500); }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  margin-bottom: 20px;
}
.card__icon svg { width: 30px; height: 30px; }
.card--gold .card__icon { background: linear-gradient(150deg, var(--gold-100), #f4e3ad); color: var(--gold-600); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ---------- Split / showcase ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; }
.split__list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gradient-blue); color: #fff;
  display: grid; place-items: center; margin-top: 2px;
}
.split__list .tick svg { width: 14px; height: 14px; }
.split__list b { display: block; color: var(--navy-900); }
.split__list span { color: var(--muted); font-size: 0.96rem; }

.media-frame {
  border-radius: var(--radius-xl);
  background: var(--gradient-navy);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.media-frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 75% 20%, rgba(212,175,55,0.22), transparent 60%);
}
.media-frame svg { position: relative; }

/* ---------- Stats band ---------- */
.stats {
  background: var(--gradient-navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 90% 10%, rgba(212,175,55,0.18), transparent 60%);
}
.stats__eyebrow {
  position: relative;
  display: block; text-align: center; margin-bottom: 34px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-300);
}
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 4px 20px; }
.stat:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
}
.stat__chip {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 16px; color: var(--gold-400);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}
.stat__chip svg { width: 26px; height: 26px; }
.stat b { display: block; font-size: clamp(1.7rem, 2.6vw, 2.25rem); font-weight: 700; letter-spacing: -0.03em; color: #fff; line-height: 1.12; }
.stat span { color: rgba(233,240,255,0.72); font-size: 0.92rem; margin-top: 7px; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; padding: 30px 26px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.step__num {
  counter-increment: step;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--gradient-navy); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 18px;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--gradient-navy);
  border-radius: var(--radius-xl);
  padding: clamp(44px, 6vw, 72px);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 15% 20%, rgba(77,132,230,0.35), transparent 60%),
    radial-gradient(45% 60% at 85% 85%, rgba(212,175,55,0.22), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(233,240,255,0.82); max-width: 56ch; margin: 0 auto 28px; font-size: 1.12rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(233,240,255,0.72);
  padding: 70px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer .brand__name { color: #fff; }
.footer__about { max-width: 34ch; margin-top: 18px; font-size: 0.95rem; }
.footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a { color: rgba(233,240,255,0.72); font-size: 0.96rem; }
.footer ul a:hover { color: var(--gold-400); }
.footer__contact a { color: var(--gold-300); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 0.88rem;
  color: rgba(233,240,255,0.5);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center; color: rgba(233,240,255,0.8);
}
.footer__social a:hover { background: rgba(255,255,255,0.08); color: var(--gold-400); border-color: rgba(212,175,55,0.4); }
.footer__social svg { width: 17px; height: 17px; }

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: var(--gradient-navy);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 104px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 60% at 88% 15%, rgba(212,175,55,0.20), transparent 60%),
    radial-gradient(40% 55% at 5% 90%, rgba(77,132,230,0.28), transparent 60%);
}
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(233,240,255,0.82); font-size: 1.15rem; margin: 0; max-width: 60ch; }
.breadcrumb { font-size: 0.9rem; color: rgba(233,240,255,0.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(233,240,255,0.85); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Legal / document layout ---------- */
.doc { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.doc__toc {
  position: sticky; top: 90px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; background: var(--off-white);
}
.doc__toc h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.doc__toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.doc__toc a {
  display: block; padding: 7px 12px; border-radius: 8px;
  color: var(--navy-800); font-size: 0.92rem; border-left: 2px solid transparent;
}
.doc__toc a:hover { background: var(--blue-50); border-left-color: var(--gold-500); }
.doc__updated {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: 999px; padding: 6px 16px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 30px;
}
.doc__body h2 {
  font-size: 1.5rem; margin-top: 44px; padding-top: 8px;
  scroll-margin-top: 90px;
}
.doc__body h2:first-of-type { margin-top: 0; }
.doc__body h3 { font-size: 1.15rem; margin-top: 26px; }
.doc__body p, .doc__body li { color: #33415c; }
.doc__body ul, .doc__body ol { padding-left: 22px; margin: 0 0 18px; }
.doc__body li { margin-bottom: 8px; }
.doc__body a { font-weight: 500; }
.callout {
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 18px 22px; margin: 24px 0;
  font-size: 0.96rem; color: var(--navy-800);
}
.callout b { color: var(--navy-900); }

/* ---------- Support page ---------- */
.support-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: -80px; position: relative; z-index: 5; }
.support-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.support-card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gradient-navy); color: var(--gold-400); margin-bottom: 18px;
}
.support-card__icon svg { width: 28px; height: 28px; }
.support-card h3 { margin-bottom: 8px; }
.support-card p { color: var(--muted); font-size: 0.96rem; }
.support-card a.mail {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-weight: 600; color: var(--blue-600);
}
.support-card a.mail:hover { color: var(--gold-600); }
.support-card a.mail svg { width: 16px; height: 16px; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

/* Contact "email" cards */
.mail-tile {
  display: flex; align-items: center; gap: 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.mail-tile:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mail-tile__ic {
  flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--blue-50), var(--blue-100)); color: var(--blue-600);
}
.mail-tile__ic svg { width: 26px; height: 26px; }
.mail-tile.gold .mail-tile__ic { background: linear-gradient(150deg, var(--gold-100), #f4e3ad); color: var(--gold-600); }
.mail-tile small { display: block; color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.mail-tile b { font-size: 1.1rem; color: var(--navy-900); }
.mail-tile a { font-size: 1.1rem; font-weight: 600; }

/* FAQ accordion (details/summary) */
.faq { display: grid; gap: 14px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; color: var(--navy-900); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq summary .chev svg { width: 16px; height: 16px; }
.faq details[open] summary .chev { transform: rotate(180deg); background: var(--gold-100); color: var(--gold-600); }
.faq .faq__body { padding: 0 24px 22px; color: var(--muted); }
.faq .faq__body p { margin: 0; }

/* status row */
.status-row {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 18px; border-radius: 999px; font-size: 0.9rem; color: rgba(233,240,255,0.9);
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #38d39f; box-shadow: 0 0 0 4px rgba(56,211,159,0.25); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(24px); animation: reveal 0.8s var(--ease) forwards; }
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { max-width: 480px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid--3, .grid--4, .steps, .support-cards { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat:not(:first-child)::before { display: none; }
  .doc { grid-template-columns: 1fr; }
  .doc__toc { position: static; display: none; }
  .contact-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Mobile nav */
  .nav__burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
    color: var(--navy-800); border: 1px solid var(--line); background: #fff;
  }
  .nav__burger svg { width: 24px; height: 24px; }
  .nav__menu {
    position: fixed; inset: 70px 0 auto 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 18px 24px 26px;
    transform: translateY(-140%);
    transition: transform 0.4s var(--ease);
    display: flex;
  }
  .nav__menu .nav__links { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .nav__menu .nav__links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav__menu .nav__cta { margin: 12px 0 0; }
  .nav__menu .nav__cta .btn { width: 100%; padding: 14px; }
  .nav__toggle:checked ~ .nav__menu { transform: translateY(0); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--4, .steps, .support-cards, .stats__grid, .footer__grid { grid-template-columns: 1fr; }
  .support-cards { margin-top: -50px; }
  .hero__trust { gap: 22px; }
  .btn { width: 100%; }
  .hero__actions, .cta-band__actions { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
