/* VERSION: nsa-vcfo-v5l-css */
:root {
  --bg-primary: #0f0720;
  --bg-secondary: rgba(30, 15, 60, 0.6);
  --accent: #a78bfa;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --glass-border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(15, 7, 32, 0.95);
  --hero-overlay: linear-gradient(rgba(15, 7, 32, 0.8), rgba(15, 7, 32, 0.8));
}

[data-theme="light"] {
  --bg-primary: #f8f7ff;
  --bg-secondary: rgba(237, 233, 254, 0.8);
  --accent: #6d28d9;
  --text-main: #1e1b4b;
  --text-muted: #4b5563;
  --glass-border: rgba(109, 40, 217, 0.2);
  --nav-bg: rgba(248, 247, 255, 0.98);
  --hero-overlay: linear-gradient(rgba(248, 247, 255, 0.4), rgba(248, 247, 255, 0.4));
}

body {
  margin: 0; font-family: 'Inter', system-ui, sans-serif; line-height: 1.6;
  background-color: var(--bg-primary); color: var(--text-main);
  transition: 0.4s; scroll-behavior: smooth;
}

/* MODAL */
#disclaimer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; z-index: 9999; }
#disclaimer-box { background: var(--bg-primary); padding: 40px; max-width: 550px; width: 90%; border-radius: 24px; border: 1px solid var(--accent); text-align: center; }

/* HEADER & BUTTON CONTRAST */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--nav-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--glass-border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 5vw; max-width: 1200px; margin: 0 auto; }
.logo { font-family: Georgia, serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.btn-inquire { color: #ffffff !important; }

/* HERO IMAGE */
.hero-section { 
  padding: 120px 5vw; text-align: center; 
  background-image: var(--hero-overlay), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1600');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.kicker { color: var(--accent); font-weight: 700; letter-spacing: 4px; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 15px; }
h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); margin: 0 0 20px; line-height: 1.1; }

/* STATS ALIGNMENT */
.stats-grid { display: flex; justify-content: center; gap: 60px; margin: 50px auto 0; flex-wrap: wrap; }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--accent); display: block; }
.label { font-size: 0.9rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1.5px; }

/* TABLE SCANNABILITY (FIXED SPACING) */
.matrix-wrapper { overflow-x: auto; margin-top: 30px; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 900px; }
th { text-align: left; padding: 20px 35px; border-bottom: 2px solid var(--accent); color: var(--accent); }
td { padding: 18px 35px; border-bottom: 1px solid var(--glass-border); }

/* ICONOGRAPHY STYLING */
.section-container { padding: 90px 5vw; max-width: 1100px; margin: 0 auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.glass-card { background: var(--bg-secondary); border: 1px solid var(--glass-border); border-radius: 24px; padding: 35px; backdrop-filter: blur(10px); }
.card-icon { display: block; width: 45px; height: 45px; color: var(--accent); margin-bottom: 20px; }
.card-icon svg { width: 100%; height: 100%; stroke: var(--accent); }

/* ROADMAP & ADVISOR */
.phase-tag { color: var(--accent); font-weight: 800; font-size: 0.75rem; text-transform: uppercase; margin-bottom: 10px; display: block; }
.accent-text { color: var(--accent); }
.stat-mini { font-size: 1.1rem; margin-bottom: 15px; }

/* FORMS */
.form-group { margin-bottom: 15px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea { width: 100%; padding: 14px; border-radius: 12px; border: 1px solid var(--glass-border); background: rgba(255, 255, 255, 0.05); color: var(--text-main); box-sizing: border-box; font-family: inherit; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 35px; border-radius: 50px; font-weight: 700; cursor: pointer; border: none; transition: 0.3s; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4); }
.full-width { width: 100%; }

.site-footer { text-align: center; padding: 60px 5vw; border-top: 1px solid var(--glass-border); font-size: 0.85rem; color: var(--text-muted); }
.nman-credit a { color: var(--accent); font-weight: 700; text-decoration: none; }
