/* Holistic Growth Marketing — vanilla CSS */

/* style block 1  */
/* ==========================================================
   HGM MASTER STYLESHEET — 2026-09-09
   Amber / honey theme · dark + light
   Elegant · sophisticated · technological
   ========================================================== */

html.light-theme-pre,
html.light-theme-pre body {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #edf1f5;
  --text: #0f172a;
  --text-secondary: #334155; 
  --text-dim: #475569; 
  --line: rgba(15,23,42,.10);
  --line-strong: rgba(15,23,42,.18);
  --gold: #11adc5;
  --gold-soft: #065f46;
  --gold-hover: #065f46;
  --gold-2: #065f46;
  --gold-rgb: 4, 120, 87;
  --gold-dim: rgba(4,120,87,.10);
  --green: #147a50;
  --blue: #245fc5;
  --cyan: #0f7180;
  --purple: #6744c7;
  --orange: #a55117;
  --shadow: 0 24px 60px rgba(15,23,42,.10);
  --shadow-soft: 0 10px 28px rgba(15,23,42,.08);
  --focus: 0 0 0 3px rgba(29,78,216,.28);
  --ticker-bg: #ffffff;
  --ticker-text: #0f172a;
  --ticker-muted: #64748b;
  background: var(--bg);
}

/* ---------- 1. RESET ---------- */
*,
*:before,
*:after { box-sizing: border-box; margin: 0; padding: 0 }

/* ---------- 2. TOKENS ---------- */
:root {
  color-scheme: dark;

  --ticker-height: 40px;
  --utility-height: 36px;
  --nav-height: 72px;
  --chrome-height: calc(var(--ticker-height) + var(--utility-height) + var(--nav-height));

  /* Surfaces - Sophisticated Slate/Cyber Palette */
  --bg: #020617;        /* Slate 950 */
  --surface: #0f172a;   /* Slate 900 */
  --surface-2: #1e293b; /* Slate 800 */
  --surface-3: #334155; /* Slate 700 */

  /* Text - High contrast, reduced eye strain */
  --text: #f8fafc;           /* Slate 50 - Off-white prevents halation */
  --text-secondary: #94a3b8; /* Slate 400 - Passes WCAG AA on Slate 900 */
  --text-dim: #64748b;       /* Slate 500 - Passes WCAG AA on Slate 950 */

  /* Lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Accent — Neon amber / honey */
  --gold: #ffdf33;
  --gold-soft: #ffea70;
  --gold-hover: #ffee85;
  --gold-2: #ffe08a;
  --gold-rgb: 255, 223, 51;
  --gold-dim: rgba(255, 223, 51, 0.12);

  /* Semantic - Vibrant neon accents */
  --green: #29ffaa;
  --blue: #4da6ff;
  --cyan: #33f0ff;
  --purple: #c58dff;
  --orange: #ffb366;

  /* Radii / motion */
  --radius: 18px;
  --radius-sm: 10px;
  --radius-xs: 7px;
  --transition: cubic-bezier(.22, 1, .36, 1);

  /* Shadows / focus */
  --shadow: 0 24px 70px rgba(0,0,0,.45);
  --shadow-soft: 0 12px 34px rgba(0,0,0,.28);
  --focus: 0 0 0 3px rgba(255, 223, 51,.42);

  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Ticker */
  --ticker-bg: #0a0e14;
  --ticker-text: #f8fafc;
  --ticker-gold: #ffdf33;
  --ticker-muted: #64748b;
  --ticker-speed: 28s;
}

html.ticker-dismissed { --ticker-height: 0px }

