/* ═══════════════════════════════════════════════════════════
   LIGHTHOUSE DESIGN SYSTEM — ds.css v2.0
   Shared across all public marketing pages.
   Import this before any page-specific styles.
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:             #050708;
  --bg-raised:      #0D0F15;
  --bg-elevated:    #131620;

  /* Borders */
  --border:         rgba(255,255,255,0.07);
  --border-mid:     rgba(255,255,255,0.12);

  /* Brand accent — amber gold */
  --amber:          #E8A328;
  --amber-dim:      rgba(232,163,40,0.12);
  --amber-glow:     rgba(232,163,40,0.08);
  --amber-border:   rgba(232,163,40,0.25);

  /* Text hierarchy */
  --t1:             rgba(255,255,255,0.97);
  --t2:             rgba(255,255,255,0.55);
  --t3:             rgba(255,255,255,0.30);

  /* Typography */
  --font:           'DM Sans', -apple-system, 'Segoe UI', BlinkMacSystemFont, sans-serif;
  --font-display:   'Bricolage Grotesque', system-ui, sans-serif;
  --mono:           'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Spacing & Shape */
  --section-gap:    120px;
  --radius:         16px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --radius-xl:      24px;

  /* Motion */
  --easing:         cubic-bezier(0.4,0,0.2,1);
  --easing-spring:  cubic-bezier(0.34,1.56,0.64,1);
  --speed-fast:     0.15s;
  --speed-base:     0.25s;
  --speed-slow:     0.5s;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── BASE ────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ── TOP AMBER ACCENT BAR ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,163,40,0.6) 30%,
    rgba(232,163,40,0.7) 50%,
    rgba(232,163,40,0.6) 70%,
    transparent 100%);
  z-index: 9999;
  pointer-events: none;
}

/* ── GRAIN / NOISE TEXTURE ───────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* ── PAGE ENTRY FADE ─────────────────────────────────────── */
body.page-loading { opacity: 0; }
body.page-ready   { opacity: 1; transition: opacity 0.4s ease; }

/* ── SPOTLIGHT CURSOR ────────────────────────────────────── */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    700px circle at var(--x, 50%) var(--y, 50%),
    rgba(232,163,40,0.045) 0%,
    transparent 70%
  );
  transition: background 0.1s;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition:
    background var(--speed-slow) var(--easing),
    border-color var(--speed-slow) var(--easing),
    backdrop-filter var(--speed-slow) var(--easing);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,7,8,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo svg { width: 26px; height: 26px; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  display: block; padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 450; color: var(--t2);
  transition: color var(--speed-fast) var(--easing), background var(--speed-fast) var(--easing);
}
.nav-links a:hover { color: var(--t1); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--t1); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  color: #050708; background: var(--amber);
  transition: opacity var(--speed-fast), transform var(--speed-fast);
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none; padding: 8px; border: none; background: none; cursor: pointer;
  color: var(--t2); font-size: 1.375rem; line-height: 1;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-toggle:hover { color: var(--t1); background: rgba(255,255,255,0.06); }

