/* ============================================
   CHUPETÓN — Editorial mojito congelado
   ============================================ */

:root {
  --bg: #080808;
  --bg-2: #0a0a0a;
  --bg-3: #0d0d0d;
  --bg-4: #0a0f00;
  --bg-5: #0d1400;
  --bg-foot: #050505;
  --line: #1a1a1a;
  --line-2: #2a2a2a;
  --green: #98e607;
  --green-dark: #4a7003;
  --green-soft: rgba(152, 230, 7, 0.4);
  --white: #f0ede8;
  --muted: #888888;
  --muted-2: #333333;
  --bebas: "Bebas Neue", "Arial Narrow", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--sans);
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* hide native cursor on interactive too */
a, button, .card, .nav__cta, .step, .stat { cursor: none; }

/* ============= GRAIN OVERLAY ============= */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.038;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMDAnIGhlaWdodD0nMzAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDEgIDAgMCAwIDAgMSAgMCAwIDAgMCAxICAwIDAgMCAwLjYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
  background-size: 240px 240px;
  mix-blend-mode: overlay;
}

/* ============= CUSTOM CURSOR ============= */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99995;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}
.cursor-dot {
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: width 200ms ease, height 200ms ease, opacity 200ms ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(152, 230, 7, 0.55);
  border-radius: 50%;
  transition: width 250ms cubic-bezier(.2,.7,.2,1),
              height 250ms cubic-bezier(.2,.7,.2,1),
              border-color 250ms ease,
              background 250ms ease;
}
body.hover-link .cursor-dot { width: 4px; height: 4px; }
body.hover-link .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--green);
  background: rgba(152, 230, 7, 0.06);
}
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============= SCROLL SKEW WRAPPER ============= */
.skew-wrap {
  will-change: transform;
  transition: transform 60ms linear;
}

/* ============= NAV ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-color 300ms ease, padding 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(152, 230, 7, 0.18);
  padding: 14px 40px;
}
.nav__logo {
  font-family: var(--bebas);
  color: var(--green);
  font-size: 1.9rem;
  letter-spacing: 4px;
  text-decoration: none;
  line-height: 1;
}
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 200ms ease, color 200ms ease;
}
.nav__links a:hover { opacity: 1; color: var(--green); }
.nav__cta {
  font-family: var(--bebas);
  font-size: 1rem;
  letter-spacing: 3px;
  padding: 10px 22px;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}
.nav__cta:hover { background: var(--green); color: #000; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__burger span {
  width: 26px; height: 1.5px; background: var(--white);
  transition: transform 250ms ease, opacity 250ms ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.nav__overlay.open { opacity: 1; pointer-events: auto; }
.nav__overlay a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--bebas);
  font-size: 2.2rem;
  letter-spacing: 4px;
}

/* ============= COMMON TYPE ============= */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 8px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow--lg { font-size: 0.7rem; letter-spacing: 6px; }
.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.kicker-num {
  color: var(--green);
  margin-right: 10px;
}

