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

:root {
  --bg-base: #07070E;
  --bg-surface: #0F0F1A;
  --text-primary: #EEEEF2;
  --text-secondary: #8888A0;
  --text-muted: #55556A;
  --purple: #8B5CF6;
  --blue: #3B82F6;
  --cyan: #06B6D4;
  --gradient: linear-gradient(135deg, var(--purple), var(--blue), var(--cyan));
  --border: rgba(255, 255, 255, 0.07);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ---- Background glow ---- */

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.glow-orb--purple {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -10%;
  left: -10%;
  animation: drift-purple 12s ease-in-out infinite alternate;
}

.glow-orb--blue {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  bottom: -5%;
  right: -10%;
  animation: drift-blue 10s ease-in-out infinite alternate;
}

@keyframes drift-purple {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 30px); }
}

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

/* ---- Layout ---- */

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hero ---- */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0 80px;
}

.hero-icon {
  border-radius: 20px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3));
}

.hero-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
}

.headline {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--text-primary) 40%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subline {
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: none;
  margin-bottom: 48px;
}

/* ---- Features ---- */

.features {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.06);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.feature-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ---- Privacy note ---- */

.privacy-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ---- Footer ---- */

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Responsive ---- */

@media (max-width: 520px) {
  .page {
    padding: 0 16px;
  }

  .hero-icon {
    width: 72px;
    height: 72px;
  }

  .subline br {
    display: none;
  }

  .features {
    gap: 6px;
  }

  .feature {
    padding: 6px 10px;
  }

  .feature-label {
    font-size: 11px;
  }
}
