:root {
  --bg: #070a16;
  --bg-soft: #0f1530;
  --text: #f8faff;
  --muted: #aeb7d8;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.08);
  --accent: #7b8cff;
  --accent-2: #00d1ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 20% 10%, #151b42 0%, var(--bg) 45%);
  color: var(--text);
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.glass {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(104, 148, 255, 0.9);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-text span {
  color: var(--muted);
}

.ghost-link {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: 220ms ease;
}

.ghost-link:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.hero-content {
  width: min(980px, 100%);
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(30px, 5vh, 70px);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.72rem;
}

.title {
  margin: 18px auto 0;
  font-size: clamp(2rem, 6vw, 4.9rem);
  line-height: 1.08;
  max-width: 14ch;
}

.gradient-text {
  background: linear-gradient(120deg, #9aa7ff 15%, #75e7ff 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 16px auto 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.65;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: 220ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, #6576ff 20%, #00bbff 100%);
  box-shadow: 0 10px 30px rgba(92, 130, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(92, 130, 255, 0.45);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
}

.stat {
  padding: 20px;
}

.stat h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
}

.stat p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.bg-orb {
  position: fixed;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  filter: blur(46px);
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  top: -170px;
  left: -110px;
  background: rgba(67, 107, 255, 0.35);
  animation: floatA 14s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: -180px;
  right: -120px;
  background: rgba(0, 210, 255, 0.2);
  animation: floatB 16s ease-in-out infinite alternate;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  opacity: 0.22;
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform 180ms linear;
  pointer-events: none;
  z-index: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 700ms ease forwards;
}

.reveal-up:nth-child(2) {
  animation-delay: 120ms;
}
.reveal-up:nth-child(3) {
  animation-delay: 200ms;
}
.reveal-up:nth-child(4) {
  animation-delay: 280ms;
}
.reveal-up:nth-child(5) {
  animation-delay: 360ms;
}

.pulse-btn {
  animation: pulse 1.9s ease-in-out infinite;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatA {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(50px, 30px) scale(1.07);
  }
}

@keyframes floatB {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-40px, -24px) scale(1.08);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(92, 130, 255, 0.35);
  }
  50% {
    box-shadow: 0 16px 44px rgba(92, 130, 255, 0.55);
  }
}

@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr;
  }
}