/* ── MOBILE DRAWER ───────────────────────────────────────── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--easing);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg-raised);
  border-left: 1px solid var(--border-mid);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  padding: 24px 20px;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.drawer-logo {
  font-family: var(--font); font-size: 1.125rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--t1);
}

.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--t2); font-size: 1.25rem; padding: 6px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.drawer-close:hover { color: var(--t1); background: rgba(255,255,255,0.06); }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  padding: 13px 14px; border-radius: 10px;
  font-size: 1rem; font-weight: 500; color: var(--t2);
  transition: color 0.2s, background 0.2s;
}
.drawer-nav a:hover,
.drawer-nav a.active { color: var(--t1); background: rgba(255,255,255,0.06); }

.drawer-cta {
  margin-top: 28px; display: block; text-align: center;
  background: var(--amber); color: #050708; font-weight: 700;
  padding: 14px 20px; border-radius: 10px; font-size: 1rem;
  transition: opacity 0.2s;
}
.drawer-cta:hover { opacity: 0.88; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary,
.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-size: 0.9375rem; font-weight: 700;
  color: #050708; background: var(--amber); border: none; cursor: pointer;
  font-family: var(--font);
  transition: opacity var(--speed-fast), transform var(--speed-fast), box-shadow var(--speed-fast);
  box-shadow: 0 4px 20px rgba(232,163,40,0.28);
}
.btn-primary:hover,
.btn-amber:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,163,40,0.4);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-size: 0.9375rem; font-weight: 500;
  color: var(--t2); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10); cursor: pointer;
  font-family: var(--font);
  transition: color var(--speed-fast), background var(--speed-fast), border-color var(--speed-fast);
}
.btn-ghost:hover {
  color: var(--t1);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

/* ── LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-gap) 0; }

/* ── DISPLAY TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── TYPOGRAPHY UTILITIES ────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--t1);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--t2);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub strong { color: rgba(255,255,255,0.82); font-weight: 500; }

/* ── CARD BASE ───────────────────────────────────────────── */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--speed-base) var(--easing),
    transform var(--speed-base) var(--easing),
    box-shadow var(--speed-base) var(--easing);
}
.card:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

/* Amber glow border on hover */
.card-glow:hover {
  border-color: rgba(232,163,40,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(232,163,40,0.08) inset;
}

/* Top accent line */
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,163,40,0.3), transparent);
  opacity: 0;
  transition: opacity var(--speed-base);
}
.card:hover::before { opacity: 1; }

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0.04;
  transform: translateY(20px);
  transition: opacity 0.65s var(--easing), transform 0.65s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Fade-up alias (backward compat) */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
}
.js-ready .fade-up {
  opacity: 0;
  transform: translateY(20px);
}
.js-ready .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NUMBER COUNTER ──────────────────────────────────────── */
.count-up { display: inline-block; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  font-size: 1.125rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--t1);
  margin-bottom: 12px; display: flex;
  align-items: center; gap: 8px;
}
.footer-logo img,
.footer-logo svg { width: 24px; height: 24px; }

.footer-tagline {
  font-size: 0.8125rem; color: var(--t3);
  line-height: 1.65; max-width: 240px;
}
.footer-col-head {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--t3); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: var(--t3); transition: color var(--speed-fast); }
.footer-links a:hover { color: var(--t1); }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8125rem; color: var(--t3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8125rem; color: var(--t3); transition: color var(--speed-fast); }
.footer-legal a:hover { color: var(--t1); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .container { padding: 0 20px; }
  .nav-links,
  .nav-cta { display: none !important; }
  .nav-mobile-toggle { display: flex !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATED GRADIENT BORDERS (premium cards) ───────────── */
@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card-premium {
  background: var(--bg-raised);
  border-radius: var(--radius);
  position: relative;
}
.card-premium::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(232,163,40,0.4), rgba(232,163,40,0.05), rgba(232,163,40,0.4));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity var(--speed-base);
}
.card-premium:hover::before {
  opacity: 1;
  animation: border-flow 3s ease infinite;
}
.card-premium-inner {
  position: relative; z-index: 1;
  background: var(--bg-raised);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); }

/* ── SELECTION ───────────────────────────────────────────── */
::selection {
  background: rgba(232,163,40,0.25);
  color: var(--t1);
}

/* ── BLUR-IN REVEAL (premium variant) ───────────────────────────────────── */
.reveal-blur {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  transition:
    opacity 0.7s var(--easing),
    transform 0.7s var(--easing),
    filter 0.7s var(--easing);
}
.reveal-blur.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── SCALE-IN REVEAL (for cards/cells) ──────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition:
    opacity 0.6s var(--easing),
    transform 0.6s var(--easing);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── MAGNETIC CARD (subtle pull effect) ─────────────────── */
