/* =========================================================
   Aureum Solutions — Landing page
   Implemented from Figma: Aureum Website / OMNI Copy
   Self-contained: own tokens, not the Transcendent Care theme.
   ========================================================= */

:root {
  /* ---------- Colour ---------- */
  --navy-900:   #0e0f28;   /* Midnight Foundation (Figma) */
  --navy-850:   #0c0d22;   /* dark elevated */
  --navy-800:   #141a38;   /* panels / cards */
  --navy-700:   #141b3c;
  --blue:       #2a3ef4;   /* Aureum Blue (Figma; was #2e45f2) */
  --blue-bright:#496af6;   /* Blue Tint (Figma; was #3b4df6) */
  --periwinkle: #a9b5f5;   /* soft accent text */
  --gold:       #f5c536;   /* Aureum Gold (Figma; was #e9b23c) */
  --gold-soft:  #f8d271;   /* lighter gold, derived from Aureum Gold */

  --ink:        #0e0f28;   /* dark text on light = Midnight Foundation (Figma; was #0b1020) */
  --ink-soft:   #475067;   /* secondary/body text on light */
  --eyebrow-light: #68758a;/* eyebrow / overline label on light (Figma) */
  --light:      #ebedf0;   /* light section bg = Soft Cloud (Figma; was #f4f5f8) */
  --light-card: #ebedf0;   /* light card = Soft Cloud (Figma; was #e8eaef) */
  --gray-card:  #9da5b2;   /* Storm Grey (Figma; was #aab1bd) — pillar card 03 */

  --on-dark:        #ffffff;   /* White Core (Figma) — headings on dark */
  --on-dark-body:   #ebedf0;   /* Soft Cloud (Figma) — body copy on dark */
  --on-dark-mute:   #9da5b2;   /* Storm Grey (Figma; was #8a93ad) — muted labels on dark */
  --on-dark-faint:  #6b7a93;   /* footer fine print on dark (was #565f7d) */
  --line-dark:      rgba(255,255,255,0.10);
  --line-light:     rgba(11,16,32,0.12);

  /* ---------- Typography ---------- */
  --font:         "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Manrope", system-ui, sans-serif;

  --fs-display: clamp(2.5rem, 4.2vw + 1rem, 4.5rem);   /* hero h1 */
  --fs-h2:      clamp(2rem, 2.8vw + 0.75rem, 3.5rem);
  --fs-h3:      clamp(1.5rem, 1.6vw + 0.75rem, 2.25rem);
  --fs-stat:    clamp(2.25rem, 2.4vw + 1rem, 3.25rem);
  --fs-lead:    clamp(1rem, 0.4vw + 0.9rem, 1.1875rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.75rem;

  /* ---------- Layout ---------- */
  --max:    1200px;
  --gutter: 32px;
  --section-y: 120px;
  --radius: 18px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --section-y: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--on-dark);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
/* Remove the default grey tap-flash on touch — we supply our own :active feedback */
a, button, .btn, summary, [role="button"] { -webkit-tap-highlight-color: transparent; }

/* Space Grotesk for display / headings / labels; Manrope for body */
h1, h2, h3, h4, h5,
.h2, .eyebrow, .hero h1, .stat__num, .step__num, .step__title,
.pcard__title, .pcard__num, .method__cta h3, .faq__title, .faq-q,
.scard__role, .band h2, .footer-col h5, .brand,
.hero__badges-label, .ccard__title {
  font-family: var(--font-display);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; overflow: hidden; }
.section--light { background: var(--light); color: var(--ink); }
.section--dark  { background: var(--navy-900); color: var(--on-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--blue); color: #fff; padding: 12px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--blue { color: var(--blue-bright); }
.section--light .eyebrow { color: var(--eyebrow-light); }

.h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--on-dark-body);
  max-width: 60ch;
}
.section--light .lead { color: var(--ink-soft); }

.t-blue { color: var(--blue); }
.t-peri { color: var(--periwinkle); }
.t-gold { color: var(--gold); }
.t-mute { color: var(--on-dark-mute); }
.t-ink-mute { color: var(--ink-soft); }

.arrow { display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform var(--ease) 180ms, background 180ms, border-color 180ms, color 180ms;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255,255,255,0.28);
}
.section--light .btn--ghost { color: var(--ink); border-color: var(--line-light); }

