body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 170, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.10;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: #0044ff;
  top: -200px;
  right: -200px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #00aaff;
  bottom: -100px;
  left: -100px;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

section {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--text);
}

.tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg3);
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid var(--border);
}