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

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background: #050B14;
  color: #E5E7EB;
  overflow: hidden;
}

/* === ANIMATED BACKGROUND === */
.bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, #050B14, #0B2A2A, #050B14);
  background-size: 400% 400%;
  animation: bgMove 18s ease infinite;
  z-index: -3;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === FLOATING ORBS === */
.orbs span {
  position: fixed;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 65%);
  filter: blur(80px);
  animation: float 20s infinite linear;
  z-index: -2;
}

.orbs span:nth-child(1) {
  top: -120px;
  left: 10%;
}

.orbs span:nth-child(2) {
  bottom: -150px;
  right: 15%;
  animation-duration: 26s;
}

.orbs span:nth-child(3) {
  top: 40%;
  left: 60%;
  animation-duration: 32s;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(30px); }
  100% { transform: translateY(0) translateX(0); }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeUp 1.1s ease forwards;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.logo {
  width: 46px;
  height: 46px;
  animation: draw 1.8s ease forwards, pulse 6s ease-in-out infinite;
}

.brand-name {
  font-size: 1.7rem;
  font-weight: 700;
}

/* HEADLINE */
.headline {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
}

.headline span {
  display: block;
  background: linear-gradient(to right, #34D399, #22C55E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 5s ease-in-out infinite alternate;
}

.headline span:nth-child(2) {
  animation-delay: 1.5s;
}

/* SUBTITLE */
.subtitle {
  margin-top: 22px;
  max-width: 640px;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.75;
  color: #9CA3AF;
  animation: fadeIn 1.6s ease forwards;
}

/* CTA */
.cta {
  margin-top: 40px;
}

.pill {
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.5);
  color: #22C55E;
  font-weight: 500;
  animation: pulseBorder 2.8s infinite;
}

/* FOOTNOTE */
.footnote {
  margin-top: 36px;
  font-size: 0.85rem;
  color: #6B7280;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes draw {
  from { stroke-dasharray: 260; stroke-dashoffset: 260; }
  to { stroke-dasharray: 260; stroke-dashoffset: 0; }
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes textGlow {
  from { filter: drop-shadow(0 0 0 rgba(34,197,94,0)); }
  to { filter: drop-shadow(0 0 14px rgba(34,197,94,0.35)); }
}

@keyframes pulseBorder {
  0% { box-shadow: 0 0 0 rgba(34,197,94,0); }
  50% { box-shadow: 0 0 20px rgba(34,197,94,0.35); }
  100% { box-shadow: 0 0 0 rgba(34,197,94,0); }
}

/* MOBILE */
@media (max-width: 480px) {
  .brand { margin-bottom: 44px; }
}