:root {
  --bg: #0b0b12;
  --surface: #13131d;
  --border: #23233a;
  --text: #ecebf5;
  --muted: #9a99b2;
  --violet: #7c5cff;
  --mint: #3ee6c4;
}

* { box-sizing: border-box; margin: 0; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.glow {
  position: fixed;
  inset: -30vh -20vw auto auto;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(124, 92, 255, .22), rgba(62, 230, 196, .08) 45%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.nav, .hero, .pillars, .footer {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 20px 'Space Grotesk', sans-serif;
  letter-spacing: -.02em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62, 230, 196, .5); }
  50% { box-shadow: 0 0 0 6px rgba(62, 230, 196, 0); }
}

.hero {
  flex: 1;
  padding-top: 14vh;
  padding-bottom: 10vh;
}

.hero-mark {
  margin-bottom: 36px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(8deg); }
}

h1 {
  max-width: 14ch;
  font: 600 clamp(40px, 7vw, 76px)/1.05 'Space Grotesk', sans-serif;
  letter-spacing: -.035em;
}

.accent {
  background: linear-gradient(90deg, var(--violet), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 52ch;
  margin-top: 24px;
  font-size: 18px;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.button {
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  transition: transform .15s, background .15s;
}

.button:hover { background: var(--mint); transform: translateY(-1px); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}

.pillars article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.pillars h2 {
  margin-bottom: 8px;
  font: 600 18px 'Space Grotesk', sans-serif;
}

.pillars p { color: var(--muted); font-size: 15px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.footer a:hover { color: var(--text); }

@media (max-width: 560px) {
  .nav, .hero, .pillars, .footer { padding-left: 16px; padding-right: 16px; }
  .hero { padding-top: 8vh; }
  .hero-mark { width: 88px; height: 88px; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse, .hero-mark { animation: none; }
}
