:root {
  --bg-black: #050505;
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  --accent-purple: #8e2de2;
  --accent-blue: #4a00e0;
  --accent-teal: #00ff88;
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.1);
  --font-inter: 'Inter', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
}

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

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: var(--font-inter);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* AURORA BACKGROUND */
.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-image: url('public/background.png');
  background-size: cover;
  background-position: center;
}

.aurora {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(142, 45, 226, 0.1), rgba(74, 0, 224, 0.1), rgba(0, 255, 136, 0.05), transparent 70%);
  filter: blur(80px);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* NAVBAR */
.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.logo-text {
  font-family: var(--font-outfit);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.logo-text .thin {
  font-weight: 300;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: #fff;
  color: #000 !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* HERO SECTION */
.hero-section {
  padding: 10rem 0 6rem;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 2.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

h1 {
  font-family: var(--font-outfit);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.text-gradient {
  background: linear-gradient(to right, #fff, var(--accent-teal), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn {
  padding: 1.2rem 3rem;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent-teal);
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: #fff;
  background: var(--glass);
}

.btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.2);
}

/* FEATURES */
.features-section {
  padding: 6rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  text-align: left;
}

.feature-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-10px);
  background: rgba(0, 255, 136, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--font-outfit);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* FOOTER */
footer {
  padding: 4rem 0;
  text-align: center;
}

.footer-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  h1 { font-size: 3.5rem; }
}
