:root {
  --bg: #0b0710;
  --bg-alt: #120c1c;
  --card: #17101f;
  --border: #2a2038;
  --text: #ede9f5;
  --muted: #a396b8;
  --purple: #7f5af0;
  --purple-deep: #4a1070;
  --purple-light: #a78bfa;
  --gold: #e9a23b;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

em {
  font-style: italic;
  color: var(--purple-light);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
  max-width: 820px;
}

.section-lede {
  color: var(--muted);
  font-size: 17px;
  max-width: 680px;
  margin-bottom: 48px;
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 7, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark { display: block; border-radius: 6px; }
.wordmark {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 15px;
}
.wordmark span { color: var(--purple-light); }
.wordmark.small { font-size: 13px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--purple-light); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(127, 90, 240, 0.28), transparent),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 110px 24px 80px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px 0;
}
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 36px;
}
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.btn-primary:hover { background: var(--purple-light); transform: translateY(-1px); }

.stat-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.stat-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--purple-light);
}
.stat-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 160px;
  margin-top: 4px;
}

/* ── Purple Labs ─────────────────────────────────────────────────────────── */
.labs { border-bottom: 1px solid var(--border); }
.labs-card {
  margin-top: 32px;
  background: linear-gradient(160deg, rgba(127, 90, 240, 0.1), rgba(233, 162, 59, 0.06));
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  padding: 36px;
}
.labs-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.labs-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.labs-card .product-tag { margin-bottom: 4px; }
.labs-card h3 { font-size: 24px; font-weight: 800; margin: 0; }
.labs-card p { color: var(--muted); font-size: 14.5px; max-width: 700px; margin: 0 0 20px 0; }
.labs-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.labs-point h4 { font-size: 15px; font-weight: 700; margin: 0 0 8px 0; color: var(--purple-light); }
.labs-point p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ── Ecosystem / product cards ──────────────────────────────────────────── */
.ecosystem { background: var(--bg-alt); border-bottom: 1px solid var(--border); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
}
.product-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.product-logo { display: block; flex: 0 0 auto; border-radius: 50%; }
.product-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-card h3 { font-size: 24px; font-weight: 800; margin: 0; }
.product-card p { color: var(--muted); font-size: 14.5px; flex: 1; margin-bottom: 20px; }
.product-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-chips span {
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(127, 90, 240, 0.12);
  border: 1px solid rgba(127, 90, 240, 0.3);
  color: var(--purple-light);
  padding: 5px 10px;
  border-radius: 999px;
}
.product-link {
  color: var(--purple-light);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.product-link:hover { color: #fff; }
.product-link-soon {
  color: var(--muted);
  cursor: default;
}

/* ── Manifesto ───────────────────────────────────────────────────────────── */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.manifesto-item h4 { font-size: 17px; font-weight: 700; margin: 0 0 10px 0; color: var(--purple-light); }
.manifesto-item p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ── Domain coverage ─────────────────────────────────────────────────────── */
.domain { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.domain-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--card);
}
.domain-status {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(163, 150, 184, 0.15);
  color: var(--muted);
  margin-bottom: 10px;
}
.domain-status.active { background: rgba(127, 90, 240, 0.18); color: var(--purple-light); }
.domain-status.expanding { background: rgba(233, 162, 59, 0.15); color: var(--gold); }
.domain-status.new { background: rgba(233, 162, 59, 0.15); color: var(--gold); }
.domain-item h4 { font-size: 15.5px; font-weight: 700; margin: 0 0 8px 0; }
.domain-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ── Approach ────────────────────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.approach-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--purple-deep);
  background: var(--purple-light);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.approach-item h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px 0; }
.approach-time { font-size: 12px; color: var(--gold); font-weight: 600; margin: 0 0 10px 0; }
.approach-item p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact {
  background: radial-gradient(ellipse 700px 400px at 50% 100%, rgba(127, 90, 240, 0.2), transparent), var(--bg);
}
.contact-inner { text-align: center; }
.contact-inner h2 { margin-left: auto; margin-right: auto; }
.contact-inner .section-lede { margin-left: auto; margin-right: auto; }
.contact-email {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--purple-light);
  text-decoration: none;
  border-bottom: 2px solid var(--purple);
  padding-bottom: 3px;
}
.contact-email:hover { color: #fff; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 36px 24px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 12.5px; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .stat-row { gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
