/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Spline Sans', sans-serif;
  background: #0A1F02;
  color: #F0FFF0;
  overflow-x: hidden;
  line-height: 1.6;
}
:root {
  --green-deep: #0A1F02;
  --green-dark: #122B04;
  --green-mid: #2D6A1E;
  --lime: #B8F369;
  --cream: #F0FFF0;
  --cream-dim: #C8E6C9;
  --text-muted: #7CB87C;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { color: var(--cream-dim); line-height: 1.75; }
em { font-style: italic; color: var(--lime); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; position: relative; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime);
  background: rgba(184,243,105,0.1); border: 1px solid rgba(184,243,105,0.25);
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.section-title { margin-bottom: 1.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-title { max-width: 700px; margin: 0 auto 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--lime); color: var(--green-deep); }
.btn--primary:hover { background: #ceff7a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,243,105,0.35); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(240,255,240,0.3); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn--nav { background: var(--lime); color: var(--green-deep); padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn--nav:hover { background: #ceff7a; }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s, box-shadow 0.4s; }
.nav.scrolled { background: rgba(10,31,2,0.95); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(184,243,105,0.1); }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; gap: 2rem; }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--cream); }
.nav__logo span:first-child { font-size: 1.6rem; }
.nav__links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav__links a { font-size: 0.9rem; color: var(--cream-dim); transition: color 0.2s; }
.nav__links a:hover { color: var(--lime); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
.nav__mobile { display: none; background: rgba(10,31,2,0.98); padding: 1.5rem 2rem; border-top: 1px solid rgba(184,243,105,0.1); }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile a { font-size: 1.1rem; color: var(--cream-dim); }
.nav__mobile.open { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; padding: 8rem 2rem 4rem;
  max-width: 1200px; margin: 0 auto; position: relative;
}
.hero__particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: var(--lime); opacity: 0; animation: floatUp linear infinite; }
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero__bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800; color: rgba(184,243,105,0.03); white-space: nowrap;
  pointer-events: none; user-select: none; z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(184,243,105,0.1); border: 1px solid rgba(184,243,105,0.3);
  color: var(--lime); padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__sub { font-size: 1.1rem; color: var(--cream-dim); margin-bottom: 2.5rem; max-width: 520px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats {
  display: flex; align-items: center; gap: 2rem; padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(184,243,105,0.12);
  border-radius: var(--radius); backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat__num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2rem; font-weight: 800; color: var(--lime); }
.stat__unit { font-size: 1.2rem; color: var(--lime); font-weight: 700; }
.stat__label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.stat__divider { width: 1px; height: 40px; background: rgba(184,243,105,0.2); }
.hero__visual { position: relative; z-index: 1; }
.hero__img-wrap { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero__img-wrap:hover .hero__img { transform: scale(1.04); }
.hero__img-badge {
  position: absolute; top: 1.5rem; right: 1.5rem; background: var(--lime);
  color: var(--green-deep); font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.7rem; letter-spacing: 0.1em; text-align: center;
  padding: 0.75rem; border-radius: 50%; width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center; line-height: 1.3;
}
.hero__worm-trail { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); width: 60px; opacity: 0.6; }
.worm-path { stroke-dasharray: 600; stroke-dashoffset: 600; animation: drawWorm 3s ease forwards 1s; }
@keyframes drawWorm { to { stroke-dashoffset: 0; } }
.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--lime), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== MARQUEE ===== */
.marquee-strip { background: var(--lime); overflow: hidden; padding: 0.9rem 0; position: relative; z-index: 2; }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 25s linear infinite; }
.marquee-track span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--green-deep); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: var(--green-dark); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about__img-stack { position: relative; height: 500px; }
.about__img { position: absolute; border-radius: var(--radius); object-fit: cover; }
.about__img--back { width: 75%; height: 80%; top: 0; left: 0; filter: brightness(0.7); }
.about__img--front { width: 65%; height: 70%; bottom: 0; right: 0; border: 4px solid var(--green-dark); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.about__tag { position: absolute; bottom: 2rem; left: 2rem; background: var(--lime); color: var(--green-deep); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.85rem; padding: 0.5rem 1.25rem; border-radius: 100px; }
.about__content p { margin-bottom: 1.25rem; }
.about__pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.pillar { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(184,243,105,0.1); border-radius: var(--radius-sm); transition: var(--transition); }
.pillar:hover { border-color: rgba(184,243,105,0.3); background: rgba(184,243,105,0.05); }
.pillar__icon { font-size: 1.5rem; }
.pillar strong { display: block; color: var(--cream); font-size: 0.95rem; }
.pillar span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== BENEFITS ===== */
.benefits { background: var(--green-deep); overflow: hidden; }
.benefits__bg-shape { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(45,106,30,0.3) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card { padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(184,243,105,0.1); border-radius: var(--radius); transition: var(--transition); position: relative; overflow: hidden; }
.benefit-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184,243,105,0.05) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; }
.benefit-card:hover { border-color: rgba(184,243,105,0.35); transform: translateY(-4px); }
.benefit-card:hover::before { opacity: 1; }
.benefit-card__icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.benefit-card h3 { color: var(--cream); margin-bottom: 0.75rem; font-size: 1.1rem; }
.benefit-card p { font-size: 0.9rem; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--green-dark); }
.how__steps { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
.how__step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: start; padding: 2rem 0; }
.how__step-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(184,243,105,0.15); line-height: 1; text-align: center; }
.how__step-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.how__step-content h3 { color: var(--cream); margin-bottom: 0.5rem; }
.how__step-content p { font-size: 0.92rem; }
.how__connector { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(184,243,105,0.3), rgba(184,243,105,0.05)); margin-left: 40px; }

