/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #39d353;
  --green-dark: #1a3f1a;
  --green-bright: #4eff6a;
  --green-glow: rgba(57, 211, 83, 0.4);
  --bg-black: #05070a;
  --bg-secondary: #0d1117;
  --bg-card: rgba(22, 29, 39, 0.8);
  --border: rgba(57, 211, 83, 0.25);
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --radius: 12px;
  --transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

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

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

/* Background Effects */
.scanline {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 51%);
  background-size: 100% 4px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.05;
}

.glow-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(57, 211, 83, 0.04) 0%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { 
  font-family: 'Rajdhani', sans-serif; 
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gradient-text {
  background: linear-gradient(90deg, #fff 0%, var(--green) 50%, #fff 100%);
  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; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #000;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px var(--green-glow);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--green);
  filter: brightness(1.1);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.2rem;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 211, 83, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(57, 211, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 211, 83, 0); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  padding: 20px 0;
  transition: 0.3s ease;
  background: rgba(5, 7, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 7, 10, 0.95);
}

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

.main-logo {
  height: 60px; /* Increased logo size */
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Open state for hamburger */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-logo-img {
  width: 180px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 900;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.mascot-meditating {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 0 30px rgba(57, 211, 83, 0.2));
  animation: floating 6s ease-in-out infinite;
}

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

.image-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(57, 211, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== QUICK BAR ===== */
.quick-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.bar-item i {
  color: var(--green);
  width: 24px;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
  background: rgba(57, 211, 83, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(57, 211, 83, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(57, 211, 83, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}

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

.featured-benefit {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(57, 211, 83, 0.15), transparent);
  border-color: var(--green);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(57, 211, 83, 0.05) 0%, transparent 70%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  height: 50px;
}

.footer-brand p {
  text-align: center;
  color: var(--text-secondary);
  max-width: 400px;
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-logo-img { margin: 0 auto 24px; }
  .bar-inner { justify-content: center; }
  
  .hamburger { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-black);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: 0.4s ease;
    border-left: 1px solid var(--border);
    z-index: 1000;
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    font-size: 1.5rem;
    display: block;
    padding: 15px;
  }

  .main-logo {
    height: 45px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .benefit-card {
    padding: 24px;
  }
}
