/* =========================================================
   OZONO — Landing
   Design system: organic + electric, dark forest + lime
   ========================================================= */

:root {
  /* palette */
  --ink: #0a1f17;
  --ink-2: #13402a;
  --ink-soft: rgba(10, 31, 23, 0.7);
  --cream: #f5f1ea;
  --cream-2: #ece6da;
  --paper: #fbf9f4;
  --white: #ffffff;

  --lime: #d4ff3a;
  --lime-2: #b9ec1c;
  --leaf: #1f9b5f;
  --coral: #ff5a3c;
  --berry: #7a2bd1;
  --citrus: #ffb12c;

  --line: rgba(10, 31, 23, 0.12);
  --line-dark: rgba(245, 241, 234, 0.16);

  /* type */
  --display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;

  /* layout */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 48px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(72px, 10vw, 128px);
  --section-inset: clamp(12px, 2vw, 20px);
  --head-gap: clamp(40px, 5vw, 56px);
  --nav-h: 64px;
  --ticker-h: 0px;

  /* motion */
  --ease: cubic-bezier(0.2, 0.7, 0.15, 1);
}

body.has-ticker { --ticker-h: 38px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main { padding-top: var(--nav-h); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Selection */
::selection { background: var(--lime); color: var(--ink); }

/* =========================================================
   Reusable
========================================================= */

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.eyebrow--dark { color: var(--ink); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(212, 255, 58, 0.22);
}

.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  --bg: var(--ink);
  --fg: var(--lime);
  box-shadow: 0 8px 20px -8px rgba(10, 31, 23, 0.6);
}
.btn--solid:hover { --bg: var(--leaf); --fg: var(--paper); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.btn--xl { padding: 16px 26px; font-size: 15px; }

/* Honeypot antispam — oculto para usuarios, visible para bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   Noise + ticker
========================================================= */
.noise {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.ticker {
  background: #0a0a0a;
  color: var(--white);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 51;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ticker__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  will-change: transform;
}
.ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.ticker__group span {
  flex-shrink: 0;
  color: var(--white);
}
.ticker__group span:nth-child(odd) { color: var(--coral); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .ticker__track { animation-duration: 28s; }
  .ticker__group {
    gap: 28px;
    padding-right: 28px;
  }
}

/* =========================================================
   Nav
========================================================= */
.nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--nav-h);
  padding: 14px var(--pad-x);
  background: rgba(251, 249, 244, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: top 0.25s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

body:not(.has-ticker) .nav { top: 0; }

/* iOS Safari/Chrome fix: backdrop-filter + sticky causes blank flicker on scroll.
   Use solid background on mobile (no blur) for reliable painting. */
@media (max-width: 880px) {
  .nav {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-scrolled { background: var(--paper); }
}
.nav__logo { flex-shrink: 0; }
.nav.is-scrolled {
  top: 0;
  border-bottom-color: var(--line);
  background: rgba(251, 249, 244, 0.95);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease);
}
.nav__logo:hover img { transform: scale(1.04); }
.nav__logo--white img {
  filter: invert(1);
  height: 40px;
}

.nav__links {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  min-width: 0;
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  opacity: 0.85;
  white-space: nowrap;
  transition: opacity 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: inline-flex; gap: 10px; flex-shrink: 0; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink);
  border: none;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--lime); border-radius: 4px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.drawer {
  position: fixed;
  inset: calc(var(--ticker-h) + var(--nav-h)) 0 0 0;
  z-index: 40;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(24px, 5vw, 32px) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    top 0.25s var(--ease),
    transform 0.45s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0s linear 0.45s;
}
body.is-scrolled-past-ticker .drawer,
body:not(.has-ticker) .drawer {
  inset: var(--nav-h) 0 0 0;
}
.drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.45s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0s linear 0s;
}
.drawer a {
  font-family: var(--display);
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream);
  line-height: 1.15;
}
.drawer a.btn {
  margin-top: 16px;
  align-self: flex-start;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-bottom: none;
}
.drawer .btn--solid { background: var(--lime); color: var(--ink); }

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 52%, var(--cream-2) 100%);
  color: var(--ink);
  --hero-h: calc(100svh - var(--nav-h));
  --hero-h: calc(100dvh - var(--nav-h));
  min-height: var(--hero-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) var(--pad-x) clamp(40px, 6vw, 88px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  clip-path: inset(0 round 0 0 var(--r-xl) var(--r-xl));
  -webkit-clip-path: inset(0 round 0 0 var(--r-xl) var(--r-xl));
}
.hero .eyebrow { color: var(--ink); margin-bottom: clamp(12px, 2vh, 24px); }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  clip-path: inset(0 round 0 0 var(--r-xl) var(--r-xl));
  -webkit-clip-path: inset(0 round 0 0 var(--r-xl) var(--r-xl));
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
  animation: floaty 14s ease-in-out infinite;
}
.blob--lime  { width: 520px; height: 520px; background: var(--lime);  left: -120px; top: -80px; }
.blob--coral { width: 480px; height: 480px; background: var(--coral); right: -120px; top: 30%; animation-delay: -4s; opacity: 0.18; }
.blob--berry { width: 420px; height: 420px; background: var(--berry); left: 30%; bottom: -160px; animation-delay: -8s; opacity: 0.16; }
@keyframes floaty {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.06); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: center;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 7.5vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(12px, 2vh, 28px);
  color: var(--ink);
}
.hero__title-italic {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}
.hero__title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  font-weight: 800;
}
.hero__lead {
  max-width: 50ch;
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--ink-soft);
  margin: 0 0 clamp(16px, 2.5vh, 28px);
}
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0; }
.hero__actions .btn--solid { background: var(--ink); color: var(--lime); }
.hero__actions .btn--solid:hover { background: var(--leaf); color: var(--paper); }
.hero__actions .btn--ghost { color: var(--ink); border-color: var(--line); }
.hero__actions .btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* hero visual */
.hero__visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__halo {
  position: absolute;
  width: 110%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,255,58,0.25), transparent 60%),
    conic-gradient(from 120deg, rgba(255,90,60,0.18), rgba(122,43,209,0.18), rgba(212,255,58,0.22), rgba(255,90,60,0.18));
  filter: blur(20px);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__visual .life-photo--hero {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(135deg, rgba(31, 155, 95, 0.08), rgba(212, 255, 58, 0.12));
  -webkit-mask-image: radial-gradient(ellipse 98% 92% at 50% 50%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 98% 92% at 50% 50%, #000 58%, transparent 100%);
}
.hero__visual .life-photo--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 31, 23, 0.18) 0%, rgba(10, 31, 23, 0.06) 42%, rgba(251, 249, 244, 0.45) 100%),
    linear-gradient(90deg, rgba(251, 249, 244, 0.2) 0%, transparent 28%, transparent 72%, rgba(251, 249, 244, 0.2) 100%);
}
.hero__visual .life-photo--hero img {
  position: relative;
  z-index: 0;
  object-position: center center;
}
.hero__visual .life-photo--hero .life-photo__label {
  z-index: 2;
}