body.light-theme {
  color-scheme: light;

  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #edf1f5;

  /* Text - Contrast Fixed */
  --text: #0f172a;
  --text-secondary: #334155;
  --text-dim: #475569;

  --line: rgba(15,23,42,.10);
  --line-strong: rgba(15,23,42,.18);

  /* Accent — deep blue for light backgrounds */
  --gold: #c2410c;           /* deep orange — orange-700 */
  --gold-soft: #ea580c;      /* orange-600 */
  --gold-hover: #9a3412;     /* orange-800 */
  --gold-2: #9a3412;
  --gold-rgb: 194, 65, 12;
  --gold-dim: rgba(194,65,12,.10);
  --focus: 0 0 0 3px rgba(194,65,12,.28);
  --green: #15803d;
  --blue: #245fc5;
  --cyan: #0f7180;
  --purple: #6744c7;
  --orange: #a55117;

  --shadow: 0 24px 60px rgba(15,23,42,.10);
  --shadow-soft: 0 10px 28px rgba(15,23,42,.08);
  --focus: 0 0 0 3px rgba(29,78,216,.28);

  --ticker-bg: #ffffff;
  --ticker-text: #0f172a;
  --ticker-muted: #64748b;

  background:
    radial-gradient(circle at 82% 8%, rgba(29,78,216,.05), transparent 34rem),
    radial-gradient(circle at 12% 48%, rgba(59,130,246,.04), transparent 34rem),
    var(--bg);
}
/* ---------- 3. BASE ---------- */
html,
body { max-width: 100%; overflow-x: hidden }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
  scroll-padding-top: calc(var(--chrome-height) + 20px);
}

body {
  padding-top: var(--chrome-height);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 223, 51,.05), transparent 32rem),
    radial-gradient(circle at 12% 48%, rgba(41, 255, 170,.03), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background .4s var(--transition), color .4s var(--transition);
}

a,
button,
input,
textarea,
summary { -webkit-tap-highlight-color: transparent }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: var(--focus);
}

button,
.btn-primary,
.btn-submit,
.mobile-nav-links a,
.footer-link { touch-action: manipulation }

::selection { background: var(--gold); color: #080b10 }

::-webkit-scrollbar { width: 4px; height: 4px }
::-webkit-scrollbar-track { background: var(--bg) }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px }

a { color: inherit; text-decoration: none }

a:not(.btn-primary):not(.nav-link):not(.footer-link):not(.brand) {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 223, 51,.35);
}
body.light-theme a:not(.btn-primary):not(.nav-link):not(.footer-link):not(.brand) {
  text-decoration-color: rgba(29,78,216,.35);
}

a:hover:not(.btn-primary):not(.nav-link):not(.footer-link):not(.brand) {
  text-decoration-color: var(--gold);
}

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit }
img { display: block; max-width: 100%; height: auto }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- 4. DECOR ---------- */
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
}
body.light-theme .grid-overlay {
  opacity: .08;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
}

.glow-orb {
  position: fixed;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.glow-orb.g1 { top: -20%; right: -10%; background: var(--gold) }
.glow-orb.g2 { bottom: -20%; left: -10%; background: var(--green) }
body.light-theme .glow-orb { opacity: .15 }

.wrap { width: min(1240px, calc(100% - 48px)); margin: 0 auto }

/* ---------- 5. BUTTONS (Neon Glow) ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 11px 18px;
  font: 700 .72rem/1 var(--font-sans);
  letter-spacing: .055em;
  text-transform: uppercase;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #090c11;
  transition: transform .3s var(--transition), box-shadow .3s var(--transition), background .3s var(--transition);
  box-shadow: 0 8px 24px rgba(255, 223, 51,.22);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.6), 0 12px 30px rgba(var(--gold-rgb), 0.32);
}
body.light-theme .btn-primary {
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(29,78,216,.22);
}
body.light-theme .btn-primary:hover {
  box-shadow: 0 0 20px rgba(29, 78, 216, 0.4), 0 12px 30px rgba(29,78,216,.32);
}

.btn-primary.ghost {
  background: var(--surface);
  color: var(--text-secondary);
  box-shadow: none;
  border: 1px solid var(--line-strong);
}
.btn-primary.ghost:hover {
  color: var(--text);
  border-color: rgba(255, 223, 51,.52);
  background: var(--surface-2);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.2);
}
body.light-theme .btn-primary.ghost {
  border-color: var(--line-strong);
  color: var(--text-secondary);
}
body.light-theme .btn-primary.ghost:hover {
  background: var(--surface-2);
  border-color: var(--gold);
}

/* ---------- 6. TICKER (announcement banner) ---------- */
.ticker-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1003;
  height: var(--ticker-height);
  min-height: var(--ticker-height);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  user-select: none;
  background: rgba(2,6,23,.96); /* Matches slate 950 base */
  border-bottom: 1px solid rgba(255, 223, 51,.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
body.light-theme .ticker-wrapper {
  background: rgba(255,255,255,.97);
  border-bottom-color: rgba(29,78,216,.20);
  --ticker-bg: var(--surface);
  --ticker-text: var(--text);
  --ticker-muted: var(--text-dim);
}

.ticker-wrapper .ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll var(--ticker-speed) linear infinite;
  will-change: transform;
}
.ticker-wrapper .ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--ticker-height);
  padding: 0 30px;
  font: 500 .72rem/1.4 var(--font-sans);
  letter-spacing: .01em;
  color: var(--ticker-text);
}
.ticker-wrapper .ticker-item .badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font: 600 .56rem var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--ticker-gold);
  color: #080b10;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.5);
}
.ticker-wrapper .ticker-item .highlight { color: var(--ticker-gold); font-weight: 600; text-shadow: 0 0 5px rgba(var(--gold-rgb), 0.4); }
.ticker-wrapper .ticker-item .divider { color: var(--ticker-muted); opacity: .3; font-weight: 300; margin: 0 4px }
.ticker-wrapper .ticker-item .cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ticker-gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, transform .3s ease;
  padding-bottom: 2px;
}
.ticker-wrapper .ticker-item .cta-arrow:hover {
  border-bottom-color: var(--ticker-gold);
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(var(--gold-rgb), 0.6);
}
.ticker-wrapper .ticker-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: .8rem;
  font-family: var(--font-sans);
  padding: 0;
  line-height: 1;
  transition: all .3s ease;
}
.ticker-wrapper .ticker-close:hover {
  background: var(--surface-3);
  border-color: var(--line-strong);
  color: var(--text);
}
.ticker-wrapper:hover .ticker-track { animation-play-state: paused }

