:root {
  color-scheme: dark;
  --bg: #0a0a0f;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7a;
  --border: rgba(255, 255, 255, 0.06);
}

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

body {
  min-height: 100vh;
  background: 
    radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.12), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 50%),
    var(--bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#grid-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

#orbs-canvas {
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

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

.header {
  padding: 40px 48px 0;
  width: 100%;
}

.logo {
  height: 36px;
  width: auto;
  opacity: 0.95;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 48px;
  width: 100%;
}

.content-inner {
  max-width: 680px;
  padding: 80px 0;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
  padding-left: 20px;
}

.badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: var(--text-muted);
}

.headline {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.headline br {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #3b82f6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s ease infinite;
}

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

.description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  font-weight: 400;
}

.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

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

@media (max-width: 768px) {
  .header {
    padding: 32px 24px 0;
  }

  .content {
    padding: 0 24px;
  }

  .content-inner {
    padding: 60px 0;
    max-width: 100%;
  }

  .headline {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .description {
    font-size: 18px;
  }

  .badge {
    margin-bottom: 24px;
  }

  .footer {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 36px;
  }

  .description {
    font-size: 16px;
  }
}