/* fade-up animations */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1),
              transform 900ms cubic-bezier(.2,.7,.2,1);
}
.fade.in { opacity: 1; transform: translateY(0); }
.fade[data-delay="1"] { transition-delay: 80ms; }
.fade[data-delay="2"] { transition-delay: 160ms; }
.fade[data-delay="3"] { transition-delay: 240ms; }
.fade[data-delay="4"] { transition-delay: 320ms; }
.fade[data-delay="5"] { transition-delay: 400ms; }
.fade[data-delay="6"] { transition-delay: 480ms; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__eyebrow { margin-bottom: 36px; }
.hero__title {
  font-family: var(--bebas);
  font-size: clamp(5.5rem, 14vw, 14rem);
  line-height: 0.84;
  letter-spacing: 1px;
  color: var(--white);
  max-width: 1400px;
}
.hero__title .frozen {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero__title .last { color: var(--green); }
.hero__tagline {
  margin-top: 38px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  min-height: 1.8em;
}
.hero__tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--green);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Glitch effect */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
}
.glitch.is-glitching::before {
  color: var(--white);
  animation: glitch-1 400ms steps(2, end);
  clip-path: inset(0 0 60% 0);
  transform: translate(-3px, 0);
  opacity: 0.9;
}
.glitch.is-glitching::after {
  color: var(--green);
  animation: glitch-2 400ms steps(2, end);
  clip-path: inset(55% 0 0 0);
  transform: translate(3px, 0);
  opacity: 0.9;
}
@keyframes glitch-1 {
  0% { transform: translate(-3px, 0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(-4px, 1px); }
  60% { transform: translate(3px, 0); }
  80% { transform: translate(-1px, -2px); }
  100% { transform: translate(0, 0); opacity: 0; }
}
@keyframes glitch-2 {
  0% { transform: translate(3px, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(4px, -1px); }
  60% { transform: translate(-3px, 0); }
  80% { transform: translate(1px, 2px); }
  100% { transform: translate(0, 0); opacity: 0; }
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.blob--a {
  width: 600px; height: 600px;
  top: -120px; left: -160px;
  background: rgba(152, 230, 7, 0.28);
  animation: float-a 12s ease-in-out infinite alternate;
}
.blob--b {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: rgba(152, 230, 7, 0.18);
  animation: float-b 14s ease-in-out infinite alternate;
}
.blob--c {
  width: 220px; height: 220px;
  top: 45%; right: 8%;
  background: rgba(152, 230, 7, 0.12);
  filter: blur(80px);
  animation: float-c 10s ease-in-out infinite alternate;
}
@keyframes float-a {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes float-b {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-30px, -40px) scale(1.12); }
}
@keyframes float-c {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(20px, -30px) scale(0.92); }
}

.hero__decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}
.hero__decor svg { display: block; }
.decor--tl { top: 12%; left: 4%; transform: rotate(-22deg); }
.decor--tr { top: 18%; right: 6%; transform: rotate(35deg); opacity: 0.22; }
.decor--bl { bottom: 14%; left: 8%; transform: rotate(60deg); opacity: 0.15; }
.decor--br { bottom: 8%; right: 10%; transform: rotate(-12deg); opacity: 0.2; }

.hero__content {
  position: relative;
  z-index: 2;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.scroll-indicator__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 6px;
  color: var(--white);
  opacity: 0.55;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px;
  height: 80px;
  background: rgba(152, 230, 7, 0.18);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--green);
  animation: scroll-fill 2.4s ease-in-out infinite;
}
@keyframes scroll-fill {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* ============= QUÉ ES ============= */
.section {
  position: relative;
  padding: 140px 40px;
}
.section--center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.what__title {
  font-family: var(--bebas);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  margin: 28px 0 28px;
  letter-spacing: 1px;
}
.what__title .accent { color: var(--green); }
.what__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.55;
}
.what__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.what__stats span { color: var(--white); }
.what__stats .sep { color: var(--green); margin: 0 4px; }

/* ============= STORY SCROLL ============= */
.story {
  position: relative;
  height: 400vh;
  background: var(--bg);
  transition: background-color 600ms ease;
}
.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 80px 0 60px;
  gap: 40px;
  overflow: hidden;
}
.story__left {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.story__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.story__product-img {
  max-height: 68vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(152, 230, 7, 0.35));
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 700ms ease;
  transform: scale(0.88);
}
.story__stages {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.story__stage {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-40%);
  max-width: 520px;
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}
.story__stage.active {
  opacity: 1;
  transform: translateY(-50%);
}
.story__stage .label {
  margin-bottom: 22px;
}
.story__stage .big {
  font-family: var(--bebas);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  line-height: 0.94;
  letter-spacing: 1px;
  color: var(--white);
}
.story__stage .big.accent { color: var(--green); }
.story__stage .sub {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.story__dots {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
.story__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: background 300ms ease, transform 300ms ease;
}
.story__dot.active {
  background: var(--green);
  transform: scale(1.4);
}

/* ============= MOMENTOS LIST ============= */
.momentos__title {
  font-family: var(--bebas);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: 0.94;
  margin: 24px 0 0;
  letter-spacing: 1px;
}
.momentos__title .accent { color: var(--green); }
.momentos__list { margin-top: 64px; }

.momento-sep {
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.momento-sep.in { transform: scaleX(1); }

.momento-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  padding: 52px 24px;
  gap: 48px;
  transition: background 220ms ease;
}
.momento-row:hover { background: rgba(152,230,7,0.025); }

.momento-row__num {
  font-family: var(--bebas);
  font-size: clamp(3rem, 4.5vw, 5rem);
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: 2px;
  transition: opacity 220ms ease;
}
.momento-row:hover .momento-row__num { opacity: 0.65; }

.momento-row__copy .eyebrow { margin-bottom: 14px; }
.momento-row__phrase {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--white);
  line-height: 1.35;
  transition: color 220ms ease;
}
.momento-row:hover .momento-row__phrase { color: var(--green); }

