/* =====================================================================
   Aman — community safety intelligence, nationwide
   Marketing site styles. Vanilla CSS, no build step.
   Palette is centered on the brand logos: Egyptian gold, sun-orange,
   sacred red and royal blue, set on a deep night-navy.
   Sections: tokens → base → layout → buttons/pills → nav → hero
             → stats → features → how → data → amanix → faq → cta
             → footer → motion/reveal → responsive
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* surfaces — deep royal night */
  --bg: #0b1022;
  --bg-soft: #121a36;
  --surface: rgba(18, 26, 54, 0.66);
  --surface-2: rgba(20, 28, 60, 0.82);
  --border: rgba(245, 179, 1, 0.16);
  --border-strong: rgba(245, 179, 1, 0.34);

  /* brand accents — straight from the Horus-eye & scarab marks */
  --gold: #f5b301;
  --gold-bright: #ffcf4a;
  --gold-deep: #d98a06;
  --orange: #ff7a00;
  --red: #e11d2a;
  --red-bright: #f23b46;
  --royal: #1d3a8f;     /* deep wing blue   */
  --blue: #2f6df0;      /* bright iris blue */
  --blue-soft: #5b8def;

  /* live / online indicator (on-brand gold pulse) */
  --live: #ffcf4a;

  /* text */
  --text: #fbf7ec;
  --text-soft: #d9d2c2;
  --muted: #9a93a8;

  /* type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* shape */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1200px;

  /* effects */
  --shadow-card: 0 22px 60px -28px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 0 0 1px rgba(245, 179, 1, 0.25), 0 18px 60px -20px rgba(245, 179, 1, 0.4);
  /* signature "sunrise" gradient — the disc + rays in both logos */
  --grad-accent: linear-gradient(115deg, var(--gold-bright) 4%, var(--orange) 48%, var(--red) 96%);
  --grad-gold: linear-gradient(120deg, var(--gold-bright), var(--gold-deep));
}

/* ------------------------------ Base ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  /* warm regal wash so the navy never reads flat */
  background-image:
    radial-gradient(1000px 640px at 80% -10%, rgba(245, 179, 1, 0.12), transparent 60%),
    radial-gradient(760px 520px at 4% 2%, rgba(225, 29, 42, 0.1), transparent 58%),
    radial-gradient(820px 620px at 50% 108%, rgba(29, 58, 143, 0.16), transparent 60%);
  background-attachment: fixed;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--gold-bright); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

::selection { background: rgba(245, 179, 1, 0.32); color: #1a1205; }

/* Focus-visible: clear, on-brand gold ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  background: var(--gold);
  color: #1a1205;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
}

/* The gradient keyword used throughout headings */
.grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------- Logo seals ----------------------------- */
/* The brand marks are presented inside a struck-coin "seal" so the
   full-colour logos read cleanly on the dark UI regardless of how the
   source artwork is matted. */
.seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: radial-gradient(circle at 38% 32%, #ffffff, #fbf3df 78%, #f3e6c6 100%);
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 10px 26px -10px rgba(245, 179, 1, 0.55);
  overflow: hidden;
}
.seal img { width: 76%; height: 76%; object-fit: contain; }
.seal--sm { width: 38px; height: 38px; }
.seal--md { width: 52px; height: 52px; border-width: 2px; }
.seal--lg { width: 66px; height: 66px; }
.seal--xl {
  width: clamp(96px, 12vw, 116px); height: clamp(96px, 12vw, 116px);
  border-width: 3px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 46px -6px rgba(245, 179, 1, 0.6),
    0 22px 50px -18px rgba(0, 0, 0, 0.7);
}

/* ----------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 820px; }

.section {
  padding-block: clamp(72px, 11vw, 132px);
  position: relative;
}
.section--alt {
  background:
    linear-gradient(180deg, rgba(18, 26, 54, 0) 0%, rgba(18, 26, 54, 0.55) 50%, rgba(18, 26, 54, 0) 100%);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section__title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 18px;
}
.section__lead {
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--amanix { color: var(--blue-soft); }

/* ----------------------- Buttons & pills -------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.22s ease,
    background 0.22s ease, border-color 0.22s ease, color 0.18s ease;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }

.btn--primary {
  background: var(--grad-gold);
  color: #2a1a02;
  box-shadow: 0 10px 30px -10px rgba(245, 179, 1, 0.75);
}
.btn--primary:hover {
  color: #2a1a02;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(245, 179, 1, 0.9);
}

.btn--ghost {
  background: rgba(245, 179, 1, 0.05);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--gold);
  background: rgba(245, 179, 1, 0.1);
  transform: translateY(-2px);
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  color: var(--text-soft);
}
.pill--sm { font-size: 0.76rem; padding: 6px 12px; }
.pill--live { color: #ffe7a6; border-color: rgba(245, 179, 1, 0.4); }
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(245, 179, 1, 0.6);
  animation: pulse-dot 2.2s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(245, 179, 1, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(245, 179, 1, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 179, 1, 0); }
}

/* --------------------- Scroll progress bar ------------------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 120;
  background: var(--grad-accent);
  box-shadow: 0 0 14px rgba(245, 179, 1, 0.65);
  transition: width 0.08s linear;
}

/* ------------------------------- Nav ------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.is-stuck {
  background: rgba(11, 16, 34, 0.8);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
}
.brand:hover { color: var(--text); }
.brand__word { font-size: 1.35rem; letter-spacing: -0.01em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links > a:not(.btn) {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links > a:not(.btn):hover { color: var(--text); }
/*.nav__cta { margin-left: 6px; }*/
.nav__cta {
  display: inline-block;
  min-height: 44px;
  min-width: 44px;
  padding: 12px 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: rgba(245, 179, 1, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.6rem, 6.2vw, 4.5rem);
  margin: 22px 0 22px;
}
.hero__title .grad-text { display: block; }
.hero__sub {
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  max-width: 40ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Aurora + grid backgrounds */
.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.aurora--soft { opacity: 0.7; }
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 18s ease-in-out infinite alternate;
}
.aurora__blob--cyan   { width: 460px; height: 460px; top: -120px; right: -60px;  background: radial-gradient(circle, rgba(245, 179, 1, 0.5), transparent 70%); }
.aurora__blob--blue   { width: 420px; height: 420px; bottom: -160px; left: 8%;   background: radial-gradient(circle, rgba(29, 58, 143, 0.6), transparent 70%); animation-delay: -6s; }
.aurora__blob--purple { width: 380px; height: 380px; top: 20%; left: -120px;     background: radial-gradient(circle, rgba(225, 29, 42, 0.42), transparent 70%); animation-delay: -11s; }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -28px) scale(1.08); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 179, 1, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 179, 1, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 75%);
}

