/* ============================================
   ALPHA CAT STUDIOS — Global Styles
   Dark / Purple / Neon
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #050510;
  --bg-dark: #0a0a1a;
  --bg-card: rgba(15, 15, 35, 0.7);
  --purple-dark: #4c1d95;
  --purple: #7c3aed;
  --purple-mid: #8b5cf6;
  --purple-light: #a78bfa;
  --neon: #c084fc;
  --neon-bright: #e879f9;
  --neon-glow: rgba(192, 132, 252, 0.4);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(139, 92, 246, 0.15);
  --border-glow: rgba(139, 92, 246, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--neon);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: var(--neon-bright);
  text-shadow: 0 0 8px var(--neon-glow);
}

/* --- Particle Canvas --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo .nav-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px var(--neon-glow));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon-glow);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- Landing Hero --- */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-banner {
  margin: 0 auto 2rem;
  animation: fadeIn 1.5s ease-out 0.3s both;
}

.banner-img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.25));
  transition: filter 0.3s ease;
}

.banner-img:hover {
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-mid), transparent);
  margin: 0 auto 2.5rem;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

.launching-soon {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow:
    0 0 10px var(--neon-glow),
    0 0 40px rgba(192, 132, 252, 0.2);
  animation: neonPulse 3s ease-in-out infinite, fadeIn 1.5s ease-out 0.7s both;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  animation: fadeIn 1.5s ease-out 1s both;
}

.hero-contact {
  margin-top: 3rem;
  animation: fadeIn 1.5s ease-out 1.3s both;
}

.hero-contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.hero-contact a:hover {
  color: var(--neon);
  border-color: var(--border-glow);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
  text-shadow: none;
}

/* --- Page Layout (About, Privacy) --- */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
}

.page-container {
  max-width: 720px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.page-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--neon));
  margin-bottom: 3rem;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--neon-glow);
}

/* --- Content Cards --- */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease;
}

.content-card:hover {
  border-color: var(--border-glow);
}

.content-card h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.content-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul {
  list-style: none;
  padding: 0;
}

.content-card ul li {
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.content-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-mid);
  box-shadow: 0 0 6px var(--neon-glow);
}

/* --- Contact Section --- */
.contact-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.contact-bar .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-bar a {
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- Privacy Policy Specific --- */
.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
}

.privacy-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.effective-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 2rem;
}

/* --- Animations --- */
@keyframes neonPulse {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 10px var(--neon-glow),
      0 0 40px rgba(192, 132, 252, 0.2);
  }
  50% {
    opacity: 0.7;
    text-shadow:
      0 0 5px var(--neon-glow),
      0 0 20px rgba(192, 132, 252, 0.1);
  }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-logo {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero {
    padding: 1.5rem;
  }

  .launching-soon {
    letter-spacing: 0.3em;
  }

  .page {
    padding: 6rem 1.25rem 3rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.8rem;
  }

  .hero-logo {
    letter-spacing: 0.1em;
  }

  .launching-soon {
    letter-spacing: 0.2em;
  }
}