.magnetic {
  transition: transform 0.25s var(--easing);
  will-change: transform;
}

/* ── SHARED KEYFRAMES ────────────────────────────────────── */
@keyframes hero-breathe {
  from { opacity: 0.6; transform: translate(-50%,-55%) scale(0.95); }
  to   { opacity: 1;   transform: translate(-50%,-58%) scale(1.08); }
}

@keyframes hero-breathe-simple {
  from { opacity: 0.6; transform: translateX(-50%) scale(0.95); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}

@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(74,222,128,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0);   }
  100% { box-shadow: 0 0 0 0   rgba(74,222,128,0);   }
}

@keyframes glow-pulse {
  from { box-shadow: 0 0 6px rgba(232,163,40,0.5); }
  to   { box-shadow: 0 0 14px rgba(232,163,40,0.9); }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════
   LIQUID-GLASS SURFACE SYSTEM
   Copy verbatim from reference — do not alter.
═══════════════════════════════════════════════════════════ */
:root {
  --font-serif: 'Instrument Serif', Georgia, serif;
}

.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass-strong {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.2) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.2) 80%,
    rgba(255,255,255,0.5) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass > *,
.liquid-glass-strong > * {
  position: relative;
  z-index: 1;
}

/* Pill radius default for glass components */
.glass-nav { border-radius: 9999px; }
.glass-btn { border-radius: 9999px; padding: 10px 20px; cursor: pointer; transition: opacity 0.15s; }
.glass-btn:hover { opacity: 0.85; }
.glass-chip { border-radius: 9999px; padding: 4px 12px; font-size: 0.75rem; }
.glass-card { border-radius: 20px; }

/* Cinematic entrance helpers */
.enter-hidden {
  filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}

/* Canvas scene container */
.scene-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Cinematic hero section */
.hero-cinematic {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050708;
}
.hero-cinematic > .hero-content {
  position: relative;
  z-index: 1;
}

/* Serif italic headline treatment */
.headline-serif {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

@media (prefers-reduced-motion: reduce) {
  .scene-canvas { display: none !important; }
  .enter-hidden { filter: none !important; opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV — Hamburger + Full-screen Drawer
═══════════════════════════════════════════════════════════ */
.lh-mob-burger {
  display: none;
  width: 36px; height: 36px; border-radius: 9999px;
  background: none; border: none; cursor: pointer;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1;
  transition: background 0.15s; flex-shrink: 0;
}
.lh-mob-burger:hover { background: rgba(255,255,255,0.08); }

.lh-mob-drawer {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5,7,8,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; display: none;
}
.lh-mob-drawer.lh-open { display: flex; }

.lh-mob-drawer nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lh-mob-drawer nav a {
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
  font-size: clamp(1.75rem, 7vw, 2.75rem); color: rgba(255,255,255,0.82);
  text-decoration: none; letter-spacing: -0.02em; padding: 10px 0;
  transition: color 0.15s;
}
.lh-mob-drawer nav a:hover { color: #E8A328; }
.lh-mob-drawer-cta {
  margin-top: 28px !important; font-family: 'Geist', sans-serif !important;
  font-style: normal !important; font-size: 0.9375rem !important;
  font-weight: 700 !important; background: #E8A328 !important;
  color: #050708 !important; padding: 14px 36px !important;
  border-radius: 9999px !important; text-decoration: none !important;
}
.lh-mob-drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 28px;
  width: 48px; height: 48px; display: flex;
  align-items: center; justify-content: center; border-radius: 9999px;
  transition: background 0.15s;
}
.lh-mob-drawer-close:hover { background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 720px) {
  .lh-pill-link, .lh-pill-cta { display: none !important; }
  .lh-mob-burger { display: flex !important; }
}

/* ═══════════════════════════════════════════════════════════
   PRECISION INSTRUMENT NAV — shared across all public pages
   Transparent → frosted glass on scroll
═══════════════════════════════════════════════════════════ */
.pi-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1),
    border-color 0.4s cubic-bezier(0.4,0,0.2,1),
    backdrop-filter 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pi-nav.is-scrolled {
  background: rgba(5,7,8,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(255,255,255,0.065);
  box-shadow: 0 1px 0 0 rgba(232,163,40,0.14);
}
.pi-nav__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}
.pi-nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: rgba(255,255,255,0.97);
}
.pi-nav__logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(232,163,40,0.22));
  transition: filter 0.25s ease;
}
.pi-nav__logo:hover .pi-nav__logo-mark {
  filter: drop-shadow(0 0 10px rgba(232,163,40,0.45));
}
.pi-nav__logo-wordmark {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.97);
  white-space: nowrap;
}
.pi-nav__status {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid rgba(232,163,40,0.2);
  border-radius: 3px;
  background: rgba(232,163,40,0.06);
}
@media (min-width: 900px) { .pi-nav__status { display: flex; } }
.pi-nav__status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #E8A328;
  flex-shrink: 0;
  animation: pi-pulse 2.4s ease-in-out infinite;
}
@keyframes pi-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,163,40,0.5); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(232,163,40,0); }
}
.pi-nav__status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #E8A328;
  line-height: 1;
}
.pi-nav__links {
  list-style: none;
  display: none;
  align-items: center;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) { .pi-nav__links { display: flex; } }