.hero__copy,
.hero__mock { position: relative; z-index: 1; }

/* ---- Product mock: Amanix briefing + national pulse (no map) ---- */
.hero__mock {
  display: grid;
  gap: 0;
}
.briefcard {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(245, 179, 1, 0.1), rgba(29, 58, 143, 0.12)),
    var(--surface-2);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  padding: 22px 22px 20px;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.5s ease;
}
.hero__mock:hover .briefcard { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.briefcard__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}
.briefcard__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.briefcard__live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffe7a6;
}
.briefcard__text {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}
.briefcard__text strong { color: var(--text); font-weight: 700; }
.briefcard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.chip {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 16, 34, 0.5);
  color: var(--text-soft);
}
.chip--down  { color: #ffd98a; border-color: rgba(245, 179, 1, 0.4); }
.chip--alert { color: #ffd0a3; border-color: rgba(255, 122, 0, 0.4); }
.chip--reg   { color: #aec2ff; border-color: rgba(47, 109, 240, 0.4); }
.livedot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 10px var(--live);
}

/* ---- National pulse feed (floats over briefing bottom-right) ---- */
.feedcard {
  position: relative;
  margin: -32px 0 0 auto;
  width: min(296px, 86%);
  z-index: 3;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(11, 16, 34, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
}
.feedcard__head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.feedcard__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.feedrow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.feedrow strong { color: var(--text); font-weight: 600; }
.feedrow__icon { width: 9px; height: 9px; border-radius: 50%; }
.feedrow__icon--crime { background: var(--red);    box-shadow: 0 0 8px var(--red); }
.feedrow__icon--news  { background: var(--blue);   box-shadow: 0 0 8px var(--blue); }
.feedrow__icon--amber { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.feedrow__time { color: var(--muted); font-size: 0.74rem; font-variant-numeric: tabular-nums; }

/* ------------------------------ Stats ----------------------------- */
.stats {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18, 26, 54, 0.5), rgba(18, 26, 54, 0.2));
  padding-block: clamp(40px, 6vw, 64px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -12px; top: 12%;
  height: 76%;
  width: 1px;
  background: var(--border);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat__num--word { letter-spacing: -0.01em; }
.stat__label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ----------------------------- Features --------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
/* cursor-follow spotlight driven by --mx/--my from JS */
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 0%),
    rgba(245, 179, 1, 0.16), transparent 45%);
}
.spotlight:hover::before { opacity: 1; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: rgba(245, 179, 1, 0.05);
}
.card__icon svg { width: 26px; height: 26px; }
.card__icon--gold   { color: var(--gold);   box-shadow: inset 0 0 22px rgba(245, 179, 1, 0.2); }
.card__icon--royal  { color: var(--blue-soft); box-shadow: inset 0 0 22px rgba(29, 58, 143, 0.28); }
.card__icon--orange { color: var(--orange); box-shadow: inset 0 0 22px rgba(255, 122, 0, 0.2); }
.card__icon--red    { color: var(--red-bright); box-shadow: inset 0 0 22px rgba(225, 29, 42, 0.2); }
.card__icon--blue   { color: var(--blue);   box-shadow: inset 0 0 22px rgba(47, 109, 240, 0.2); }
/* the Amanix seal sits in the icon slot with no extra chrome */
.card__icon--seal { border: none; background: none; box-shadow: none; }

.card__title { font-size: 1.28rem; margin-bottom: 10px; }
.card__body { color: var(--text-soft); font-size: 0.97rem; }
.card__body a { font-weight: 700; }

.card--feature-amanix {
  border-color: var(--border-strong);
  background: linear-gradient(160deg, rgba(245, 179, 1, 0.1), rgba(29, 58, 143, 0.08), var(--surface));
}

/* --------------------------- How it works ------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(12px);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #2a1a02;
  background: var(--grad-gold);
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -10px rgba(245, 179, 1, 0.75);
}
.step__title { font-size: 1.22rem; margin-bottom: 9px; }
.step__body { color: var(--text-soft); font-size: 0.97rem; }
/* connector line between steps on desktop */
@media (min-width: 861px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 53px;
    right: -16px;
    width: 32px; height: 1px;
    background: linear-gradient(90deg, rgba(245, 179, 1, 0.55), transparent);
  }
}

