/* ============================================
   STEALTH VAULT — Shared CSS Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ──────────────────────────────── */
:root {
  --bg-base:       #0a0e1a;
  --bg-surface:    #0f1629;
  --bg-card:       #141c35;
  --bg-card-hover: #1a2440;
  --border:        rgba(255,255,255,0.07);
  --border-glow:   rgba(0,212,255,0.25);

  --cyan:    #00d4ff;
  --indigo:  #6366f1;
  --violet:  #8b5cf6;
  --green:   #10b981;
  --amber:   #f59e0b;
  --red:     #ef4444;
  --pink:    #ec4899;

  --text-1: #f0f4ff;
  --text-2: #94a3b8;
  --text-3: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow-cyan:   0 0 40px rgba(0,212,255,0.15);
  --shadow-glow-indigo: 0 0 40px rgba(99,102,241,0.2);

  --nav-h: 68px;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── Reset & Core Defaults ──────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: #1f2937; border-radius: 10px; border: 2px solid var(--bg-base); }
::-webkit-scrollbar-thumb:hover { background: #374151; }

/* Text Selection */
::selection { background: rgba(0, 212, 255, 0.2); color: #fff; }

/* ── Noise Overlay ──────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); padding: 0 max(clamp(1rem,5vw,3rem), calc(50vw - 580px));
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,14,26,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(10,14,26,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
}
.nav-brand-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 2px; margin-left: auto;
}
.nav-links a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-1); background: rgba(255,255,255,0.06);
}
.nav-cta {
  margin-left: 12px;
  padding: 8px 18px !important;
  background: linear-gradient(135deg, var(--cyan), var(--indigo)) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.88; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem; z-index: 998;
  flex-direction: column; gap: 4px;
}
.mobile-menu a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 0.925rem; font-weight: 500; color: var(--text-2);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text-1); }
.mobile-menu.open { display: flex; }

/* ── Page Wrapper ───────────────────────────── */
.page-wrap {
  position: relative; z-index: 1;
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ── Sections ───────────────────────────────── */
.section { padding: clamp(4rem,8vw,8rem) max(clamp(1rem,5vw,3rem), calc(50vw - 580px)); }
.section-sm { padding: clamp(2.5rem,5vw,4rem) clamp(1rem,5vw,3rem); max-width: 1160px; margin: 0 auto; }

/* ── Typography ─────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 1.2rem;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
.hero-title {
  font-size: clamp(2.8rem,6vw,5rem); font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 70%, var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(2rem,5vw,3rem); font-weight: 800; margin-bottom: 3rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-2); max-width: 560px; margin-bottom: 3rem;
}
.text-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--indigo));
  color: #fff; box-shadow: 0 4px 20px rgba(0,212,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 10px 30px rgba(0,212,255,0.4), 0 0 15px rgba(99,102,241,0.4); 
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  background: rgba(255,255,255,0.03); color: var(--text-1);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { 
  background: rgba(255,255,255,0.08); 
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-secondary:active { transform: translateY(0); }

.btn-ghost { color: var(--cyan); padding: 8px 16px; border-radius: var(--radius-sm); transition: all 0.2s; }
.btn-ghost:hover { color: #fff; background: rgba(0,212,255,0.1); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.825rem; border-radius: var(--radius-sm); }

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.card::after {
  content: ''; position: absolute; inset: -1px; z-index: -1;
  background: linear-gradient(135deg, rgba(0,212,255,0.5), rgba(99,102,241,0.5));
  border-radius: inherit; opacity: 0; transition: opacity 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-glow-cyan);
  background: var(--bg-card-hover);
  border-color: transparent;
}
.card:hover::after { opacity: 1; }
.card-glass {
  background: rgba(15,22,41,0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.icon-box {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.2rem;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
}
.icon-box.green  { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.icon-box.indigo { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.2); }
.icon-box.amber  { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }
.icon-box.red    { background: rgba(239,68,68,0.08);  border-color: rgba(239,68,68,0.2); }
.icon-box.violet { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); }
.icon-box.pink   { background: rgba(236,72,153,0.08); border-color: rgba(236,72,153,0.2); }

/* ── Grids ──────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }

/* ── Badge ──────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
}
.badge-cyan   { background: rgba(0,212,255,0.12);   color: var(--cyan);   border: 1px solid rgba(0,212,255,0.2); }
.badge-green  { background: rgba(16,185,129,0.12);  color: var(--green);  border: 1px solid rgba(16,185,129,0.2); }
.badge-indigo { background: rgba(99,102,241,0.12);  color: var(--indigo); border: 1px solid rgba(99,102,241,0.2); }
.badge-amber  { background: rgba(245,158,11,0.12);  color: var(--amber);  border: 1px solid rgba(245,158,11,0.2); }
.badge-red    { background: rgba(239,68,68,0.12);   color: var(--red);    border: 1px solid rgba(239,68,68,0.2); }

/* ── Divider ────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Table ──────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  text-align: left; padding: 12px 16px;
  color: var(--text-3); font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}
.data-table td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-2); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Code block ─────────────────────────────── */
.code-block {
  background: #080d1a;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: #a5f3fc;
  overflow-x: auto;
  line-height: 1.7;
}

/* ── Timeline ───────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.timeline-connector { flex: 1; width: 2px; background: linear-gradient(180deg, var(--cyan), transparent); margin-top: 6px; }
.timeline-content { padding-top: 6px; flex: 1; }
.timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.timeline-content p { color: var(--text-2); font-size: 0.9rem; }

/* ── Footer ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); background: var(--bg-card); margin-top: 2rem;
}
.footer-inner { padding: 4rem max(clamp(1rem,5vw,3rem), calc(50vw - 580px)) 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem;
}
.footer-brand p { color: var(--text-2); font-size: 0.875rem; margin-top: 0.75rem; max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-2); font-size: 0.875rem; padding: 3px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { color: var(--text-3); font-size: 0.8rem; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,0.15); }
  50%       { box-shadow: 0 0 50px rgba(0,212,255,0.4); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.float-anim { animation: float 6s ease-in-out infinite; }

/* ── Scroll Reveal ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hero BG ────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px; top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,255,0.12), transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: 0; left: -100px;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%);
}

/* ── Page Header (inner pages) ──────────────── */
.page-header {
  position: relative; overflow: hidden;
  padding: clamp(4rem,8vw,7rem) clamp(1rem,5vw,3rem) clamp(3rem,6vw,5rem);
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(0,212,255,0.06) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}
.page-header .label { justify-content: center; }

/* ── Prose (for policy pages) ───────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 2.5rem 0 0.9rem; color: var(--text-1); }
.prose h3 { font-size: 1.1rem; margin: 2rem 0 0.6rem; color: var(--cyan); }
.prose p  { color: var(--text-2); margin-bottom: 1rem; font-size: 0.95rem; }
.prose ul, .prose ol { margin: 0.75rem 0 1.25rem 1.5rem; color: var(--text-2); }
.prose li { margin-bottom: 0.5rem; font-size: 0.95rem; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--text-1); }
.prose a { color: var(--cyan); }
.prose .info-box {
  background: rgba(0,212,255,0.05); border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.prose .warn-box {
  background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Socials and PlayStore Coming Soon ───────── */
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  color: var(--text-2);
}
.social-icon:hover {
  background: var(--cyan);
  color: var(--bg-base);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}
.btn-disabled {
  opacity: 0.65;
  cursor: not-allowed !important;
  border: 1px solid var(--border) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--text-2) !important;
  box-shadow: none !important;
}

/* ── Light Theme Variables & Styles ─────────── */
html.light-theme {
  --bg-base:       #f8fafc;
  --bg-surface:    #f1f5f9;
  --bg-card:       #ffffff;
  --bg-card-hover: #f8fafc;
  --border:        rgba(15,23,42,0.08);
  --border-glow:   rgba(0,180,216,0.3);

  --cyan:    #0096c7;
  --indigo:  #4f46e5;
  --violet:  #7c3aed;

  --text-1: #0f172a;
  --text-2: #475569;
  --text-3: #64748b;

  --shadow-card: 0 10px 30px rgba(15,23,42,0.06);
  --shadow-glow-cyan:   0 0 40px rgba(0,150,199,0.08);
  --shadow-glow-indigo: 0 0 40px rgba(79,70,229,0.08);
}

/* Custom scrollbar in light mode */
html.light-theme ::-webkit-scrollbar-track { background: var(--bg-base); }
html.light-theme ::-webkit-scrollbar-thumb { background: #cbd5e1; border: 2px solid var(--bg-base); }
html.light-theme ::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Light Theme Navigation overrides */
html.light-theme .nav {
  background: rgba(248, 250, 252, 0.75);
}
html.light-theme .nav.scrolled {
  background: rgba(248, 250, 252, 0.97);
  box-shadow: 0 4px 20px rgba(15,23,42,0.05);
}
html.light-theme .nav-links a:hover, html.light-theme .nav-links a.active {
  background: rgba(15,23,42,0.06);
}
html.light-theme .mobile-menu {
  background: var(--bg-surface);
}
html.light-theme .mobile-menu a:hover {
  background: rgba(15,23,42,0.06);
}
html.light-theme .hamburger span {
  background: var(--text-1);
}

/* Social icons in light mode */
html.light-theme .social-icon {
  background: rgba(15,23,42,0.04);
}
html.light-theme .social-icon:hover {
  color: #fff;
}

/* Disabled button in light mode */
html.light-theme .btn-disabled {
  background: rgba(15, 23, 42, 0.03) !important;
}

/* Hero elements contrast */
html.light-theme .hero-badge {
  background: rgba(0, 150, 199, 0.05);
  border-color: rgba(0, 150, 199, 0.15);
}
html.light-theme code {
  background: rgba(0, 150, 199, 0.07);
}

/* ── Theme Switcher Toggle Button ───────────── */
.theme-toggle-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 10px; color: var(--text-1); font-size: 1.05rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; outline: none;
  user-select: none;
}
.theme-toggle-btn:hover {
  background: rgba(255,255,255,0.08); transform: scale(1.08); border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0,212,255,0.25);
}
.theme-toggle-btn .theme-icon-sun { display: none; }
.theme-toggle-btn .theme-icon-moon { display: block; }

html.light-theme .theme-toggle-btn {
  background: rgba(15,23,42,0.04);
}
html.light-theme .theme-toggle-btn:hover {
  background: rgba(15,23,42,0.08);
  box-shadow: 0 0 15px rgba(0,150,199,0.15);
}
html.light-theme .theme-toggle-btn .theme-icon-sun { display: block; }
html.light-theme .theme-toggle-btn .theme-icon-moon { display: none; }
html.light-theme .current-theme-label {
  background: rgba(15,23,42,0.06) !important;
}

/* Hero title — fix white gradient text on light bg */
html.light-theme .hero-title {
  background: linear-gradient(135deg, #0f172a 20%, var(--cyan) 60%, var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Secondary button on light bg */
html.light-theme .btn-secondary {
  background: rgba(15,23,42,0.04);
  border-color: rgba(15,23,42,0.12);
  color: var(--text-1);
}
html.light-theme .btn-secondary:hover {
  background: rgba(15,23,42,0.08);
  border-color: rgba(15,23,42,0.2);
}
html.light-theme .btn-ghost:hover {
  color: var(--indigo);
  background: rgba(79,70,229,0.08);
}

/* Card glass (feature details) */
html.light-theme .card-glass {
  background: rgba(255,255,255,0.7);
  border-color: rgba(15,23,42,0.08);
}
html.light-theme .card:hover {
  box-shadow: 0 20px 40px rgba(15,23,42,0.08), var(--shadow-glow-cyan);
}

/* Label pill (section tags) */
html.light-theme .label {
  background: rgba(0,150,199,0.07);
  border-color: rgba(0,150,199,0.18);
}

/* Data table borders and rows */
html.light-theme .data-table td { border-bottom-color: rgba(15,23,42,0.06); }
html.light-theme .data-table tr:hover td { background: rgba(15,23,42,0.02); }

/* Code block */
html.light-theme .code-block {
  background: #f1f5f9;
  color: #0369a1;
  border-color: rgba(15,23,42,0.1);
}

/* Noise overlay — reduce/remove on light theme */
html.light-theme body::before { opacity: 0; }

/* Hero orbs — soften on light */
html.light-theme .hero-orb-1 {
  background: radial-gradient(circle, rgba(0,150,199,0.06), transparent 70%);
}
html.light-theme .hero-orb-2 {
  background: radial-gradient(circle, rgba(79,70,229,0.06), transparent 70%);
}

/* Stats section */
html.light-theme .stats-section {
  background: var(--bg-surface);
  border-color: var(--border);
}

/* Footer */
html.light-theme .footer {
  background: var(--bg-surface);
  border-top-color: var(--border);
}
html.light-theme .footer-col a:hover { color: var(--cyan); }
html.light-theme .footer-bottom { border-top-color: var(--border); }

/* Mobile menu border */
html.light-theme .mobile-menu {
  border-bottom-color: var(--border);
}

/* FAQ item on light */
html.light-theme .faq-item {
  background: var(--bg-card);
}
html.light-theme .faq-item:hover {
  border-color: rgba(0,150,199,0.2);
  box-shadow: 0 4px 15px rgba(0,150,199,0.04);
}
html.light-theme .faq-q:hover { background: rgba(0,150,199,0.03); }

/* Prose boxes */
html.light-theme .prose .info-box {
  background: rgba(0,150,199,0.04);
  border-color: rgba(0,150,199,0.15);
}
html.light-theme .prose .warn-box {
  background: rgba(245,158,11,0.04);
  border-color: rgba(245,158,11,0.15);
}

/* Timeline */
html.light-theme .timeline-dot { background: var(--bg-card); }

/* Page header inner pages */
html.light-theme .page-header {
  background: radial-gradient(ellipse at top, rgba(0,150,199,0.05) 0%, transparent 60%);
}

/* Scrollbar track on light body */
html.light-theme body { background: var(--bg-base); color: var(--text-1); }
