:root {
  --bg: #07060b;
  --text: #f8f4ff;
  --muted: rgba(238, 232, 255, 0.74);
  --line: rgba(255, 255, 255, 0.12);
  --purple: #a855f7;
  --purple-dark: #6d28d9;
  --green: #26d991;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(900px 520px at 12% 0%, rgba(168, 85, 247, 0.18), transparent 58%),
    radial-gradient(720px 420px at 90% 12%, rgba(38, 217, 145, 0.08), transparent 60%),
    linear-gradient(180deg, #050409 0%, #0d0718 44%, #050409 100%);
  background-size: 68px 68px, 68px 68px, auto, auto, auto;
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 6, 11, 0.9);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.btn.primary {
  border-color: rgba(168, 85, 247, 0.58);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 18px 38px rgba(109, 40, 217, 0.28);
}

.hero-page {
  padding: 78px 0 34px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(168, 85, 247, 0.32);
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.13);
  color: #eadcff;
  font-size: 12px;
  font-weight: 900;
}

.hero-page h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
}

.hero-page p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}

.section-kicker {
  margin-bottom: 8px;
  color: #d9c6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-head p,
.section p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .site-nav__inner,
  .section-head {
    grid-template-columns: 1fr;
  }

  .site-nav__inner {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
  }
}
