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

:root {
  --bg: #050810;
  --bg2: #0c1022;
  --bg3: #111827;
  --card: #0f1629;
  --card2: #141c33;
  --cyan: #00e5c0;
  --cyan2: #00bfa5;
  --purple: #7c3aed;
  --purple2: #9333ea;
  --purple3: #c084fc;
  --text: #f0f4ff;
  --text2: #94a3b8;
  --text3: #64748b;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(0,229,192,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 20px; height: 20px; fill: white; }
.logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--cyan); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--cyan);
}

.btn-outline:hover { background: rgba(0,229,192,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: white;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.45);
}

.btn-cyan {
  background: var(--cyan);
  color: #050810;
  font-weight: 700;
}

.btn-cyan:hover { background: var(--cyan2); transform: translateY(-1px); }

/* PAGE HERO */
.page-hero {
  padding: 140px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(0,229,192,0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

/* CONTENT SECTIONS */
.content-section {
  padding: 80px 5%;
}

.content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-inner h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 14px;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.content-inner h2:first-child { margin-top: 0; }

.content-inner p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-inner ul, .content-inner ol {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 14px;
}

.content-inner li { margin-bottom: 6px; }

.content-inner a { color: var(--cyan); }
.content-inner a:hover { text-decoration: underline; }

.content-inner strong { color: var(--text); font-weight: 600; }

.highlight-box {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}

.highlight-box strong { color: var(--cyan); }

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text3);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text3);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