.hero__badge {
  position: absolute;
  z-index: 5;
  background: var(--cream);
  color: var(--ink);
  border: 0.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.hero__badge strong { font-family: var(--display); font-size: 20px; line-height: 1; }
.hero__badge--label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  align-items: center;
}
.hero__badge--1 { left: -10px; top: 8%; transform: rotate(-8deg); }
.hero__badge--2 {
  right: -10px;
  top: 28%;
  transform: rotate(7deg);
  background: var(--lime);
  border-color: var(--ink);
}
.hero__badge--3 { left: 6%; bottom: 10%; transform: rotate(-6deg); }

@media (min-width: 1001px) {
  .hero {
    height: var(--hero-h);
    min-height: var(--hero-h);
    max-height: var(--hero-h);
    padding: 0 0 0 var(--pad-x);
    justify-content: stretch;
    overflow: hidden;
  }
  .hero .eyebrow {
    margin-bottom: 14px;
  }
  .hero__inner {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0;
    max-width: none;
    width: 100%;
    min-height: 0;
    height: 100%;
    max-height: 100%;
    flex: 1;
  }
  .hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    margin-right: 0;
    z-index: 1;
    transform: none;
    justify-content: flex-end;
    align-items: stretch;
  }
  .hero__visual .life-photo--hero {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-width: none;
    max-height: 100%;
    aspect-ratio: auto;
    margin-left: auto;
    margin-right: 0;
    border-radius: 0;
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, #000 10%, #000 100%),
      linear-gradient(90deg, transparent 0%, #000 8%, #000 84%, transparent 100%);
    mask-image:
      linear-gradient(180deg, transparent 0%, #000 10%, #000 100%),
      linear-gradient(90deg, transparent 0%, #000 8%, #000 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
  .hero__visual .life-photo--hero img {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    object-fit: cover;
    object-position: center 28%;
  }
  .hero__visual .life-photo--hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.28) 16%, transparent 32%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.18) 12%, transparent 38%, transparent 78%, rgba(255, 255, 255, 0.18) 92%, rgba(255, 255, 255, 0.55) 100%),
      linear-gradient(180deg, transparent 0%, transparent 68%, rgba(255, 255, 255, 0.22) 100%);
  }
  .hero__halo {
    width: 115%;
    opacity: 0.9;
  }
  .hero__copy {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    max-width: min(54%, 580px);
    padding: clamp(8px, 2vh, 24px) clamp(16px, 2vw, 32px) clamp(8px, 2vh, 24px) 0;
  }
  .hero__title {
    font-size: clamp(44px, 6.2vw, 88px);
    line-height: 1.02;
    margin-bottom: 16px;
    text-shadow: 0 2px 28px rgba(251, 249, 244, 0.75);
  }
  .hero__lead {
    font-size: clamp(15px, 1.05vw, 17px);
    margin-bottom: 22px;
    max-width: 46ch;
    text-shadow: 0 1px 18px rgba(251, 249, 244, 0.85);
  }
  .hero__actions .btn--xl {
    padding: 14px 22px;
    font-size: 14px;
  }
  .hero__badge--1 { left: 28%; top: 10%; right: auto; bottom: auto; }
  .hero__badge--2 { right: 26%; top: 26%; left: auto; bottom: auto; }
  .hero__badge--3 { left: 34%; bottom: 12%; right: auto; top: auto; }
  .hero + .manifesto .manifesto__layout {
    padding-top: clamp(36px, 4.5vw, 64px);
  }
  .manifesto__layout {
    padding-bottom: 0;
  }
  .manifesto + .benefits {
    padding-top: clamp(36px, 4.5vw, 64px);
  }
}

/* =========================================================
   LIFE PHOTOS (sin marco · bleed · fondo)
========================================================= */
.life-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream), color-mix(in oklab, var(--leaf) 12%, var(--paper)));
}
.life-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.life-photo__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 31, 23, 0.35);
}
.life-photo--placeholder img { display: none; }
.life-photo:not(.life-photo--placeholder) .life-photo__label { display: none; }

.life-photo--bleed-right {
  min-height: 100%;
  margin-right: calc(-1 * var(--pad-x));
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}
.life-photo--bleed-right::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  z-index: 1;
  background: linear-gradient(90deg, var(--paper) 0%, transparent 100%);
  pointer-events: none;
}

