* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  --bg: #03030a;
  --accent: #7c6bff;
  --accent-2: #12d3ff;
  --text: #f4f6ff;
  --muted: rgba(244, 246, 255, 0.65);
  --line: rgba(255, 255, 255, 0.08);
}

body {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.background .gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(18, 211, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(124, 107, 255, 0.35), transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(8, 255, 199, 0.2), transparent 45%);
  filter: blur(40px);
}

.background .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  animation: pan 20s linear infinite;
}

@keyframes pan {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(40px, 40px, 0);
  }
}

#glow {
  position: absolute;
  inset: 0;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 48px clamp(20px, 5vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status-chip {
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  backdrop-filter: blur(8px);
}

.hero {
  margin-top: 80px;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 16px 0 24px;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
}

.cta-row {
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-row a.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05060e;
  box-shadow: 0 20px 50px rgba(18, 211, 255, 0.3);
}

.cta-row a.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.cta-row a.linkedin {
  border-color: rgba(10, 102, 194, 0.6);
  color: #0a66c2;
}

.cta-row a:hover {
  transform: translateY(-2px);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.metrics span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 1.4rem;
}

.ticker {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 40px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  font-size: 0.95rem;
  color: var(--muted);
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-track span::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent-2);
}

@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .status-chip {
    width: 100%;
  }
  .hero-shell {
    padding: 32px 20px 60px;
  }
  .ticker-track {
    animation-duration: 20s;
  }
}