@keyframes ticker-scroll {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ---------- 7. UTILITY BAR ---------- */
.utility-bar {
  position: fixed;
  top: var(--ticker-height);
  left: 0;
  width: 100%;
  height: var(--utility-height);
  min-height: var(--utility-height);
  z-index: 1002;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1240px)/2));
  font-size: .75rem;
  color: var(--text-secondary);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  transition: background .4s var(--transition);
}
.utility-bar .util-left,
.utility-bar .util-right { display: flex; align-items: center; gap: 12px }
.utility-bar .util-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}
.utility-bar #weatherLoc,
.utility-bar .util-right > span { color: var(--text-secondary) !important }

.accessibility-controls { display: flex; align-items: center; gap: 6px }
.accessibility-controls button {
  width: 28px; height: 28px;
  min-width: 28px; min-height: 28px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: all .2s;
}
.accessibility-controls button:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--surface-3);
}
.accessibility-controls .divider {
  width: 1px; height: 18px;
  background: var(--line);
  margin: 0 4px;
}
.accessibility-controls .label {
  font: 500 .6rem var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.weather-widget {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 400 .75rem var(--font-sans);
  color: var(--text-secondary);
}
.weather-widget .icon { font-size: 15px }
.weather-widget .temp { font-weight: 500; color: var(--text) !important; font-size: .8rem }
.weather-widget .loc { color: var(--text-dim); font-size: .65rem }
.weather-widget .sep { color: var(--line-strong) }

/* ---------- 8. NAV (Glowing Hover) ---------- */
.nav {
  position: fixed;
  top: calc(var(--ticker-height) + var(--utility-height));
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  min-height: var(--nav-height);
  padding: 0 max(24px, calc((100vw - 1240px)/2));
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(2,6,23,.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  transition: background .4s var(--transition), border-color .4s var(--transition);
}
body.light-theme .nav,
body.light-theme .nav.scrolled {
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.nav.scrolled {
  background: rgba(2,6,23,.95);
  border-bottom-color: var(--line-strong);
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0 }
.brand img {
  width: 92px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
  transition: filter .3s;
}
body.light-theme .brand img { filter: brightness(0) invert(0) }
.brand .name { font: 700 .9rem var(--font-sans); letter-spacing: .04em; color: var(--text) }
.brand .badge {
  font: 500 .55rem var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  opacity: .7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  font: 500 .76rem var(--font-sans);
  letter-spacing: .02em;
  color: var(--text-secondary);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all .3s var(--transition);
  position: relative;
  text-decoration: none !important;
}
.nav-links a:hover {
  color: var(--gold);
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.1);
  text-shadow: 0 0 12px rgba(var(--gold-rgb), 0.8);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.2), inset 0 0 10px rgba(var(--gold-rgb), 0.1);
}
body.light-theme .nav-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(194, 65, 12, 0.4);
  box-shadow: 0 0 15px rgba(29, 78, 216, 0.2);
  border-color: rgba(29,78,216,.32);
}
.nav-links a.active {
  color: var(--text);
  background: var(--gold-dim);
  border-color: rgba(255, 223, 51,.30);
  text-shadow: 0 0 12px rgba(var(--gold-rgb), 0.6);
}
body.light-theme .nav-links a.active {
  border-color: rgba(29,78,216,.32);
  text-shadow: none;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  opacity: 0.9;
  box-shadow: 0 0 8px var(--gold);
}
.nav-links a .num {
  color: var(--gold);
  margin-right: 4px;
  font-weight: 600;
  font-size: .6rem;
}

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0 }

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 6px;
  color: var(--text);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.menu-toggle .icon {
  position: relative;
  width: 20px; height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.menu-toggle .icon span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform .35s var(--transition), opacity .25s var(--transition), width .35s var(--transition);
}
.menu-toggle .icon span:first-child { width: 20px }
.menu-toggle .icon span:nth-child(2) { width: 14px }
.menu-toggle .icon span:last-child { width: 16px }
.menu-toggle:hover .icon span:nth-child(2),
.menu-toggle:hover .icon span:last-child { width: 20px; box-shadow: 0 0 8px var(--gold); background: var(--gold); }

