/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:   #060B19;
  --navy2:  #0D1528;
  --cyan:   #00C8D4;
  --cyan2:  #00A8B5;
  --magenta:#C800C8;
  --white:  #FFFFFF;
  --gray:   #8896A8;
  --border: rgba(0,200,212,0.14);
  --border2:rgba(255,255,255,0.07);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADINGS ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Clash Display', 'Syne', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(6,11,25,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-weight: 600; font-size: 16px;
  color: var(--white); letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 14px; font-weight: 400; transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }
.hamburger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 20px; cursor: pointer; padding: 4px;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan); color: var(--navy);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--cyan2); transform: translateY(-1px); }
.btn-sm { font-size: 13px !important; padding: 9px 18px !important; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 400;
  padding: 13px 26px; border-radius: 8px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  transition: all .2s; white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline-cyan {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--cyan);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  padding: 10px 22px; border-radius: 8px;
  text-decoration: none; border: 1px solid rgba(0,200,212,0.3);
  transition: all .2s; white-space: nowrap;
}
.btn-outline-cyan:hover { background: rgba(0,200,212,0.08); }

/* ── SECTIONS ──────────────────────────────────────────────── */
section { padding: 96px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 18px; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 64px 5% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-weight: 600; font-size: 16px; color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.footer-brand img { height: 30px; width: auto; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5); margin-bottom: 16px; letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--gray);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  padding: 140px 5% 80px;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,200,212,.05) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }

/* ── MISC ──────────────────────────────────────────────────── */
.badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px; font-family: 'Inter', sans-serif;
}
.badge-cyan { background: rgba(0,200,212,.12); color: var(--cyan); border: 1px solid rgba(0,200,212,.2); }
.badge-new { background: rgba(0,200,212,.15); color: var(--cyan); border: 1px solid var(--cyan); }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:600px) {
  nav { padding: 0 4%; }
  section { padding: 68px 4%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy2); padding: 20px 5%;
    border-bottom: 1px solid var(--border);
    gap: 18px; z-index: 99;
  }
  .nav-links.open a { font-size: 16px; }
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