/* Hover lift — only on devices with a true pointer (no sticky-hover on touch) */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
  .btn--primary:hover { background: var(--blue-bright); }
  .btn--ghost:hover { border-color: rgba(255,255,255,0.6); }
  .section--light .btn--ghost:hover { border-color: var(--ink); }
}
/* Press feedback for touch (and click) — declared last so it wins during an active press */
.btn:active { transform: scale(0.97); }
.btn--primary:active { background: var(--blue-bright); }
.btn--ghost:active { border-color: rgba(255,255,255,0.6); }
.section--light .btn--ghost:active { border-color: var(--ink); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,13,26,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand__logo { height: 36px; width: auto; display: block; }
.brand__logo--footer { height: 41px; }
.brand__mark {
  width: 26px; height: 26px; flex: none;
  background: conic-gradient(from 210deg, var(--blue), var(--periwinkle), var(--gold), var(--blue));
  border-radius: 7px;
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 18%, #000 19%);
          mask: radial-gradient(circle at 50% 50%, transparent 18%, #000 19%);
  box-shadow: 0 0 16px rgba(42,62,244,0.5);
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { font-size: var(--fs-small); font-weight: 500; color: var(--on-dark-mute); transition: color 160ms; }
.site-nav .btn { color: #fff; }
/* Touch press + current page */
.site-nav a:active { color: var(--on-dark); }
.site-nav a[aria-current="page"] { color: var(--on-dark); }

/* Nav blue underline on top-level items (desktop). The line, focus + current-page
   state are ungated; only the pointer-hover trigger is gated so touch never sticks. */
@media (min-width: 881px) {
  .site-nav > a:not(.btn), .nav-dd__btn { position: relative; }
  .site-nav > a:not(.btn)::after,
  .nav-dd__btn::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; border-radius: 2px; background: var(--blue-bright);
    transform: scaleX(0); transform-origin: left center;
    transition: transform 200ms var(--ease);
  }
  .site-nav > a:not(.btn)[aria-current="page"]::after,
  .site-nav > a:not(.btn):focus-visible::after,
  .nav-dd:focus-within .nav-dd__btn::after { transform: scaleX(1); }
}
@media (min-width: 881px) and (hover: hover) and (pointer: fine) {
  .site-nav a:hover { color: var(--on-dark); }
  .site-nav > a:not(.btn):hover::after,
  .nav-dd:hover .nav-dd__btn::after { transform: scaleX(1); }
}

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; margin-right: -10px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--on-dark); transition: transform 200ms var(--ease), opacity 150ms var(--ease); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav dropdown (Solutions → REACT.) */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd__btn { display: inline-flex; align-items: center; gap: 6px; font-family: inherit; font-size: var(--fs-small); font-weight: 500; color: var(--on-dark-mute); background: none; border: 0; padding: 0; cursor: pointer; transition: color 160ms; }
.nav-dd:hover .nav-dd__btn, .nav-dd:focus-within .nav-dd__btn, .nav-dd__btn:hover { color: var(--on-dark); }
.nav-dd__caret { font-size: 0.6em; transition: transform 180ms var(--ease); }
.nav-dd:hover .nav-dd__caret, .nav-dd:focus-within .nav-dd__caret { transform: rotate(180deg); }
.nav-dd__menu {
  position: absolute; top: 100%; left: -12px; margin-top: 8px; min-width: 150px;
  padding: 6px;
  background: rgba(12, 13, 34, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 0; border-radius: 10px; box-shadow: none;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
  z-index: 60;
}
.nav-dd__menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-dd:hover .nav-dd__menu, .nav-dd:focus-within .nav-dd__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd__menu a { padding: 8px 12px; border-radius: 7px; font-size: var(--fs-small); font-weight: 500; color: var(--on-dark-mute); white-space: nowrap; }
.nav-dd__menu a:active { color: var(--on-dark); background: rgba(255,255,255,0.05); }
.nav-dd__menu a[aria-current="page"] { color: var(--on-dark); background: rgba(73,106,246,0.16); }
@media (hover: hover) and (pointer: fine) {
  .nav-dd__menu a:hover { color: var(--on-dark); background: rgba(255,255,255,0.05); }
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px 20px 22px;
    background: rgba(12, 13, 34, 1);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
  }
  .site-header.nav-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a:not(.btn) { display: block; padding: 13px 8px; font-size: 1.0625rem; color: var(--on-dark-mute); border-radius: 8px; transition: background 140ms, color 140ms, box-shadow 140ms; }
  /* Touch press feedback in the drawer */
  .site-nav a:not(.btn):active { color: var(--on-dark); background: rgba(255,255,255,0.06); }
  /* Persistent current-page marker: blue left bar */
  .site-nav a:not(.btn)[aria-current="page"] { color: var(--on-dark); box-shadow: inset 3px 0 0 var(--blue-bright); }

  /* flatten the Solutions dropdown inline */
  .nav-dd { display: block; position: static; }
  .nav-dd__btn { width: 100%; justify-content: space-between; padding: 13px 6px; font-size: 1.0625rem; cursor: default; }
  .nav-dd__caret { display: none; }
  .nav-dd__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    box-shadow: none; border: 0; border-radius: 0; min-width: 0; margin: 0; padding: 0 0 4px 14px;
  }
  .nav-dd__menu::before { display: none; }
  .nav-dd__menu a { padding: 11px 6px; }

  .site-nav .btn { margin-top: 14px; width: 100%; justify-content: center; }
}

/* =========================================================
   01 · Hero
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(900px 600px at 88% 0%, rgba(42,62,244,0.35), transparent 60%),
    radial-gradient(700px 500px at 100% 20%, rgba(73,106,246,0.22), transparent 55%),
    var(--navy-900);
  overflow: hidden;
}
.hero__media {
  position: absolute; top: 0; right: 0;
  width: 56%; height: 78%;
  pointer-events: none; z-index: 0;
  overflow: hidden;            /* clip the parallax drift to the media box */
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  /* base scale gives headroom so the scroll drift never exposes an edge */
  transform: scale(1.28); transform-origin: center; will-change: transform;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy-900) 2%, rgba(9,13,26,0.55) 32%, transparent 72%),
    linear-gradient(180deg, transparent 45%, var(--navy-900) 96%);
}
/* No parallax / no zoom for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  .hero__media img { transform: none; }
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 132px); }
.hero__copy { max-width: 760px; }
.hero h1 {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 22px;
}
.hero .lead { margin-top: 24px; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__badges { margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.hero__badges-label { flex-basis: 100%; text-align: center; margin-bottom: 8px; font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-faint); }
.badge {
  font-size: var(--fs-small); font-weight: 500; color: var(--on-dark-mute);
  padding: 8px 16px; border: 1px solid var(--line-dark); border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

/* =========================================================
   02 · Stats
   ========================================================= */