/* ----------------------------- Data ------------------------------- */
.sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.source {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(10px);
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.source:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.source__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: var(--text);
}
.source__desc { color: var(--muted); font-size: 0.92rem; }
.sources__note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}
.sources__note strong { color: var(--red-bright); }

/* ----------------------------- Amanix ----------------------------- */
.amanix {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 11vw, 132px);
  background:
    linear-gradient(180deg, rgba(29, 58, 143, 0.12), rgba(11, 16, 34, 0) 42%),
    radial-gradient(80% 60% at 80% 10%, rgba(245, 179, 1, 0.08), transparent 60%);
  border-block: 1px solid var(--border);
}
.amanix__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.amanix__logo { display: inline-flex; margin-bottom: 20px; }
.amanix__points {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.amanix__points li {
  position: relative;
  padding-left: 30px;
  color: var(--text-soft);
}
.amanix__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.16);
  border: 1px solid var(--gold);
}
.amanix__points li::after {
  content: "";
  position: absolute;
  left: 5px; top: 11px;
  width: 5px; height: 9px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}

/* Chat transcript card */
.chat {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 179, 1, 0.07);
}
.chat__name { font-family: var(--font-display); font-weight: 700; }
.chat__status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--muted);
}
.chat__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live); box-shadow: 0 0 8px var(--live);
}
.chat__body {
  padding: 20px 18px;
  display: grid;
  gap: 14px;
}
.bubble {
  max-width: 86%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.bubble--user {
  justify-self: end;
  background: var(--grad-gold);
  color: #2a1a02;
  font-weight: 500;
  border-bottom-right-radius: 5px;
}
.bubble--bot {
  justify-self: start;
  background: rgba(245, 179, 1, 0.07);
  border: 1px solid var(--border);
  color: var(--text-soft);
  border-bottom-left-radius: 5px;
}
.bubble--bot strong { color: var(--text); font-weight: 700; }
.bubble__src {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  color: var(--gold);
  font-weight: 600;
}
.chat__input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 18px 18px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(11, 16, 34, 0.6);
}
.chat__placeholder { color: var(--muted); font-size: 0.9rem; flex: 1; }
.chat__send {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: #2a1a02;
  background: var(--grad-gold);
}
.chat__send svg { width: 17px; height: 17px; }

/* ------------------------------ FAQ ------------------------------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* ---------------------------- Final CTA --------------------------- */
.cta-band { padding-block: clamp(48px, 8vw, 100px); }
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(245, 179, 1, 0.16), rgba(225, 29, 42, 0.12), rgba(29, 58, 143, 0.14)),
    var(--surface-2);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}
.cta-panel__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(44px, 7vw, 80px) 24px;
}
.cta-panel__title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; }
.cta-panel__sub {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* ----------------------------- Footer ----------------------------- */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 16, 34, 0), rgba(7, 11, 24, 0.6));
  padding-top: clamp(48px, 7vw, 80px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 48px;
}
.footer__blurb {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 16px 0 18px;
  max-width: 34ch;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: var(--text-soft); font-size: 0.93rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}
.footer__fine { color: var(--muted); }

/* --------------------- Reveal-on-scroll (JS) ---------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-revealed { opacity: 1; transform: none; }
.cards .reveal { transition-delay: calc(var(--i, 0) * 70ms); }

/* ============================ RESPONSIVE =========================== */

/* Tablets / small laptops */
@media (max-width: 980px) {
  .cards,
  .sources { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile breakpoint — nav collapses, hero stacks */
@media (max-width: 860px) {
  body { font-size: 16px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 28px;
    background: rgba(11, 16, 34, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
  }
  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links > a:not(.btn) {
    padding: 13px 6px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__cta { margin: 14px 0 0; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__sub { max-width: none; }
  .briefcard { transform: none; }
  .hero__mock:hover .briefcard { transform: none; }
  .feedcard { margin-right: 0; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stat:nth-child(odd) + .stat::before { display: none; }

  .steps { grid-template-columns: 1fr; }

  .amanix__grid { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

/* Phones */
@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .cards,
  .sources { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ----------------- Reduced motion: calm everything ---------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .aurora__blob,
  .pill__dot { animation: none; }
}