.life-photo--bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
}
.life-photo--bg img {
  object-position: center 30%;
  transform: scale(1.05);
}
.life-photo--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* =========================================================
   MANIFIESTO
========================================================= */
.manifesto {
  padding: 0;
  overflow: hidden;
}
.manifesto__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 46vw);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--section-y) 0;
}
.manifesto__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px) var(--pad-x);
}
.manifesto__aside {
  min-height: clamp(420px, 52vw, 720px);
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 1081px) {
  .manifesto__layout {
    padding-top: clamp(36px, 4.5vw, 64px);
    padding-bottom: 0;
    align-items: start;
  }
  .manifesto__aside {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
    align-self: start;
  }
}
.manifesto__aside::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  z-index: 1;
  background: linear-gradient(90deg, var(--paper) 0%, transparent 100%);
  pointer-events: none;
}
.manifesto__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  max-width: 19ch;
}
.manifesto__title em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}
.manifesto__title mark {
  background: linear-gradient(180deg, transparent 60%, var(--lime) 60%);
  color: inherit;
  padding: 0 0.1em;
}
.manifesto__sub {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3.5vw, 36px);
  border-top: 1px solid var(--line);
  max-width: min(52ch, 100%);
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--ink-soft);
}
.manifesto__sub strong { color: var(--ink); font-weight: 600; }
.manifesto__lead {
  margin: 0 0 clamp(16px, 2.5vw, 22px);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.manifesto__beats {
  list-style: none;
  margin: 0 0 clamp(20px, 3vw, 28px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.manifesto__beats li { margin: 0; }
.manifesto__beats-highlight {
  font-style: italic;
  font-weight: 500;
  color: var(--leaf);
}
.manifesto__close {
  margin: 0;
  max-width: 42ch;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--ink-soft);
}

/* =========================================================
   PRODUCTOS
========================================================= */
.products {
  background: var(--cream);
  padding: var(--section-y) var(--pad-x);
  border-radius: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.products__head {
  max-width: 1280px;
  margin: 0 auto var(--head-gap);
}
.products__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.product {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--p) 22%, var(--cream)) 0%, var(--cream) 70%);
  color: var(--txt, var(--ink));
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid var(--line);
}
.product::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, var(--p), transparent 50%, var(--p2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.product:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25); }
.product:hover::before { opacity: 1; }

.product__media {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in oklab, var(--p2) 60%, transparent), transparent 60%),
    radial-gradient(circle at 80% 80%, color-mix(in oklab, var(--p) 70%, transparent), transparent 65%),
    color-mix(in oklab, var(--p) 18%, var(--cream));
}
.product__media img {
  position: relative;
  z-index: 1;
  width: 70%;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,0.25));
  transition: transform 0.6s var(--ease);
}
.product:hover .product__media img { transform: translateY(-8px) rotate(-3deg) scale(1.04); }
.product__tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product__body { padding: 24px 24px 28px; }
.product__body h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product__body > p {
  margin: 0 0 16px;
  color: color-mix(in oklab, var(--txt) 75%, transparent);
  font-size: 16px;
}
.product__notes {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product__notes li {
  background: rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product__foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   BENEFITS
========================================================= */
.benefits {
  background: var(--cream);
  color: var(--ink);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.benefits__bg.life-photo--bg::after {
  background:
    linear-gradient(
      180deg,
      var(--white) 0%,
      color-mix(in oklab, var(--white) 55%, transparent) 14%,
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(245, 241, 234, 0.92) 0%,
      rgba(245, 241, 234, 0.78) 42%,
      rgba(255, 255, 255, 0.88) 78%,
      var(--white) 100%
    );
}
.benefits__head,
.benefits__grid,
.benefits__outro {
  position: relative;
  z-index: 1;
  padding-inline: var(--pad-x);
}
.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,255,58,0.14), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(122,43,209,0.08), transparent 40%);
  pointer-events: none;
}
.benefits .eyebrow { color: var(--ink); }
.benefits__head {
  max-width: 1280px;
  margin: 0 auto var(--head-gap);
  position: relative;
}
.benefits__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.benefits__head h2 em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}
.benefits__head p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  margin: 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px 32px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.benefit:hover {
  background: var(--paper);
  border-color: color-mix(in oklab, var(--leaf) 45%, var(--line));
  transform: translateY(-6px);
}
.benefit__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(31, 155, 95, 0.12);
  color: var(--leaf);
  border-radius: 16px;
  margin-bottom: 20px;
}
.benefit h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
}
.benefit p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.benefit--featured {
  grid-column: 1 / -1;
  background: #2a2a2a;
  border-color: transparent;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px);
}
.benefit--featured h3 {
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 32px);
  max-width: 28ch;
}
.benefit--featured p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.1vw, 17px);
  max-width: 62ch;
  line-height: 1.55;
}
.benefit--featured:hover {
  background: #333333;
  border-color: transparent;
  transform: translateY(-4px);
}
.benefits__outro {
  position: relative;
  max-width: 1280px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.benefits__outro em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}