/* ---------- 9. MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 3000;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto }

.mobile-nav .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .4s var(--transition);
}
.mobile-nav.is-open .backdrop { opacity: 1 }

.mobile-nav .panel {
  position: absolute;
  top: 0; right: 0;
  width: min(400px, 94vw);
  height: 100%;
  padding: 24px;
  background: rgba(15,23,42,.985); /* Slate 900 */
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 80px rgba(0,0,0,.6);
  transform: translateX(104%);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
body.light-theme .mobile-nav .panel {
  background: rgba(255,255,255,.99);
  border-left-color: var(--line);
}
.mobile-nav.is-open .panel { transform: translateX(0) }
.mobile-nav .panel:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
}
body.light-theme .mobile-nav .panel:before {
  background:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
}

.mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.mobile-head .kicker {
  display: block;
  font: 500 .55rem var(--font-mono);
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(var(--gold-rgb), 0.4);
}
.mobile-head strong {
  display: block;
  font: 700 clamp(1.4rem, 5vw, 2rem)/1 var(--font-sans);
  letter-spacing: -.02em;
  color: var(--text);
}
.mobile-head strong em { color: var(--gold); font-style: normal; text-shadow: 0 0 10px rgba(var(--gold-rgb), 0.3); }

.mobile-close {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  flex-shrink: 0;
  position: relative;
  transition: background .25s var(--transition);
}
.mobile-close:hover { background: var(--surface-3); border-color: var(--gold); box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.3); }
.mobile-close span {
  position: absolute;
  width: 14px; height: 1.5px;
  background: var(--text);
}
.mobile-close span:first-child { transform: rotate(45deg) }
.mobile-close span:last-child { transform: rotate(-45deg) }

