/* ═══════════════════════════════════════════════════
   LAYOUT — Nav, Sections, Hero, Footer
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

#cursor, #cursor-ring { display: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--text); background: var(--bg2); }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 8px 18px !important; border-radius: 6px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent2) !important; }

/* ── SECTIONS ── */
section { position: relative; }
.section-wrap { padding: 96px 60px; max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 48px; letter-spacing: -0.02em; }
.section-h2 .accent { color: var(--accent); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 120px 60px 80px; max-width: 1200px; margin: 0 auto;
}
.hero-deco { display: none; }
.hero-stats { display: flex; gap: 52px; margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat-val { font-size: 32px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── FOOTER ── */
footer { background: var(--text); color: #94a3b8; padding: 60px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 14px; }
.footer-brand span { color: var(--accent); }
.footer-tagline { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #cbd5e1; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid #1e293b; font-size: 12px; color: #64748b; }
