/* ============================================================
   Umbreo Inc — premium dark SaaS one-pager
   Tailwind handles the layout; this file owns the bespoke
   glassmorphism, glow, particles and motion language.
   ============================================================ */

:root {
  --bg-0:        #05070D;
  --bg-1:        #0A0E1A;
  --bg-2:        #0F1424;
  --surface:     rgba(255, 255, 255, 0.04);
  --surface-2:   rgba(255, 255, 255, 0.06);
  --border:      rgba(255, 255, 255, 0.08);
  --border-hi:   rgba(255, 255, 255, 0.14);
  --text:        #E6E9F2;
  --text-dim:    #97A0B8;
  --text-mute:   #5B647A;

  --brand:       #6B8AFF;
  --brand-2:     #9D7BFF;
  --brand-3:     #4ECBFF;
  --brand-glow:  rgba(107, 138, 255, 0.45);

  --ok:          #34D399;
  --warn:        #FBBF24;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-0);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

::selection { background: rgba(107, 138, 255, 0.35); color: #fff; }

/* ───────── Animated mesh background ───────── */
.bg-mesh {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1100px 700px at 15% 0%,   rgba(107,138,255,0.22), transparent 60%),
    radial-gradient(900px  600px at 85% 20%, rgba(157,123,255,0.18), transparent 60%),
    radial-gradient(800px  500px at 50% 90%, rgba(78,203,255,0.10),  transparent 65%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 85%);
  pointer-events: none;
}
.bg-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Floating ambient orbs */
.orb {
  position: absolute; border-radius: 9999px; filter: blur(80px);
  opacity: 0.55; pointer-events: none;
  animation: orb-float 18s ease-in-out infinite;
}
.orb-a { width: 520px; height: 520px; background: radial-gradient(circle, rgba(107,138,255,0.55), transparent 70%); top: -120px; left: -120px; }
.orb-b { width: 440px; height: 440px; background: radial-gradient(circle, rgba(157,123,255,0.45), transparent 70%); top: 220px; right: -160px; animation-delay: -6s; }
.orb-c { width: 380px; height: 380px; background: radial-gradient(circle, rgba(78,203,255,0.32),  transparent 70%); bottom: -160px; left: 30%; animation-delay: -12s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.05); }
}

/* Particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particles span {
  position: absolute; bottom: -10px; width: 3px; height: 3px;
  background: rgba(255,255,255,0.55); border-radius: 9999px;
  box-shadow: 0 0 8px rgba(157,123,255,0.5);
  animation: particle-rise linear infinite;
  opacity: 0;
}
@keyframes particle-rise {
  0%   { transform: translateY(0)     scale(1);   opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.9; }
  100% { transform: translateY(-110vh) scale(0.3); opacity: 0; }
}

/* ───────── Typography ───────── */
.display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.text-gradient {
  background: linear-gradient(120deg, #ffffff 0%, #cfd6ff 35%, #9D7BFF 70%, #4ECBFF 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.text-gradient-soft {
  background: linear-gradient(120deg, #ffffff 0%, #B4BEDC 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ───────── Glass primitives ───────── */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.glass-strong {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

/* ───────── Navbar ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 11, 22, 0.72);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom-color: var(--border);
}
.nav a.nav-link {
  color: var(--text-dim); font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color 0.25s var(--ease-out);
}
.nav a.nav-link:hover { color: var(--text); }
.nav a.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: linear-gradient(90deg, var(--brand), var(--brand-3));
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}
.nav a.nav-link:hover::after { transform: scaleX(1); }

/* Logo mark */
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0%, #b4c5ff 18%, var(--brand) 55%, var(--brand-2) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.18) inset,
    0 8px 24px var(--brand-glow);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: 6px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  mix-blend-mode: overlay;
}

/* Lang toggle */
.lang-toggle {
  position: relative; display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9999px; padding: 3px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}
.lang-toggle button {
  position: relative; z-index: 1;
  padding: 5px 11px; border-radius: 9999px;
  color: var(--text-dim); transition: color 0.3s;
  background: transparent; border: 0; cursor: pointer;
}
.lang-toggle button.active { color: #fff; }
.lang-toggle .lang-pill {
  position: absolute; top: 3px; bottom: 3px; width: calc(50% - 3px);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 9999px; box-shadow: 0 4px 14px var(--brand-glow);
  transition: left 0.35s var(--ease-spring);
  left: 3px;
}
.lang-toggle[data-lang="en"] .lang-pill { left: calc(50% + 0px); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px;
  font-weight: 600; font-size: 0.92rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s;
  white-space: nowrap; cursor: pointer; border: 0;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 10px 30px var(--brand-glow),
    0 0 0 1px rgba(255,255,255,0.06);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 16px 40px var(--brand-glow); }
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; border-radius: 10px; }

/* ───────── Hero ───────── */
.hero {
  position: relative; padding: 160px 0 120px; overflow: hidden;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 9999px;
  background: rgba(107,138,255,0.10);
  border: 1px solid rgba(107,138,255,0.28);
  color: #cfd6ff; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero .eyebrow .dot {
  width: 7px; height: 7px; border-radius: 9999px;
  background: var(--brand-3); box-shadow: 0 0 10px var(--brand-3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  margin: 28px 0 22px;
}
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 640px; line-height: 1.55;
}

/* Floating glass dashboard mock */
.mock {
  position: relative; margin-top: 96px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border-hi);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.mock::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 300px at 50% -10%, rgba(107,138,255,0.25), transparent 60%);
  pointer-events: none;
}
.mock-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.mock-dot { width: 11px; height: 11px; border-radius: 9999px; background: rgba(255,255,255,0.18); }
.mock-dot.r { background: #FF6B6B; }
.mock-dot.y { background: #FFC53D; }
.mock-dot.g { background: #4ADE80; }

.float-card {
  position: absolute; padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  animation: card-float 7s ease-in-out infinite;
}
.float-card .ico {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(-2deg); }
}
.float-card.right { animation-name: card-float-r; animation-delay: -2.5s; }
@keyframes card-float-r {
  0%, 100% { transform: translateY(-6px) rotate(3deg); }
  50%      { transform: translateY(10px)  rotate(3deg); }
}

/* ───────── Section base ───────── */
.section {
  position: relative; padding: clamp(80px, 10vw, 140px) 0;
}
.section .eyebrow-s {
  display: inline-block; padding: 4px 12px; border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.03em; line-height: 1.05; font-weight: 700;
  margin: 18px 0 18px;
}
.section .section-sub {
  color: var(--text-dim); font-size: 1.05rem; max-width: 620px;
  line-height: 1.6;
}

/* ───────── About / feature cards ───────── */
.card {
  position: relative; padding: 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(107,138,255,0.0), rgba(157,123,255,0.0));
  border-radius: inherit; opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
}
.card:hover::before { opacity: 0.6; }
.card .ico-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(107,138,255,0.18), rgba(157,123,255,0.10));
  border: 1px solid rgba(107,138,255,0.28);
  color: var(--brand);
  margin-bottom: 18px;
}
.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.card p { color: var(--text-dim); font-size: 0.94rem; line-height: 1.6; }

