:root {
  --ink: #22103d;
  --ink-soft: #4b3a63;
  --muted: #6f6383;
  --purple-deep: #310166;
  --purple: #6d28d9;
  --purple-bright: #7c3aed;
  --lavender: #cbb3e8;
  --lavender-soft: #f1eaf9;
  --bg: #fbfafd;
  --card: #ffffff;
  --border: #e7e0f2;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; }

a { color: var(--purple); }

.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}

.site-nav a:hover { color: var(--purple); }

.site-nav a.active { color: var(--purple); font-weight: 600; }

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}

.btn-primary:hover { background: var(--purple-deep); }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: var(--card);
}

.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.btn-light {
  background: #fff;
  color: var(--purple-deep);
}

.btn-light:hover { background: var(--lavender-soft); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--purple-deep) 0%, #4c1d95 55%, #6d28d9 100%);
  color: #fff;
  padding: 88px 0 96px;
}

.hero .kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e9defa;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 720px;
}

.hero p.lede {
  margin-top: 20px;
  font-size: 19px;
  color: #ded2f2;
  max-width: 640px;
}

.hero .cta-row {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Sections */
section.block { padding: 72px 0; }

section.block.alt { background: var(--lavender-soft); }

.block h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.block > .wrap > p.sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin-bottom: 40px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--lavender-soft);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

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

/* Network spotlight */
.spotlight {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--purple-deep);
  color: #fff;
  border-radius: 20px;
  padding: 44px;
  flex-wrap: wrap;
}

.spotlight .txt { flex: 1 1 340px; }

.spotlight h3 { font-size: 24px; margin-bottom: 10px; letter-spacing: -0.01em; }

.spotlight p { color: #d9cdf0; font-size: 16px; max-width: 520px; }

.spotlight .btn { margin-top: 20px; }

/* Steps */
.steps { counter-reset: step; }

.steps .card { position: relative; }

.steps .card::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(140deg, var(--purple-deep), #5b21b6);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.015em; }

.cta-band p { color: #ded2f2; margin: 14px auto 30px; max-width: 560px; }

/* Prose pages (support, legal) */
.prose { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; }

.prose h1 { font-size: clamp(30px, 4vw, 40px); letter-spacing: -0.02em; margin-bottom: 8px; }

.prose p.meta { color: var(--muted); font-size: 14px; margin-bottom: 36px; }

.prose h2 { font-size: 22px; margin: 38px 0 12px; letter-spacing: -0.01em; }

.prose h3 { font-size: 17px; margin: 26px 0 8px; }

.prose p, .prose li { color: var(--ink-soft); font-size: 15.5px; }

.prose p + p { margin-top: 14px; }

.prose ul { padding-left: 24px; margin: 12px 0; }

.prose li + li { margin-top: 6px; }

.prose .contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin: 22px 0;
}

.prose .contact-card h3 { margin-top: 0; }

/* Footer */
.site-footer {
  background: #180b2e;
  color: #b6a8cc;
  padding: 56px 0 40px;
  font-size: 14.5px;
}

.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.site-footer .brand { color: #fff; margin-bottom: 14px; }

.site-footer p { max-width: 380px; }

.site-footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 9px; }

.site-footer a { color: #b6a8cc; text-decoration: none; }

.site-footer a:hover { color: #fff; }

.site-footer .legal-row {
  border-top: 1px solid #2c1b4a;
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #8d7fa8;
  font-size: 13.5px;
}

@media (max-width: 720px) {
  .site-header .wrap { height: auto; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; gap: 12px; }
  .site-nav { margin-left: 0; gap: 16px; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .spotlight { padding: 30px; }
}