/* =========================================================
   STATEMENT
========================================================= */
.statement {
  position: relative;
  background: var(--lime);
  padding: var(--section-y) var(--pad-x);
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: var(--section-inset);
}
.statement__bg.life-photo--bg::after {
  background:
    linear-gradient(180deg, rgba(212, 255, 58, 0.88) 0%, rgba(212, 255, 58, 0.72) 50%, rgba(212, 255, 58, 0.9) 100%);
}
.statement__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
}
.statement__line {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 16vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.statement__line--alt {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  font-style: italic;
  font-weight: 500;
}

/* =========================================================
   SECTION PANEL (howto · vender; embajadores usa variante editorial)
========================================================= */
.section-panel,
.contact__inner {
  width: 100%;
}
.section-panel {
  background: linear-gradient(145deg, var(--paper) 0%, var(--white) 100%);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 72px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.section-panel::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -15%;
  width: min(420px, 55%);
  height: 70%;
  background: radial-gradient(circle, rgba(212, 255, 58, 0.18), transparent 65%);
  pointer-events: none;
}
.section-panel__head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: var(--head-gap);
}
.section-panel__head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-panel__head h2 em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}

.ambassador .section-panel__head {
  max-width: none;
}

/* Embajadores: bloque naranja (como statement lima) */
.ambassador {
  position: relative;
  background: var(--citrus);
  margin: var(--section-inset);
  padding: var(--section-y) 0;
  overflow: hidden;
  border-radius: var(--r-xl);
  isolation: isolate;
}
.ambassador::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.32), transparent 44%),
    radial-gradient(circle at 8% 92%, color-mix(in oklab, var(--coral) 28%, transparent), transparent 50%);
}
.ambassador__inner.section-panel {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: clamp(40px, 6vw, 80px) var(--pad-x);
  overflow: visible;
}
.ambassador__inner.section-panel::before,
.ambassador__inner.section-panel::after {
  display: none;
}
.ambassador .eyebrow--dark,
.ambassador .section-panel__head h2 {
  color: var(--ink);
}
.ambassador .section-panel__head h2 em {
  color: var(--ink);
}
.ambassador__copy p {
  color: color-mix(in oklab, var(--ink) 72%, transparent);
}
.ambassador__cta .btn--ghost {
  border-color: color-mix(in oklab, var(--ink) 24%, transparent);
  background: color-mix(in oklab, var(--white) 42%, transparent);
  color: var(--ink);
}
.ambassador__cta .btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

@media (min-width: 1081px) {
  .ambassador {
    padding: 0;
  }
  .ambassador__inner.section-panel {
    padding: clamp(28px, 3.5vw, 44px) var(--pad-x);
  }
}

@media (min-width: 768px) {
  .ambassador .section-panel__head h2 {
    white-space: nowrap;
    font-size: clamp(32px, 4.2vw, 56px);
  }
}

/* =========================================================
   HOWTO · EMBAJADORES · VENDER · CONTACTO
   Mismo gutter exterior que .products / .benefits
========================================================= */
.sellers,
.contact {
  margin-inline: var(--section-inset);
  padding-bottom: var(--section-inset);
}

.sellers,
.contact {
  padding-top: var(--section-inset);
}

.contact {
  padding-bottom: var(--section-inset);
}

/* =========================================================
   DETRÁS DE OZONO
========================================================= */
.about {
  padding: var(--section-inset) 0 0;
  overflow: hidden;
  background: var(--paper);
}
.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
}
.about__photo {
  position: relative;
  order: -1;
  width: min(1280px, calc(100% - 2 * var(--pad-x)));
  max-width: 1280px;
  aspect-ratio: 3 / 2;
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  background: var(--cream-2);
  border-radius: var(--r-md);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--paper) 0%, transparent 26%),
    linear-gradient(90deg, var(--paper) 0%, transparent 14%, transparent 86%, var(--paper) 100%),
    linear-gradient(180deg, transparent 0%, transparent 58%, var(--paper) 100%);
}
.about__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: clamp(-140px, -14vw, -240px) auto 0;
  width: 100%;
  padding: clamp(40px, 5vw, 64px) var(--pad-x) clamp(40px, 6vw, 88px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in oklab, var(--paper) 75%, transparent) 12%,
    var(--paper) clamp(64px, 8vw, 96px)
  );
}
.about__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--ink);
  max-width: 16ch;
}
.about__body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  max-width: 62ch;
}
.about__body p:last-child { margin-bottom: 0; }
.about__founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 68ch;
}
.about__founder {
  margin: 0;
  min-width: 0;
}
.about__founder-name {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.about__founder-name::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--leaf);
}
.about__founder p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
}
.about__pull {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 32px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  color: var(--ink) !important;
  margin: clamp(24px, 3vw, 32px) 0 !important;
  max-width: 22ch !important;
}
.about__close {
  margin-top: clamp(24px, 3vw, 32px) !important;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px) !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  max-width: 28ch !important;
}
.about__close strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

/* =========================================================
   HOWTO
========================================================= */
.howto {
  padding-top: var(--section-inset);
  padding-bottom: 0;
  margin-inline: 0;
}
.howto__split {
  display: grid;
  grid-template-columns: minmax(240px, 34vw) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-inline: var(--section-inset);
}
.howto__split .section-panel {
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  overflow: visible;
}
.howto__side {
  min-height: 100%;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  overflow: hidden;
}
.howto__side::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 18%;
  z-index: 1;
  background: linear-gradient(270deg, rgba(251, 249, 244, 0.95) 0%, transparent 100%);
  pointer-events: none;
}
.howto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Reloj del día */
.howto__clock {
  position: relative;
  z-index: 1;
  margin-top: clamp(8px, 2vw, 16px);
  min-height: clamp(520px, 52vw, 640px);
}
.howto__clock-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(44%, 300px);
  aspect-ratio: 1;
  margin: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 1;
}
.howto__clock-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(10, 31, 23, 0.14));
}