.momento-row__watermark {
  font-family: var(--bebas);
  font-size: clamp(4rem, 7vw, 8rem);
  color: var(--white);
  opacity: 0.04;
  letter-spacing: 6px;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============= LOGO IMAGES ============= */
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 65px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* ============= DECORATIVE IMAGES ============= */
/* Hero decors */
.hero .deco-img-tr {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 300px;
  opacity: 0.2;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 1;
}
.hero .deco-img-tr img {
  width: 100%;
  height: auto;
  display: block;
}
/* Qué es decors */
.quees-deco {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
/* Historia decors — 3 organic fragments */
.historia-deco-1 {
  position: absolute;
  top: -24px;
  right: -16px;
  width: 150px;
  opacity: 0.25;
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}
.historia-deco-2 {
  position: absolute;
  top: 42%;
  right: 18%;
  width: 90px;
  opacity: 0.35;
  transform: rotate(-22deg);
  pointer-events: none;
  z-index: 0;
}
.historia-deco-3 {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 120px;
  opacity: 0.2;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 0;
}
/* CTA final decors */
.cta-deco-bl {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-8deg);
}

@media (max-width: 768px) {
  .hero .deco-img-tr { width: 140px; opacity: 0.15; }
  .quees-deco { width: 110px; right: -10px; opacity: 0.2; }
  .historia-deco-2, .historia-deco-3 { display: none; }
  .historia-deco-1 { width: 110px; }
  .cta-deco-bl { width: 140px; opacity: 0.1; }
}

/* ============= COMO SE TOMA ============= */
.toma__title {
  font-family: var(--bebas);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: 0.94;
  margin: 24px 0 64px;
  letter-spacing: 1px;
}
.toma__title .accent { color: var(--green); }
.toma__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.step {
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.step + .step { border-left: 1px solid var(--line); }
.step__num {
  font-family: var(--bebas);
  font-size: 7rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.3;
  letter-spacing: 2px;
}
.step__icon {
  color: var(--green);
}
.step__title {
  font-family: var(--bebas);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--white);
}
.step__desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ============= INGREDIENT DECORS ============= */
.ingr {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

/* Historia ingredients */
.hist-leaf   { top: 5%;  right: 2%; width: 140px; transform: rotate(-20deg); opacity: 1; }
.hist-lime   { top: 40%; right: 5%; width: 120px; transform: rotate(15deg);  opacity: 1; }
.hist-ice    { top: 65%; right: 3%; width: 90px;  transform: rotate(-25deg); opacity: 1; }
.hist-straw  { top: 78%; right: 8%; width: 70px;  transform: rotate(40deg);  opacity: 1; }

/* Hero ingredients */
.hero-leaf   { top: -20px; right: -20px; width: 200px; transform: rotate(30deg);  opacity: 0.6; }
.hero-splash { top: 120px; right: 30px;  width: 130px; transform: rotate(-10deg); opacity: 0.5; }
.hero-drops  { top: 60px;  right: 180px; width: 90px;  transform: rotate(20deg);  opacity: 0.45; }

/* CTA ingredients */
.cta-lime  { bottom: -20px; left: -15px;  width: 150px; transform: rotate(-20deg); opacity: 0.5; }
.cta-leaf  { bottom: 60px;  left: 80px;   width: 120px; transform: rotate(10deg);  opacity: 0.45; }
.cta-drops { bottom: 20px;  left: 170px;  width: 80px;  transform: rotate(-15deg); opacity: 0.4; }

#historia { position: relative; }

@media (max-width: 960px) {
  .hist-leaf, .hist-lime, .hist-ice, .hist-straw,
  .hero-leaf, .hero-splash, .hero-drops,
  .cta-lime, .cta-leaf, .cta-drops { display: none; }
}

/* ============= HISTORIA ============= */
.story-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.story-block__copy { max-width: 640px; }
.story-block__title {
  font-family: var(--bebas);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
  margin: 24px 0 48px;
  letter-spacing: 1px;
}
.story-block__title .accent { color: var(--green); }
.story-block__copy p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.quote {
  margin-top: 40px;
  padding: 6px 0 6px 22px;
  border-left: 2px solid var(--green);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.45;
  max-width: 520px;
}
.story-block__decor {
  position: relative;
  min-height: 360px;
}
.story-block__decor svg {
  position: absolute;
  opacity: 0.18;
}
.story-block__decor .d1 { top: 10%; left: 10%; transform: rotate(-18deg); }
.story-block__decor .d2 { top: 40%; right: 0%; transform: rotate(40deg); opacity: 0.22; }
.story-block__decor .d3 { bottom: 6%; left: 30%; transform: rotate(80deg); opacity: 0.14; }

/* ============= TRACCIÓN ============= */
.traccion {
  background: var(--bg-2);
}
.traccion__title {
  font-family: var(--bebas);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: 0.94;
  margin: 24px 0 72px;
  letter-spacing: 1px;
  text-align: center;
}
.traccion__title .accent { color: var(--green); }
.traccion__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.stat {
  text-align: center;
  padding: 36px 16px;
  border: 1px solid var(--line);
  background: #0c0c0c;
  transition: border-color 300ms ease, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.stat:hover {
  border-color: rgba(152, 230, 7, 0.5);
  transform: translateY(-4px);
}
.stat__num {
  font-family: var(--bebas);
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: 1px;
}
.stat__label {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0.85;
}
.traccion__caption {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--muted);
}

/* ============= MANIFESTO ============= */
.manifesto {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.manifesto__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: var(--bebas);
  font-size: clamp(10rem, 24vw, 24rem);
  letter-spacing: 8px;
  color: var(--white);
  opacity: 0.03;
  white-space: nowrap;
}
.manifesto__lines {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--bebas);
  line-height: 0.9;
  letter-spacing: 1px;
}
.manifesto__lines span {
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--white);
}
.manifesto__lines span.accent {
  color: var(--green);
  font-size: clamp(4.5rem, 10vw, 10rem);
  margin-top: 14px;
}