.mobile-status {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 0;
  font: 500 .55rem var(--font-mono);
  letter-spacing: .08em;
  color: var(--text-secondary) !important;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.mobile-status .pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(41, 255, 170,.15), 0 0 18px var(--green);
}
.mobile-status .line { flex: 1; height: 1px; background: var(--line) }

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 13px 14px;
  font: 600 1rem var(--font-sans);
  color: var(--text);
  text-decoration: none !important;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 9px;
  transition: all .2s ease;
}
.mobile-nav-links a:last-of-type { border-bottom: none }
.mobile-nav-links a:hover {
  padding-left: 14px;
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
  text-shadow: 0 0 10px rgba(var(--gold-rgb), 0.6);
}
.mobile-nav-links a:not(.btn-gold)::after {
  content: "→";
  font-size: 1rem;
  color: var(--gold);
  opacity: .5;
  transition: transform .25s ease;
}
.mobile-nav-links a:not(.btn-gold):hover::after { transform: translateX(4px); opacity: 1; text-shadow: 0 0 8px var(--gold); }
.mobile-nav-links .btn-gold {
  margin-top: 8px;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #090c11;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.3);
}
body.light-theme .mobile-nav-links .btn-gold { color: #ffffff }
.mobile-nav-links .btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #090c11;
  padding-left: 14px !important;
  box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.6);
}
body.light-theme .mobile-nav-links .btn-gold:hover { color: #ffffff; box-shadow: 0 0 25px rgba(29,78,216,.4); }

.mobile-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.mobile-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  font: 500 .55rem var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: border-color .25s var(--transition), background .25s var(--transition);
}
.mobile-footer a:hover { border-color: var(--gold); background: var(--surface-2); color: var(--text) !important; box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.2); }
.mobile-footer .primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: var(--gold);
  color: #090c11 !important;
}
body.light-theme .mobile-footer .primary { color: #ffffff !important }
.mobile-footer .primary:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: var(--gold-soft);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.4);
}

.mobile-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font: 500 .5rem var(--font-mono);
  letter-spacing: .08em;
  color: var(--text-secondary) !important;
  position: relative;
  z-index: 1;
}
body.mobile-open { overflow: hidden }

/* ---------- 10. HERO ---------- */
.hero {
  min-height: calc(100svh - var(--chrome-height));
  padding: clamp(74px, 7vw, 108px) 0 clamp(64px, 7vw, 96px);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.012), transparent 28%),
    radial-gradient(circle at 74% 30%, rgba(255, 223, 51,.08), transparent 26rem),
    radial-gradient(circle at 22% 72%, rgba(41, 255, 170,.05), transparent 28rem),
    var(--bg);
}
body.light-theme .hero {
  background:
    linear-gradient(180deg, rgba(15,23,42,.012), transparent 28%),
    radial-gradient(circle at 74% 30%, rgba(29,78,216,.06), transparent 26rem),
    radial-gradient(circle at 22% 72%, rgba(59,130,246,.04), transparent 28rem),
    var(--bg);
}
.hero:before {
  content: 'SYS.001';
  position: absolute;
  right: -10px; top: 30px;
  font: 700 clamp(5rem, 12vw, 12rem)/.8 var(--font-mono);
  letter-spacing: -.08em;
  color: rgba(255,255,255,.015);
  pointer-events: none;
  user-select: none;
}
body.light-theme .hero:before { color: rgba(0,0,0,.03) }

.hero-inner {
  width: min(1240px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.hero .content {
  max-width: 660px;
  min-width: 0;
  margin: 0;
  text-align: left;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font: 500 .64rem var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
  margin-bottom: 20px;
}
.hero .eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(41, 255, 170,.1), 0 0 18px var(--green);
}
.hero h1 {
  max-width: 740px;
  font: 700 clamp(3.6rem, 6.2vw, 6.8rem)/.91 var(--font-sans);
  letter-spacing: -.064em;
  color: var(--text);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .highlight {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 25px rgba(var(--gold-rgb), 0.3);
}
.hero .lede {
  max-width: 600px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 30px;
}
.hero .lede strong { color: var(--text); font-weight: 600 }
.hero .lede a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px }
.hero .lede a:hover { color: #fff; text-shadow: 0 0 8px var(--gold); }
body.light-theme .hero .lede a:hover { color: #000; text-shadow: none; }

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}
.hero .metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 0;
  border-top: 0;
  justify-content: flex-start;
}
.hero .metrics .stat {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.018);
  transition: all 0.3s ease;
}
.hero .metrics .stat:hover {
  border-color: rgba(var(--gold-rgb), 0.3);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.1);
}
body.light-theme .hero .metrics .stat { background: rgba(15,23,42,.018) }
.hero .metrics .stat .value {
  font: 700 1.45rem/1.1 var(--font-sans);
  letter-spacing: -.02em;
  color: var(--text);
  text-shadow: 0 0 8px rgba(255,255,255,0.2);
}
.hero .metrics .stat .label {
  font: 400 .59rem/1.35 var(--font-sans);
  color: var(--text-secondary) !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
}
.hero .content > p[style*="font-size:0.55rem"] {
  max-width: 600px !important;
  margin-top: 12px !important;
  color: var(--text-dim) !important;
  font-size: .66rem !important;
  line-height: 1.55 !important;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 24%, rgba(41, 255, 170,.08), transparent 16rem),
    radial-gradient(circle at 34% 64%, rgba(255, 223, 51,.12), transparent 18rem),
    linear-gradient(145deg, #0e151e, #070b10);
  box-shadow: 0 30px 86px rgba(0,0,0,.45), 0 0 40px rgba(var(--gold-rgb), 0.05);
  overflow: hidden;
  transition: box-shadow .4s var(--transition);
  max-width: 100%;
  min-width: 0;
}
body.light-theme .hero-visual {
  background:
    radial-gradient(circle at 70% 24%, rgba(20,122,80,.06), transparent 16rem),
    radial-gradient(circle at 34% 64%, rgba(29,78,216,.08), transparent 18rem),
    linear-gradient(145deg, #ffffff, #f5f7fa);
}
.hero-visual:hover { box-shadow: 0 36px 100px rgba(0,0,0,.55), 0 0 60px rgba(var(--gold-rgb), 0.15) }
body.light-theme .hero-visual:hover { box-shadow: 0 30px 76px rgba(15,23,42,.13) }

.hero-visual:after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.02);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  z-index: 2;
}
body.light-theme .hero-visual:after { border-color: rgba(0,0,0,.04) }