.howto__grid--clock {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
.howto__grid--clock .step {
  position: absolute;
  width: clamp(148px, 31%, 210px);
  padding: 16px 16px 18px;
  border: 1px solid color-mix(in oklab, var(--leaf) 28%, var(--line));
  border-radius: var(--r-md);
  background: color-mix(in oklab, var(--paper) 88%, var(--white));
  box-shadow: 0 10px 28px -18px rgba(10, 31, 23, 0.35);
  transform: translate(-50%, -50%);
  text-align: center;
}
.howto__grid--clock .step:nth-child(1) { top: 4%; left: 50%; }
.howto__grid--clock .step:nth-child(2) { top: 20%; left: 86%; }
.howto__grid--clock .step:nth-child(3) { top: 52%; left: 94%; }
.howto__grid--clock .step:nth-child(4) { top: 84%; left: 72%; }
.howto__grid--clock .step:nth-child(5) { top: 84%; left: 28%; }
.howto__grid--clock .step:nth-child(6) { top: 20%; left: 14%; }

.step {
  position: relative;
  overflow: visible;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step::after { display: none; }
.step:hover {
  border-color: var(--leaf);
  box-shadow: 0 16px 32px -16px rgba(31, 155, 95, 0.35);
}
.step h3 {
  font-family: var(--display);
  font-size: clamp(15px, 1.4vw, 18px);
  margin: 0 0 6px;
  font-weight: 700;
  line-height: 1.15;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

/* =========================================================
   EMBAJADORES
========================================================= */
.ambassador__faces {
  list-style: none;
  margin: 0 0 clamp(32px, 5vw, 48px);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  z-index: 1;
}
.ambassador__face {
  width: clamp(64px, 10vw, 88px);
  height: clamp(64px, 10vw, 88px);
  margin-left: -12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  flex-shrink: 0;
  position: relative;
  background: var(--leaf);
}
.ambassador__face:first-child { margin-left: 0; }
.ambassador__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ambassador__face--placeholder span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--leaf), color-mix(in oklab, var(--lime) 70%, var(--leaf)));
}
.ambassador__face:not(.ambassador__face--placeholder) img { display: block; }
.ambassador__face:not(.ambassador__face--placeholder) span { display: none; }
.ambassador__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.ambassador__body > * { min-width: 0; }
.ambassador__copy p {
  margin: 0 0 16px;
  font-size: clamp(15px, 1.1vw, 17px);
  max-width: 58ch;
}
.ambassador__copy p:last-child { margin-bottom: 0; }
.ambassador__hook {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--ink) !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.02em;
}
.ambassador__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.ambassador__cta .btn {
  max-width: 100%;
}
.ambassador__benefits-btn {
  white-space: normal;
  text-align: left;
  line-height: 1.35;
}
.ambassador__cta .btn--solid {
  background: var(--ink);
  color: var(--lime);
}
.ambassador__benefits {
  width: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px -32px rgba(10, 31, 23, 0.18);
}
.ambassador__benefits[hidden] { display: none; }
.ambassador__benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ambassador__benefits li {
  position: relative;
  padding: 11px 12px 11px 42px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  background: var(--paper);
  border: 1px solid var(--line);
}
.ambassador__benefits li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(31, 155, 95, 0.16);
}

/* Landing Embajador REAL */
.page-embajador { background: var(--cream); }
.embajador-page {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(80px + var(--pad-x)) var(--pad-x) var(--section-y);
}
.embajador-page__hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: var(--ink);
}
.embajador-page__hero h1 em {
  font-style: italic;
  color: var(--leaf);
  font-weight: 500;
}
.embajador-page__intro p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
}
.embajador-page__intro p:last-child { margin-bottom: 40px; }
.embajador-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
}
.embajador-form__title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.embajador-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.embajador-form .field--full { grid-column: 1 / -1; }
.embajador-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.embajador-form input,
.embajador-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.embajador-form textarea {
  min-height: 140px;
  resize: vertical;
}
.embajador-form input:focus,
.embajador-form textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 155, 95, 0.15);
}
.embajador-form input.is-invalid,
.embajador-form textarea.is-invalid {
  border-color: var(--coral);
}
.embajador-form__actions { margin-top: 28px; }
.embajador-form__actions .btn--solid { background: var(--ink); color: var(--cream); }
.embajador-form__msg {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: color-mix(in oklab, var(--leaf) 12%, var(--cream));
  border: 1px solid color-mix(in oklab, var(--leaf) 40%, transparent);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}
.embajador-form__msg[hidden] { display: none; }
.embajador-form__msg.is-error {
  background: color-mix(in oklab, var(--coral) 10%, var(--cream));
  border-color: color-mix(in oklab, var(--coral) 35%, transparent);
  color: var(--coral);
}
.footer--compact { padding-top: 0; }
.footer__legal--center { justify-content: center; width: 100%; }
.footer__legal--center a { color: var(--leaf); font-weight: 600; }