/* ============= B2B ============= */
.b2b {
  background: var(--bg-2);
}
.b2b__head {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.b2b__title {
  font-family: var(--bebas);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  margin: 24px 0 28px;
  letter-spacing: 1px;
}
.b2b__title .accent { color: var(--green); }
.b2b__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}
.b2b__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto 64px;
}
.advantage {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.advantage + .advantage { border-left: 1px solid var(--line); }
.advantage__title {
  font-family: var(--bebas);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--green);
}
.advantage__desc {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.55;
}
.b2b__cta-wrap {
  text-align: center;
}
.btn-ghost {
  display: inline-block;
  font-family: var(--bebas);
  font-size: 1.05rem;
  letter-spacing: 3px;
  padding: 18px 36px;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}
.btn-ghost:hover { background: var(--green); color: #000; }
.btn-ghost--white {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost--white:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* ============= CTA FINAL ============= */
.cta-final {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px;
  overflow: hidden;
}
.cta-final__title {
  font-family: var(--bebas);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.88;
  margin: 24px 0 32px;
  letter-spacing: 1px;
}
.cta-final__title .accent { color: var(--green); }
.cta-final__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 56px;
}
.cta-final__buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-solid {
  display: inline-block;
  font-family: var(--bebas);
  font-size: 1.2rem;
  letter-spacing: 3px;
  padding: 20px 40px;
  background: var(--green);
  color: #000;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.btn-solid:hover {
  transform: scale(1.02);
  background: #aaff10;
  box-shadow: 0 14px 40px rgba(152, 230, 7, 0.25);
}

.cta-final__decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}
.cta-final__decor.tl { top: 8%; left: 6%; transform: rotate(-30deg); }
.cta-final__decor.tr { top: 12%; right: 5%; transform: rotate(50deg); }
.cta-final__decor.bl { bottom: 10%; left: 8%; transform: rotate(70deg); }
.cta-final__decor.br { bottom: 14%; right: 7%; transform: rotate(-10deg); }

/* ============= FOOTER ============= */
.footer {
  background: var(--bg-foot);
  border-top: 1px solid var(--line);
  padding: 80px 40px 28px;
}
.footer__brand {
  text-align: center;
  margin-bottom: 64px;
}
.footer__brand .logo {
  font-family: var(--bebas);
  font-size: 2.5rem;
  letter-spacing: 6px;
  color: var(--green);
}
.footer__brand .tagline {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--muted-2);
  font-size: 1.05rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a,
