:root {
  --bg: #0A1628;
  --bg-2: #0F1E36;
  --accent: #14B8A6;
  --accent-2: #2DD4BF;
  --ink: #F8FAFC;
  --muted: #94A3B8;
  --line: rgba(255, 255, 255, 0.08);
}

* { -webkit-font-smoothing: antialiased; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

.font-display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.03em;
}

.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/></svg>");
}

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass:hover {
  border-color: rgba(20, 184, 166, 0.35);
  background: linear-gradient(135deg, rgba(20,184,166,0.06), rgba(255,255,255,0.02));
}

.gradient-text {
  background: linear-gradient(120deg, #F8FAFC 0%, #14B8A6 50%, #F8FAFC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}

.hero-overlay {
  background: radial-gradient(ellipse at top, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.85) 60%, rgba(10,22,40,1) 100%);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

.pill-cta {
  background: var(--accent);
  color: #0A1628;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 40px -10px rgba(20, 184, 166, 0.6);
}
.pill-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px -10px rgba(20, 184, 166, 0.85);
}

.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.marquee {
  animation: scroll 40s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
