:root {
  --bg: #0b1020;
  --fg: #e8ecf5;
  --muted: #9aa4bd;
  --accent-1: #6ee7ff;
  --accent-2: #8b7cff;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.10);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(600px circle at 15% 10%, rgba(110, 231, 255, 0.14), transparent 55%),
    radial-gradient(700px circle at 85% 90%, rgba(139, 124, 255, 0.16), transparent 55%);
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 1;
  margin: auto;
  width: 100%;
  max-width: 640px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

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

.logo { display: inline-flex; }

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.hero { display: flex; flex-direction: column; gap: 18px; }

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-1);
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  background: linear-gradient(120deg, var(--fg) 30%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub {
  margin: 0;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.foot {
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.foot p { margin: 0; }

@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: rise 0.6s ease both; }
  .hero > *:nth-child(2) { animation-delay: 0.05s; }
  .hero > *:nth-child(3) { animation-delay: 0.10s; }
  .hero > *:nth-child(4) { animation-delay: 0.15s; }
}

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