@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Press+Start+2P&display=swap');

:root {
  --bg-main: #050505; /* Deep rich black */
  --bg-card: rgba(17, 17, 17, 0.6);
  --bg-card-hover: rgba(25, 25, 25, 0.8);
  
  --primary: #00D8D8; /* Slightly darker Cyan */
  --secondary: #8B5CF6; /* Violet for gradient pairing */
  --tertiary: #EC4899; /* Pink hint */
  
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(85, 255, 255, 0.3);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Mesh Gradient */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: 
    radial-gradient(circle at 15% 50%, rgba(85, 255, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
  filter: blur(60px);
  pointer-events: none;
}

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

/* Typography */
h1, h2, h3 {
  font-family: 'Press Start 2P', cursive;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -1px;
}

h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: 1rem;
}

  color: var(--text-main);
  /* Removed generic AI text-gradient */
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(85, 255, 255, 0.1), rgba(139, 92, 246, 0.1));
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(85, 255, 255, 0.05); /* Reduced glow */
}

.btn-primary:hover {
  background: var(--primary);
  color: var(--bg-main);
  box-shadow: 0 4px 20px rgba(85, 255, 255, 0.15); /* Reduced hover glow */
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card);
  border-color: var(--border-glass);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

/* Header Navbar (new) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 30px;
  width: auto;
  transition: var(--transition);
}

.nav-logo img:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(0, 216, 216, 0.5));
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px; /* offset for header */
  padding-bottom: 40px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content img {
  max-width: 100%;
  width: 500px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(85, 255, 255, 0.08)); /* Reduced drop-shadow */
  animation: pulse 6s ease-in-out infinite alternate;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(85, 255, 255, 0.05);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Bento Grid Features */
.section {
  padding: 8rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(85, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
}

/* Grid Span Classes */
.col-span-12 { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-4 { grid-column: span 4; }
.col-span-6 { grid-column: span 6; }

@media (max-width: 992px) {
  .col-span-8, .col-span-4, .col-span-6 {
    grid-column: span 12;
  }
}

.bento-icon {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  background: rgba(85, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
}

/* Showcase Slider */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.slider-track-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: #111; /* fallback if img not found */
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--border-hover);
  color: var(--text-main);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 1.5rem;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--bg-main);
  box-shadow: 0 0 15px rgba(85, 255, 255, 0.4);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Footer */
footer {
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0;
  background: rgba(17, 17, 17, 0.3);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
}

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

.legal-header {
  padding-top: 150px;
  padding-bottom: 50px;
  text-align: center;
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 4rem;
  margin-bottom: 4rem;
}

.legal-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1rem; margin-top: 1.5rem; color: var(--text-main); margin-bottom: 0.5rem; }

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
