:root {
  --bg: #0b0f0c;
  --panel: rgba(13, 22, 16, 0.82);
  --panel-strong: rgba(8, 14, 10, 0.94);
  --ink: #e8ffe8;
  --muted: #8aa78f;
  --grid: rgba(64, 255, 126, 0.08);
  --green: #39ff88;
  --green-soft: #9dffb8;
  --amber: #ffd166;
  --pink: #ff4f8b;
  --cyan: #28f7d2;
  --purple: #7f5cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(57, 255, 136, .18), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(127, 92, 255, .2), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(255, 79, 139, .16), transparent 28%),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto, auto, auto;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.035), rgba(255,255,255,.035) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: overlay;
  opacity: .32;
  z-index: 50;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 12, 9, .78);
  border-bottom: 1px solid rgba(57, 255, 136, .18);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; color: var(--green-soft); }
.brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(57,255,136,.35); box-shadow: 0 0 22px rgba(57,255,136,.18); }
.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 700; color: var(--muted); }
.nav-links a:hover { color: var(--green); }
.hero, .section, footer {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(57,255,136,.55);
}
h1, h2 { letter-spacing: -0.07em; line-height: .95; margin: 0; }
h1 { font-size: clamp(52px, 8vw, 92px); max-width: 760px; text-shadow: 0 0 34px rgba(57,255,136,.15); }
h2 { font-size: clamp(36px, 5vw, 58px); }
h3 { margin: 18px 0 8px; font-size: 22px; color: var(--green-soft); }
p { line-height: 1.7; }
.hero-text { max-width: 620px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button, .signup button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  cursor: pointer;
}
.primary, .signup button {
  color: #07100a;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(57, 255, 136, .28);
}
.ghost { background: rgba(10,18,12,.8); border: 1px solid rgba(57,255,136,.24); color: var(--green-soft); }
.hero-card { display: grid; place-items: center; }
.phone {
  width: min(360px, 86vw);
  min-height: 610px;
  padding: 28px;
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(4,10,6,.98), rgba(22,12,45,.96));
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 48px rgba(57,255,136,.16);
  border: 8px solid rgba(151,255,184,.82);
}
.phone::before {
  content: "";
  position: absolute;
  inset: 90px -80px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  filter: blur(8px);
  opacity: .8;
}
.phone-top { width: 80px; height: 8px; border-radius: 99px; background: rgba(157,255,184,.36); margin: 0 auto 80px; }
.map-orbit { width: 250px; height: 120px; border: 3px solid var(--green); border-radius: 50%; transform: rotate(-18deg); position: relative; z-index: 1; box-shadow: 0 0 28px rgba(57,255,136,.22); }
.pin { position: relative; z-index: 2; margin: -92px auto 54px; width: 104px; height: 104px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: linear-gradient(135deg, var(--pink), var(--amber)); font-size: 48px; color: #07100a; }
.pin::first-letter { transform: rotate(45deg); }
.phone h2 { position: relative; z-index: 2; font-size: 34px; letter-spacing: -0.04em; }
.phone p { position: relative; z-index: 2; color: rgba(232,255,232,.72); }
.audio-bar { position: relative; z-index: 2; height: 12px; background: rgba(157,255,184,.14); border-radius: 99px; margin: 30px 0; overflow: hidden; }
.audio-bar span { display: block; width: 68%; height: 100%; background: linear-gradient(90deg, var(--green), var(--cyan)); border-radius: inherit; }
.mini-cards { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-cards div, .feature-card, .banner, .waitlist {
  background: var(--panel);
  border: 1px solid rgba(57,255,136,.18);
  box-shadow: 0 18px 48px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(18px);
}
.mini-cards div { padding: 18px; border-radius: 20px; font-weight: 800; }
.section { padding-top: 88px; padding-bottom: 88px; }
.grid { display: grid; gap: 18px; margin-top: 32px; }
.three { grid-template-columns: repeat(3, 1fr); }
.feature-card { padding: 28px; border-radius: 28px; }
.feature-card p, .steps span, .banner p, .form-note, .waitlist-copy { color: var(--muted); }
.icon { font-size: 32px; color: var(--green); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.steps { display: grid; gap: 16px; }
.steps div { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 22px; border-bottom: 1px solid rgba(57,255,136,.18); }
.steps strong { color: var(--green); font-family: "Courier New", ui-monospace, monospace; }
.banner { max-width: 1120px; margin: 0 auto; padding: 56px 34px; border-radius: 36px; text-align: center; background: linear-gradient(135deg, rgba(13,22,16,.9), rgba(29,16,54,.82)); }
.banner h2 { max-width: 760px; margin: 0 auto; }
.banner p { max-width: 680px; margin: 18px auto 0; }
.waitlist { text-align: center; border-radius: 36px; margin-top: 70px; margin-bottom: 60px; }
.waitlist-copy { max-width: 620px; margin: 18px auto 28px; font-size: 18px; }
.waitlist-button { display: inline-flex; align-items: center; justify-content: center; margin: 4px auto 12px; }
footer { padding-bottom: 34px; color: var(--muted); text-align: center; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; min-height: auto; }
  .three { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps div { grid-template-columns: 1fr; }
}
