:root {
  --bg: #060c08;
  --surface: #0d1710;
  --surface2: #111f15;
  --border: #1e3324;
  --border2: #2a4535;
  --accent: #22e87a;
  --accent-dim: #16a355;
  --accent-glow: rgba(34,232,122,0.12);
  --red: #ff4d6a;
  --yellow: #ffc847;
  --text: #ddeee3;
  --text2: #7aaa88;
  --text3: #3f6347;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 60px;
  background: rgba(6,12,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--display);
  font-weight: 800; font-size: 17px;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}
.logo-icon {
  width: 28px; height: 28px;
  background: var(--accent); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 16px; height: 16px; }
.logo span { color: var(--accent); }

.nav-cta {
  font-family: var(--mono);
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 6px 14px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-glow); }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); }

/* FOOTER */
footer {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text3); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