@media (max-width: 900px) {
  .ambassador__body {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }
  .ambassador__cta {
    align-items: stretch;
  }
  .ambassador__cta .btn {
    white-space: normal;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .ambassador__benefits-btn { text-align: center; }
  .embajador-form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sellers,
  .contact {
    margin-inline: 12px;
  }
  .ambassador {
    padding: clamp(28px, 7vw, 44px) 0;
  }
  .howto {
    margin-inline: 0;
  }
  .howto__split {
    margin-inline: 0;
  }
  .howto__split .section-panel {
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    margin-inline: 0;
  }
  .section-panel {
    padding: clamp(24px, 6vw, 32px) clamp(18px, 4vw, 24px);
    border-radius: var(--r-lg);
  }
  .ambassador__inner.section-panel {
    border: none;
    padding: clamp(20px, 6vw, 32px) clamp(18px, 4vw, 24px);
  }
  .section-panel__head h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .ambassador__faces {
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 28px;
  }
  .ambassador__face {
    width: 52px;
    height: 52px;
    margin-left: -10px;
    border-width: 2px;
  }
  .ambassador__face:first-child { margin-left: 0; }
  .ambassador__face:nth-child(1) { z-index: 1; }
  .ambassador__face:nth-child(2) { z-index: 2; }
  .ambassador__face:nth-child(3) { z-index: 3; }
  .ambassador__face:nth-child(4) { z-index: 4; }
  .ambassador__face:nth-child(5) { z-index: 5; }
  .ambassador__face:nth-child(6) { z-index: 6; }
  .ambassador__hook {
    font-size: clamp(20px, 6vw, 28px);
  }
  .ambassador__copy p {
    font-size: 15px;
    max-width: none;
  }
  .ambassador__benefits li {
    padding: 10px 10px 10px 36px;
    font-size: 13px;
  }
}

/* =========================================================
   SELLERS
========================================================= */
.sellers__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.sellers__copy {
  position: relative;
  z-index: 1;
}
.sellers__copy h2 {
  margin-bottom: 20px;
  max-width: 18ch;
}
.sellers__copy p { max-width: 50ch; color: var(--ink-soft); margin: 0 0 28px; font-size: 16px; }
.sellers__card .btn--solid { background: var(--ink); color: var(--lime); }
.sellers__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(260px, 36vw, 420px);
  aspect-ratio: 4 / 5;
  max-height: 480px;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sellers__visual img {
  display: block;
  filter: none;
}

/* =========================================================
   CONTACTO
========================================================= */
.contact__inner {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(24px, 6vw, 80px) var(--pad-x);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact__inner::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 255, 58, 0.55), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.contact__head { position: relative; max-width: 640px; margin-bottom: var(--head-gap); }
.contact__head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.contact__head p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 50ch;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  position: relative;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact__item:not(.contact__item--static):hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 14px 24px -16px rgba(10, 31, 23, 0.45);
}
.contact__item--static { cursor: default; }
.contact__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--lime);
  flex-shrink: 0;
}
.contact__meta { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.contact__meta strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact__meta span {
  font-size: 15px;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact__instagram:hover { color: var(--ink); border-color: var(--ink); }

.contact__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  min-width: 0;
}
.contact__form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.contact__form .field--full { grid-column: 1 / -1; }
.contact__form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact__form label span {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.6;
  margin-left: 4px;
}
.contact__form input,
.contact__form textarea {
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  outline: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  resize: vertical;
  min-height: 44px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.contact__form textarea { min-height: 120px; }
.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--ink);
  background: var(--white);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(10, 31, 23, 0.4); }
.contact__form input.is-invalid,
.contact__form textarea.is-invalid {
  border-color: var(--coral);
  background: rgba(255, 90, 60, 0.06);
}
.contact__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact__msg {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--leaf);
  min-height: 1.2em;
}
.contact__msg.is-error { color: var(--coral); }
.contact__msg.is-success { color: var(--leaf); }

.tn-form-frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
}

@media (max-width: 1100px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sellers__visual {
    min-height: clamp(220px, 55vw, 320px);
    max-height: none;
    aspect-ratio: 16 / 10;
  }
  .contact__inner { padding: 24px 18px; border-radius: var(--r-md); }
  .contact__inner::before { width: 220px; height: 220px; top: -80px; right: -80px; }
  .contact__form {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
  }
  .contact__item { padding: 12px 14px; gap: 12px; }
  .contact__icon { width: 36px; height: 36px; border-radius: 10px; }
  .contact__icon svg { width: 18px; height: 18px; }
  .contact__meta strong { font-size: 12px; }
  .contact__meta span { font-size: 14px; }
  .contact__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .contact__actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--cream-2);
  color: var(--ink);
  padding: var(--section-y) var(--pad-x) clamp(24px, 4vw, 32px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 48px;
  margin-bottom: 32px;
}
.footer__brand p { max-width: 36ch; color: var(--ink-soft); margin: 16px 0 0; }
.footer__col h4 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 15px;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--leaf); }

.footer__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(120px, 26vw, 400px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10, 31, 23, 0.1);
  user-select: none;
  margin-top: 20px;
}

.footer__legal {
  max-width: 1280px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform 0.25s var(--ease);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.06); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   ANIMATIONS (scroll reveal)
========================================================= */
[data-anim] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 1ms);
}
[data-anim="up"]   { transform: translateY(28px); }
[data-anim="fade"] { transform: none; }
[data-anim="words"] { transform: translateY(20px); }
[data-anim].is-in { opacity: 1; transform: none; }

/* badges: conservar inclinación con scroll reveal */
.hero__badge--1[data-anim="up"] { transform: translateY(28px) rotate(-8deg); }
.hero__badge--2[data-anim="up"] { transform: translateY(28px) rotate(7deg); }
.hero__badge--3[data-anim="up"] { transform: translateY(28px) rotate(-6deg); }
.hero__badge--1.is-in { transform: rotate(-8deg); }
.hero__badge--2.is-in { transform: rotate(7deg); }
.hero__badge--3.is-in { transform: rotate(-6deg); }

