@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Color Palette - Premium Neon */
  --bg-primary: #050505;
  --bg-secondary: #0c0c0e;
  --bg-tertiary: #141417;
  --accent-cyan: #00f3ff;
  --accent-purple: #9d00ff;
  --accent-glow: rgba(157, 0, 255, 0.4);
  --accent-gradient: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* UI Elements */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 243, 255, 0.15);
  --glass: rgba(255, 255, 255, 0.02);
  --glass-blur: blur(20px);
  
  /* Layout */
  --container-max: 1240px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Nav Bar - Glassmorphism */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  height: 75px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo-img img {
  max-height: 48px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: white;
}

.nav-cta .btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 10px 30px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: 0.8s;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 100%;
  top: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--accent-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  color: white;
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(157, 0, 255, 0.1);
  border: 1px solid rgba(157, 0, 255, 0.2);
  border-radius: 50px;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -3px;
}

.hero-text h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  border-radius: 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 50px 100px rgba(0,0,0,0.8);
  max-height: 600px;
  object-fit: cover;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Outfit';
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Features Section */
.features-section {
  padding: 160px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 6rem;
}

.section-header h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-header h2 span {
  color: var(--accent-cyan);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  padding: 4rem 3rem;
  background: var(--bg-secondary);
  border-radius: 40px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 243, 255, 0.05), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-cyan);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.feature-card:hover .icon-box {
  background: var(--accent-gradient);
  color: white;
  transform: scale(1.1);
}

/* Discover Section */
.discover-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.discover-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.discover-item:hover {
    transform: scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.discover-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 9;
}

.discover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.discover-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.discover-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .discover-flex { grid-template-columns: 1fr; }
}

/* CTA Section */
.cta-section {
    padding: 160px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Footer Styles */
footer {
  padding: 100px 0 50px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-col h4 {
  margin-bottom: 2rem;
  color: white;
}

.link-col a {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.link-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.socials {
  display: flex;
  gap: 1.5rem;
}

.socials a {
  font-size: 1.2rem;
}

.socials a:hover {
  color: white;
}

/* Entry Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 3.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 3rem; }
    .hero-btns { justify-content: center; }
    .nav-links { display: none; }
    .stats-grid { flex-direction: column; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 3rem; }
}
