@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #070b14;
  --panel: rgba(255,255,255,.055);
  --text: #f5f7fb;
  --muted: #9aa4b5;
  --line: rgba(255,255,255,.10);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 18%, rgba(125,211,252,.12), transparent 28rem),
    radial-gradient(circle at 20% 80%, rgba(167,139,250,.09), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.background-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.page {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125,211,252,.45);
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: -.02em;
  background: linear-gradient(145deg, rgba(125,211,252,.12), rgba(167,139,250,.08));
}

.brand-name {
  font-size: 18px;
}

.brand-name span {
  font-weight: 400;
  color: #aeb8c8;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-link span {
  margin-left: 5px;
  color: var(--accent);
}

.nav-link:hover { color: white; }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 90px;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #b9c3d3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(125,211,252,.8);
}

h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 106px);
  line-height: .95;
  letter-spacing: -.075em;
  font-weight: 700;
}

h1 em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(100deg, #f5f7fb 15%, #8edcff 62%, #b9a5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 650px;
  margin: 34px 0 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  letter-spacing: -.015em;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 42px;
}

.services span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #cbd5e1;
  background: rgba(255,255,255,.025);
  font-size: 12px;
  font-weight: 500;
}

.cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 15px 17px 15px 20px;
  border-radius: 9px;
  color: #06101a;
  background: #eef8ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(125,211,252,.14);
}

.arrow {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 6px;
  background: #0b1020;
  color: white;
  font-size: 15px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  color: #687386;
  font-size: 11px;
}

@media (max-width: 700px) {
  .page { width: min(100% - 32px, 1180px); }
  .nav { height: 82px; }
  .nav-link { font-size: 12px; }
  .hero { padding: 72px 0 68px; }
  .lead { line-height: 1.6; }
  .services { margin-bottom: 34px; }
  .footer { gap: 12px; flex-direction: column; }
}
