/* ============================================
   MONSTER ENERGY — Landing Page Styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette */
  --monster-green: #95d600;
  --monster-green-dark: #6fa300;
  --monster-green-glow: rgba(149, 214, 0, 0.45);
  --monster-green-subtle: rgba(149, 214, 0, 0.08);

  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(20, 20, 20, 0.65);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.35);

  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1280px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--monster-green) var(--bg-primary);
}

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

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--monster-green); border-radius: 3px; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-claw {
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--monster-green);
  letter-spacing: 6px;
  animation: pulse-glow 1.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px var(--monster-green-glow); opacity: 0.6; }
  50% { text-shadow: 0 0 60px var(--monster-green-glow), 0 0 100px var(--monster-green-glow); opacity: 1; }
}

/* ---------- Cursor Glow (desktop only) ---------- */
.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--monster-green-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--monster-green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .claw-icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--monster-green-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--monster-green);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--monster-green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--monster-green) !important;
  color: var(--bg-primary) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 1.5px;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--monster-green-glow);
}

.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    var(--bg-primary) 100%
  );
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--monster-green);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 6s infinite;
}

@keyframes float-up {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(149, 214, 0, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--monster-green);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  background: rgba(149, 214, 0, 0.05);
  animation: fade-in-up 0.8s var(--ease-out-expo) both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--monster-green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: 5px;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s 0.2s var(--ease-out-expo) both;
}

.hero-title .highlight {
  color: var(--monster-green);
  text-shadow: 0 0 40px var(--monster-green-glow);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fade-in-up 0.8s 0.4s var(--ease-out-expo) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s 0.6s var(--ease-out-expo) both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--monster-green);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--monster-green-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--monster-green);
  color: var(--monster-green);
  transform: translateY(-3px);
}

.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-in-up 0.8s 1s var(--ease-out-expo) both;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--monster-green), transparent);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Section Headings ---------- */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--monster-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--monster-green);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  line-height: 1.1;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 16px auto 0;
  font-weight: 300;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--monster-green);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ---------- Products Section ---------- */
.products {
  padding: var(--section-padding) 0;
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px 24px 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.product-card:nth-child(1)::before { background: radial-gradient(circle, rgba(149, 214, 0, 0.15), transparent); }
.product-card:nth-child(2)::before { background: radial-gradient(circle, rgba(200, 200, 220, 0.15), transparent); }
.product-card:nth-child(3)::before { background: radial-gradient(circle, rgba(255, 165, 0, 0.15), transparent); }
.product-card:nth-child(4)::before { background: radial-gradient(circle, rgba(255, 100, 150, 0.15), transparent); }

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

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(149, 214, 0, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-image {
  width: 160px;
  height: 220px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover .product-image {
  transform: scale(1.08) translateY(-8px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.product-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.tag-green { background: rgba(149, 214, 0, 0.15); color: var(--monster-green); }
.tag-white { background: rgba(200, 200, 220, 0.15); color: #c8c8dc; }
.tag-orange { background: rgba(255, 165, 0, 0.15); color: #ffa500; }
.tag-pink { background: rgba(255, 100, 150, 0.15); color: #ff6496; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--monster-green);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ---------- Features Section ---------- */
.features {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 214, 0, 0.04), transparent);
}

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

.feature-card {
  padding: 40px 30px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(149, 214, 0, 0.15);
  transform: translateY(-6px);
  background: rgba(149, 214, 0, 0.03);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--monster-green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(149, 214, 0, 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* ---------- Lifestyle / Banner Section ---------- */
.lifestyle {
  padding: var(--section-padding) 0;
  position: relative;
}

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

.lifestyle-text .section-label {
  justify-content: flex-start;
}

.lifestyle-text .section-title {
  text-align: left;
}

.lifestyle-desc {
  color: var(--text-secondary);
  font-weight: 300;
  margin: 20px 0 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.lifestyle-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.lifestyle-stat {
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
}

.lifestyle-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--monster-green);
  letter-spacing: 1px;
}

.lifestyle-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lifestyle-visual {
  position: relative;
}

.lifestyle-visual .glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 30px;
  border: 1px solid rgba(149, 214, 0, 0.1);
  animation: glow-rotate 12s linear infinite;
}

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

.lifestyle-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-subtle);
}

.lifestyle-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---------- Marquee / Ticker ---------- */
.marquee {
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  background: var(--bg-secondary);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-item .sep {
  color: var(--monster-green);
  font-size: 0.8rem;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Newsletter / CTA Section ---------- */
.cta-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(149, 214, 0, 0.08), rgba(149, 214, 0, 0.02));
  border: 1px solid rgba(149, 214, 0, 0.15);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 214, 0, 0.06), transparent);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
}

.cta-desc {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.cta-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.cta-form input::placeholder { color: var(--text-muted); }
.cta-form input:focus { border-color: var(--monster-green); }

.cta-form button {
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  background: var(--monster-green);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.cta-form button:hover {
  box-shadow: 0 0 30px var(--monster-green-glow);
  transform: scale(1.03);
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 280px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--monster-green);
  color: var(--monster-green);
  background: rgba(149, 214, 0, 0.05);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--monster-green); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

.footer-bottom-links a:hover { color: var(--monster-green); }

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.5s var(--ease-out-expo);
    border-left: 1px solid var(--border-subtle);
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .cta-form { flex-direction: column; }
  .cta-box { padding: 50px 30px; }

  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lifestyle-stats { grid-template-columns: 1fr; }
}
