:root {
  --bg-0: #07080c;
  --bg-1: #0c0f17;
  --fg: #f4f6fb;
  --fg-muted: #a2a7b8;
  --accent-1: #7c5cff;
  --accent-2: #19c2ff;
  --accent-3: #ff5cae;
  --radius: 16px;
  --max-w: 780px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--fg);
  background: radial-gradient(ellipse at top, var(--bg-1) 0%, var(--bg-0) 60%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: var(--accent-1);
  top: -140px;
  left: -120px;
  animation: float1 14s ease-in-out infinite alternate;
}

.orb-2 {
  width: 460px;
  height: 460px;
  background: var(--accent-2);
  bottom: -160px;
  right: -100px;
  animation: float2 18s ease-in-out infinite alternate;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: var(--accent-3);
  top: 45%;
  left: 55%;
  opacity: 0.28;
  animation: float3 22s ease-in-out infinite alternate;
}

@keyframes float1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes float2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -30px) scale(1.1); }
}
@keyframes float3 {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-55%, -45%) scale(1.12); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  gap: 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.brand-accent {
  background: linear-gradient(
    135deg,
    var(--accent-1),
    var(--accent-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: rise 0.9s ease-out both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d07a;
  box-shadow: 0 0 0 0 rgba(34, 208, 122, 0.65);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 208, 122, 0.65); }
  70%  { box-shadow: 0 0 0 12px rgba(34, 208, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 208, 122, 0); }
}

.title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.gradient {
  background: linear-gradient(
    120deg,
    var(--accent-1) 0%,
    var(--accent-2) 50%,
    var(--accent-3) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

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

.subtitle {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

.foot {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.75;
}

@media (max-width: 520px) {
  .wrap {
    padding: 36px 22px;
    gap: 40px;
  }
  .orb {
    filter: blur(70px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .gradient,
  .dot,
  .hero {
    animation: none !important;
  }
}