/* ===== PRODUCTS ===== */
.products { background: var(--green-deep); }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.product-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,243,105,0.12); border-radius: var(--radius); overflow: hidden; transition: var(--transition); position: relative; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(184,243,105,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.product-card--featured { border-color: rgba(184,243,105,0.4); background: rgba(184,243,105,0.06); transform: scale(1.03); }
.product-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.product-card__badge { position: absolute; top: 1rem; left: 1rem; background: var(--lime); color: var(--green-deep); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.72rem; padding: 0.3rem 0.8rem; border-radius: 100px; z-index: 1; }
.product-card__badge--gold { background: #FFD700; }
.product-card__badge--blue { background: #64B5F6; }
.product-card__img-wrap { height: 200px; overflow: hidden; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img-wrap img { transform: scale(1.08); }
.product-card__body { padding: 1.5rem; }
.product-card__body h3 { color: var(--cream); margin-bottom: 0.5rem; }
.product-card__body p { font-size: 0.88rem; margin-bottom: 1.25rem; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.product-card__weight { font-size: 0.82rem; color: var(--text-muted); background: rgba(255,255,255,0.06); padding: 0.25rem 0.75rem; border-radius: 100px; }
.product-card__price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--lime); }
.products__note { text-align: center; padding: 1.25rem 2rem; background: rgba(184,243,105,0.06); border: 1px solid rgba(184,243,105,0.15); border-radius: var(--radius); font-size: 0.88rem; color: var(--cream-dim); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--green-dark); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testi-card { padding: 2rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(184,243,105,0.1); border-radius: var(--radius); transition: var(--transition); }
.testi-card:hover { border-color: rgba(184,243,105,0.3); transform: translateY(-4px); }
.testi-card__stars { color: var(--lime); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; font-style: italic; margin-bottom: 1.5rem; }
.testi-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testi-card__avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--green-mid), var(--lime)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--green-deep); flex-shrink: 0; }
.testi-card__author strong { display: block; color: var(--cream); font-size: 0.9rem; }
.testi-card__author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, #1a4a0a 0%, #0d2e04 50%, #0A1F02 100%); border-top: 1px solid rgba(184,243,105,0.15); border-bottom: 1px solid rgba(184,243,105,0.15); }
.cta-banner__inner { text-align: center; max-width: 700px; margin: 0 auto; padding: 2rem 0; }
.cta-banner__worm { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; animation: wiggle 2s ease-in-out infinite; }
@keyframes wiggle { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.cta-banner__inner h2 { margin-bottom: 1rem; }
.cta-banner__inner p { font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #050f02; padding: 5rem 0 2rem; border-top: 1px solid rgba(184,243,105,0.08); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 260px; margin-top: 0.75rem; }
.footer__col h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--cream); margin-bottom: 1.25rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(184,243,105,0.08); font-size: 0.82rem; color: var(--text-muted); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .stat__divider { width: 60px; height: 1px; }
  .hero__visual { order: -1; }
  .hero__worm-trail, .hero__scroll-hint { display: none; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img-stack { height: 300px; }
  .benefits__grid, .products__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .product-card--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .how__step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .how__step-num { font-size: 2rem; }
  .how__connector { margin-left: 25px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}