/* ───────── Products ───────── */
.product {
  position: relative; padding: 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  display: flex; flex-direction: column; height: 100%;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.product::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 280px; height: 280px; border-radius: 9999px;
  background: radial-gradient(circle, var(--p-glow, rgba(107,138,255,0.35)), transparent 70%);
  filter: blur(40px); opacity: 0.55; pointer-events: none;
  transition: opacity 0.5s;
}
.product:hover {
  transform: translateY(-8px);
  border-color: var(--border-hi);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.product:hover::before { opacity: 0.85; }
.product .p-logo {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: #fff;
  box-shadow: 0 12px 28px var(--p-glow, rgba(107,138,255,0.35));
  background: linear-gradient(135deg, var(--p-c1, var(--brand)), var(--p-c2, var(--brand-2)));
}
.product .p-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em;
}
.product .p-desc { color: var(--text-dim); font-size: 0.94rem; line-height: 1.6; }
.product .p-features { display: flex; flex-direction: column; gap: 10px; }
.product .p-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-dim);
}
.product .p-features svg { flex-shrink: 0; margin-top: 3px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 9999px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.badge.live    { background: rgba(52,211,153,0.12); color: var(--ok);   border: 1px solid rgba(52,211,153,0.28); }
.badge.dev     { background: rgba(107,138,255,0.12); color: #B6C4FF;   border: 1px solid rgba(107,138,255,0.28); }
.badge.soon    { background: rgba(251,191,36,0.10); color: var(--warn); border: 1px solid rgba(251,191,36,0.25); }
.badge .ping {
  width: 6px; height: 6px; border-radius: 9999px; background: currentColor;
  box-shadow: 0 0 8px currentColor;
}
.badge.live .ping { animation: pulse 1.8s infinite; }

.product .p-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-hi);
  color: #fff; font-size: 0.86rem; font-weight: 600;
  transition: all 0.3s var(--ease-out);
}
.product .p-cta:hover { background: rgba(255,255,255,0.10); gap: 12px; }
.product .p-cta.primary {
  background: linear-gradient(135deg, var(--p-c1, var(--brand)), var(--p-c2, var(--brand-2)));
  border-color: transparent;
  box-shadow: 0 8px 24px var(--p-glow, rgba(107,138,255,0.35));
}
.product .p-cta.primary:hover { transform: translateY(-2px); }

/* ───────── Why Umbreo ───────── */
.feat {
  position: relative; padding: 26px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.feat:hover { transform: translateY(-4px); border-color: var(--border-hi); }
.feat .ico-w {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(157,123,255,0.18), rgba(78,203,255,0.12));
  border: 1px solid rgba(157,123,255,0.25);
  color: var(--brand-2); margin-bottom: 16px;
}
.feat h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.feat p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.55; }

/* ───────── Contact ───────── */
.contact-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-hi);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 200px at 0% 0%,   rgba(107,138,255,0.18), transparent 60%),
    radial-gradient(ellipse 500px 200px at 100% 100%, rgba(157,123,255,0.18), transparent 60%);
  pointer-events: none;
}
.field { position: relative; }
.field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-dim); margin-bottom: 8px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(107,138,255,0.55);
  background: rgba(107,138,255,0.06);
  box-shadow: 0 0 0 4px rgba(107,138,255,0.10);
}
.field textarea { resize: vertical; min-height: 130px; }

.form-status {
  display: none; padding: 14px 18px; border-radius: 12px;
  font-size: 0.92rem; font-weight: 500;
}
.form-status.ok  { display: flex; align-items: center; gap: 10px; background: rgba(52,211,153,0.10); border: 1px solid rgba(52,211,153,0.3); color: #6EE7B7; }
.form-status.err { display: flex; align-items: center; gap: 10px; background: rgba(248,113,113,0.10); border: 1px solid rgba(248,113,113,0.3); color: #FCA5A5; }

.btn-submit { width: 100%; justify-content: center; padding: 15px 22px; font-size: 0.98rem; }
.btn-submit .spinner {
  width: 16px; height: 16px; border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit[data-loading="true"] .spinner { display: inline-block; }
.btn-submit[data-loading="true"] .label   { opacity: 0.7; }

/* ───────── Footer ───────── */
.footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  padding: 64px 0 36px;
}
.footer a {
  color: var(--text-dim); font-size: 0.9rem;
  transition: color 0.25s;
}
.footer a:hover { color: var(--text); }
.footer .social a {
  width: 36px; height: 36px; display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
}
.footer .social a:hover { background: rgba(255,255,255,0.08); border-color: var(--border-hi); transform: translateY(-2px); }

/* ───────── Scroll reveal ───────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Scroll progress bar */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-3));
  z-index: 60; box-shadow: 0 0 10px var(--brand-glow);
  transition: width 0.1s linear;
}

/* ───────── Mobile nav drawer ───────── */
.mob-drawer {
  position: fixed; inset: 64px 0 0 0; z-index: 49;
  background: rgba(5, 7, 13, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 32px 24px;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
  pointer-events: none;
}
.mob-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mob-drawer a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem; color: var(--text); font-weight: 500;
}

/* ───────── Misc ───────── */
.divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
}
.kpi-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #9D7BFF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