.hero-visual .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
  transform: perspective(600px) rotateX(54deg) scale(1.5);
  transform-origin: center bottom;
  z-index: 0;
  animation: gridPulse 8s ease-in-out infinite alternate;
  max-width: 100%;
  overflow: hidden;
}
body.light-theme .hero-visual .grid-bg {
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
}
@keyframes gridPulse {
  0% { opacity: .3; filter: drop-shadow(0 0 10px rgba(var(--gold-rgb), 0.1)) }
  100% { opacity: .6; filter: drop-shadow(0 0 15px rgba(var(--gold-rgb), 0.2)) }
}

.hero-visual .label {
  position: absolute;
  top: 20px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
  font: 400 .6rem var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  z-index: 3;
  border-bottom: 1px solid var(--line);
}
.hero-visual .label .status { color: var(--green); text-shadow: 0 0 8px var(--green); }

.hero-visual .pipeline {
  position: absolute;
  inset: 72px 34px 36px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}
.hero-visual .pipeline .node-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.026);
  border: 1px solid var(--line);
  transition: border-color .4s var(--transition), background .4s var(--transition), transform .3s var(--transition), box-shadow .3s ease;
  cursor: default;
  min-width: 0;
  overflow: hidden;
}
body.light-theme .hero-visual .pipeline .node-row {
  background: rgba(15,23,42,.022);
  border-color: var(--line);
}
.hero-visual .pipeline .node-row:hover {
  transform: translateX(5px);
  border-color: rgba(255, 223, 51,.38);
  background: rgba(255, 223, 51,.08);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.2), inset 0 0 10px rgba(var(--gold-rgb), 0.1);
}
body.light-theme .hero-visual .pipeline .node-row:hover {
  border-color: rgba(29,78,216,.38);
  background: rgba(15,23,42,.03);
  box-shadow: none;
}
.hero-visual .pipeline .node-row .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* NEON PIPELINE DOTS */
.hero-visual .pipeline .node-row .dot.green { background: var(--green); box-shadow: 0 0 12px var(--green), 0 0 20px var(--green); }
.hero-visual .pipeline .node-row .dot.blue { background: var(--blue); box-shadow: 0 0 12px var(--blue), 0 0 20px var(--blue); }
.hero-visual .pipeline .node-row .dot.gold { background: var(--gold); box-shadow: 0 0 12px var(--gold), 0 0 20px var(--gold); }
.hero-visual .pipeline .node-row .dot.purple { background: var(--purple); box-shadow: 0 0 12px var(--purple), 0 0 20px var(--purple); }
.hero-visual .pipeline .node-row .dot.cyan { background: var(--cyan); box-shadow: 0 0 12px var(--cyan), 0 0 20px var(--cyan); }
.hero-visual .pipeline .node-row .dot.orange { background: var(--orange); box-shadow: 0 0 12px var(--orange), 0 0 20px var(--orange); }