@media (min-width: 1081px) {
  .howto__clock {
    --howto-ring: clamp(228px, 32vw, 308px);
    --howto-r: calc(var(--howto-ring) * 0.9);
    min-height: calc(var(--howto-r) * 2.45);
  }
  .howto__clock-photo {
    width: clamp(120px, 16vw, 176px);
  }
  .howto__grid--clock .step {
    top: 50%;
    left: 50%;
    width: clamp(188px, 27%, 252px);
    padding: 14px 16px 16px;
    border-radius: var(--r-sm);
    z-index: 2;
  }
  .howto__grid--clock .step:nth-child(n) {
    top: 50%;
    left: 50%;
  }
  .howto__grid--clock .step:nth-child(1) { --dx: 0px; --dy: calc(var(--howto-r) * -1); }
  .howto__grid--clock .step:nth-child(2) { --dx: calc(var(--howto-r) * 0.866); --dy: calc(var(--howto-r) * -0.5); }
  .howto__grid--clock .step:nth-child(3) { --dx: calc(var(--howto-r) * 0.866); --dy: calc(var(--howto-r) * 0.5); }
  .howto__grid--clock .step:nth-child(4) { --dx: 0px; --dy: var(--howto-r); }
  .howto__grid--clock .step:nth-child(5) { --dx: calc(var(--howto-r) * -0.866); --dy: calc(var(--howto-r) * 0.5); }
  .howto__grid--clock .step:nth-child(6) { --dx: calc(var(--howto-r) * -0.866); --dy: calc(var(--howto-r) * -0.5); }
  .howto__grid--clock .step h3 {
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.2;
  }
  .howto__grid--clock .step p {
    font-size: 12px;
    line-height: 1.45;
    text-wrap: pretty;
  }
  .howto__grid--clock .step[data-anim="up"] {
    transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px) + 28px));
  }
  .howto__grid--clock .step.is-in {
    transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px)));
  }
  .howto__grid--clock .step.is-in:hover {
    transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px) - 4px));
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1080px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }

  .benefits {
    padding-bottom: calc(var(--section-y) + clamp(20px, 5vw, 36px));
  }
  .benefits__bg.life-photo--bg::after {
    background:
      linear-gradient(
        180deg,
        var(--white) 0%,
        color-mix(in oklab, var(--white) 55%, transparent) 14%,
        transparent 28%
      ),
      linear-gradient(
        180deg,
        rgba(245, 241, 234, 0.94) 0%,
        rgba(245, 241, 234, 0.82) 32%,
        rgba(255, 255, 255, 0.94) 68%,
        var(--white) 100%
      );
  }
  .products {
    padding-top: calc(var(--section-y) + clamp(8px, 2vw, 16px));
  }

  .howto__clock {
    min-height: 0;
    height: auto;
    margin-top: clamp(20px, 5vw, 28px);
    margin-inline: 0;
    padding: 0 0 0 22px;
  }
  .howto__clock-photo { display: none; }
  .howto__grid--clock {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    height: auto;
    padding-left: 18px;
    border-left: 2px solid color-mix(in oklab, var(--leaf) 45%, var(--line));
  }
  .howto__grid--clock .step:nth-child(n) {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .howto__grid--clock .step {
    position: relative;
    width: 100%;
    max-width: none;
    transform: none;
    border-radius: var(--r-md);
    text-align: left;
    padding: 16px 18px;
    background: var(--white);
  }
  .howto__grid--clock .step::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--leaf);
    border: 2px solid var(--paper);
    box-shadow: 0 0 0 2px color-mix(in oklab, var(--leaf) 35%, transparent);
    transform: translateY(-50%);
  }
  .howto__grid--clock .step h3 {
    font-size: 17px;
    margin: 0 0 6px;
  }
  .howto__grid--clock .step p {
    font-size: 14px;
    line-height: 1.5;
  }
  .howto__grid--clock .step[data-anim="up"] { transform: translateY(20px); }
  .howto__grid--clock .step.is-in { transform: none; }
  .howto__grid--clock .step.is-in:hover { transform: translateY(-2px); }
}

@media (max-width: 1180px) {
  .nav__cta .btn--ghost { display: none; }
}

@media (max-width: 1140px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
}

@media (max-width: 1080px) {
  .manifesto__layout {
    grid-template-columns: 1fr;
    padding: var(--section-inset) 0 var(--section-y);
  }
  .manifesto__content {
    padding: var(--section-y) var(--pad-x) 0;
  }
  .manifesto__aside {
    order: -1;
    min-height: clamp(280px, 55vw, 420px);
    width: 100%;
    max-width: none;
    margin-inline: 0;
    border-radius: 0;
  }
  .manifesto__aside::before {
    width: 100%;
    height: 40%;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent 0%, var(--paper) 100%);
  }

  .about__content {
    margin-top: clamp(-88px, -16vw, -140px);
    padding: clamp(28px, 6vw, 40px) var(--pad-x) var(--section-y);
    background: linear-gradient(
      180deg,
      transparent 0%,
      color-mix(in oklab, var(--paper) 82%, transparent) 10%,
      var(--paper) clamp(48px, 12vw, 72px)
    );
  }
  .about__title,
  .about__pull,
  .about__close {
    max-width: none !important;
  }
  .about__founders {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: none;
  }

  .ambassador {
    padding: clamp(36px, 8vw, 64px) 0;
  }
  .ambassador__inner.section-panel {
    padding: clamp(24px, 5vw, 40px) var(--pad-x);
  }
}

