:root {
  --bg: #070b18;
  --bg-soft: #0f172f;
  --panel: #121c35;
  --panel-soft: #182543;
  --line: #273659;
  --text: #f3f7ff;
  --muted: #aab6d6;
  --brand: #5de0ff;
  --brand-2: #8f9bff;
  --good: #32d07d;
  --warn: #f7b955;
  --danger: #ff6d8b;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 28px 80px rgba(2, 8, 24, 0.48);
  --shadow-md: 0 16px 45px rgba(2, 8, 24, 0.4);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --max-content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(93, 224, 255, 0.14), transparent 30rem),
    radial-gradient(circle at 85% 5%, rgba(143, 155, 255, 0.14), transparent 32rem),
    linear-gradient(135deg, #050813 0%, #091127 52%, #05070f 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-content), calc(100% - 2.25rem));
  margin: 0 auto;
}

.section {
  padding: 5.25rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head p {
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

p {
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 224, 255, 0.35);
  background: rgba(93, 224, 255, 0.11);
  color: #caf6ff;
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .section {
    padding: 4rem 0;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