.stats { position: relative; }
.stats__dots {
  position: absolute; left: 0; top: 40px; bottom: 40px; width: 220px;
  background-image: radial-gradient(rgba(42,62,244,0.5) 1.4px, transparent 1.6px);
  background-size: 18px 18px;
  -webkit-mask: radial-gradient(220px 300px at 0% 50%, #000, transparent 70%);
          mask: radial-gradient(220px 300px at 0% 50%, #000, transparent 70%);
  opacity: 0.6; pointer-events: none;
}
.stats__head { position: relative; z-index: 1; }
.stats__head .h2 { margin-top: 16px; max-width: 16ch; }
.stat-grid {
  position: relative; z-index: 1;
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.stat {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.stat__num { font-size: var(--fs-stat); font-weight: 800; color: var(--gold); letter-spacing: -0.02em; line-height: 1; }
.stat__label { margin-top: 14px; font-size: var(--fs-small); color: var(--on-dark); line-height: 1.5; }
.stat__label b { font-weight: 700; }
.stat__src { margin-top: 14px; font-size: var(--fs-eyebrow); color: var(--on-dark-faint); }

/* =========================================================
   03 · Problem
   ========================================================= */
.problem__grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.problem h2 { margin-top: 18px; max-width: 16ch; }
.problem__copy .lead { margin-top: 24px; max-width: 56ch; }
.problem__media img {
  width: 100%; aspect-ratio: 691 / 497; object-fit: cover;
  border-radius: 30px;
}
.problem .container { position: relative; z-index: 1; }
.problem__deco {
  position: absolute; z-index: 0; pointer-events: none; opacity: 0.85;
  width: min(960px, 60vw); right: -190px; bottom: -360px;
}
.problem__deco svg { width: 100%; height: auto; display: block; }
.problem__answer {
  margin-top: 28px;
  font-size: var(--fs-lead); font-weight: 600;
  color: var(--blue); max-width: 52ch;
}
.problem__answer b { color: var(--blue); font-weight: 700; }

/* =========================================================
   04 · Pillars (light)
   ========================================================= */
.pillars { background: #fff; }
.pillars__head { max-width: 60ch; }
.pillars h2 { margin-top: 14px; }
.pillars__intro { margin-top: 22px; max-width: 70ch; }
.pillar-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.pcard {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 26px 32px;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.pcard__num { position: absolute; top: 22px; right: 24px; font-size: 1.25rem; font-weight: 700; opacity: 0.85; }
.pcard__icon { font-size: 1.9rem; line-height: 1; margin-top: 64px; }
.pcard__title { font-size: 1.4rem; font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; margin-top: 22px; min-height: 2.24em; }
.pcard__body { margin-top: 12px; font-size: var(--fs-small); line-height: 1.5; }
.pcard__link {
  margin-top: 18px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-small); font-weight: 600;
  padding: 9px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
/* variants */
.pcard--01 { background: linear-gradient(160deg, #10153c, #0e0f28); color: #fff; }
.pcard--01 .pcard__icon { color: var(--periwinkle); }
.pcard--02 { background: var(--blue); color: #fff; }
.pcard--02 .pcard__icon { color: var(--gold); }
.pcard--02 .pcard__num { color: rgba(255,255,255,0.9); }
.pcard--03 { background: var(--gray-card); color: var(--ink); }
.pcard--03 .pcard__icon { color: #fff; }
.pcard--04 { background: var(--light-card); color: var(--ink); }
.pcard--04 .pcard__icon { color: var(--ink); }
.pcard--03 .pcard__body, .pcard--04 .pcard__body { color: var(--ink-soft); }
.pcard b { font-weight: 700; }

.pillars__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   05 · Method (dark)
   ========================================================= */
.method {
  position: relative;
  background:
    radial-gradient(760px 980px at -6% 58%, rgba(42,62,244,0.42), transparent 56%),
    radial-gradient(700px 640px at 105% 4%, rgba(42,62,244,0.50), transparent 56%),
    var(--navy-900);
}
.method__dots {
  position: absolute; top: 0; bottom: 0; width: 460px; z-index: 0; pointer-events: none;
  background-image: url("../images/aureum/method-dots.png");
  background-repeat: no-repeat; background-position: top right; background-size: auto;
}
.method__dots--r { right: 0; opacity: 0.95; }
.method__dots--l { left: 0; transform: scaleX(-1); opacity: 0.55; }
.method__media {
  position: absolute; top: -40px; left: -60px;
  width: 42%; max-width: 620px; aspect-ratio: 786 / 439;
  pointer-events: none; z-index: 1;
}
.method__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: left top;
  transform: scaleX(-1);
}
.method__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(270deg, var(--navy-900) 4%, rgba(9,13,26,0.5) 34%, transparent 74%),
    linear-gradient(180deg, transparent 50%, var(--navy-900) 97%);
}
.method .container { position: relative; z-index: 2; }
.method__inner { display: block; max-width: 680px; margin: 0 auto; text-align: center; }
.method h2 { margin-top: 16px; }
.method__intro { margin-top: 20px; }
.steps { display: flex; flex-direction: column; gap: 44px; max-width: 560px; margin: 64px auto 0; text-align: left; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 24px; align-items: start; }
.step__num { font-size: 2.25rem; font-weight: 700; color: var(--gold); line-height: 1; }
.step__title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
.step__body { margin-top: 10px; color: var(--on-dark-body); font-size: var(--fs-small); line-height: 1.6; }
.step { position: relative; }
.step:not(:last-child)::before {
  content: ""; position: absolute; left: 16px; top: 52px; bottom: -44px; width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}

.method__cta { margin-top: 56px; text-align: center; }
.method__cta h3 { font-size: var(--fs-h3); font-weight: 800; letter-spacing: -0.02em; }
.method__cta .btn { margin-top: 22px; }

/* =========================================================
   06 · Stakeholder (light)
   ========================================================= */
.stake h2 { margin-top: 14px; max-width: 22ch; }
.stake-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.scard {
  background: #fff; border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
}
.scard__img { aspect-ratio: 328 / 229; width: 100%; object-fit: cover; background: var(--light-card); }
.scard__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; min-height: 182px; }
.scard__role { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase; color: var(--blue); line-height: 1.2; }
.scard__desc { font-size: var(--fs-small); color: var(--ink); line-height: 1.6; }
.stake__cta { margin-top: 42px; text-align: center; }

/* =========================================================
   07 · Compliance grid (light)
   ========================================================= */
.comply h2 { margin-top: 14px; max-width: 20ch; }
.comply__intro { margin-top: 20px; max-width: 78ch; }
.comply-grid {
  margin-top: 52px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius); overflow: hidden;
}
.ccard { background: #fff; padding: 30px 28px; }
.ccard__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.ccard__title::before { content: ""; display: block; width: 28px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 16px; }
.ccard__desc { margin-top: 10px; font-size: var(--fs-small); color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   08 · Image band
   ========================================================= */
.band { position: relative; overflow: hidden; background: var(--navy-900); }
.band__img {
  width: 100%; aspect-ratio: 1920 / 612;
  object-fit: cover; object-position: center;
}

/* =========================================================
   09 · FAQ (light)
   ========================================================= */
.faq__inner { display: grid; grid-template-columns: 0.5fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq__title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; color: var(--blue); letter-spacing: -0.03em; line-height: 1; }
.faq__list { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.4rem); font-weight: 700;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--blue);
}
.faq-q__icon { flex: none; color: var(--gold); transition: color 200ms var(--ease); font-size: 1.4rem; line-height: 1; }
.faq-item.is-open .faq-q__icon { color: var(--blue); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}
.faq-a__inner { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding-bottom: 26px; color: var(--ink-soft); font-size: var(--fs-body); line-height: 1.65; max-width: 70ch; }
.faq-a p b { color: var(--blue); font-weight: 700; }

/* =========================================================
   10 · Final CTA (dark)
   ========================================================= */
.final {
  position: relative; text-align: center;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(42,62,244,0.34), transparent 60%),
    radial-gradient(760px 560px at 104% 0%, rgba(42,62,244,0.30), transparent 58%),
    var(--navy-900);
}
.final::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 52%;
  background-image: url("../images/aureum/cta-horizon-dots.png");
  background-repeat: no-repeat; background-position: bottom center; background-size: cover;
  -webkit-mask: linear-gradient(180deg, transparent 0%, #000 42%);
          mask: linear-gradient(180deg, transparent 0%, #000 42%);
  opacity: 1; pointer-events: none;
}
.final__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.final h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.final .lead { margin: 20px auto 0; text-align: center; }
.final__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-850); border-top: 1px solid var(--line-dark); padding-block: 72px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--on-dark-mute); font-size: var(--fs-small); line-height: 1.7; }
.footer-col h5 { font-size: var(--fs-eyebrow); letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--on-dark-mute); font-size: var(--fs-small); transition: color 160ms; }
.footer-col a:hover { color: var(--on-dark); }
.footer-legal {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-size: var(--fs-eyebrow); color: var(--on-dark-faint); line-height: 1.6;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .stake-grid { grid-template-columns: repeat(2, 1fr); }
  .comply-grid { grid-template-columns: repeat(2, 1fr); }
  .pcard { min-height: 360px; }
}
@media (max-width: 860px) {
  .problem__grid { grid-template-columns: 1fr; gap: 28px; }
  .method__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .stake-grid { grid-template-columns: 1fr; }
  .comply-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pcard { min-height: 0; }
  .hero__cta .btn, .pillars__cta .btn, .final__cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* =========================================================
   REACT product page — additional components
   ========================================================= */

/* REACT + contact pages — design navy is Midnight Foundation #0E0F28 */
.react-page, .contact-page {
  --navy-900: #0e0f28;
  --navy-850: #0c0d22;
  --navy-800: #141a38;
}

/* REACT hero — art on the right, full height, blended into navy */
.hero--react .hero__media { top: 0; bottom: 0; right: 0; width: 54%; height: 100%; }
.hero--react .hero__media img { object-fit: cover; object-position: right center; }
.hero--react .hero__media::after {
  background:
    linear-gradient(90deg, var(--navy-900) 0%, rgba(14,15,40,0.55) 28%, transparent 66%),
    linear-gradient(180deg, var(--navy-900) 0%, transparent 18%, transparent 86%, var(--navy-900) 100%);
}

/* Stats on a light section (blue numbers) */
.section--light .stat { border-top-color: var(--line-light); }
.section--light .stat__num { color: var(--blue); }
.section--light .stat__label { color: var(--ink); }
.section--light .stat__src { color: var(--ink-soft); }

/* Pillars on dark — "Why hospital leaders choose REACT." */
.pillars--dark {
  background:
    radial-gradient(660px 820px at 100% 30%, rgba(42,62,244,0.58), transparent 64%),
    var(--navy-900);
  color: var(--on-dark);
}
.pillars--dark .eyebrow { color: var(--blue-bright); }
.pillars--dark .lead { color: var(--on-dark-body); }
.pillars--dark .container { position: relative; z-index: 1; }
.pillars--dark::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 560px;
  background-image: url("../images/aureum/react-pillars-dots.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.95; pointer-events: none; z-index: 0;
}
.rcard-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rcard {
  position: relative;
  background: linear-gradient(165deg, rgba(40,56,140,0.45) 0%, rgba(18,24,58,0.72) 70%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  min-height: 320px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(2px);
}
.rcard__num { position: absolute; top: 24px; right: 26px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--periwinkle); opacity: 0.8; }
.rcard__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold); letter-spacing: -0.01em; line-height: 1.15; margin-top: 64px; }
.rcard__body { margin-top: 16px; font-size: var(--fs-small); color: var(--on-dark-body); line-height: 1.6; }

/* Capabilities cards — "Built so your team can hit the ground running." */
.cap-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.capcard {
  position: relative;
  border-radius: var(--radius);
  padding: 30px 26px 30px;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.capcard__icon { position: absolute; top: 26px; right: 26px; font-size: 1.55rem; line-height: 1; }
.capcard__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.capcard__body { margin-top: 14px; font-size: var(--fs-small); line-height: 1.55; }
.capcard--01 { background: linear-gradient(160deg, #10153c, #0e0f28); color: #fff; }
.capcard--01 .capcard__icon { color: var(--on-dark); }
.capcard--02 { background: var(--blue); color: #fff; }
.capcard--02 .capcard__icon { color: var(--on-dark); }
.capcard--03 { background: var(--gray-card); color: var(--ink); }
.capcard--03 .capcard__icon { color: #fff; }
.capcard--04 { background: #ffffff; color: var(--ink); border: 1px solid var(--line-light); box-shadow: 0 8px 24px rgba(14,15,40,0.10); }
.capcard--04 .capcard__icon { color: var(--blue); }
.capcard--01 .capcard__body, .capcard--02 .capcard__body { color: rgba(255,255,255,0.85); }
.capcard--03 .capcard__body, .capcard--04 .capcard__body { color: var(--ink-soft); }

/* Pricing — "Two ways to license REACT." */
.pricing { position: relative; }
.pricing .container { position: relative; z-index: 1; }
.pricing__deco {
  position: absolute; top: 52%; right: -130px; transform: translateY(-50%) rotate(8deg);
  width: 760px; height: 760px; opacity: 0.8; pointer-events: none; z-index: 0;
}
.pricing__deco svg { width: 100%; height: 100%; display: block; }
.pricing h2 { margin-top: 14px; }
.pricing__intro { margin-top: 18px; max-width: 72ch; }
.pricing__grid { margin-top: 52px; display: grid; grid-template-columns: 1fr; gap: 24px; }
.price-card { border-radius: var(--radius-lg); padding: 40px 38px; display: flex; flex-direction: column; }
.price-card--light { background: #fff; border: 1px solid var(--line-light); color: var(--ink); }
.price-card--dark {
  background:
    radial-gradient(420px 320px at 100% 0%, rgba(42,62,244,0.32), transparent 60%),
    var(--navy-900);
  border: 1px solid var(--line-dark); color: #fff;
}
.price-card__eyebrow { font-family: var(--font-display); font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); }
.price-card--light .price-card__eyebrow { color: var(--blue); }
.price-card__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.01em; margin-top: 12px; }
.price-card__sub { margin-top: 8px; font-size: var(--fs-small); }
.price-card--light .price-card__sub { color: var(--ink-soft); }
.price-card--dark .price-card__sub { color: var(--on-dark-body); }
.price-list { list-style: none; margin: 26px 0 0; padding: 26px 0 0; display: flex; flex-direction: column; gap: 14px; border-top: 1px solid; }
.price-card--light .price-list { border-color: var(--line-light); }
.price-card--dark .price-list { border-color: var(--line-dark); }
.price-list li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--fs-small); }
.price-list li::before { content: "✓"; flex: none; color: var(--blue); font-weight: 700; }
.price-card--dark .price-list li::before { color: var(--periwinkle); }
.price-card .btn { margin-top: 30px; align-self: flex-start; }
/* Full-width single licensing card */
.price-card--full {
  background:
    linear-gradient(100deg, rgba(14,15,40,0.88) 0%, rgba(14,15,40,0.70) 45%, rgba(14,15,40,0.50) 100%),
    url("../images/aureum/react-pricing-bg.webp") center / cover no-repeat,
    var(--navy-900);
}
.price-card--full .price-card__eyebrow,
.price-card--full .price-card__title,
.price-card--full .price-card__sub,
.price-card--full .price-list li { text-shadow: 0 1px 10px rgba(14,15,40,0.7); }
.price-card--full .price-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 28px; }
@media (max-width: 768px) { .price-card--full .price-list { grid-template-columns: 1fr 1fr; } }

/* Compliance grid on dark */
.comply.section--dark { background: radial-gradient(720px 760px at 102% 104%, rgba(42,62,244,0.26), transparent 58%), var(--navy-900); }
.comply.section--dark .container { position: relative; z-index: 1; }
.comply__dots {
  position: absolute; top: 0; bottom: 0; left: 0; width: 300px; z-index: 0; pointer-events: none;
  background-image: url("../images/aureum/method-dots.png");
  background-repeat: no-repeat; background-position: top right; background-size: auto;
  transform: scaleX(-1); opacity: 0.85;
}
.comply__shape {
  position: absolute; right: -70px; bottom: -50px; width: 30%; max-width: 440px; aspect-ratio: 786 / 439;
  z-index: 0; pointer-events: none; opacity: 0.85;
}
.comply__shape img { width: 100%; height: 100%; object-fit: contain; object-position: right bottom; }
.comply-grid--dark { background: var(--line-dark); border-color: var(--line-dark); }
.comply-grid--dark .ccard { background: var(--navy-900); }
.comply-grid--dark .ccard__title { color: var(--on-dark); }
.comply-grid--dark .ccard__title::before { background: var(--gold); }
.comply-grid--dark .ccard__desc { color: var(--on-dark-body); }
.comply.section--dark .eyebrow { color: var(--blue-bright); }

.capcard__icon svg { width: 28px; height: 28px; display: block; }

/* REACT final CTA — square-dot field glowing from the bottom-left */
.react-page .final {
  background:
    radial-gradient(900px 560px at 50% -12%, rgba(42,62,244,0.28), transparent 60%),
    radial-gradient(760px 620px at -2% 116%, rgba(42,62,244,0.30), transparent 56%),
    var(--navy-900);
}
.react-page .final::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; top: auto;
  height: 60%;
  background-image: url("../images/aureum/react-cta-dots.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask: linear-gradient(180deg, transparent 0%, #000 46%);
          mask: linear-gradient(180deg, transparent 0%, #000 46%);
  opacity: 1; pointer-events: none;
}

@media (max-width: 1024px) {
  .rcard-grid, .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pricing__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rcard-grid, .cap-grid { grid-template-columns: 1fr; }
  .rcard, .capcard { min-height: 0; }
}

/* =========================================================
   Contact / Resilience Audit page
   ========================================================= */
.section--white { background: #fff; color: var(--ink); }
.section--white .eyebrow { color: var(--eyebrow-light); }

/* Hero with form */
.hero--contact { background:
    radial-gradient(640px 580px at -5% -8%, rgba(42,62,244,0.50), transparent 56%),
    radial-gradient(700px 600px at 108% 112%, rgba(42,62,244,0.46), transparent 56%),
    var(--navy-900); }
.hero--contact__grid {
  display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(40px, 5vw, 88px);
  align-items: start; padding-block: clamp(56px, 7vw, 104px);
}
.hero__dots {
  position: absolute; top: 80px; left: 0; width: 620px; height: 640px;
  background-image: url("../images/aureum/contact-hero-dots.png");
  background-repeat: no-repeat; background-position: top left; background-size: auto;
  opacity: 0.9; pointer-events: none; z-index: 0;
}
.hero__shape {
  position: absolute; left: -120px; bottom: -80px; width: 540px; max-width: 46%;
  aspect-ratio: 786 / 439; opacity: 0.5; pointer-events: none; z-index: 0;
}
.hero__shape img { width: 100%; height: 100%; object-fit: contain; object-position: left bottom; }
.hero--contact .hero__copy { max-width: none; }
.hero--contact h1 { margin-top: 22px; }
.hero--contact .lead { margin-top: 22px; max-width: 48ch; }
.hero__metrics { margin-top: 48px; display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); }
.metric__num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: -0.01em; line-height: 1.1; }
.metric__label { margin-top: 6px; font-size: var(--fs-small); color: var(--on-dark-mute); }

/* Audit form panel */
.auditform { position: relative; z-index: 1; }
.auditform__sub { margin-top: 10px; color: var(--on-dark-body); font-size: var(--fs-small); line-height: 1.55; max-width: 42ch; }
.auditform__form { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-family: var(--font-display); font-size: var(--fs-small); font-weight: 600; color: var(--on-dark); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: var(--fs-small); color: var(--on-dark);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 13px 14px; transition: border-color 160ms, box-shadow 160ms;
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--on-dark-faint); }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%238a93ad' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(42,62,244,0.25);
}
.auditform__submit { margin-top: 6px; width: 100%; justify-content: center; }
.auditform__fine { margin-top: 16px; font-size: var(--fs-eyebrow); color: var(--on-dark-faint); line-height: 1.5; }

/* Engagement cards */
.engage h2 { margin-top: 14px; max-width: 22ch; }
.engage__intro { margin-top: 18px; max-width: 76ch; }
.ecard-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ecard { position: relative; border-radius: var(--radius); padding: 28px 26px 30px; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.ecard__num { position: absolute; top: 24px; right: 26px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; opacity: 0.65; }
.ecard__icon { position: absolute; top: 24px; left: 26px; }
.ecard__icon svg { width: 26px; height: 26px; display: block; }
.ecard__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.ecard__body { margin-top: 12px; font-size: var(--fs-small); line-height: 1.55; }
.ecard--dark { background: linear-gradient(160deg, #10153c, #0e0f28); color: #fff; }
.ecard--blue { background: var(--blue); color: #fff; }
.ecard--grey { background: var(--gray-card); color: var(--ink); }
.ecard--dark .ecard__body, .ecard--blue .ecard__body { color: rgba(255,255,255,0.85); }
.ecard--grey .ecard__body { color: var(--ink-soft); }
.ecard--grey .ecard__num, .ecard--grey .ecard__icon { color: var(--ink); }

/* Other ways to reach us */
.reach { background: var(--navy-900); }
.reach__grid { display: grid; grid-template-columns: 1.12fr 0.88fr; min-height: 460px; }
.reach__left { position: relative; overflow: hidden; background: var(--navy-900); padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; }
.reach__head { position: relative; z-index: 1; }
.reach__head h2 { margin-top: 16px; line-height: 1.05; }
.reach__photo { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 58%; object-fit: cover; object-position: center; z-index: 0; }
.reach__left::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 60%; z-index: 0;
  background: linear-gradient(180deg, var(--navy-900) 6%, transparent 52%); }
.reach__right { background: url("../images/aureum/reach-bg.webp") right bottom / contain no-repeat, var(--navy-900); background-blend-mode: lighten; color: var(--on-dark-body); text-align: left; padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; gap: 40px; }
.reach__block h5 { font-family: var(--font-display); font-size: var(--fs-eyebrow); letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 12px; }
.reach__desc { font-size: var(--fs-small); color: var(--on-dark-mute); }
.reach__line { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-weight: 600; color: var(--on-dark); }
.reach__line svg { width: 20px; height: 20px; flex: none; color: var(--blue-bright); }
.reach__note { margin-top: 10px; font-size: var(--fs-eyebrow); color: var(--on-dark-faint); }

@media (max-width: 980px) {
  .hero--contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .ecard-grid { grid-template-columns: repeat(2, 1fr); }
  .reach__grid { grid-template-columns: 1fr; }
  .reach__left { min-height: 380px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .ecard-grid { grid-template-columns: 1fr; }
  .ecard { min-height: 0; justify-content: flex-start; padding-top: 26px; }
  .ecard__icon { position: static; display: block; margin-bottom: 14px; }
  .ecard__num { top: 26px; }
  .hero__dots { width: 360px; height: 380px; }
}

/* Mobile: compliance pills sit directly under the H1 (landing + REACT heroes; not contact) */
@media (max-width: 640px) {
  .hero:not(.hero--contact) .hero__copy { display: flex; flex-direction: column; }
  .hero:not(.hero--contact) .hero__copy > .eyebrow { order: 1; }
  .hero:not(.hero--contact) .hero__copy > h1 { order: 2; }
  .hero:not(.hero--contact) .hero__badges { order: 3; margin-top: 24px; gap: 12px; }
  .hero:not(.hero--contact) .hero__badges-label { flex-basis: 100%; margin-bottom: 4px; }
  .hero:not(.hero--contact) .hero__copy > .lead { order: 4; }
  .hero:not(.hero--contact) .hero__copy > .hero__cta { order: 5; }
}

/* Resilience Audit hero — single column (the request form lives on the contact page) */
.hero--audit {
  background:
    radial-gradient(700px 620px at -6% -8%, rgba(42,62,244,0.46), transparent 56%),
    radial-gradient(640px 520px at 106% 6%, rgba(42,62,244,0.24), transparent 56%),
    var(--navy-900);
}
.hero--audit .hero__copy { max-width: 880px; }
.hero--audit .hero__cta { margin-top: 38px; }

/* Contact page — direct email/phone links under the hero copy */
.contact-direct { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.contact-direct__line { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--on-dark); transition: color 160ms; }
.contact-direct__line svg { width: 18px; height: 18px; flex: none; color: var(--gold); }
.contact-direct__line:hover { color: var(--blue-bright); }

/* =========================================================
   Dot-texture animation — "Sweep / scanner" (Option C)
   A bright diagonal band travels across each dot field, lighting
   the dots as it passes, while the static base stays as designed.
   Pure CSS; honours prefers-reduced-motion.
   ========================================================= */
.comply__dots, .method__dots, .hero__dots { overflow: hidden; }

.comply__dots::after,
.method__dots::after,
.hero__dots::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: inherit;                 /* same texture/position/size; parent transform applies */
  filter: brightness(1.85) saturate(1.08);
  -webkit-mask: linear-gradient(115deg, transparent 40%, #000 50%, transparent 60%);
          mask: linear-gradient(115deg, transparent 40%, #000 50%, transparent 60%);
  -webkit-mask-size: 280% 100%; mask-size: 280% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  animation: dot-sweep 5.6s ease-in-out infinite;
}
.method__dots--l::after { animation-delay: -2.8s; }   /* desync the mirrored strips */

/* REACT pillars — dots live on the section's ::after; drive the sweep from ::before */
.pillars--dark::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 560px; z-index: 1;
  pointer-events: none;
  background-image: url("../images/aureum/react-pillars-dots.png");
  background-position: top right; background-repeat: no-repeat; background-size: auto;
  filter: brightness(1.85) saturate(1.08);
  -webkit-mask: linear-gradient(115deg, transparent 40%, #000 50%, transparent 60%);
          mask: linear-gradient(115deg, transparent 40%, #000 50%, transparent 60%);
  -webkit-mask-size: 280% 100%; mask-size: 280% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  animation: dot-sweep 5.6s ease-in-out infinite; animation-delay: -0.7s;
}

/* REACT final CTA — base dots fade in vertically; intersect that fade with the moving band */
.final::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 52%; z-index: 1;
  pointer-events: none;
  background-image: url("../images/aureum/cta-horizon-dots.png");
  background-position: bottom center; background-repeat: no-repeat; background-size: cover;
  filter: brightness(1.85) saturate(1.08);
  -webkit-mask:
    linear-gradient(180deg, transparent 0%, #000 42%),
    linear-gradient(115deg, transparent 40%, #000 50%, transparent 60%);
          mask:
    linear-gradient(180deg, transparent 0%, #000 42%),
    linear-gradient(115deg, transparent 40%, #000 50%, transparent 60%);
  -webkit-mask-composite: source-in;          /* intersect the two mask layers */
          mask-composite: intersect;
  -webkit-mask-size: 100% 100%, 280% 100%;
          mask-size: 100% 100%, 280% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  animation: dot-sweep-x 5.6s ease-in-out infinite; animation-delay: -1.4s;
}

@keyframes dot-sweep {
  0%   { -webkit-mask-position: 200% 0;  mask-position: 200% 0; }
  100% { -webkit-mask-position: -100% 0; mask-position: -100% 0; }
}
/* two-layer variant: hold the fade layer, move only the band */
@keyframes dot-sweep-x {
  0%   { -webkit-mask-position: 0 0, 200% 0;  mask-position: 0 0, 200% 0; }
  100% { -webkit-mask-position: 0 0, -100% 0; mask-position: 0 0, -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .comply__dots::after, .method__dots::after, .hero__dots::after,
  .pillars--dark::before, .final::before { animation: none; }
}

/* =========================================================
   Tier 1 motion — scroll reveal + card hover
   (JS adds .will-reveal only when motion is allowed; card hover
   is pointer-gated so touch never gets a stuck state.)
   ========================================================= */
/* hide is instant (transition only on the reveal) so there's no fade-out flicker */
.will-reveal { opacity: 0; transform: translateY(20px); }
.will-reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

@media (hover: hover) and (pointer: fine) {
  .pcard, .scard, .rcard, .capcard, .price-card, .ecard {
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .pcard:hover, .scard:hover, .rcard:hover, .capcard:hover, .price-card:hover, .ecard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.30), 0 0 0 1px rgba(73,106,246,0.28);
  }
}

/* Contact form — honeypot (visually hidden) + submit status */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.auditform__status { margin-top: 14px; font-size: var(--fs-small); font-weight: 600; line-height: 1.5; }
.auditform__status.is-ok { color: #34d399; }
.auditform__status.is-err { color: #f87171; }