.footer__col li {
  color: var(--white);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 200ms, color 200ms;
}
.footer__col a:hover { opacity: 1; color: var(--green); }
.footer__copy {
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--line-2);
  letter-spacing: 1.5px;
  padding-top: 30px;
  border-top: 1px solid #111;
}

/* ============= AGE GATE ============= */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#age-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSczMDAnIGhlaWdodD0nMzAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDEgIDAgMCAwIDAgMSAgMCAwIDAgMCAxICAwIDAgMCAwLjYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
  background-size: 240px 240px;
}
.ag-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ag-logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
}
.ag-line {
  width: 40px;
  height: 1px;
  background: var(--green);
  margin-bottom: 28px;
}
.ag-desc {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.5;
}
.ag-question {
  font-family: var(--bebas);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.ag-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.ag-btn {
  font-family: var(--bebas);
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 14px 44px;
  border: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 150ms ease;
}
.ag-btn--yes {
  background: var(--green);
  color: #080808;
}
.ag-btn--yes:hover { background: #aaff10; transform: scale(1.02); }
.ag-btn--no {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.ag-btn--no:hover { border-color: var(--white); }
#ag-denied { display: none; }
.ag-denied-main {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.ag-denied-sub {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
}
.ag-legal {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 10px;
  color: #444;
  max-width: 320px;
  line-height: 1.5;
}

/* ============= COOKIE BANNER ============= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0f0f0f;
  border-top: 1px solid var(--line);
  z-index: 99991;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px;
  flex-wrap: wrap;
}
.cb-text {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
  line-height: 1.55;
}
.cb-text a { color: var(--green); text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }
.cb-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cb-btn {
  font-family: var(--bebas);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 9px 22px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.cb-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.cb-btn--ghost:hover { border-color: var(--white); }
.cb-btn--outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}
.cb-btn--outline:hover { background: rgba(152,230,7,0.08); }
.cb-btn--solid {
  background: var(--green);
  border: 1px solid var(--green);
  color: #080808;
}
.cb-btn--solid:hover { background: #aaff10; }

@media (max-width: 600px) {
  .ag-buttons { flex-direction: column; width: 100%; }
  .ag-btn { width: 100%; }
  #cookie-banner { flex-direction: column; align-items: stretch; padding: 18px 20px; }
  .cb-buttons { flex-direction: column; }
  .cb-btn { width: 100%; text-align: center; }
}

/* ============= LEGAL PAGES ============= */
@media (max-width: 960px) {
  .nav { padding: 18px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 120px 22px 80px; background: var(--bg); }
  .blob--a { width: 280px; height: 280px; opacity: 0.7; }
  .blob--b { width: 200px; height: 200px; opacity: 0.7; }
  .blob--c { width: 120px; height: 120px; }
  .scroll-indicator { right: 22px; bottom: 24px; }

  .section { padding: 100px 22px; }
  .momentos__grid { grid-template-columns: 1fr; }
  .momento-row {
    grid-template-columns: 60px 1fr;
    padding: 36px 0;
    gap: 20px;
  }
  .momento-row__watermark { display: none; }
  .momento-row__num { font-size: 2.4rem; }
  .toma__steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); }
  .b2b__grid { grid-template-columns: 1fr; }
  .advantage + .advantage { border-left: 0; border-top: 1px solid var(--line); }
  .traccion__grid { grid-template-columns: 1fr 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 40px; }
  .story-block__decor { min-height: 200px; }

  .footer__cols { grid-template-columns: 1fr; gap: 32px; text-align: center; }

  .story { height: auto; }
  .story__sticky {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    padding: 60px 22px;
    gap: 30px;
  }
  .story__right { order: -1; }
  .story__product-img { max-height: 44vh; transform: scale(1) !important; }
  .story__left { height: auto; min-height: 0; }
  .story__stages { position: static; height: auto; }
  .story__stage {
    position: static;
    transform: none !important;
    opacity: 1;
    max-width: 100%;
    margin-bottom: 48px;
  }
  .story__dots { display: none; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(4rem, 17vw, 6rem); }
  .traccion__grid { grid-template-columns: 1fr 1fr; }
  .card { padding: 40px 28px; }
  .card__top { margin-bottom: 40px; }
}
