:root {
  --bg: #050915;
  --panel: #0b1224;
  --card: #0f182d;
  --muted: #9aa6c7;
  --text: #eaf0ff;
  --accent: #6df0c2;
  --accent-2: #f7b733;
  --border: rgba(255, 255, 255, 0.07);
  --glow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(109, 240, 194, 0.12), transparent 30%),
              radial-gradient(circle at 85% 0%, rgba(247, 183, 51, 0.12), transparent 28%),
              linear-gradient(160deg, #03060f 0%, #060c1b 40%, #03050c 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.surface-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(450px circle at 20% 30%, rgba(109, 240, 194, 0.05), transparent 50%),
              radial-gradient(400px circle at 80% 15%, rgba(247, 183, 51, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 12px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
}

.logo span { color: var(--accent-2); }

.subtext {
  color: var(--muted);
  font-size: 14px;
}

.badge {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 56px 0 40px;
  align-items: start;
}

.hero__content h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin: 12px 0 14px;
}

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

.lede {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 14px;
}

.btn {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f7b733, #ff7a3d);
  border-color: transparent;
  color: #0b0f1c;
}

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

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 12px;
}

.chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.note {
  color: var(--muted);
  font-size: 14px;
  max-width: 540px;
}

.hero__panel .panel {
  background: linear-gradient(150deg, #0b152d, #0a1227);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--glow);
}

.panel__title {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.panel__text {
  color: var(--text);
  margin-bottom: 16px;
}

.panel__inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.panel__subtitle {
  font-weight: 600;
  margin-bottom: 8px;
}

.panel__list {
  color: var(--muted);
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.panel__list li { list-style: square; }

.metrics {
  display: grid;
  gap: 10px;
}

.metric {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.metric__label {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.metric__value {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.panel__footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section__header h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 10px 0 12px;
}

.section__header p {
  color: var(--muted);
  max-width: 900px;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.card.accent {
  background: linear-gradient(135deg, rgba(109, 240, 194, 0.05), rgba(247, 183, 51, 0.07)), var(--card);
}

.card h3 { margin-bottom: 10px; }

.card p { color: var(--muted); margin-bottom: 12px; }

.card ul {
  color: var(--muted);
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.card ul li { list-style: square; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.pill--soft {
  background: rgba(109, 240, 194, 0.12);
  border-color: rgba(109, 240, 194, 0.4);
  color: #b4ffe3;
}

.pill--outline {
  border-color: rgba(255, 255, 255, 0.2);
}

.roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.why p { margin-bottom: 10px; }

.footer {
  padding: 24px 22px 48px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.footer__links {
  display: flex;
  gap: 8px;
}

@media (max-width: 720px) {
  .nav { flex-direction: column; align-items: flex-start; gap: 10px; }
  .badge { width: 100%; text-align: center; }
  .hero { padding-top: 32px; }
  .panel__inline { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}