@media (max-width: 1000px) {
  .howto {
    margin-inline: 0;
    margin-bottom: clamp(32px, 8vw, 56px);
    padding-bottom: 0;
  }
  .howto + .about {
    margin-top: 0;
  }
  .howto__split {
    grid-template-columns: 1fr;
    margin-inline: 0;
  }
  .howto__split .section-panel {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    background: var(--paper);
    padding: clamp(24px, 6vw, 36px) clamp(18px, 4vw, 24px) clamp(28px, 7vw, 48px);
    overflow: visible;
  }
  .howto__split .section-panel::before {
    display: none;
  }
  .howto__side {
    min-height: clamp(260px, 50vw, 380px);
    width: 100%;
    max-width: none;
    margin-bottom: 0;
    border-radius: 0;
  }
  .howto__side::before {
    width: 100%;
    height: 35%;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 249, 244, 0.95) 100%);
  }
  .hero {
    --hero-h: calc(100dvh - var(--nav-h) - var(--ticker-h));
    height: var(--hero-h);
    max-height: var(--hero-h);
    padding: 0;
    min-height: var(--hero-h);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    position: relative;
    flex: 1;
    min-height: 0;
    max-height: 100%;
    height: 100%;
    gap: 0;
    overflow: hidden;
  }
  .hero__visual {
    position: relative;
    order: -1;
    width: 100%;
    flex: 0 1 38%;
    min-height: 0;
    max-height: 38%;
    height: auto;
    justify-content: stretch;
    flex-shrink: 1;
    margin-top: 0;
    overflow: hidden;
  }
  .hero__visual .life-photo--hero {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    margin-left: 0;
    border-radius: 0;
    background: transparent;
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, #000 11%, #000 82%, transparent 100%),
      linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
    mask-image:
      linear-gradient(180deg, transparent 0%, #000 11%, #000 82%, transparent 100%),
      linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
  .hero__visual .life-photo--hero img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .hero__visual .life-photo--hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.12) 18%, transparent 34%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.1) 14%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.1) 86%, rgba(255, 255, 255, 0.42) 100%),
      linear-gradient(180deg, transparent 0%, transparent 76%, rgba(255, 255, 255, 0.15) 86%, rgba(255, 255, 255, 0.45) 100%);
  }
  .hero__copy {
    flex: 1 1 0;
    min-height: 0;
    max-width: none;
    padding: clamp(16px, 3vh, 24px) clamp(16px, 4vw, 24px) clamp(10px, 1.8vh, 16px);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(4px, 0.8vh, 8px);
    overflow: hidden;
  }
  .hero__badge--1 {
    left: 4%;
    top: 14%;
    right: auto;
    bottom: auto;
  }
  .hero__badge--2 {
    right: 4%;
    left: auto;
    top: 28%;
    bottom: auto;
  }
  .hero__badge--3 {
    left: 4%;
    right: auto;
    bottom: 2%;
    top: auto;
  }
  .hero__badge--3[data-anim="up"] { transform: translateY(28px) rotate(-6deg); }
  .hero__badge--3.is-in { transform: rotate(-6deg); }
  .hero__title,
  .hero__lead {
    text-shadow: none;
  }
  .hero .eyebrow {
    margin: clamp(4px, 1vh, 10px) 0 0;
    font-size: 11px;
    letter-spacing: 0.14em;
    flex-shrink: 0;
  }
  .hero__title {
    font-size: clamp(32px, 8.8vw, 46px);
    margin: 0;
    line-height: 1.03;
    max-width: none;
    flex-shrink: 0;
  }
  .hero__lead {
    font-size: clamp(14px, 3.5vw, 17px);
    line-height: 1.4;
    margin: 0;
    max-width: none;
    flex: 0 1 auto;
    min-height: 0;
  }
  .hero__actions {
    gap: 8px;
    margin-top: clamp(10px, 1.6vh, 16px);
    flex-shrink: 0;
  }
  .hero__actions .btn--xl {
    padding: 12px 18px;
    font-size: 13px;
  }
  .hero__actions .btn--xl svg {
    width: 16px;
    height: 16px;
  }
  .sellers__card { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}

/* ---- Mobile performance: kill heavy infinite animations & filters ---- */
@media (max-width: 880px) {
  /* fixed full-screen blend overlay = constant repaint cost */
  .noise { display: none; }

  /* hero blobs: static washes + clip blur bleed on iOS */
  .blob {
    animation: none;
    filter: blur(40px);
    opacity: 0.35;
  }
  .blob--berry {
    right: -40px;
    left: auto;
    bottom: -100px;
    width: min(360px, 85vw);
    height: min(360px, 85vw);
    opacity: 0.14;
  }
  .blob--coral {
    right: -80px;
    opacity: 0.16;
  }

  /* hero halo: drop the conic-gradient spin (extremely expensive on mobile GPU) */
  .hero__halo {
    animation: none;
    filter: blur(8px);
    background: radial-gradient(circle at 50% 50%, rgba(212, 255, 58, 0.25), transparent 60%);
    opacity: 0.7;
  }

  /* whatsapp pulse glow: cheaper static shadow on mobile */
  .wa-float {
    animation: none;
    box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  }
}

@media (max-height: 700px) and (max-width: 1000px) {
  .hero {
    padding: 0;
  }
  .hero__visual {
    flex: 0 1 34%;
    max-height: 34%;
    margin-top: 0;
  }
  .hero__copy {
    padding: clamp(12px, 2.4vh, 18px) clamp(16px, 4vw, 24px) clamp(8px, 1.4vh, 12px);
    gap: clamp(6px, 1vh, 10px);
  }
  .hero__title {
    font-size: clamp(32px, 8.8vw, 44px);
  }
  .hero__lead {
    font-size: clamp(14px, 3.6vw, 17px);
  }
  .hero__actions .btn--xl {
    padding: 13px 18px;
    font-size: 13px;
  }
  .hero__badge {
    padding: 5px 8px;
    font-size: 9px;
  }
}

@media (max-width: 560px) {
  .products__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }

  .hero__visual {
    flex: 0 1 36%;
    max-height: 36%;
  }
  .hero__title {
    font-size: clamp(34px, 9vw, 46px);
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero__badge {
    padding: 8px 12px;
    font-size: 11px;
  }
  .hero__badge strong { font-size: 16px; }
  .hero__badge--label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
