:root {
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.4);
  --bg-dark: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), var(--bg-dark)), url('quiet_space_hero_bg_1769707734266.png');
  background-size: cover;
  background-position: center;
}

.logo-container {
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease-out;
}

.logo-icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 15px var(--primary-glow));
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

p.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-container {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
  background: var(--glass);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-links {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 2rem;
  animation: fadeIn 2s ease-out 1s both;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: white;
}

.content-page {
  width: 100%;
  max-width: 800px;
  padding: 8rem 2rem 4rem;
  line-height: 1.8;
}

.content-page h1 {
  margin-bottom: 2rem;
  -webkit-text-fill-color: white;
}

.content-page h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.content-page p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.back-home {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.5rem; }
  .cta-container { flex-direction: column; width: 100%; max-width: 300px; }
  .btn { text-align: center; }
}
