:root {
  --bg: #061122;
  --fg: #eaf2ff;
  --accent: #00d4ff;
  --accent2: #5b7bff;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at 20% 20%, #0f2144 0%, var(--bg) 55%);
  color: var(--fg);
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.1rem, 8vw, 5.4rem);
  margin: 0.35em 0 0.2em;
  font-weight: 900;
  line-height: 0.95;
  text-wrap: balance;
  background: linear-gradient(90deg, #fff, #95c4ff, #79f1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(0, 212, 255, 0.3);
}

.sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin: 0 0 1.4rem;
  opacity: 0.92;
}

button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #041325;
  background: linear-gradient(90deg, var(--accent), #9ff2ff);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.38);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
}
.orb-a {
  width: 320px;
  height: 320px;
  left: -60px;
  top: -40px;
  background: var(--accent2);
  animation: drift 8s ease-in-out infinite;
}
.orb-b {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: -40px;
  background: var(--accent);
  animation: drift 10s ease-in-out infinite reverse;
}

.bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 85%);
}

.flash {
  animation: flash 320ms ease;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(22px, -20px); }
}

@keyframes flash {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.45); }
  100% { filter: brightness(1); }
}