.hero-visual .pipeline .node-row .name {
  font: 500 .74rem var(--font-sans);
  color: var(--text-secondary);
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-visual .pipeline .node-row .name strong { color: var(--text); font-weight: 600 }
.hero-visual .pipeline .node-row .arrow {
  color: var(--text-dim);
  font-size: .8rem;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.hero-visual .pipeline .node-row .badge {
  font: 500 .53rem var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-secondary) !important;
  flex-shrink: 0;
}
.hero-visual .pipeline .node-row .badge.active {
  color: var(--green) !important;
  background: rgba(41, 255, 170,.08);
  box-shadow: 0 0 8px rgba(41, 255, 170,.3);
  text-shadow: 0 0 5px rgba(41, 255, 170, 0.5);
}
.hero-visual .pipeline .connector {
  width: 1px;
  height: 10px;
  background: linear-gradient(to bottom, var(--line), transparent);
  margin-left: 15px;
}

.hero-visual .core-ring {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 223, 51,.35);
  display: grid;
  place-items: center;
  background: rgba(5,7,10,.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(255, 223, 51,.15), inset 0 0 60px rgba(255, 223, 51,.1);
  pointer-events: none;
  animation: corePulse 6s ease-in-out infinite alternate;
  max-width: 100%;
  filter: drop-shadow(0 16px 40px rgba(255, 223, 51,.25));
}
body.light-theme .hero-visual .core-ring {
  background: rgba(255,255,255,.6);
  border-color: rgba(29,78,216,.26);
}
@keyframes corePulse {
  0% { box-shadow: 0 0 60px rgba(255, 223, 51,.15), inset 0 0 60px rgba(255, 223, 51,.1) }
  100% { box-shadow: 0 0 100px rgba(255, 223, 51,.4), inset 0 0 80px rgba(255, 223, 51,.2) }
}
.hero-visual .core-ring .inner { text-align: center }
.hero-visual .core-ring .inner .icon { font-size: 24px; color: var(--gold); opacity: 1; text-shadow: 0 0 15px var(--gold); }
.hero-visual .core-ring .inner .label {
  display: block;
  font: 500 .5rem var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
  border: 0; padding: 0;
  position: static;
}


/* ---------- 26. RESPONSIVE ---------- */
@media (max-width: 1180px) {
  .nav-links a { padding-inline: 9px }
  .nav-links a .num { display: none }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .wrap,
  .hero-inner { width: min(760px, calc(100% - 40px)) }
  .hero { min-height: auto; padding-top: 72px }
  .hero-inner { grid-template-columns: 1fr; gap: 38px }
  .hero .content { max-width: 700px }
  .hero h1 { max-width: 760px }
  .hero-visual { min-height: 450px }
  .section .heading { grid-template-columns: 1fr; gap: 18px }
  .section .heading p { max-width: 620px }
  .flow-diagram,
  .services-grid { grid-template-columns: 1fr }
  .flow-step,
  .service-card { min-height: 0 }
  .console-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 36px }
  .faq-grid .intro { position: static }
  .contact-section { grid-template-columns: 1fr }
  .contact-section .logo-mark { display: none }
  .footer-brand-section { grid-template-columns: 1fr }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px }
  .nav-links { display: none }
  .menu-toggle { display: inline-flex }
  #schema-graph > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  #schema-graph div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  .advisory-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 64px;
    height: 380px;
  }
  .scroll-top { left: 16px; bottom: 16px; width: 40px; height: 40px }
  .advisory-toggle { bottom: 16px; right: 16px; padding: 6px 12px }
  .advisory-toggle .ctx { font-size: .55rem }
}