.pi-nav__link {
  display: block;
  padding: 6px 15px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 450;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
  white-space: nowrap;
}
.pi-nav__link:hover {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.055);
}
.pi-nav__link--active { color: rgba(255,255,255,0.9); }
.pi-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 1.5px;
  border-radius: 1px;
  background: #E8A328;
}
.pi-nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.pi-nav__cta {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #050708;
  background: #E8A328;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 0 1px rgba(232,163,40,0.4), 0 1px 2px rgba(0,0,0,0.3);
}
@media (min-width: 480px) { .pi-nav__cta { display: inline-flex; } }
.pi-nav__cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(232,163,40,0.5), 0 4px 14px rgba(232,163,40,0.22);
}
.pi-nav__cta:active { transform: translateY(0); opacity: 1; }
.pi-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
}
.pi-nav__burger:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.pi-nav__burger-bar {
  display: block;
  width: 16px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.4,0,0.2,1), width 0.2s;
}
.pi-nav__burger[aria-expanded="true"] .pi-nav__burger-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pi-nav__burger[aria-expanded="true"] .pi-nav__burger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pi-nav__burger[aria-expanded="true"] .pi-nav__burger-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 768px) { .pi-nav__burger { display: none; } }
.pi-nav__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 198;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1);
}
.pi-nav__overlay.is-open { opacity: 1; pointer-events: auto; }
.pi-nav__drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 86vw);
  background: #0D0F15;
  border-left: 1px solid rgba(255,255,255,0.09);
  z-index: 199;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pi-nav__drawer.is-open { transform: translateX(0); }
.pi-nav__drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.pi-nav__drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.pi-nav__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.pi-nav__drawer-close:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.pi-nav__drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  flex: 1;
  gap: 2px;
}
.pi-nav__drawer-link {
  display: block;
  padding: 12px 14px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.pi-nav__drawer-link::before {
  content: attr(data-idx);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  color: rgba(232,163,40,0.4);
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.05em;
}
.pi-nav__drawer-link:hover {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.055);
}
.pi-nav__drawer-link--active {
  color: rgba(255,255,255,0.95);
  background: rgba(232,163,40,0.07);
  border: 1px solid rgba(232,163,40,0.14);
}
.pi-nav__drawer-link--active::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 16px;
  background: #E8A328;
  border-radius: 0 2px 2px 0;
}
.pi-nav__drawer-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.pi-nav__drawer-cta {
  display: block;
  text-align: center;
  background: #E8A328;
  color: #050708;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.pi-nav__drawer-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.pi-nav__drawer-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  justify-content: center;
}
