:root {
  --bg-1: #04060f;
  --bg-2: #0c1329;
  --bg-3: #0f1c3d;
  --accent: #6ef7d5;
  --accent-2: #8ec5ff;
  --text: #eaf1ff;
  --muted: #9cb0ce;
  --card: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --pill: rgba(255, 255, 255, 0.07);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px circle at 10% 10%, rgba(110, 247, 213, 0.12), transparent 35%),
    radial-gradient(1200px circle at 90% 0%, rgba(142, 197, 255, 0.12), transparent 40%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.hero {
  padding: 12px 0 48px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 40px 0 0;
  background: linear-gradient(120deg, rgba(110, 247, 213, 0.08), rgba(142, 197, 255, 0.04));
  filter: blur(90px);
  opacity: 0.8;
  pointer-events: none;
}

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

.logo {
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(110, 247, 213, 0.16), rgba(142, 197, 255, 0.12));
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 5.4vw, 50px);
  line-height: 1.05;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: var(--accent);
  font-size: 12px;
  margin: 0 0 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.pill-strong {
  background: linear-gradient(120deg, rgba(110, 247, 213, 0.12), rgba(142, 197, 255, 0.12));
}

.lede {
  color: var(--muted);
  margin: 0 0 18px;
}

.ambition {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
  font-size: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 18px;
}

.hero-tags span {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041220;
  border-color: rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 18px 48px rgba(110, 247, 213, 0.6); }
  100% { box-shadow: var(--shadow); }
}

.button.ghost { background: rgba(255, 255, 255, 0.12); }

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.full {
  width: 100%;
}

.link {
  color: var(--text);
  text-decoration: none;
  opacity: 0.82;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.hero-panels {
  display: grid;
  gap: 16px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.panel.glass {
  background: linear-gradient(140deg, rgba(110, 247, 213, 0.08), rgba(10, 20, 40, 0.8));
}

.panel.highlight::before {
  content: '';
  position: absolute;
  inset: -40% -60% auto auto;
  height: 240px;
  width: 260px;
  background: radial-gradient(circle, rgba(110, 247, 213, 0.2), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}

.panel-head,
.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.panel-head {
  margin-bottom: 12px;
}

.panel-foot {
  margin-top: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #ffb347;
  box-shadow: 0 0 12px rgba(110, 247, 213, 0.6);
}

.dot.green { background: #6ef7d5; }

.chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
}

.chip.success { background: rgba(110, 247, 213, 0.18); color: #02140f; }
.chip.ghost { background: rgba(255, 255, 255, 0.04); }

.map-mock {
  position: relative;
  border: 1px dashed var(--border);
  border-radius: 14px;
  height: 220px;
  background: radial-gradient(circle at 20% 30%, rgba(110, 247, 213, 0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(142, 197, 255, 0.12), transparent 40%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.04));
  overflow: hidden;
}

.pin {
  position: absolute;
  left: 12%;
  top: 18%;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-size: 13px;
  box-shadow: var(--shadow);
}

.pin.large { left: 48%; top: 40%; }
.pin.muted { opacity: 0.7; left: 70%; top: 65%; }

.path {
  position: absolute;
  inset: 40% 20% auto 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  filter: drop-shadow(0 0 10px rgba(110, 247, 213, 0.6));
}

.panel.stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(74, 214, 255, 0.12);
  color: var(--accent-2);
  font-weight: 600;
}


.stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.stat {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  min-width: 120px;
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 44px 0;
}

.section-head h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 4vw, 34px);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.pill-grid .pill {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--pill);
  border: 1px solid var(--border);
  color: var(--muted);
  backdrop-filter: blur(6px);
}

.grid-3 .tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel h3 { margin: 12px 0 6px; }
.panel p { color: var(--muted); margin: 0 0 10px; }
}

.panel p {
  color: var(--muted);
  margin: 0 0 10px;
}

.panel.glass {
  background: var(--glass);
}

.mini-card {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.label {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-size: 12px;
}

.value {
  font-weight: 700;
  margin: 6px 0 4px;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tile {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.tile h4 {
  margin: 0 0 8px;
}

.tile p {
  margin: 0;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
}

.list li {
  padding: 6px 0;
}

.form-card {
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 0;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer-note {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-actions {
    justify-content: flex-start;
  }
  .hero-panels {
    grid-template-columns: 1fr;
  }
}