@media (max-width: 768px) {
  :root { --utility-height: 34px; --nav-height: 66px }
  .utility-bar { padding-inline: 16px }
  .utility-bar .util-center { display: none }
  .utility-bar .util-left { flex: 1 }
  .utility-bar .util-right { margin-left: auto }
  .nav { padding-inline: 16px }
  .nav .brand img { width: 84px }
  .nav-actions > .btn-primary,
  .nav-actions > .btn-primary.ghost { display: none }
  .wrap,
  .hero-inner { width: min(100% - 32px, 720px) }
  .section { padding-block: 72px }
  .hero { padding-block: 58px 68px }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.8rem); letter-spacing: -.055em }
  .hero .lede { font-size: 1rem }
  .hero-visual { min-height: 390px }
  .hero-visual .pipeline { inset: 66px 20px 26px }
  .hero .metrics { grid-template-columns: 1fr }
  .hero .metrics .stat {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
  }
  .hero .metrics .stat .label { margin-top: 0 }
  .cap-grid,
  .stats-bar { grid-template-columns: 1fr 1fr }
  .reviews { grid-template-columns: 1fr }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  #assessment-cta > div:last-child > span {
    width: 100%;
    margin-left: 0 !important;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ticker-wrapper .ticker-item { font-size: .7rem; padding: 0 18px; gap: 8px }
  .ticker-wrapper .ticker-item .badge { font-size: .5rem; padding: 1px 10px }
  .ticker-wrapper .ticker-close { right: 12px; width: 22px; height: 22px; font-size: .65rem }
}

@media (max-width: 600px) {
  :root { --ticker-height: 38px }
  .ticker-wrapper .ticker-item { padding-inline: 16px; font-size: .66rem }
  .ticker-wrapper .ticker-close { right: 9px; width: 26px; height: 26px }
  .accessibility-controls .label,
  .accessibility-controls .divider { display: none }
  .utility-bar .util-right > span { font-size: .54rem !important }
  .wrap,
  .hero-inner { width: calc(100% - 28px) }
  .hero { padding-top: 50px }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.25rem); line-height: .92 }
  .hero .actions { display: grid; grid-template-columns: 1fr }
  .hero .actions .btn-primary { width: 100%; justify-content: center }
  .hero-visual { min-height: 365px; border-radius: 16px }
  .hero-visual .label { left: 16px; right: 16px; font-size: .52rem }
  .hero-visual .pipeline { inset: 64px 14px 18px }
  .hero-visual .pipeline .node-row { min-height: 42px; gap: 8px; padding: 8px 10px }
  .hero-visual .pipeline .node-row .arrow { display: none }
  .hero-visual .pipeline .node-row .name { font-size: .68rem }
  .hero-visual .pipeline .node-row .badge { padding-inline: 6px; font-size: .47rem }
  .section { padding-block: 64px }
  .section .index { margin-bottom: 20px }
  .section .heading { margin-bottom: 28px }
  .section .heading h2,
  .faq-grid .intro h2,
  .contact-section .copy h2 { font-size: clamp(2.35rem, 12vw, 3.7rem) }
  #schema-graph div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }
  .flow-step,
  .cap-item,
  .service-card,
  .review { padding: 20px }
  .cap-grid,
  .stats-bar { grid-template-columns: 1fr }
  .economics-table .row {
    grid-template-columns: 1fr auto;
    gap: 7px 10px;
  }
  .economics-table .row .name { grid-column: 1 / -1 }
  .economics-table .row .cost { justify-self: start }
  .economics-table .row .tag { justify-self: end }
  .contact-section { padding: 20px; border-radius: 16px }
  .contact-section .form { padding: 16px }
  .footer { padding-top: 44px }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 22px !important }
  .footer-bottom { align-items: flex-start; gap: 18px }
  .mobile-nav .panel { width: 100vw; padding: 20px 18px }
  .advisory-panel {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 60px;
    height: 340px;
  }
  .cookie-banner { padding: .6rem 1rem; font-size: .7rem }
  .cookie-banner .actions button { font-size: .55rem; padding: .2rem .6rem }
  .scroll-top { left: 12px; bottom: 12px; width: 36px; height: 36px }
  .advisory-toggle { bottom: 12px; right: 12px; padding: 4px 10px }
  .advisory-toggle .ctx { font-size: .5rem }
}

@media (max-width: 420px) {
  .footer-links-grid { grid-template-columns: 1fr }
  .hero-visual { min-height: 350px }
  .hero-visual .pipeline .node-row .badge { display: none }
  .mobile-footer { grid-template-columns: 1fr }
}


/* Critical first-fold loading contract */
html { background: var(--bg); }
body { min-height: 100vh; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-visual { min-height: 420px; }
}
