/* ============================================================
   MIGA LAB — sitio del estudio
   Paleta Dirección C Híbrida
============================================================ */

/* ── CSS variables ─────────────────────────────────────────── */
:root {
  /* ═════ Paleta nueva — warm dark + corales (2026-04-24) ═════
     #261C16 espresso · #F26241 coral · #F29580 peach
     #A69A97 warm grey · #F22816 red pop                      */

  /* Semánticas */
  --cream:        #F5EEE9;   /* body bg — warm white */
  --cream-2:      #FAF4EE;   /* surface — cream tint claro */
  --cream-3:      #ECE3DA;   /* panel elevated — cream darker */
  --forest:       #261C16;   /* text primario — espresso */
  --forest-2:     #3A2A22;   /* text secundario */

  /* Dark mode variables para bloques premium puntuales (warranty, plan featured) */
  --espresso:     #261C16;
  --espresso-2:   #2E211A;
  --espresso-3:   #3A2A22;
  --on-dark:      #F5EEE9;
  --on-dark-soft: rgba(245, 238, 233, 0.65);
  --on-dark-mute: rgba(245, 238, 233, 0.16);
  --on-dark-line: rgba(245, 238, 233, 0.09);

  /* Deep accent (reemplaza al fg-green) */
  --fg-green:     #1A130F;   /* deeper espresso — footer/bandas */
  --fg-green-2:   #120C09;   /* deepest */

  /* Palette accents — NEW */
  --tomato:       #F22816;   /* red pop — CTA principal */
  --tomato-2:     #CE1E0E;
  --tomato-soft:  rgba(242, 40, 22, 0.16);

  --icy:          #F26241;   /* coral — LAMP + accents cálidos */
  --icy-2:        #D85034;
  --icy-soft:     rgba(242, 98, 65, 0.18);

  --sunshine:     #F29580;   /* peach — highlights suaves */
  --sunshine-soft:rgba(242, 149, 128, 0.18);

  --kiwi:         #A69A97;   /* warm grey — muted / neutral */
  --kiwi-2:       #8B7F7C;
  --kiwi-soft:    rgba(166, 154, 151, 0.18);

  /* Verde WhatsApp específico (solo para botones de WhatsApp) */
  --wa-green:     #25D366;
  --wa-green-2:   #1FB359;

  /* Alphas — warm white based para dark mode */
  --forest-a05:   rgba(38, 28, 22, 0.04);
  --forest-a10:   rgba(38, 28, 22, 0.08);
  --forest-a20:   rgba(38, 28, 22, 0.14);
  --forest-a40:   rgba(38, 28, 22, 0.28);
  --forest-a60:   rgba(38, 28, 22, 0.55);
  --tomato-a20:   rgba(242, 40, 22, 0.30);
  --cream-a80:    rgba(245, 238, 233, 0.92);

  /* Typography */
  --ff-display: 'Fraunces', 'Georgia', serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --easing:        cubic-bezier(0.4, 0, 0.2, 1);
  --easing-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:      180ms;
  --dur-base:      320ms;
  --dur-slow:      640ms;

  /* Layout */
  --container:     1200px;
  --gutter:        clamp(1rem, 4vw, 2rem);
  --section-pad:   clamp(4rem, 10vw, 8rem);
}

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--forest);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ol, ul { list-style: none; }
code { font-family: 'SF Mono', Menlo, monospace; font-size: 0.88em; padding: 0.1em 0.35em; background: var(--forest-a10); border-radius: 4px; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--forest);
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tomato);
}

.emph {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}

em {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Preview banner ────────────────────────────────────────── */
.preview-banner {
  background: var(--fg-green);
  color: #F5EEE9;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem var(--gutter);
  text-align: center;
  border-bottom: 1px solid var(--fg-green-2);
}
.preview-banner strong { color: var(--sunshine); font-weight: 600; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-a80);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--forest-a10);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 0.45rem;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 14, "SOFT" 50;
}
.brand__mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--tomato); color: var(--cream);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  position: relative;
  top: 6px;
}
.brand__name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.site-nav ul { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { font-size: 0.92rem; font-weight: 500; }
.site-nav a:hover { color: var(--tomato); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--easing), background var(--dur-base) var(--easing), color var(--dur-base) var(--easing), box-shadow var(--dur-base) var(--easing);
  white-space: nowrap;
  line-height: 1;
}
.btn--sm { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
.btn--big { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn--tomato {
  background: var(--tomato);
  color: var(--cream);
  box-shadow: 0 1px 0 var(--tomato-2) inset, 0 4px 14px var(--tomato-a20);
}
.btn--tomato:hover {
  background: var(--tomato-2);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 var(--tomato-2) inset, 0 8px 24px var(--tomato-a20);
}
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest-a20);
}
.btn--ghost:hover { border-color: var(--forest); background: var(--forest-a10); }

/* ── Process section ────────────────────────────────────────── */
.process {
  padding: var(--section-pad) 0 calc(var(--section-pad) * 1.2);
  position: relative;
}

.process__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.process__title {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin: 0.8rem 0 1.1rem;
}
.process__subcopy {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--forest-a60);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ── 3D Chooser stage ──────────────────────────────────────── */
.process__stage {
  position: relative;
  transition: opacity var(--dur-slow) var(--easing);
}
.process__stage[hidden] { display: none; }

.scene {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 1040px;
  margin-inline: auto;
  padding: 0 var(--gutter);
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

.island {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: transparent;
  cursor: pointer;
  transition: transform var(--dur-base) var(--easing-out), filter var(--dur-base) var(--easing);
  transform-style: preserve-3d;
}
.island:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 4px;
}

.island__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(var(--rot-y, -10deg));
  transition: transform var(--dur-slow) var(--easing-out);
  animation: floatBob 5.5s ease-in-out infinite;
}
.island--b .island__stage { --rot-y: 10deg; animation-delay: -2.75s; }

.island:hover .island__stage,
.island:focus-visible .island__stage {
  transform: rotateX(10deg) rotateY(calc(var(--rot-y, -10deg) * 0.5)) translateY(-8px);
}

@keyframes floatBob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

.island__pedestal {
  position: absolute;
  left: 50%; bottom: 18%;
  width: 78%; height: 28%;
  transform: translate(-50%, 0) rotateX(90deg);
  background:
    radial-gradient(ellipse at center, var(--forest-a40) 0%, var(--forest-a20) 40%, transparent 70%);
  filter: blur(4px);
}

.island__decor {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
}
.island__decor--a1 { width: 14px; height: 14px; top: 10%; right: 15%; background: var(--sunshine); transform: translateZ(40px); }
.island__decor--a2 { width: 8px; height: 8px; top: 25%; left: 12%; background: var(--tomato); transform: translateZ(60px); }
.island__decor--b1 { width: 12px; height: 12px; top: 12%; left: 18%; background: var(--kiwi); transform: translateZ(50px); }
.island__decor--b2 { width: 10px; height: 10px; top: 32%; right: 10%; background: var(--tomato); transform: translateZ(35px); border-radius: 2px; }

/* ─── Laptop (island A) ─── */
.island__object--laptop {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transform-style: preserve-3d;
}
.laptop {
  position: relative;
  width: 70%;
  transform-style: preserve-3d;
  transform: translateZ(30px);
}
.laptop__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--forest-2), var(--forest));
  border-radius: 8px 8px 2px 2px;
  border: 3px solid var(--forest-2);
  overflow: hidden;
  box-shadow: 0 8px 24px var(--forest-a40);
}
.laptop__base {
  height: 8px;
  background: linear-gradient(to bottom, var(--forest-2), #0a2012);
  border-radius: 0 0 10px 10px;
  margin: 0 -8%;
  position: relative;
}
.laptop__base::after {
  content: '';
  position: absolute;
  left: 38%; right: 38%; top: 2px;
  height: 2px;
  background: var(--forest-a60);
  border-radius: 2px;
}
.laptop__glitch {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, var(--tomato-a20) 3px 4px);
  mix-blend-mode: screen;
  animation: glitch 2.4s steps(30) infinite;
  opacity: 0.65;
}
@keyframes glitch {
  0%, 100% { transform: translateY(0); }
  10% { transform: translateY(-2px); }
  30% { transform: translateY(3px); }
  50% { transform: translateY(-1px); }
  70% { transform: translateY(2px); }
}
.laptop__error {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--tomato);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 12px var(--tomato-a20);
}
.laptop__line {
  position: absolute; height: 2px; background: var(--cream-a80); opacity: 0.18; border-radius: 1px;
}
.laptop__line--1 { top: 22%; left: 14%; right: 14%; }
.laptop__line--2 { top: 34%; left: 14%; right: 34%; }
.laptop__line--3 { top: 72%; left: 22%; right: 14%; }

/* ─── Blueprint (island B) ─── */
.island__object--blueprint {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transform-style: preserve-3d;
}
.blueprint {
  position: relative;
  width: 74%;
  aspect-ratio: 3 / 4;
  background: var(--icy);
  border: 2px solid var(--forest);
  border-radius: 6px;
  transform-style: preserve-3d;
  transform: translateZ(25px) rotateZ(-3deg);
  box-shadow: 0 12px 28px var(--forest-a20);
  overflow: hidden;
}
.blueprint__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--forest-a20) 1px, transparent 1px),
    linear-gradient(90deg, var(--forest-a20) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.9;
}
.blueprint__shape {
  position: absolute;
  transform-style: preserve-3d;
}
.blueprint__shape--1 {
  width: 32%; height: 18%;
  top: 14%; left: 16%;
  background: var(--tomato);
  border-radius: 4px;
  transform: translateZ(10px);
  box-shadow: 0 6px 14px var(--tomato-a20);
}
.blueprint__shape--2 {
  width: 24%; height: 24%;
  top: 38%; right: 18%;
  background: var(--sunshine);
  border-radius: 50%;
  transform: translateZ(18px);
  box-shadow: 0 6px 14px rgba(255, 201, 38, 0.35);
}
.blueprint__shape--3 {
  width: 38%; height: 14%;
  bottom: 22%; left: 18%;
  background: var(--forest);
  border-radius: 2px;
  transform: translateZ(8px);
}
.blueprint__pencil {
  position: absolute;
  width: 50%; height: 6px;
  top: 65%; right: -8%;
  background: linear-gradient(90deg, var(--sunshine) 0 70%, #e0a010 70% 82%, #444 82% 100%);
  transform: rotateZ(-18deg) translateZ(30px);
  border-radius: 2px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
.blueprint__pencil::after {
  content: '';
  position: absolute;
  right: -6px; top: -1px;
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid #222;
}

/* ─── Island captions ─── */
.island__caption {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.1rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: 0 6px 18px var(--forest-a40);
  transition: transform var(--dur-base) var(--easing-out), background var(--dur-base) var(--easing);
}
.island:hover .island__caption { background: var(--tomato); }
.island__label { font-family: var(--ff-display); font-variation-settings: "opsz" 14, "SOFT" 80; font-weight: 600; letter-spacing: -0.005em; }
.island__hint { font-size: 0.78rem; color: var(--cream-a80); letter-spacing: 0.02em; font-weight: 500; }
.island__arrow {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--cream); color: var(--forest);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform var(--dur-fast) var(--easing);
}
.island:hover .island__arrow { transform: translateX(4px); background: var(--sunshine); }

.scene__divider {
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: 1.4rem;
  color: var(--forest-a40);
  align-self: center;
}

/* ── Stage transitions ────────────────────────────────────── */
.process__stage[data-state="choosing-a"] .island--b,
.process__stage[data-state="choosing-b"] .island--a {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--easing), transform var(--dur-base) var(--easing);
}
.process__stage[data-state="choosing-a"] .island--a,
.process__stage[data-state="choosing-b"] .island--b {
  transform: scale(1.02);
}
.process__stage[data-state="choosing-a"] .scene__divider,
.process__stage[data-state="choosing-b"] .scene__divider {
  opacity: 0;
  transition: opacity var(--dur-fast) var(--easing);
}

/* ── Path timelines ───────────────────────────────────────── */
.path {
  animation: fadeIn var(--dur-slow) var(--easing-out) both;
}
.path[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.path__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  padding-top: 2rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  position: relative;
}
.path__back {
  position: absolute;
  top: 0; left: var(--gutter);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest-a60);
  padding: 0.4rem 0;
  transition: color var(--dur-base) var(--easing);
}
.path__back:hover { color: var(--tomato); }

.path__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-top: 0.7rem;
}
.path__subcopy {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--forest-a60);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  max-width: 1040px;
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--easing-out), transform 0.7s var(--easing-out);
}
.step.is-visible { opacity: 1; transform: translateY(0); }
.step:nth-child(even) { direction: rtl; }
.step:nth-child(even) > * { direction: ltr; }

.step__number {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  color: var(--tomato);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  letter-spacing: -0.04em;
}
.step__title {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 0.6rem 0 0.8rem;
}
.step__copy {
  grid-column: 1;
  grid-row: 3;
  color: var(--forest-a60);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 44ch;
}
.step__anim {
  grid-column: 2;
  grid-row: 1 / -1;
  aspect-ratio: 200 / 140;
  width: 100%;
  background: var(--cream-2);
  border: 1px solid var(--forest-a10);
  border-radius: 18px;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.step__anim svg { width: 100%; height: 100%; }

/* ── SVG animations ──────────────────────────────────────── */

/* 01. scanner */
.anim--scanner .anim-pages rect { fill: var(--cream); stroke: var(--forest-a20); stroke-width: 1; }
.anim--scanner .anim-scanline { fill: var(--tomato); opacity: 0.85; filter: drop-shadow(0 0 6px var(--tomato)); }
.step.is-visible .anim--scanner .anim-scanline {
  animation: scannerMove 2.6s var(--easing-out) infinite;
}
@keyframes scannerMove {
  0%   { transform: translateY(10px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(130px); opacity: 0; }
}
.step.is-visible .anim--scanner .anim-pages rect:nth-child(1) { animation: pageScan 2.6s var(--easing) infinite; animation-delay: 0.2s; }
.step.is-visible .anim--scanner .anim-pages rect:nth-child(2) { animation: pageScan 2.6s var(--easing) infinite; animation-delay: 0.7s; }
.step.is-visible .anim--scanner .anim-pages rect:nth-child(3) { animation: pageScan 2.6s var(--easing) infinite; animation-delay: 1.2s; }
.step.is-visible .anim--scanner .anim-pages rect:nth-child(4) { animation: pageScan 2.6s var(--easing) infinite; animation-delay: 1.7s; }
@keyframes pageScan {
  0%, 100% { fill: var(--cream); }
  50%      { fill: var(--kiwi); opacity: 0.35; }
}

/* 02. redirects */
.anim--redirects .url-old { fill: var(--forest-a20); }
.anim--redirects .url-new { fill: var(--kiwi); }
.anim--redirects .url-new--rewrite { fill: var(--sunshine); }
.anim--redirects .url-new--home { fill: var(--tomato); }
.anim--redirects .url-arrow { stroke: var(--forest); stroke-width: 1.5; fill: none; stroke-dasharray: 3 3; }
.anim--redirects .url-tag { font-family: 'SF Mono', Menlo, monospace; font-size: 6px; fill: var(--forest); font-weight: 700; letter-spacing: 0.08em; }
.step.is-visible .anim--redirects .url-row {
  opacity: 0;
  animation: urlReveal 0.6s var(--easing-out) forwards;
}
.step.is-visible .anim--redirects .url-row--1 { animation-delay: 0.2s; }
.step.is-visible .anim--redirects .url-row--2 { animation-delay: 0.5s; }
.step.is-visible .anim--redirects .url-row--3 { animation-delay: 0.8s; }
@keyframes urlReveal {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 03. design */
.anim--design .wf-block { fill: var(--forest-a20); }
.anim--design .wf-block--hero { fill: var(--icy); }
.anim--design .wf-dot { fill: var(--tomato); }
.step.is-visible .anim--design .wf-block {
  animation: wfPulse 2.4s var(--easing) infinite;
}
.step.is-visible .anim--design .wf-block--1 { animation-delay: 0s; }
.step.is-visible .anim--design .wf-block--2 { animation-delay: 0.15s; }
.step.is-visible .anim--design .wf-block--3 { animation-delay: 0.3s; }
.step.is-visible .anim--design .wf-block--hero { animation-delay: 0.45s; }
@keyframes wfPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* 04. code */
.anim--code .code-line { fill: var(--forest-a40); }
.anim--code .code-line--1 { fill: var(--tomato); }
.anim--code .code-line--2 { fill: var(--kiwi); }
.anim--code .code-cursor { fill: var(--tomato); }
.step.is-visible .anim--code .code-line {
  transform-origin: left;
  animation: codeType 2.8s var(--easing-out) infinite;
}
.step.is-visible .anim--code .code-line--1 { animation-delay: 0s; }
.step.is-visible .anim--code .code-line--2 { animation-delay: 0.3s; }
.step.is-visible .anim--code .code-line--3 { animation-delay: 0.6s; }
.step.is-visible .anim--code .code-line--4 { animation-delay: 0.9s; }
.step.is-visible .anim--code .code-line--5 { animation-delay: 1.2s; }
.step.is-visible .anim--code .code-line--6 { animation-delay: 1.5s; }
.step.is-visible .anim--code .code-line--7 { animation-delay: 1.8s; }
.step.is-visible .anim--code .code-cursor { animation: cursorBlink 0.8s steps(2) infinite; }
@keyframes codeType {
  0%   { transform: scaleX(0); }
  40%  { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}
@keyframes cursorBlink {
  0%, 50%  { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* 05. dns */
.anim--dns .dns-node { stroke: var(--forest); stroke-width: 1.5; fill: var(--cream); }
.anim--dns .dns-node--old { fill: var(--forest-a20); }
.anim--dns .dns-node--new { fill: var(--kiwi); }
.anim--dns .dns-label { font-family: 'SF Mono', Menlo, monospace; font-size: 6px; font-weight: 700; fill: var(--forest); letter-spacing: 0.08em; }
.anim--dns .dns-label--new { fill: var(--forest); }
.anim--dns .dns-arrow { stroke: var(--tomato); stroke-width: 2; stroke-dasharray: 90; stroke-dashoffset: 90; }
.anim--dns .dns-arrowhead { fill: var(--tomato); opacity: 0; }
.step.is-visible .anim--dns .dns-arrow { animation: dnsArrow 2.6s var(--easing-out) infinite; }
.step.is-visible .anim--dns .dns-arrowhead { animation: dnsHead 2.6s var(--easing-out) infinite; }
@keyframes dnsArrow {
  0%   { stroke-dashoffset: 90; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
@keyframes dnsHead {
  0%, 48%  { opacity: 0; }
  50%, 100% { opacity: 1; }
}

/* 06. timeline */
.anim--timeline .tl-line { stroke: var(--forest-a20); stroke-width: 2; }
.anim--timeline .tl-dot { fill: var(--kiwi); stroke: var(--forest); stroke-width: 1.5; }
.anim--timeline .tl-label { font-family: 'SF Mono', Menlo, monospace; font-size: 7px; font-weight: 600; fill: var(--forest-a60); }
.step.is-visible .anim--timeline .tl-dot { animation: tlPulse 1.8s var(--easing) infinite; }
.step.is-visible .anim--timeline .tl-dot:nth-child(1) { animation-delay: 0s; }
.step.is-visible .anim--timeline .tl-dot:nth-child(2) { animation-delay: 0.45s; }
.step.is-visible .anim--timeline .tl-dot:nth-child(3) { animation-delay: 0.9s; }
.step.is-visible .anim--timeline .tl-dot:nth-child(4) { animation-delay: 1.35s; }
@keyframes tlPulse {
  0%, 100% { r: 6; }
  50%      { r: 8.5; }
}

/* 07. chat (path B, step 1) */
.anim--chat .chat-bubble { fill: var(--icy); stroke: var(--forest); stroke-width: 1.2; }
.anim--chat .chat-bubble--2 { fill: var(--cream-2); }
.anim--chat .chat-bubble--3 { fill: var(--kiwi); opacity: 0.6; }
.step.is-visible .anim--chat .chat-bubble {
  opacity: 0;
  animation: chatPop 0.5s var(--easing-out) forwards;
}
.step.is-visible .anim--chat .chat-bubble--1 { animation-delay: 0.2s; }
.step.is-visible .anim--chat .chat-bubble--2 { animation-delay: 0.6s; }
.step.is-visible .anim--chat .chat-bubble--3 { animation-delay: 1s; }
@keyframes chatPop {
  0%   { opacity: 0; transform: scale(0.8); }
  60%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

/* 08. blocks (path B, step 2) */
.anim--blocks .block { fill: var(--forest-a20); }
.anim--blocks .block--1 { fill: var(--tomato); }
.anim--blocks .block--2 { fill: var(--sunshine); }
.anim--blocks .block--3 { fill: var(--kiwi); }
.anim--blocks .block--4 { fill: var(--icy-2); }
.step.is-visible .anim--blocks .block {
  transform-origin: center;
  opacity: 0;
  animation: blockDrop 0.5s var(--easing-out) forwards;
}
.step.is-visible .anim--blocks .block--1 { animation-delay: 0s; }
.step.is-visible .anim--blocks .block--2 { animation-delay: 0.15s; }
.step.is-visible .anim--blocks .block--3 { animation-delay: 0.3s; }
.step.is-visible .anim--blocks .block--4 { animation-delay: 0.45s; }
@keyframes blockDrop {
  from { opacity: 0; transform: translateY(-10px) scaleY(0.5); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* 09. ab (path B, step 3) */
.anim--ab .ab-variant { stroke: var(--forest); stroke-width: 1.5; }
.anim--ab .ab-variant--a { fill: var(--cream); }
.anim--ab .ab-variant--b { fill: var(--icy); }
.anim--ab .ab-label { font-family: var(--ff-display); font-size: 24px; font-weight: 700; fill: var(--forest); }
.anim--ab .ab-check { fill: var(--kiwi); stroke: var(--forest); stroke-width: 1.5; }
.anim--ab .ab-check-mark { stroke: var(--forest); stroke-width: 1.8; fill: none; }
.step.is-visible .anim--ab .ab-variant--a { animation: abDim 2.6s var(--easing) infinite; }
.step.is-visible .anim--ab .ab-check, .step.is-visible .anim--ab .ab-check-mark { opacity: 0; animation: abCheckIn 0.4s var(--easing-out) 1.3s forwards; }
@keyframes abDim {
  0%, 50%   { opacity: 1; }
  60%, 100% { opacity: 0.35; }
}
@keyframes abCheckIn {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}

/* 10. checklist (path B, step 4) */
.anim--checklist .check-item circle { fill: var(--kiwi); stroke: var(--forest); stroke-width: 1.2; }
.anim--checklist .check-item rect { fill: var(--forest-a40); }
.anim--checklist .check-mark { stroke: var(--forest); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.step.is-visible .anim--checklist .check-item {
  opacity: 0;
  animation: checkReveal 0.4s var(--easing-out) forwards;
}
.step.is-visible .anim--checklist .check-item--1 { animation-delay: 0.2s; }
.step.is-visible .anim--checklist .check-item--2 { animation-delay: 0.5s; }
.step.is-visible .anim--checklist .check-item--3 { animation-delay: 0.8s; }
.step.is-visible .anim--checklist .check-item--4 { animation-delay: 1.1s; }
.step.is-visible .anim--checklist .check-item--5 { animation-delay: 1.4s; }
@keyframes checkReveal {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* 11. globe (path B, step 5) */
.anim--globe .globe-sphere { fill: var(--icy); stroke: var(--forest); stroke-width: 1.5; }
.anim--globe .globe-line { fill: none; stroke: var(--forest-a40); stroke-width: 1; }
.anim--globe .globe-pop { fill: var(--tomato); filter: drop-shadow(0 0 6px var(--tomato)); }
.step.is-visible .anim--globe .globe-pop { animation: popPulse 2s var(--easing) infinite; transform-origin: center; transform-box: fill-box; }
.step.is-visible .anim--globe .globe-pop--1 { animation-delay: 0s; }
.step.is-visible .anim--globe .globe-pop--2 { animation-delay: 0.4s; }
.step.is-visible .anim--globe .globe-pop--3 { animation-delay: 0.8s; }
.step.is-visible .anim--globe .globe-pop--4 { animation-delay: 1.2s; }
@keyframes popPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0.5; }
}

/* 12. calendar (path B, step 6) */
.anim--calendar .cal-bg { fill: var(--cream); stroke: var(--forest); stroke-width: 1.5; }
.anim--calendar .cal-header { fill: var(--tomato); }
.anim--calendar .cal-days rect { fill: var(--forest-a20); }
.anim--calendar .cal-mark { fill: var(--kiwi); stroke: var(--forest); stroke-width: 1.5; }
.anim--calendar .cal-mark-check { stroke: var(--forest); stroke-width: 1.8; fill: none; stroke-linecap: round; }
.step.is-visible .anim--calendar .cal-mark,
.step.is-visible .anim--calendar .cal-mark-check {
  transform-origin: 128px 102px;
  transform-box: fill-box;
  animation: calPop 1.8s var(--easing-out) infinite;
}
@keyframes calPop {
  0%, 80%, 100% { transform: scale(1); }
  90%           { transform: scale(1.25); }
}

/* ── Closure card ─────────────────────────────────────────── */
.closure {
  max-width: 760px;
  margin: clamp(3.5rem, 7vw, 5rem) auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3.5vw, 2.4rem) clamp(1.6rem, 4vw, 2.8rem);
  background: var(--cream-2);
  border: 3px solid var(--kiwi);
  border-radius: 22px;
  text-align: center;
  position: relative;
}
.closure::before {
  content: '✓';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  background: var(--kiwi);
  color: var(--forest);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(154, 188, 5, 0.4);
}
.closure__label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--kiwi-2);
  margin-bottom: 0.8rem;
}
.closure__text {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-variation-settings: "opsz" 72, "SOFT" 60;
  line-height: 1.4;
  color: var(--forest);
}
.closure__text strong { font-weight: 700; color: var(--tomato); }

/* ── Path CTAs + meta ─────────────────────────────────────── */
.path__ctas {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.path__meta {
  text-align: center;
  color: var(--forest-a60);
  font-size: 0.92rem;
  margin-top: 0.8rem;
}
.path__meta strong { color: var(--forest); font-weight: 700; }

/* ── Sticky mini-CTA ──────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.6rem);
  right: clamp(1rem, 3vw, 1.6rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px var(--forest-a40);
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--dur-base) var(--easing-out), opacity var(--dur-base) var(--easing-out), background var(--dur-base) var(--easing);
  pointer-events: none;
  max-width: calc(100vw - 2rem);
}
.sticky-cta[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta:hover { background: var(--tomato); }
.sticky-cta strong { color: var(--sunshine); font-weight: 700; }
.sticky-cta__icon {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  background: var(--tomato);
  border-radius: 50%;
  font-size: 0.92rem;
  color: var(--cream);
  transition: transform var(--dur-fast) var(--easing);
}
.sticky-cta:hover .sticky-cta__icon { transform: translateX(3px); background: var(--sunshine); color: var(--forest); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 0 4rem;
  background: var(--fg-green);
  color: rgba(245, 238, 233, 0.7);
  text-align: center;
  font-size: 0.88rem;
  margin-top: 0;
  border-top: 1px solid var(--fg-green-2);
}
.site-footer em { color: var(--sunshine); font-style: italic; }
.site-footer .tag {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  background: var(--fg-green-2);
  color: rgba(245, 238, 233, 0.65);
  border-radius: 999px;
  font-size: 0.72rem;
  margin-left: 0.4rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .scene {
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(0.5rem, 2vw, 1.25rem);
    max-width: none;
    padding: 0 0.75rem;
  }
  .scene__divider {
    transform: none;
    font-size: 1rem;
    align-self: center;
  }
  .island {
    padding: 0.5rem 0.25rem;
    gap: 0.85rem;
  }
  .island__stage { max-width: 170px; margin-inline: auto; }
  .island__caption {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.7rem 0.75rem;
    text-align: center;
    font-size: 0.88rem;
    border-radius: 18px;
    width: 100%;
  }
  .island__hint { font-size: 0.7rem; }
  .island__arrow {
    width: 24px; height: 24px;
    margin-top: 0.15rem;
  }
  .island:hover .island__arrow { transform: translateY(2px); }

  .step {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    direction: ltr !important;
  }
  .step:nth-child(even) { direction: ltr; }
  .step__number { grid-row: auto; }
  .step__title { grid-row: auto; }
  .step__copy { grid-row: auto; }
  .step__anim { grid-column: 1; grid-row: auto; }
}

@media (max-width: 560px) {
  .site-nav ul { gap: 0.8rem; }
  .site-nav a:not(.btn) { display: none; }
  .path__back { position: static; display: inline-block; margin-bottom: 0.8rem; }
  .sticky-cta__text { font-size: 0.84rem; }
}

/* ── Reduced motion ───────────────────────────────────────── */
/* ────────────────────────────────────────────────────────
   HERO LAMP — estilo Aceternity adaptado (dark + Icy)
──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #1A130F;
  color: #F5EEE9;
  border-bottom: 1px solid var(--forest-a05);
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero--lamp {
  /* hook; estilos base van en .hero */
}

/* ─── Escena Lamp ─── */
.lamp {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* Posición del "foco" — ajustable */
.lamp {
  --lamp-top: 42%;
  --lamp-width: clamp(18rem, 42vw, 34rem);
  --lamp-blade-height: clamp(12rem, 26vw, 22rem);
  --lamp-color: #F26241;        /* coral */
  --lamp-color-hot: #FF8C5C;    /* core más cálido */
}

/* Blades (conos conic-gradient que forman la V) */
.lamp__blade {
  position: absolute;
  top: var(--lamp-top);
  height: var(--lamp-blade-height);
  width: var(--lamp-width);
  filter: blur(2rem);
  overflow: visible;
  opacity: 0;
  animation: lampFadeIn 1.2s var(--easing-out) 0.25s forwards;
}
.lamp__blade--left {
  right: 50%;
  background: conic-gradient(
    from 70deg at center top,
    var(--lamp-color) 0%,
    transparent 48%,
    transparent 100%
  );
  transform-origin: center top;
}
.lamp__blade--right {
  left: 50%;
  background: conic-gradient(
    from 290deg at center top,
    transparent 0%,
    transparent 52%,
    var(--lamp-color) 100%
  );
  transform-origin: center top;
}
@keyframes lampFadeIn {
  from { opacity: 0; width: 12rem; }
  to   { opacity: 1; width: var(--lamp-width); }
}

/* Máscara negra que recorta la mitad inferior de los blades
   para que el cono quede abierto hacia abajo y no hacia arriba */
.lamp__mask-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--lamp-top);
  background: #060805;
  z-index: 2;
  pointer-events: none;
}

/* Glow central (bulbo) */
.lamp__glow {
  position: absolute;
  top: var(--lamp-top);
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(12rem, 28vw, 22rem);
  height: clamp(5rem, 10vw, 9rem);
  background: var(--lamp-color);
  opacity: 0.35;
  filter: blur(3.5rem);
  border-radius: 50%;
  z-index: 3;
  animation: lampPulse 5s ease-in-out infinite;
}
@keyframes lampPulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.5;  transform: translate(-50%, -50%) scale(1.05); }
}

/* Línea horizontal iluminada (el filamento del lamp) */
.lamp__line {
  position: absolute;
  top: var(--lamp-top);
  left: 50%;
  transform: translateX(-50%);
  width: var(--lamp-width);
  height: 2px;
  background: var(--lamp-color-hot);
  box-shadow:
    0 0 10px var(--lamp-color-hot),
    0 0 24px var(--lamp-color),
    0 0 48px rgba(242, 98, 65, 0.5);
  z-index: 4;
  animation: lampFadeIn 1.2s var(--easing-out) 0.1s both;
}

/* Glow superior difuso (ambient de techo) */
.lamp__ceiling {
  position: absolute;
  top: calc(var(--lamp-top) - clamp(6rem, 14vw, 12rem));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(18rem, 48vw, 38rem);
  height: clamp(7rem, 16vw, 13rem);
  background: var(--lamp-color);
  opacity: 0.18;
  filter: blur(4.5rem);
  border-radius: 50%;
  z-index: 1;
}

/* ─── Contenido hero (debajo de la lamp) ─── */
.hero__content {
  position: relative;
  z-index: 10;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
  flex-shrink: 0;
  margin-top: auto;
}
.hero__content--center {
  text-align: center;
  margin-inline: auto;
  max-width: 820px;
}
.eyebrow--center {
  display: block;
  text-align: center;
  color: var(--icy);
  text-shadow: 0 0 12px rgba(242, 98, 65, 0.45);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  margin: 0.7rem 0 1.5rem;
  color: #F5EEE9;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero__title em {
  color: var(--icy);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 85, "wght" 500;
  display: inline-block;
  text-shadow:
    0 0 24px rgba(242, 98, 65, 0.6),
    0 0 4px rgba(255, 140, 92, 0.9);
}
.hero__line3 {
  color: rgba(245, 238, 233, 0.55);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
}

.hero__subcopy {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(245, 238, 233, 0.65);
  line-height: 1.5;
  margin-bottom: 2.2rem;
}

.hero__ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero__ctas--center { justify-content: center; }

/* ─── Contenido hero ─── */
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  flex-shrink: 0;
}
.hero__content--center {
  text-align: center;
  margin-inline: auto;
  max-width: 820px;
}
.eyebrow--center {
  display: block;
  text-align: center;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  margin: 0.7rem 0 1.5rem;
  color: var(--forest);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero__title em {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 85, "wght" 500;
  display: inline-block;
}
.hero__line3 {
  color: var(--forest-a60);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 400;
}

.hero__subcopy {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--forest-a60);
  line-height: 1.5;
  margin-bottom: 2.2rem;
}

.hero__ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero__ctas--center { justify-content: center; }

/* ─── Stats debajo ─── */
.hero__stats {
  margin-top: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.stat {
  padding: 1.4rem 1.2rem;
  background: var(--cream-2);
  border-radius: 16px;
  border: 1px solid var(--forest-a10);
}
.stat--tomato { background: var(--tomato-soft); border-color: var(--tomato); }
.stat--icy    { background: var(--icy-soft); border-color: var(--icy-2); }
.stat--sunshine { background: var(--sunshine-soft); border-color: var(--sunshine); }

.stat dt {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-a60);
  margin-bottom: 0.4rem;
}
.stat dd {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--forest);
  font-variation-settings: "opsz" 72, "SOFT" 50;
  letter-spacing: -0.02em;
}
.stat--tomato dd { color: var(--tomato); }

/* ────────────────────────────────────────────────────────
   CASOS — Forest Green full-bleed
──────────────────────────────────────────────────────── */
.cases {
  background: var(--fg-green);
  color: #F5EEE9;
  padding: var(--section-pad) 0;
  position: relative;
}
.cases::before,
.cases::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--fg-green-2);
}
.cases::before { top: 0; }
.cases::after { bottom: 0; }

.cases__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.eyebrow--light { color: var(--sunshine); }
.cases__title {
  color: var(--cream);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin: 0.7rem 0 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.cases__title em {
  color: var(--sunshine);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.cases__subcopy {
  color: rgba(243, 232, 204, 0.65);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

/* ─── Gallery horizontal (shadcn-gallery4 inspired) ─── */
.cases__gallery-wrap {
  position: relative;
  padding: 0 var(--gutter);
  margin-bottom: 2.5rem;
}

.cases__gallery {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cases__gallery::-webkit-scrollbar { display: none; }

.case-card {
  flex: 0 0 clamp(300px, 60vw, 460px);
  scroll-snap-align: center;
  background: #F5EEE9;
  color: #261C16;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--easing-out), box-shadow var(--dur-base) var(--easing);
  box-shadow: 0 2px 0 var(--fg-green-2), 0 18px 40px rgba(0, 0, 0, 0.55);
  position: relative;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 0 var(--forest-2), 0 24px 48px rgba(0, 0, 0, 0.38);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  z-index: 3;
  transition: height 0.25s var(--easing);
}
.case-card--sunshine::before { background: var(--sunshine); }
.case-card--tomato::before   { background: var(--tomato); }
.case-card--icy::before      { background: var(--icy-2); }
.case-card--kiwi::before     { background: var(--kiwi); }
.case-card:hover::before { height: 7px; }

.case-card__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #E8DFD7;
  overflow: hidden;
  border-bottom: 1px solid rgba(38, 28, 22, 0.1);
}
.case-card__screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--easing-out);
}
.case-card:hover img { transform: scale(1.04); }

.case-card__browser-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: rgba(232, 223, 215, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(38, 28, 22, 0.15);
  z-index: 2;
}
.case-card__browser-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
  background: var(--forest-a20);
}
.case-card__browser-bar span:first-child  { background: var(--tomato); }
.case-card__browser-bar span:nth-child(2) { background: var(--sunshine); }
.case-card__browser-bar span:nth-child(3) { background: var(--kiwi); }
.case-card__browser-bar em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(38, 28, 22, 0.6);
  margin-left: 12px;
  font-family: 'SF Mono', Menlo, monospace;
  letter-spacing: -0.02em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

.case-card__body {
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-card__rubro {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(38, 28, 22, 0.6);
  margin-bottom: 0.55rem;
}
.case-card--sunshine .case-card__rubro { color: var(--icy-2); }
.case-card--kiwi .case-card__rubro     { color: var(--kiwi-2); }
.case-card--tomato .case-card__rubro   { color: var(--tomato); }
.case-card--icy .case-card__rubro      { color: var(--icy-2); }

.case-card__name {
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  line-height: 1.1;
  margin-bottom: 0.55rem;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  color: #261C16;
}

.case-card__meta {
  font-size: 0.9rem;
  color: rgba(38, 28, 22, 0.65);
  line-height: 1.5;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.case-card__link {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tomato);
  letter-spacing: -0.01em;
  display: inline-block;
  transition: transform var(--dur-fast) var(--easing);
}
.case-card:hover .case-card__link { transform: translateX(4px); }

/* Nav arrows */
.cases__nav {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #F3E8CC;
  color: #18542A;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--easing), background var(--dur-base) var(--easing);
}
.cases__nav svg { width: 22px; height: 22px; }
.cases__nav:hover {
  background: var(--sunshine);
  transform: translateY(-50%) scale(1.08);
}
.cases__nav:disabled { opacity: 0.35; cursor: not-allowed; }
.cases__nav:disabled:hover {
  transform: translateY(-50%);
  background: #F5EEE9;
}
.cases__nav--prev { left: 0.5rem; }
.cases__nav--next { right: 0.5rem; }
@media (min-width: 1240px) {
  .cases__nav--prev { left: -1rem; }
  .cases__nav--next { right: -1rem; }
}
@media (max-width: 760px) {
  .cases__nav { display: none; }
  .case-card { flex: 0 0 85vw; }
}

.cases__cta {
  text-align: center;
}
.btn--ghost-light {
  color: var(--cream);
  border-color: rgba(243, 232, 204, 0.3);
}
.btn--ghost-light:hover {
  border-color: var(--sunshine);
  color: var(--sunshine);
  background: transparent;
}

/* ────────────────────────────────────────────────────────
   EQUIPO
──────────────────────────────────────────────────────── */
.team {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.team__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.team__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0.7rem 0 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.team__title em {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.team__subcopy {
  color: var(--forest-a60);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.member {
  padding: 2rem 1.6rem;
  border-radius: 22px;
  transition: transform var(--dur-base) var(--easing-out), box-shadow var(--dur-base) var(--easing);
  border: 1px solid var(--forest-a10);
  position: relative;
}
.member--icy      { background: var(--icy-soft); }
.member--sunshine { background: var(--sunshine-soft); }
.member--kiwi     { background: var(--kiwi-soft); }
.member--tomato   { background: var(--tomato-soft); }

.member:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--forest-a10);
}

.member__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  background: var(--cream);
  border: 2px solid var(--forest);
}
.member__avatar svg {
  width: 42px;
  height: 42px;
  stroke: var(--forest);
  stroke-width: 2;
  fill: none;
}
.member--tomato .member__avatar { border-color: var(--tomato); background: var(--cream); }
.member--tomato .member__avatar svg { stroke: var(--tomato); }
.member--kiwi .member__avatar svg { stroke: var(--kiwi-2); }
.member--sunshine .member__avatar { border-color: var(--forest); }

.member__name {
  font-size: 1.25rem;
  font-variation-settings: "opsz" 24, "SOFT" 40;
  margin-bottom: 0.35rem;
  color: var(--forest);
}

.member__role {
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  color: var(--tomato);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.member--sunshine .member__role { color: var(--forest); }

.member__bio {
  font-size: 0.92rem;
  color: var(--forest-a60);
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────
   CONTACTO
──────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.contact__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.contact__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  margin: 0.8rem 0 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.contact__title em {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.contact__subcopy {
  color: var(--forest-a60);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.contact__card {
  background: var(--cream-2);
  border: 1px solid var(--forest-a10);
  border-radius: 26px;
  padding: clamp(1.6rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}
.contact__card::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  width: 48px; height: 48px;
  border-top: 3px solid var(--tomato);
  border-left: 3px solid var(--tomato);
  border-radius: 26px 0 0 0;
  pointer-events: none;
}
.contact__card::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  width: 48px; height: 48px;
  border-bottom: 3px solid var(--kiwi);
  border-right: 3px solid var(--kiwi);
  border-radius: 0 0 26px 0;
  pointer-events: none;
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}
.field input,
.field textarea {
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--forest-a20);
  border-radius: 10px;
  color: var(--forest);
  transition: border-color var(--dur-base) var(--easing), box-shadow var(--dur-base) var(--easing);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--tomato);
  box-shadow: 0 0 0 3px var(--tomato-soft);
}

.field-group {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.field-group legend {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.55rem;
}
.radio-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border: 1.5px solid var(--forest-a20);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--dur-base) var(--easing);
  background: var(--cream);
  color: var(--forest);
}
.radio-opt:has(input:checked) {
  background: var(--tomato);
  color: #F5EEE9;
  border-color: var(--tomato);
}
.radio-opt input { accent-color: var(--tomato); }
.radio-opt input { position: absolute; opacity: 0; pointer-events: none; }
.radio-opt::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--easing);
}
.radio-opt:has(input:checked)::before {
  background: var(--sunshine);
  border-color: var(--sunshine);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.form__note {
  font-size: 0.9rem;
  color: var(--kiwi-2);
  font-weight: 600;
  min-height: 1.2em;
}
.form__note.is-error { color: var(--tomato); }

.form__legal {
  font-size: 0.78rem;
  color: var(--forest-a60);
  line-height: 1.4;
}

/* Info column */
.contact__info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.3rem;
  background: var(--wa-green);
  color: #FFFFFF;
  border-radius: 18px;
  text-decoration: none;
  transition: transform var(--dur-base) var(--easing-out), box-shadow var(--dur-base) var(--easing);
  border: 2px solid var(--wa-green-2);
}
.whatsapp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}
.whatsapp-card__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: #FFFFFF;
  color: var(--wa-green);
  border-radius: 50%;
  display: grid; place-items: center;
}
.whatsapp-card__icon svg { width: 28px; height: 28px; }
.whatsapp-card__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.25rem;
}
.whatsapp-card__number {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-variation-settings: "opsz" 24, "SOFT" 60;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.whatsapp-card__hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.3rem;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.3rem;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--forest-a10);
}
.contact__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}
.contact__list-label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-a60);
  font-size: 0.72rem;
  flex-shrink: 0;
}
.contact__list-value {
  color: var(--forest);
  text-align: right;
  flex-grow: 1;
}

/* Contacto sin formulario: canales directos */
.contact__channels-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.contact__channels {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.4rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 1.2rem);
}
.ch-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  background: rgba(245, 238, 233, 0.06);
  border: 1px solid rgba(245, 238, 233, 0.12);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--easing-out),
              background var(--dur-base) var(--easing-out),
              border-color var(--dur-base) var(--easing-out);
}
.ch-card:hover,
.ch-card:focus-visible {
  transform: translateY(-2px);
  background: rgba(245, 238, 233, 0.09);
  border-color: rgba(245, 238, 233, 0.22);
}
.ch-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 238, 233, 0.08);
  color: var(--cream);
}
.ch-card__icon svg { width: 22px; height: 22px; }
.ch-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}
.ch-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tomato);
}
.ch-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  word-break: break-word;
}
.ch-card__hint {
  font-size: 0.78rem;
  color: rgba(245, 238, 233, 0.6);
  margin-top: 0.2rem;
}
.ch-card--wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: rgba(255, 255, 255, 0.18);
}
.ch-card--wa .ch-card__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.ch-card--wa .ch-card__label { color: rgba(255, 255, 255, 0.95); }
.ch-card--wa .ch-card__value { color: #fff; }
.ch-card--wa .ch-card__hint  { color: rgba(255, 255, 255, 0.85); }
.ch-card--wa:hover { transform: translateY(-2px); filter: brightness(1.05); }

@media (max-width: 760px) {
  .contact__channels { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────
   Responsive — nuevas secciones
──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid  { grid-template-columns: repeat(2, 1fr); }
  .contact__card { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .cases__grid { grid-template-columns: 1fr; }
  .team__grid  { grid-template-columns: 1fr; }
  .hero-shape--circle { width: 120px; height: 120px; right: -30px; top: 4%; }
  .hero-shape--square { width: 60px; height: 60px; top: 78%; }
  .hero-shape--triangle { border-left-width: 40px; border-right-width: 40px; border-bottom-width: 70px; }
  .contact__list li { flex-direction: column; gap: 0.15rem; }
  .contact__list-value { text-align: left; }
}

/* ════════════════════════════════════════════════════════════
   HERO STUDIO — 3 browser mocks 3D + word cycler kinético
════════════════════════════════════════════════════════════ */
.hero--studio {
  padding: clamp(3rem, 8vw, 5.5rem) 0 0;
  background: #1A130F;
  min-height: min(100vh, 920px);
}

/* Ambient blobs al fondo */
.hero__ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero__ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
  animation: blobPulse 14s ease-in-out infinite;
}
.hero__ambient-blob--1 {
  width: 46vw; height: 46vw;
  background: var(--icy);
  top: -14%; right: -10%;
  animation-delay: 0s;
}
.hero__ambient-blob--2 {
  width: 36vw; height: 36vw;
  background: var(--tomato);
  bottom: -18%; left: -8%;
  animation-delay: -6s;
  opacity: 0.3;
}
.hero__ambient-blob--3 {
  width: 26vw; height: 26vw;
  background: var(--sunshine);
  top: 38%; left: 32%;
  opacity: 0.22;
  animation-delay: -3s;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%      { transform: scale(1.14) translate(-3%, 3%); }
}

/* Grid 2 columnas */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__text {
  position: relative;
  max-width: 580px;
}
.hero__text .eyebrow {
  color: var(--icy);
  text-shadow: 0 0 14px rgba(242, 98, 65, 0.35);
}
.hero__text .hero__title {
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 0.98;
  color: #F5EEE9;
  margin: 0.8rem 0 1.3rem;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
}

/* Word cycler */
.cycler {
  display: inline-grid;
  grid-template-areas: "stack";
  align-items: baseline;
  vertical-align: baseline;
}
.cycler__word {
  grid-area: stack;
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.9, 0.3, 1),
    transform 0.55s cubic-bezier(0.2, 0.9, 0.3, 1);
  color: var(--icy);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90, "wght" 500;
  text-shadow:
    0 0 28px rgba(242, 98, 65, 0.55),
    0 0 6px rgba(255, 140, 92, 0.9);
  white-space: nowrap;
  will-change: opacity, transform;
}
.cycler__word--active {
  opacity: 1;
  transform: translateY(0);
}

.hero__text .hero__subcopy {
  max-width: 500px;
  margin: 0 0 1.4rem;
  color: rgba(245, 238, 233, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
}

/* Hero signals — anchoring de precio + cupo + entrega */
.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.6rem;
  max-width: 540px;
}
.hero__signal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--cream-2, rgba(245, 238, 233, 0.08));
  border: 1px solid var(--forest-a10, rgba(245, 238, 233, 0.15));
  font-size: 0.85rem;
  color: var(--forest, #261C16);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform 0.18s var(--easing-out, cubic-bezier(0.2, 0.9, 0.3, 1)),
              border-color 0.18s var(--easing),
              background 0.18s var(--easing);
}
.hero__signal:hover {
  transform: translateY(-1px);
  border-color: var(--tomato);
  background: var(--cream);
}
.hero__signal strong {
  font-weight: 700;
  color: var(--tomato);
}
.hero__signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kiwi, #9ABC05);
  box-shadow: 0 0 0 3px rgba(154, 188, 5, 0.18);
  flex-shrink: 0;
}
.hero__signal--warn .hero__signal-dot {
  background: var(--tomato, #D52518);
  box-shadow: 0 0 0 3px rgba(213, 37, 24, 0.18);
  animation: pulseDot 2.6s ease-in-out infinite;
}
.hero__signal--warn strong { color: var(--tomato); }
.hero__signal--mute {
  cursor: default;
}
.hero__signal--mute .hero__signal-dot {
  background: var(--forest-a40);
  box-shadow: none;
}
.hero__signal--mute strong { color: var(--forest); }
@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(213, 37, 24, 0.18); }
  50%      { transform: scale(1.18); box-shadow: 0 0 0 6px rgba(213, 37, 24, 0.05); }
}
@media (max-width: 560px) {
  .hero__signals { gap: 0.4rem; margin-bottom: 1.3rem; }
  .hero__signal { font-size: 0.78rem; padding: 0.42rem 0.7rem; }
}

/* Stage 3D */
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  perspective: 1400px;
  transform-style: preserve-3d;
  --px: 0deg;
  --py: 0deg;
  transform: rotateX(var(--py)) rotateY(var(--px));
}
.hero__stage-floor {
  position: absolute;
  bottom: -8%;
  left: 12%;
  right: 12%;
  height: 26%;
  background: radial-gradient(ellipse at center, rgba(242, 98, 65, 0.35), transparent 70%);
  filter: blur(40px);
  transform: translateZ(-120px);
  z-index: 0;
}

/* Mocks */
.mock {
  position: absolute;
  background: #F5EEE9;
  color: #261C16;
  border-radius: 12px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 6px 14px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 238, 233, 0.06);
}

/* Composición tipo fan: mock-2 al frente centro, 1 atrás-izq-arriba, 3 atrás-der-abajo */
.mock--1 {
  top: 2%; left: -4%;
  width: 48%;
  transform: rotateY(-22deg) rotateX(8deg) translate3d(0, 0, -30px);
  animation: mockFloat1 7.5s ease-in-out infinite;
  z-index: 3;
}
.mock--2 {
  top: 20%; left: 20%;
  width: 62%;
  transform: rotateY(0deg) rotateX(-2deg) translate3d(0, 0, 100px);
  animation: mockFloat2 9s ease-in-out infinite;
  animation-delay: -2s;
  z-index: 5;
}
.mock--3 {
  bottom: 2%; right: -4%;
  width: 50%;
  transform: rotateY(18deg) rotateX(-8deg) translate3d(0, 0, 20px);
  animation: mockFloat3 8s ease-in-out infinite;
  animation-delay: -4s;
  z-index: 4;
}

@keyframes mockFloat1 {
  0%, 100% { transform: rotateY(-22deg) rotateX(8deg) translate3d(0, 0, -30px); }
  50%      { transform: rotateY(-22deg) rotateX(8deg) translate3d(0, -12px, -30px); }
}
@keyframes mockFloat2 {
  0%, 100% { transform: rotateY(0deg) rotateX(-2deg) translate3d(0, 0, 100px); }
  50%      { transform: rotateY(0deg) rotateX(-2deg) translate3d(0, -16px, 100px); }
}
@keyframes mockFloat3 {
  0%, 100% { transform: rotateY(18deg) rotateX(-8deg) translate3d(0, 0, 20px); }
  50%      { transform: rotateY(18deg) rotateX(-8deg) translate3d(0, 14px, 20px); }
}

/* Browser bar */
.mock__bar {
  height: 26px;
  background: rgba(38, 28, 22, 0.05);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  border-bottom: 1px solid rgba(38, 28, 22, 0.08);
}
.mock__bar span {
  width: 8px; height: 8px; border-radius: 50%;
}
.mock__bar span:nth-child(1) { background: var(--tomato); }
.mock__bar span:nth-child(2) { background: var(--icy); }
.mock__bar span:nth-child(3) { background: var(--sunshine); }
.mock__bar em {
  font-style: normal;
  font-size: 0.62rem;
  color: rgba(38, 28, 22, 0.6);
  margin-left: 10px;
  font-family: 'SF Mono', Menlo, monospace;
  letter-spacing: -0.01em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 140px;
}

/* Real-screenshot mock: imagen ocupa todo el body, sin padding */
.mock__body--shot {
  padding: 0;
  gap: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-2);
}
.mock__body--shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Mock 1 landing content */
.mock__body--landing .mock__hero-title {
  height: 16px;
  background: #261C16;
  border-radius: 3px;
  width: 75%;
}
.mock__line {
  height: 7px;
  background: rgba(38, 28, 22, 0.2);
  border-radius: 2px;
}
.mock__line--short { width: 58%; }
.mock__row {
  display: flex;
  gap: 6px;
  margin-top: 3px;
}
.mock__cta {
  height: 18px;
  border-radius: 4px;
  background: rgba(38, 28, 22, 0.12);
  width: 55px;
}
.mock__cta--primary { background: var(--tomato); }
.mock__cta--full { width: 100%; }
.mock__hero-img {
  margin-top: 5px;
  height: 56px;
  background: linear-gradient(135deg, var(--icy), var(--sunshine));
  border-radius: 5px;
}

/* Mock 2 grid */
.mock__body--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 12px;
}
.mock__card {
  aspect-ratio: 1.3 / 1;
  border-radius: 5px;
}
.mock__card--1 { background: rgba(242, 98, 65, 0.18); border: 1px solid var(--icy); }
.mock__card--2 { background: rgba(242, 149, 128, 0.2); border: 1px solid var(--sunshine); }
.mock__card--3 { background: rgba(242, 40, 22, 0.16); border: 1px solid var(--tomato); }
.mock__card--4 { background: rgba(38, 28, 22, 0.06); border: 1px solid rgba(38, 28, 22, 0.22); }

/* Mock 3 form */
.mock__body--form {
  padding: 14px;
  gap: 8px;
}
.mock__input {
  height: 20px;
  background: rgba(38, 28, 22, 0.06);
  border: 1px solid rgba(38, 28, 22, 0.15);
  border-radius: 4px;
}
.mock__textarea {
  height: 42px;
  background: rgba(38, 28, 22, 0.06);
  border: 1px solid rgba(38, 28, 22, 0.15);
  border-radius: 4px;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(245, 238, 233, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
  animation: scrollHintBob 2.6s ease-in-out infinite;
  pointer-events: none;
}
.hero__scroll-hint svg { width: 12px; height: 18px; display: block; }
@keyframes scrollHintBob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50%      { transform: translate(-50%, 6px); opacity: 0.95; }
}

/* Responsive hero studio */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__stage {
    max-width: 420px;
    margin: 0.5rem auto 1rem;
    width: 100%;
  }
  .mock__body { min-height: 120px; }
}
@media (max-width: 560px) {
  .hero__stage { max-width: 320px; }
  .hero__scroll-hint { display: none; }
  .hero--studio { min-height: auto; padding-bottom: 2rem; }
}

/* ════════════════════════════════════════════════════════════
   MANIFIESTO — sección light (crea respiro entre dark sections)
════════════════════════════════════════════════════════════ */
.manifesto {
  background: #F5EEE9;
  color: #261C16;
  padding: var(--section-pad) 0;
  position: relative;
  border-top: 1px solid rgba(38, 28, 22, 0.08);
  border-bottom: 1px solid rgba(38, 28, 22, 0.08);
}
.manifesto__wrap {
  max-width: 960px;
}
.manifesto .eyebrow { color: var(--tomato); }
.manifesto__title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.022em;
  color: #261C16;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  margin: 0.8rem 0 1.5rem;
  max-width: 740px;
}
.manifesto__title em {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.manifesto__body {
  max-width: 640px;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}
.manifesto__body p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(38, 28, 22, 0.78);
  margin-bottom: 1rem;
}
.manifesto__body p:last-child { margin-bottom: 0; }

.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(38, 28, 22, 0.12);
}
.pillar {
  position: relative;
}
.pillar__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--icy);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.pillar:nth-child(2) .pillar__num { color: var(--tomato); }
.pillar:nth-child(3) .pillar__num { color: var(--sunshine); }

.pillar__title {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-variation-settings: "opsz" 72, "SOFT" 50;
  color: #261C16;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.pillar p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(38, 28, 22, 0.65);
}

@media (max-width: 760px) {
  .manifesto__pillars { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ════════════════════════════════════════════════════════════
   FAQ — sección light con accordion details/summary
════════════════════════════════════════════════════════════ */
.faq {
  background: #F5EEE9;
  color: #261C16;
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(38, 28, 22, 0.08);
  border-bottom: 1px solid rgba(38, 28, 22, 0.08);
}
.faq__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq .eyebrow { color: var(--tomato); }
.faq__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin: 0.8rem 0 1rem;
  color: #261C16;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  line-height: 1.05;
}
.faq__title em {
  color: var(--tomato);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 90;
}
.faq__subcopy {
  color: rgba(38, 28, 22, 0.6);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(38, 28, 22, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color var(--dur-base) var(--easing),
    background var(--dur-base) var(--easing),
    box-shadow var(--dur-base) var(--easing);
}
.faq-item[open] {
  border-color: var(--tomato);
  background: rgba(242, 40, 22, 0.04);
  box-shadow: 0 6px 20px rgba(242, 40, 22, 0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
  color: #261C16;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--dur-fast) var(--easing);
  font-family: var(--ff-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-item summary::after {
  content: '+';
  font-family: var(--ff-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--tomato);
  transition: transform var(--dur-base) var(--easing-out);
  flex-shrink: 0;
  font-weight: 400;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--tomato); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 2px;
  border-radius: 4px;
}
.faq-item__body {
  padding: 0 1.4rem 1.35rem;
}
.faq-item__body p {
  color: rgba(38, 28, 22, 0.72);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 720px;
}

@media (max-width: 560px) {
  .faq-item summary { padding: 1rem 1.1rem; font-size: 1rem; }
  .faq-item summary::after { font-size: 1.4rem; }
  .faq-item__body { padding: 0 1.1rem 1.2rem; }
}

/* ════════════════════════════════════════════════════════════
   Casos · Antes y Después
════════════════════════════════════════════════════════════ */
.cases {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem);
  color: var(--forest);
  position: relative;
}
.cases__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.cases__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.cases__title em {
  font-style: italic;
  color: var(--sunshine);
}
.cases__subcopy {
  color: var(--forest-a60);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

.cases__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 2.8rem);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--forest-a60);
  font-style: italic;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 1.6rem;
}
.case--featured {
  grid-column: 1 / -1;
}
@media (min-width: 1180px) {
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .case--featured { grid-column: 1 / -1; }
}

.case__screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.case__shot {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-3);
  border: 1px solid var(--forest-a10);
  transition: transform var(--dur-base) var(--easing-out), border-color var(--dur-base) var(--easing-out);
}
.case__shot:hover {
  transform: translateY(-2px);
  border-color: var(--forest-a20);
}
.case__shot-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.case__shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.9);
}
.case__shot--before .case__shot-frame img {
  filter: grayscale(0.55) saturate(0.6) brightness(0.92);
}
.case__shot-tag {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--cream);
  color: var(--forest);
  border: 1px solid var(--forest-a20);
}
.case__shot--before .case__shot-tag {
  background: var(--cream);
  color: var(--kiwi);
  border-color: var(--kiwi-soft);
}
.case__shot--after .case__shot-tag {
  background: var(--tomato);
  color: var(--forest);
  border-color: var(--tomato);
}

@media (max-width: 720px) {
  .case__screens { grid-template-columns: 1fr; }
}

.case__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.case__link--accent {
  color: var(--tomato);
  font-weight: 700;
}
.case__link--accent:hover { color: var(--sunshine); }

.case {
  background: var(--cream-2);
  border: 1px solid var(--forest-a10);
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tomato);
}
.case--sunshine::before { background: var(--sunshine); }
.case--icy::before { background: #9ED1D4; }
.case--tomato::before { background: var(--tomato); }
.case--kiwi::before { background: #B6C97A; }

.case__head {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.case__rubro {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunshine);
  margin: 0;
  font-weight: 600;
}
.case__name {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0;
  color: var(--forest);
}
.case__sub {
  font-size: 0.92rem;
  color: var(--forest-a60);
  line-height: 1.45;
  margin: 0.15rem 0 0;
}

.case__screen {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-3);
  border: 1px solid var(--forest-a10);
  aspect-ratio: 3 / 2;
  transition: transform var(--dur-base) var(--easing-out);
}
.case__screen:hover { transform: translateY(-2px); }
.case__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.case__browser-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  background: rgba(38, 28, 22, 0.85);
  backdrop-filter: blur(6px);
}
.case__browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-a20);
}
.case__browser-bar span:nth-child(1) { background: var(--tomato); }
.case__browser-bar span:nth-child(2) { background: var(--sunshine); }
.case__browser-bar span:nth-child(3) { background: #B6C97A; }
.case__browser-bar em {
  font-style: normal;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  color: var(--forest-a60);
  margin-left: 0.5rem;
}

.case__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.2rem;
}
.case__col {
  background: var(--cream);
  border: 1px solid var(--forest-a10);
  border-radius: 10px;
  padding: 0.9rem 0.95rem 1rem;
  position: relative;
}
.case__col--before { border-top: 2px solid var(--kiwi); }
.case__col--after { border-top: 2px solid var(--tomato); }
.case__col-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.55rem;
}
.case__col--before .case__col-label { color: var(--kiwi); }
.case__col--after .case__col-label { color: var(--tomato); }
.case__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.case__col li {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--forest-a60);
  padding-left: 1rem;
  position: relative;
}
.case__col--before li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--kiwi);
  font-weight: 700;
}
.case__col--after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tomato);
  font-weight: 700;
  font-size: 0.85rem;
}

.case__metric {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--tomato-soft), transparent);
  border-left: 3px solid var(--tomato);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-top: 0.2rem;
}
.case__metric-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
  color: var(--tomato);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.025em;
  flex-shrink: 0;
}
.case__metric-label {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--forest-a60);
  margin: 0;
}

.case__link {
  font-size: 0.92rem;
  color: var(--sunshine);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
  transition: color var(--dur-base) var(--easing-out);
}
.case__link:hover { color: var(--tomato); }

@media (max-width: 560px) {
  .case { padding: 1.3rem 1.15rem 1.2rem; }
  .case__compare { grid-template-columns: 1fr; gap: 0.6rem; }
  .case__metric-num { font-size: 1.85rem; }
}

.cases__cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* Hint de swipe (solo mobile) */
.cases__hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-a60);
  margin: 0 auto clamp(1rem, 3vw, 1.5rem);
  opacity: 0.7;
}
.cases__hint-arrow {
  display: inline-block;
  animation: cases-hint-bounce 2.4s ease-out infinite;
  will-change: transform;
}

@keyframes cases-hint-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* Conclusión final */
.cases__sumario {
  max-width: 760px;
  margin: clamp(1.6rem, 4vw, 2.4rem) auto 0;
  text-align: center;
}
.cases__sumario-copy {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.55;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  color: var(--forest-a80, var(--forest));
  margin: 0;
}

/* Carrusel horizontal en mobile (catálogo deslizable) */
@media (max-width: 760px) {
  .cases__hint { display: block; }

  .cases__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cases__grid::-webkit-scrollbar { display: none; }

  .case,
  .case--featured {
    grid-column: auto;
    flex: 0 0 92%;
    min-width: 92%;
    max-width: 92%;
    scroll-snap-align: start;
  }

  /* En mobile escondemos los listados largos para que el caso entre en pantalla */
  .case__compare { display: none; }
}

/* ════════════════════════════════════════════════════════════
   Pricing · Inversión
════════════════════════════════════════════════════════════ */
.pricing {
  background: var(--cream-2);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  color: var(--forest);
  position: relative;
}
.pricing__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.pricing__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.pricing__title em {
  font-style: italic;
  color: var(--tomato);
}
.pricing__subcopy {
  color: var(--forest-a60);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.plan {
  background: var(--cream);
  border: 1px solid var(--forest-a10);
  border-radius: 16px;
  padding: 1.8rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: transform var(--dur-base) var(--easing-out), border-color var(--dur-base) var(--easing-out);
}
.plan:hover {
  transform: translateY(-3px);
  border-color: var(--forest-a20);
}
.plan--featured {
  border: 1.5px solid var(--tomato);
  background: linear-gradient(180deg, var(--cream-3), var(--cream));
  box-shadow: 0 12px 40px -20px var(--tomato-a20);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tomato);
  color: var(--forest);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan__head {
  border-bottom: 1px solid var(--forest-a10);
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.plan__name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0;
  color: var(--forest);
  font-weight: 600;
}
.plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.2rem 0;
}
.plan__price-prefix {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-a60);
}
.plan__price-num {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 90, "wght" 600;
  color: var(--forest);
  letter-spacing: -0.025em;
  line-height: 1;
}
.plan--featured .plan__price-num { color: var(--sunshine); }
.plan__price--custom .plan__price-num {
  font-size: 1.5rem;
  color: var(--sunshine);
}
.plan__delivery {
  font-size: 0.85rem;
  color: var(--forest-a60);
  margin: 0;
  line-height: 1.4;
}
.plan__pitch {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--forest-a60);
  margin: 0;
}
.plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan__list li {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--forest);
  padding-left: 1.3rem;
  position: relative;
}
.plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--tomato);
  font-weight: 700;
}
.plan--featured .plan__list li::before { color: var(--sunshine); }
.plan__exclude {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--kiwi);
  margin: 0.3rem 0 0;
  padding: 0.7rem 0.9rem;
  background: var(--cream-3);
  border-radius: 8px;
  border-left: 2px solid var(--kiwi-2);
}
.btn--full {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing__finep {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-size: 0.85rem;
  color: var(--forest-a60);
  line-height: 1.6;
  max-width: 720px;
}

/* ════════════════════════════════════════════════════════════
   Warranty · Garantías
════════════════════════════════════════════════════════════ */
.warranty {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  color: var(--forest);
  border-top: 1px solid var(--forest-a10);
}
.warranty__wrap { text-align: center; }
.warranty__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  margin: 0.4rem 0 clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}
.warranty__title em {
  font-style: italic;
  color: var(--sunshine);
}

.warranty__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.4rem;
  text-align: left;
}

.guarantee {
  background: var(--cream-2);
  border: 1px solid var(--forest-a10);
  border-radius: 14px;
  padding: 1.5rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}
.guarantee__num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tomato);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}
.guarantee__title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0;
  color: var(--forest);
}
.guarantee__copy {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--forest-a60);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   Capacity · Cupos
════════════════════════════════════════════════════════════ */
.capacity {
  background: var(--cream-2);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  color: var(--forest);
}
.capacity__wrap { text-align: center; }
.capacity__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.capacity__title em {
  font-style: italic;
  color: var(--tomato);
}
.capacity__subcopy {
  color: var(--forest-a60);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto clamp(2rem, 4vw, 2.8rem);
  max-width: 620px;
}

.capacity__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1rem;
  max-width: 1080px;
}
.capacity-slot {
  background: var(--cream);
  border: 1px solid var(--forest-a10);
  border-radius: 12px;
  padding: 1.3rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.capacity-slot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--forest-a20);
}
.capacity-slot--full::before { background: var(--kiwi); }
.capacity-slot--low::before { background: var(--tomato); }
.capacity-slot--mid::before { background: var(--sunshine); }
.capacity-slot--open::before { background: #B6C97A; }

.capacity-slot__month {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest-a60);
  margin: 0;
}
.capacity-slot__status {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 0;
  color: var(--forest);
  font-weight: 600;
}
.capacity-slot--full .capacity-slot__status { color: var(--kiwi); }
.capacity-slot--low .capacity-slot__status { color: var(--tomato); }
.capacity-slot--mid .capacity-slot__status { color: var(--sunshine); }
.capacity-slot--open .capacity-slot__status { color: #B6C97A; }

.capacity-slot__detail {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--forest-a60);
  margin: 0;
}

.capacity__cta {
  margin-top: clamp(2rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.capacity__note {
  font-size: 0.82rem;
  color: var(--forest-a60);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   CAMINO B · Hero claro + bloques dark puntuales
   El hero queda CLARO. Warranty, plan featured y capacity
   son los únicos bloques dark como sello "premium".
════════════════════════════════════════════════════════════ */

/* Hero · ahora claro */
.hero,
.hero--studio {
  background: var(--cream);
  color: var(--forest);
  border-bottom: 1px solid var(--forest-a10);
  min-height: auto;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero__text .eyebrow,
.hero .eyebrow { color: var(--tomato); text-shadow: none; }
.hero__text .hero__title,
.hero__title { color: var(--forest); }
.hero__title em { color: var(--tomato); text-shadow: none; }
.hero__text .hero__subcopy,
.hero__subcopy { color: var(--forest-a70, rgba(38, 28, 22, 0.78)); }
.cycler__word { color: var(--tomato); }

/* Stats sobre fondo claro · cards en cream-2 */
.stat {
  background: var(--cream-2);
  border-color: var(--forest-a10);
}
.stat dt { color: var(--forest-a60); }
.stat dd { color: var(--forest); }
.stat--tomato { background: var(--tomato-soft); border-color: var(--tomato); }
.stat--tomato dd { color: var(--tomato); }
.stat--icy { background: var(--sunshine-soft); border-color: var(--sunshine); }
.stat--sunshine { background: var(--cream-3); border-color: var(--forest-a20); }

.hero__scroll-hint { color: var(--forest-a60); }

/* Manifesto en cream tint para crear ritmo claro entre hero y proceso */
.manifesto { background: var(--cream-2) !important; color: var(--forest) !important; }
.manifesto__title { color: var(--forest); }
.manifesto__title em { color: var(--tomato); }
.manifesto__body p { color: var(--forest-a60); }

/* Process · sobre cream */
.process { background: var(--cream); color: var(--forest); }
.process__title { color: var(--forest); }
.process__title em { color: var(--tomato); }
.process__subcopy { color: var(--forest-a60); }
.path__title { color: var(--forest); }
.path__subcopy { color: var(--forest-a60); }
.step__title { color: var(--forest); }
.step__copy { color: var(--forest-a60); }

/* Step content wrapper · agrupa number/title/copy juntos en una columna */
.step__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: center;
}
.step__content .step__number {
  grid-column: auto;
  grid-row: auto;
  margin-bottom: 0.5rem;
}
.step__content .step__title {
  grid-column: auto;
  grid-row: auto;
  margin: 0 0 0.4rem;
}
.step__content .step__copy {
  grid-column: auto;
  grid-row: auto;
}
.step {
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
}
.step__anim {
  grid-column: 2 !important;
  grid-row: auto !important;
  align-self: center !important;
}
.step:nth-child(even) {
  direction: ltr !important;
}
.step:nth-child(even) .step__content {
  grid-column: 2;
  order: 2;
}
.step:nth-child(even) .step__anim {
  grid-column: 1 !important;
  order: 1;
}
@media (max-width: 760px) {
  .step:nth-child(even) .step__content,
  .step:nth-child(even) .step__anim { order: unset; grid-column: auto !important; }
}

/* Plan badge "MÁS ELEGIDO" · contraste sobre tomato */
.plan__badge {
  color: var(--on-dark) !important;
  background: var(--tomato) !important;
}

/* Plan featured · asegurar contraste de TODO el texto interno */
.plan--featured,
.plan--featured * { color: var(--on-dark); }
.plan--featured .plan__price-num { color: var(--sunshine) !important; }
.plan--featured .plan__price-prefix,
.plan--featured .plan__delivery,
.plan--featured .plan__pitch { color: var(--on-dark-soft); }
.plan--featured .plan__list li::before { color: var(--sunshine); }
.plan--featured .btn--tomato { color: var(--on-dark) !important; }
.plan--featured .plan__head { border-color: var(--on-dark-line); }

/* Plan custom · alineación con los otros 3 */
.plan {
  display: flex;
  flex-direction: column;
}
.plan__list {
  flex: 1 1 auto;
}
.plan__exclude {
  margin-top: auto !important;
}
.plan .btn--full {
  margin-top: 1rem;
}
@media (min-width: 1100px) {
  .pricing__grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (min-width: 760px) and (max-width: 1099px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ════════════════════════════════════════════════════════════
   PROCESO · Paleta sage para descomprimir
   Fondo casi blanco + verde sage como acento.
   Tomato se mantiene solo en CTAs para coherencia comercial.
════════════════════════════════════════════════════════════ */
.process {
  background: #FAFAF7 !important;
  color: #261C16 !important;
}
.process__title { color: #261C16 !important; }
.process__title em {
  color: #7BA098 !important;
  font-style: italic;
}
.process__subcopy { color: rgba(38, 28, 22, 0.6) !important; }
.process .eyebrow { color: #7BA098 !important; }

.path__title { color: #261C16 !important; }
.path__subcopy { color: rgba(38, 28, 22, 0.6) !important; }
.path .eyebrow { color: #7BA098 !important; }
.path__back { color: #7BA098 !important; }
.path__back:hover { color: #5A8079 !important; }
.path__meta { color: rgba(38, 28, 22, 0.55) !important; }

.step__number { color: #7BA098 !important; }
.step__title { color: #261C16 !important; }
.step__title .emph { color: #F22816 !important; }
.step__copy { color: rgba(38, 28, 22, 0.65) !important; }
.step__copy code {
  background: rgba(123, 160, 152, 0.14);
  color: #5A8079;
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.92em;
}

/* Animaciones SVG dentro de los steps · sage en lugar de tomato */
.step__anim svg .anim-pages rect,
.step__anim svg .url-old,
.step__anim svg .wf-block,
.step__anim svg .code-line,
.step__anim svg .check-item rect:not(:first-child),
.step__anim svg .cal-bg,
.step__anim svg .ab-pill,
.step__anim svg .tl-line {
  fill: rgba(123, 160, 152, 0.18);
}
.step__anim svg .anim-scanline { fill: #7BA098; }
.step__anim svg .url-arrow,
.step__anim svg .url-tag,
.step__anim svg .url-new--keep,
.step__anim svg .url-new--rewrite,
.step__anim svg .url-new--home {
  fill: #7BA098;
  stroke: #7BA098;
}
.step__anim svg .wf-block--hero,
.step__anim svg .wf-dot,
.step__anim svg .code-cursor,
.step__anim svg .check-mark,
.step__anim svg .ab-check,
.step__anim svg .ab-check-mark,
.step__anim svg .dns-node--new,
.step__anim svg .dns-arrow,
.step__anim svg .dns-arrowhead,
.step__anim svg .tl-dot,
.step__anim svg .cal-mark,
.step__anim svg .cal-mark-check {
  fill: #7BA098;
  stroke: #7BA098;
}
.step__anim svg .dns-node--old { fill: rgba(123, 160, 152, 0.25); }

/* Islands del chooser · sage en hover */
.island__caption {
  background: #261C16 !important;
  color: #FAFAF7 !important;
}
.island:hover .island__caption {
  background: #7BA098 !important;
  color: #FAFAF7 !important;
}
.island__hint { color: rgba(250, 250, 247, 0.78) !important; }
.island__arrow {
  background: #FAFAF7 !important;
  color: #261C16 !important;
}
.island__decor--a1 { background: #7BA098 !important; }
.island__decor--a2 { background: #F22816 !important; }
.island__decor--b1 { background: #7BA098 !important; }
.island__decor--b2 { background: #F22816 !important; }

/* Closure box · sage como anchor */
.closure {
  background: rgba(123, 160, 152, 0.08) !important;
  border: 1px solid rgba(123, 160, 152, 0.2) !important;
  color: #261C16 !important;
}
.closure__label { color: #7BA098 !important; }
.closure__text strong { color: #5A8079 !important; }

/* CTAs del proceso · ghost en sage en lugar de espresso */
.process .btn--ghost,
.path__ctas .btn--ghost {
  color: #7BA098 !important;
  border-color: #7BA098 !important;
}
.process .btn--ghost:hover,
.path__ctas .btn--ghost:hover {
  background: rgba(123, 160, 152, 0.08) !important;
  border-color: #5A8079 !important;
  color: #5A8079 !important;
}

/* FAQ y Contact en cream tint para alternar */
.faq { background: var(--cream-2) !important; color: var(--forest) !important; }
.faq-item { background: var(--cream); border-color: var(--forest-a10); }
.faq-item summary { color: var(--forest); }
.faq__title { color: var(--forest); }
.faq__title em { color: var(--tomato); }
.faq__subcopy { color: var(--forest-a60); }

.contact { background: var(--cream) !important; color: var(--forest) !important; }
.contact__title { color: var(--forest); }
.contact__title em { color: var(--tomato); }
.contact__subcopy { color: var(--forest-a60); }
.contact__card { background: var(--cream-2); border-color: var(--forest-a10); }
.field label { color: var(--forest); }
.field input, .field textarea {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--forest-a20);
}
.contact__list { color: var(--forest); }
.contact__list-label { color: var(--forest-a60); }
.contact__list-value { color: var(--forest); }

/* ════════════════════════════════════════════════════════════
   Bloques DARK puntuales (sello premium)
════════════════════════════════════════════════════════════ */

/* Warranty — sello dark premium */
.warranty {
  background: var(--espresso);
  color: var(--on-dark);
  border-top: none;
}
.warranty__title { color: var(--on-dark); }
.warranty__title em { color: var(--sunshine); }
.warranty .eyebrow { color: var(--sunshine); }
.guarantee {
  background: var(--espresso-2);
  border-color: var(--on-dark-line);
}
.guarantee__title { color: var(--on-dark); }
.guarantee__copy { color: var(--on-dark-soft); }

/* Pricing plan featured — sello dark dentro de pricing claro */
.plan.plan--featured {
  background: #261C16 !important;
  background-image: linear-gradient(180deg, #2E211A, #261C16) !important;
  border: 1.5px solid #261C16 !important;
  color: #F5EEE9 !important;
  box-shadow: 0 24px 60px -28px rgba(38, 28, 22, 0.55) !important;
}
.plan.plan--featured .plan__name,
.plan.plan--featured .plan__list li,
.plan.plan--featured .plan__head,
.plan.plan--featured > * { color: #F5EEE9 !important; }
.plan.plan--featured .plan__price-num { color: #F29580 !important; }
.plan.plan--featured .plan__price-prefix,
.plan.plan--featured .plan__delivery,
.plan.plan--featured .plan__pitch { color: rgba(245, 238, 233, 0.7) !important; }
.plan.plan--featured .plan__head { border-color: rgba(245, 238, 233, 0.12) !important; }
.plan.plan--featured .plan__list li::before { color: #F29580 !important; }
.plan.plan--featured .btn--tomato {
  background: #F22816 !important;
  color: #F5EEE9 !important;
  border-color: #F22816 !important;
}

/* Hero ambient blobs — recolor para fondo claro */
.hero__ambient-blob--1 { background: radial-gradient(circle at center, var(--tomato-soft), transparent 65%); }
.hero__ambient-blob--2 { background: radial-gradient(circle at center, var(--sunshine-soft), transparent 65%); }
.hero__ambient-blob--3 { background: radial-gradient(circle at center, var(--icy-soft), transparent 65%); }

/* Browser bar interior cards — refinado para fondo claro */
.case__browser-bar {
  background: rgba(38, 28, 22, 0.78);
}
.case__browser-bar em { color: var(--on-dark-soft); }

/* Capacity (cupos) en oscuro suave para hacer ritmo claro/oscuro */
.capacity {
  background: var(--espresso-2);
  color: var(--on-dark);
}
.capacity__title { color: var(--on-dark); }
.capacity__title em { color: var(--tomato); }
.capacity .eyebrow { color: var(--sunshine); }
.capacity__subcopy { color: var(--on-dark-soft); }
.capacity-slot {
  background: var(--espresso);
  border-color: var(--on-dark-line);
}
.capacity-slot__month { color: var(--on-dark-soft); }
.capacity-slot__status { color: var(--on-dark); }
.capacity-slot__detail { color: var(--on-dark-soft); }
.capacity__note { color: var(--on-dark-soft); }

/* Cases section override — sigue siendo claro pero con cards en cream tint */
.cases { color: var(--forest) !important; background: var(--cream) !important; }
.cases::before, .cases::after { display: none !important; }
.cases__title { color: var(--forest) !important; font-size: clamp(2rem, 5vw, 3.2rem) !important; }
.cases__title em { color: var(--tomato) !important; }
.cases__subcopy { color: var(--forest-a60) !important; }
.cases__intro { color: var(--forest-a60); }
.case {
  background: var(--cream-2);
  border-color: var(--forest-a10);
}
.case__name { color: var(--forest); }
.case__sub { color: var(--forest-a60); }
.case__rubro { color: var(--tomato); }
.case__col {
  background: var(--cream);
  border-color: var(--forest-a10);
}
.case__col li { color: var(--forest-a60); }
.case__metric {
  background: linear-gradient(135deg, var(--tomato-soft), transparent);
}
.case__metric-label { color: var(--forest-a60); }
.case__shot {
  background: var(--cream-3);
  border-color: var(--forest-a10);
}
.case__shot-tag { background: var(--cream); color: var(--forest); border-color: var(--forest-a20); }
.case__shot--before .case__shot-tag { color: var(--kiwi-2); border-color: var(--forest-a10); }
.case__shot--after .case__shot-tag { background: var(--tomato); color: var(--on-dark); border-color: var(--tomato); }

/* Pricing — refinos para fondo claro */
.pricing { background: var(--cream-2); color: var(--forest); }
.pricing__title em { color: var(--tomato); }
.pricing__subcopy { color: var(--forest-a60); }
.plan {
  background: var(--cream);
  border-color: var(--forest-a10);
  color: var(--forest);
}
.plan__name { color: var(--forest); }
.plan__price-num { color: var(--forest); }
.plan__price-prefix { color: var(--forest-a60); }
.plan__delivery { color: var(--forest-a60); }
.plan__pitch { color: var(--forest-a60); }
.plan__list li { color: var(--forest); }
.plan__exclude {
  background: var(--cream-3);
  color: var(--forest-a60);
}

/* Manifesto / Process / FAQ / Contact — refinos sobre claro */
.manifesto { background: var(--cream); color: var(--forest); }
.process { background: var(--cream-2); color: var(--forest); }
.faq { background: var(--cream); color: var(--forest); }
.contact { background: var(--cream-2); color: var(--forest); }

/* Footer — mantenemos espresso deeper como "tierra" del sitio */
.site-footer { color: var(--on-dark-soft); }
.site-footer em { color: var(--sunshine); }

/* Preview banner — sigue dark para que sea reconocible como "no producción" */
.preview-banner {
  background: var(--espresso);
  color: var(--on-dark);
}

/* Site header — fondo translúcido warm */
.site-header {
  background: rgba(245, 238, 233, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--forest-a10);
}
.brand { color: var(--forest); }
.brand__name { color: var(--forest); }
.site-nav a { color: var(--forest); }
.site-nav a:hover { color: var(--tomato); }

/* Btn ghost sobre claro */
.btn--ghost { color: var(--forest); border-color: var(--forest); }
.btn--ghost:hover { background: var(--forest-a05); border-color: var(--forest); }

/* ════════════════════════════════════════════════════════════
   BACKGROUNDS ATMOSFÉRICOS · Garantías → Contacto
   Aire del estudio en distintos momentos del día.
   Solo mesh gradients orgánicos, sin trama geométrica.
════════════════════════════════════════════════════════════ */

/* Garantías · "el acuerdo silencioso" · luz lateral apenas */
.warranty {
  background-color: #1F1612 !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
}
.warranty::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(123, 160, 152, 0.10), transparent 60%),
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(242, 149, 128, 0.06), transparent 65%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
}
.warranty > * { position: relative; z-index: 1; }

/* Capacity · "el calendario sobre la mesa" · spotlight cálido */
.capacity {
  background-color: #1A1310 !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
}
.capacity::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(242, 149, 128, 0.14), transparent 55%),
    radial-gradient(ellipse 35% 40% at 85% 60%, rgba(182, 201, 122, 0.08), transparent 65%),
    radial-gradient(ellipse 30% 35% at 15% 75%, rgba(123, 160, 152, 0.07), transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}
.capacity::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0, 0, 0, 0.55), transparent 70%);
  pointer-events: none;
}
.capacity > * { position: relative; z-index: 1; }

/* FAQ · "el aire en la conversación" · mesh muy difuso */
.faq {
  background-color: #1F1612 !important;
  background-image: none !important;
  color: var(--on-dark) !important;
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 20% 25%, rgba(123, 160, 152, 0.13), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 75%, rgba(242, 149, 128, 0.09), transparent 65%),
    radial-gradient(ellipse 40% 50% at 50% 50%, rgba(245, 238, 233, 0.04), transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}
.faq > * { position: relative; z-index: 1; }
.faq__title { color: var(--on-dark) !important; }
.faq__title em { color: var(--sunshine) !important; }
.faq__subcopy { color: var(--on-dark-soft) !important; }
.faq .eyebrow { color: var(--sunshine) !important; }
.faq-item {
  background: rgba(245, 238, 233, 0.035) !important;
  border-color: rgba(245, 238, 233, 0.09) !important;
  backdrop-filter: blur(4px);
}
.faq-item summary { color: var(--on-dark) !important; }
.faq-item summary:hover { color: var(--sunshine) !important; }
.faq-item summary::after { color: var(--sunshine); }
.faq-item__body p { color: var(--on-dark-soft) !important; }
.faq-item[open] {
  background: rgba(245, 238, 233, 0.055) !important;
  border-color: rgba(242, 149, 128, 0.3) !important;
}

/* Contacto · "el amanecer del proyecto" · aurora coral horizontal */
.contact {
  background-color: #150F0B !important;
  background-image: none !important;
  color: var(--on-dark) !important;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 35% at 50% 18%, rgba(242, 40, 22, 0.32), transparent 60%),
    radial-gradient(ellipse 60% 30% at 50% 32%, rgba(242, 149, 128, 0.22), transparent 65%),
    radial-gradient(ellipse 30% 40% at 12% 72%, rgba(123, 160, 152, 0.18), transparent 65%),
    radial-gradient(ellipse 30% 40% at 88% 78%, rgba(242, 149, 128, 0.12), transparent 65%);
  pointer-events: none;
  filter: blur(6px);
}
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 110%, rgba(0, 0, 0, 0.7), transparent 60%),
    radial-gradient(ellipse 100% 30% at 0% 50%, rgba(0, 0, 0, 0.35), transparent 70%),
    radial-gradient(ellipse 100% 30% at 100% 50%, rgba(0, 0, 0, 0.35), transparent 70%);
  pointer-events: none;
}
.contact > * { position: relative; z-index: 1; }
.contact__title {
  color: var(--on-dark) !important;
  font-size: clamp(2.8rem, 7vw, 5.5rem) !important;
  letter-spacing: -0.025em;
}
.contact__title em {
  color: var(--tomato) !important;
  text-shadow:
    0 0 18px rgba(242, 40, 22, 0.35),
    0 0 40px rgba(242, 149, 128, 0.18);
}
.contact__subcopy { color: var(--on-dark-soft) !important; }
.contact .eyebrow { color: var(--sunshine) !important; }
.contact__card {
  background: rgba(38, 28, 22, 0.55) !important;
  border-color: rgba(245, 238, 233, 0.1) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
}
.contact__card .field label { color: var(--on-dark) !important; }
.contact__card .field input,
.contact__card .field textarea {
  background: rgba(245, 238, 233, 0.05) !important;
  color: var(--on-dark) !important;
  border-color: rgba(245, 238, 233, 0.15) !important;
}
.contact__card .field input::placeholder,
.contact__card .field textarea::placeholder { color: var(--on-dark-mute); }
.contact__card .field-group legend { color: var(--on-dark) !important; }
.contact__card .radio-opt span { color: var(--forest) !important; }
.contact__card .radio-opt:has(input:checked) span { color: #F5EEE9 !important; }
.contact__list {
  background: rgba(245, 238, 233, 0.04) !important;
  border: 1px solid rgba(245, 238, 233, 0.1) !important;
  border-radius: 12px;
  padding: 1.3rem !important;
  backdrop-filter: blur(4px);
}
.contact__list-label { color: var(--on-dark-soft) !important; }
.contact__list-value { color: var(--on-dark) !important; }
.form__legal { color: var(--on-dark-mute) !important; }
.form__note { color: var(--on-dark-soft) !important; }

/* ════════════════════════════════════════════════════════════
   CURSOR GLOW · Spotlight que sigue el mouse
   Solo desktop. Se intensifica sobre elementos interactivos.
════════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(242, 149, 128, 0.20) 0%, rgba(123, 160, 152, 0.10) 32%, transparent 60%);
  filter: blur(22px);
  mix-blend-mode: screen;
  transition:
    opacity 0.35s ease,
    width 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
  will-change: transform;
}
.cursor-glow--active {
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle, rgba(242, 40, 22, 0.35) 0%, rgba(242, 149, 128, 0.18) 30%, transparent 60%);
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none !important; }
}

/* ════════════════════════════════════════════════════════════
   DARK-FLOW · Las 4 secciones finales como un solo continuo
   El gradient corre por todo el wrapper, no por sección.
════════════════════════════════════════════════════════════ */
.dark-flow {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg,
      #2A1F18 0%,
      #1F1612 22%,
      #1A130F 50%,
      #150F0B 78%,
      #0E0907 100%);
}
.dark-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 20% at 18% 8%, rgba(123, 160, 152, 0.10), transparent 65%),
    radial-gradient(ellipse 40% 18% at 85% 28%, rgba(242, 149, 128, 0.10), transparent 65%),
    radial-gradient(ellipse 55% 22% at 12% 52%, rgba(123, 160, 152, 0.10), transparent 65%),
    radial-gradient(ellipse 60% 22% at 80% 76%, rgba(242, 149, 128, 0.13), transparent 65%),
    radial-gradient(ellipse 70% 30% at 50% 92%, rgba(242, 40, 22, 0.20), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.dark-flow > * {
  position: relative;
  z-index: 1;
  background: transparent !important;
  background-image: none !important;
}
.dark-flow .warranty::before,
.dark-flow .warranty::after,
.dark-flow .capacity::before,
.dark-flow .capacity::after,
.dark-flow .faq::before,
.dark-flow .faq::after,
.dark-flow .contact::before {
  display: none !important;
}
.dark-flow .contact::after {
  background:
    radial-gradient(ellipse 80% 25% at 50% 0%, rgba(242, 40, 22, 0.16), transparent 70%);
  filter: blur(20px);
}
.warranty,
.capacity,
.faq,
.contact {
  border-top: none !important;
  border-bottom: none !important;
  background: transparent !important;
  background-image: none !important;
}

/* Footer · headings centrados, items alineados a la izquierda */
.site-footer__heading,
.site-footer__col h3 {
  text-align: center !important;
}
.site-footer__col ul {
  align-items: flex-start;
}
.site-footer__col ul li {
  text-align: left;
  width: 100%;
}
.site-footer__col a { justify-content: flex-start; }

/* Footer · mini Google Maps */
.footer-map {
  margin-top: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 238, 233, 0.1);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  background: var(--espresso-2);
  filter: hue-rotate(-8deg) saturate(0.85) brightness(0.92);
  max-width: 360px;
}
.footer-map iframe {
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) contrast(0.9) brightness(1.05);
  transition: filter 0.3s ease;
}
.footer-map:hover iframe {
  filter: invert(0.88) hue-rotate(180deg) saturate(0.9) contrast(0.95) brightness(1.1);
}

/* ════════════════════════════════════════════════════════════
   FAQ · Bento de testimonios con visualizaciones
════════════════════════════════════════════════════════════ */
.faq__bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.qcard {
  position: relative;
  grid-column: span 4;
  background: rgba(245, 238, 233, 0.04);
  border: 1px solid rgba(245, 238, 233, 0.09);
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.qcard:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 149, 128, 0.28);
  background: rgba(245, 238, 233, 0.06);
}
.qcard--wide { grid-column: span 6; }
.qcard--feature {
  background: linear-gradient(180deg, rgba(245, 238, 233, 0.05), rgba(38, 28, 22, 0.6));
  border-color: rgba(242, 149, 128, 0.18);
}
.qcard--feature::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(242, 149, 128, 0.18), transparent 65%);
  pointer-events: none;
  filter: blur(8px);
}
.qcard > * { position: relative; z-index: 1; }

.qcard__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.qcard__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--on-dark);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--tomato), #B41A0E);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
}
.qcard__avatar--sage { background: linear-gradient(135deg, #7BA098, #5A8079); }
.qcard__avatar--coral { background: linear-gradient(135deg, #F29580, #D85034); }
.qcard__avatar--sunshine { background: linear-gradient(135deg, #F2C14E, #C8941F); color: #261C16; }
.qcard__avatar--tomato { background: linear-gradient(135deg, #F22816, #8B1A0E); }
.qcard__avatar--kiwi { background: linear-gradient(135deg, #B6C97A, #7F9344); color: #261C16; }
.qcard__avatar--cream { background: linear-gradient(135deg, #ECE3DA, #B8AB9D); color: #261C16; }

.qcard__person { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.qcard__name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--on-dark);
  margin: 0;
  letter-spacing: -0.005em;
}
.qcard__role {
  font-size: 0.78rem;
  color: var(--on-dark-soft);
  margin: 0;
  line-height: 1.3;
}

.qcard__quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.25;
  color: var(--on-dark);
  margin: 0.3rem 0 0;
  font-weight: 500;
  letter-spacing: -0.012em;
  position: relative;
  padding-left: 1rem;
}
.qcard__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(180deg, var(--tomato), var(--sunshine));
  border-radius: 2px;
}
.qcard--feature .qcard__quote {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.qcard__answer {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
  margin: 0;
}

.qcard__pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.8rem;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(123, 160, 152, 0.16);
  color: #B5D4CC;
  border: 1px solid rgba(123, 160, 152, 0.3);
  margin-top: auto;
}
.qcard__pill--no {
  background: rgba(166, 154, 151, 0.14);
  color: #C8B8B0;
  border-color: rgba(166, 154, 151, 0.28);
}
.qcard__pill--opt {
  background: rgba(242, 149, 128, 0.14);
  color: var(--sunshine);
  border-color: rgba(242, 149, 128, 0.28);
}
.qcard__pill--geo {
  background: rgba(242, 40, 22, 0.12);
  color: #F4806F;
  border-color: rgba(242, 40, 22, 0.28);
}

.qcard__viz {
  margin-top: auto;
  padding-top: 0.6rem;
}

/* viz · Prices */
.qcard__viz--prices {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-chip {
  flex: 1 1 0;
  min-width: 100px;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgba(245, 238, 233, 0.05);
  border: 1px solid rgba(245, 238, 233, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.price-chip__lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 600;
}
.price-chip__num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--on-dark);
  letter-spacing: -0.02em;
}
.price-chip--feat {
  background: rgba(242, 40, 22, 0.14);
  border-color: rgba(242, 40, 22, 0.4);
}
.price-chip--feat .price-chip__num { color: var(--sunshine); }

/* viz · Timeline */
.timeline { padding: 0.4rem 0 0.2rem; }
.timeline__bar {
  position: relative;
  height: 26px;
  background: linear-gradient(90deg, rgba(123, 160, 152, 0.4), rgba(242, 40, 22, 0.5));
  border-radius: 100px;
  overflow: visible;
}
.timeline__dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--on-dark);
  color: var(--espresso);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--espresso);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.timeline__dot--1 { left: 5%; }
.timeline__dot--2 { left: 35%; }
.timeline__dot--3 { left: 65%; }
.timeline__dot--4 { left: 95%; }
.timeline__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.74rem;
  color: var(--on-dark-soft);
  letter-spacing: 0.04em;
}

/* viz · Versus (WP vs Astro) */
.qcard__viz--versus {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.vs-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.vs-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--on-dark-soft);
}
.vs-bar {
  height: 8px;
  border-radius: 100px;
  display: block;
}
.vs-row--bad .vs-tag { color: var(--kiwi); }
.vs-row--bad .vs-bar { background: linear-gradient(90deg, rgba(166, 154, 151, 0.6), rgba(166, 154, 151, 0.3)); }
.vs-row--good .vs-tag { color: var(--sunshine); }
.vs-row--good .vs-bar { background: linear-gradient(90deg, var(--sunshine), var(--tomato)); }
.vs-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--on-dark);
  white-space: nowrap;
}

/* viz · Redirect */
.qcard__viz--redirect { padding-top: 0.4rem; }
.redir-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: rgba(245, 238, 233, 0.04);
  border: 1px solid rgba(245, 238, 233, 0.08);
  border-radius: 10px;
  flex-wrap: wrap;
}
.redir-url {
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  padding: 0.32rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
}
.redir-url--old {
  background: rgba(166, 154, 151, 0.14);
  color: var(--kiwi);
  text-decoration: line-through;
  text-decoration-color: rgba(166, 154, 151, 0.5);
}
.redir-url--new {
  background: rgba(242, 149, 128, 0.14);
  color: var(--sunshine);
}
.redir-arrow {
  width: 36px;
  color: var(--sunshine);
  display: inline-flex;
}
.redir-arrow svg { width: 100%; height: auto; }
.redir-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: var(--tomato);
  color: var(--on-dark);
}

/* viz · Ownership */
.qcard__viz--ownership {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.own-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: rgba(245, 238, 233, 0.04);
  border: 1px solid rgba(245, 238, 233, 0.09);
}
.own-chip__icon {
  width: 8px;
  height: 8px;
  background: var(--sunshine);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  text-indent: -9999px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(242, 149, 128, 0.5);
}
.own-chip > div { display: flex; flex-direction: column; gap: 0; min-width: 0; }
.own-chip__lbl {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  font-weight: 600;
}
.own-chip__val {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--on-dark);
}

.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(2.5rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
.faq__cta p {
  margin: 0;
  color: var(--on-dark-soft);
  font-size: 0.95rem;
}
.faq__cta .btn--ghost {
  color: var(--on-dark) !important;
  border-color: rgba(245, 238, 233, 0.3) !important;
}
.faq__cta .btn--ghost:hover {
  background: rgba(245, 238, 233, 0.06) !important;
  border-color: var(--sunshine) !important;
  color: var(--sunshine) !important;
}

/* Mobile · stack todo en una sola columna */
@media (max-width: 880px) {
  .faq__bento { grid-template-columns: 1fr; gap: 1rem; }
  .qcard,
  .qcard--wide { grid-column: auto; }
  .qcard__viz--ownership { grid-template-columns: 1fr; }
  .timeline__dot--1 { left: 8%; }
  .timeline__dot--4 { left: 92%; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER · institucional completo
════════════════════════════════════════════════════════════ */
.site-footer {
  background: #150F0B;
  color: var(--on-dark);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
  border-top: 1px solid rgba(245, 238, 233, 0.06);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tomato) 30%, var(--sunshine) 50%, var(--tomato) 70%, transparent);
  opacity: 0.45;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.8rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(245, 238, 233, 0.08);
}

.site-footer__brand { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--on-dark);
  width: max-content;
}
.footer-brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--tomato);
  color: var(--on-dark);
  border-radius: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-brand__name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-footer__pitch {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
  margin: 0;
  max-width: 320px;
}
.site-footer__location {
  font-size: 0.86rem;
  color: var(--on-dark-soft);
  margin: 0.6rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-pin {
  width: 8px;
  height: 8px;
  background: var(--tomato);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 40, 22, 0.18);
  display: inline-block;
}

.site-footer__col h3,
.site-footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunshine);
  margin: 0 0 1.1rem;
  font-weight: 600;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer__col a {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.site-footer__col a:hover {
  color: var(--on-dark);
  transform: translateX(2px);
}

.site-footer__contact a,
.site-footer__social a {
  align-items: center;
}
.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--sunshine);
}
.footer-icon svg { width: 100%; height: 100%; }

.site-footer__social a svg {
  width: 18px;
  height: 18px;
  color: var(--sunshine);
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0 1.6rem;
  font-size: 0.82rem;
  color: var(--on-dark-mute);
}
.site-footer__legal { margin: 0; line-height: 1.5; }
.site-footer__legal strong { color: var(--on-dark); font-weight: 600; }
.site-footer__bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.4rem;
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__bottom-links a {
  color: var(--on-dark-mute);
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-footer__bottom-links a:hover { color: var(--sunshine); }
.site-footer__naming {
  margin: 0;
  text-align: right;
  font-size: 0.78rem;
  color: var(--on-dark-mute);
  font-style: italic;
}

@media (max-width: 1100px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .site-footer__naming { text-align: center; }
  .site-footer__bottom-links { justify-self: center; }
}

/* ════════════════════════════════════════════════════════════
   Reduced motion
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .island__stage { animation: none; transform: rotateX(0) rotateY(0); }
  .step { opacity: 1; transform: none; }
  .hero-shape, .hero__ambient-blob, .hero__scroll-hint, .mock { animation: none; }
  .cycler__word:not(.cycler__word--active) { display: none; }
}

/* ════════════════════════════════════════════════════════════
   MÉTRICAS — banner forest después del manifesto
════════════════════════════════════════════════════════════ */
.metrics {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--forest-a40);
  border-bottom: 1px solid var(--forest-a40);
}
.metrics::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 201, 38, 0.13), transparent 60%);
  pointer-events: none;
}
.metrics::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -8%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(213, 37, 24, 0.14), transparent 60%);
  pointer-events: none;
}
.metrics__wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}
.metrics__head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.metrics .eyebrow { color: var(--sunshine); }
.metrics__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 500;
  margin: 0.6rem 0 1rem;
  color: var(--cream);
}
.metrics__title em {
  font-style: italic;
  color: var(--sunshine);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
}
.metrics__subcopy {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.55;
  color: rgba(243, 232, 204, 0.78);
  max-width: 620px;
}
.metrics__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
}
.metric {
  background: rgba(243, 232, 204, 0.05);
  border: 1px solid rgba(243, 232, 204, 0.12);
  border-radius: 16px;
  padding: clamp(1.2rem, 2.2vw, 1.8rem) clamp(1rem, 2vw, 1.5rem);
  transition: border-color 0.25s var(--easing), transform 0.25s var(--easing-out), background 0.25s var(--easing);
}
.metric:hover {
  border-color: rgba(255, 201, 38, 0.45);
  background: rgba(243, 232, 204, 0.08);
  transform: translateY(-2px);
}
.metric--accent {
  background: linear-gradient(180deg, rgba(255, 201, 38, 0.12), rgba(255, 201, 38, 0.02));
  border-color: rgba(255, 201, 38, 0.35);
}
.metric__num {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}
.metric--accent .metric__num { color: var(--sunshine); }
.metric__suffix {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--sunshine);
  font-variation-settings: "opsz" 36, "SOFT" 0, "wght" 600;
  margin-left: 0.05em;
}
.metric--accent .metric__suffix { color: var(--cream); }
.metric__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.35rem;
  letter-spacing: -0.005em;
}
.metric__hint {
  font-size: 0.74rem;
  color: rgba(243, 232, 204, 0.55);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.4;
}
.metrics__foot {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  font-size: 0.86rem;
  color: rgba(243, 232, 204, 0.6);
  max-width: 640px;
  font-style: italic;
  line-height: 1.5;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 18, "SOFT" 80, "wght" 400;
}
@media (max-width: 900px) {
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .metric { padding: 1rem 0.9rem; }
  .metric__hint { font-size: 0.68rem; }
}

/* ════════════════════════════════════════════════════════════
   COMPARE SLIDER — antes/después con divisor arrastrable
════════════════════════════════════════════════════════════ */
.compare-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  user-select: none;
  background: var(--cream-2);
  cursor: ew-resize;
  touch-action: none;
  border: 1px solid var(--forest-a10);
  box-shadow: 0 18px 38px var(--forest-a20);
}
.compare-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}
.compare-slider__img--before {
  filter: grayscale(0.4) saturate(0.7) brightness(0.94);
}
.compare-slider__img--after {
  clip-path: inset(0 0 0 var(--pos));
  transition: none;
}
.compare-slider.is-tease .compare-slider__img--after {
  transition: clip-path 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--cream);
  box-shadow:
    0 0 0 1px var(--forest-a40),
    0 0 14px rgba(38, 28, 22, 0.55);
  transform: translateX(-1px);
  pointer-events: none;
  z-index: 3;
}
.compare-slider.is-tease .compare-slider__divider {
  transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-slider__knob {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--cream);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 4px rgba(245, 238, 233, 0.95),
    0 12px 28px rgba(38, 28, 22, 0.45);
  cursor: grab;
  pointer-events: auto;
  z-index: 4;
  outline: none;
}
.compare-slider.is-tease .compare-slider__knob {
  transition: left 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-slider__knob:focus-visible {
  box-shadow:
    0 0 0 4px var(--cream),
    0 0 0 7px var(--tomato),
    0 12px 28px rgba(38, 28, 22, 0.45);
}
.compare-slider.is-dragging .compare-slider__knob {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.08);
}
.compare-slider__knob svg {
  width: 26px;
  height: 26px;
}
.compare-slider__label {
  position: absolute;
  top: 1rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  font-family: var(--ff-sans);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.compare-slider__label--before {
  left: 1rem;
  background: rgba(38, 28, 22, 0.78);
  color: var(--cream);
}
.compare-slider__label--after {
  right: 1rem;
  background: var(--tomato);
  color: var(--cream);
}
.compare-slider__hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  background: rgba(38, 28, 22, 0.72);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.3s var(--easing);
}
.compare-slider.is-dragging .compare-slider__hint {
  opacity: 0;
}
@media (max-width: 560px) {
  .compare-slider__knob { width: 44px; height: 44px; }
  .compare-slider__knob svg { width: 22px; height: 22px; }
  .compare-slider__label { font-size: 0.62rem; padding: 0.32rem 0.7rem; top: 0.65rem; }
  .compare-slider__label--before { left: 0.65rem; }
  .compare-slider__label--after  { right: 0.65rem; }
  .compare-slider__hint { font-size: 0.6rem; padding: 0.32rem 0.7rem; bottom: 0.65rem; }
}
@media (prefers-reduced-motion: reduce) {
  .compare-slider.is-tease .compare-slider__img--after,
  .compare-slider.is-tease .compare-slider__divider,
  .compare-slider.is-tease .compare-slider__knob { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   COMPARE SLIDER · pill métrica flotante
════════════════════════════════════════════════════════════ */
.compare-slider__metric {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translate(40px, -50%) scale(0.92);
  background: var(--tomato);
  color: var(--cream);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-size: clamp(0.92rem, 1.6vw, 1.18rem);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow:
    0 0 0 4px rgba(245, 238, 233, 0.22),
    0 14px 32px rgba(38, 28, 22, 0.45);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--easing-out, cubic-bezier(0.16, 1, 0.3, 1)),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.compare-slider.has-cycled .compare-slider__metric,
.compare-slider:hover .compare-slider__metric {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}
.compare-slider.is-dragging .compare-slider__metric {
  opacity: 0;
  transform: translate(40px, -50%) scale(0.92);
}
@media (max-width: 560px) {
  .compare-slider__metric {
    top: auto;
    bottom: 3.2rem;
    right: 0.65rem;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    transform: translate(40px, 0) scale(0.92);
  }
  .compare-slider.has-cycled .compare-slider__metric {
    transform: translate(0, 0) scale(1);
  }
}

/* ════════════════════════════════════════════════════════════
   HERO · trust strip animado debajo de los CTAs
════════════════════════════════════════════════════════════ */
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.4vw, 2rem) clamp(1.4rem, 3vw, 2.4rem);
  max-width: 580px;
  border-top: 1px solid var(--forest-a10);
  padding-top: 1.4rem;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.hero__trust-num {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 90, "wght" 600;
  color: var(--tomato);
  line-height: 1;
  letter-spacing: -0.025em;
  font-feature-settings: "tnum" on;
}
.hero__trust-label {
  font-size: 0.78rem;
  color: var(--forest-a60);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .hero__trust { gap: 0.9rem 1.4rem; padding-top: 1.1rem; margin-top: 1.2rem; }
  .hero__trust-num { font-size: 1.5rem; }
  .hero__trust-label { font-size: 0.72rem; }
}

/* ════════════════════════════════════════════════════════════
   HERO · refinamiento editorial (más grande, más respiro)
════════════════════════════════════════════════════════════ */
.hero__text .hero__title,
.hero__title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.028em;
  margin: 0.7rem 0 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
}
.cycler__word {
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
  letter-spacing: -0.01em;
}
.hero__text .eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
}

/* ════════════════════════════════════════════════════════════
   NOT-FOR — Sección "no trabajamos con vos si..."
════════════════════════════════════════════════════════════ */
.not-for {
  background: var(--cream-3, #EDE2C2);
  color: var(--forest);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--forest-a10);
  border-bottom: 1px solid var(--forest-a10);
  position: relative;
  overflow: hidden;
}
.not-for::before {
  content: '';
  position: absolute;
  top: -25%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 37, 24, 0.08), transparent 60%);
  pointer-events: none;
}
.not-for__wrap { position: relative; z-index: 1; max-width: 1100px; }
.not-for__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.not-for .eyebrow { color: var(--tomato); }
.not-for__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "wght" 500;
  margin: 0.6rem 0 1rem;
  color: var(--forest);
}
.not-for__title em {
  font-style: italic;
  color: var(--tomato);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
}
.not-for__subcopy {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.55;
  color: var(--forest-a60);
  max-width: 600px;
}
.not-for__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.not-for__item {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--forest-a10);
  border-radius: 18px;
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1.4rem, 2.5vw, 2rem) clamp(1.4rem, 2.5vw, 1.8rem) clamp(3.6rem, 5vw, 4.4rem);
  transition: border-color 0.25s var(--easing), transform 0.25s var(--easing-out), box-shadow 0.25s var(--easing);
}
.not-for__item:hover {
  border-color: var(--tomato);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--forest-a20);
}
.not-for__x {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tomato);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.not-for__item-title {
  margin: 0 0 0.55rem;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  font-variation-settings: "opsz" 36, "SOFT" 30, "wght" 600;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.not-for__item-copy {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--forest-a60);
}
.not-for__foot {
  margin-top: clamp(1.8rem, 3vw, 2.4rem);
  font-size: 0.95rem;
  color: var(--forest-a60);
  font-style: italic;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 18, "SOFT" 80;
  text-align: center;
}
.not-for__foot a {
  color: var(--tomato);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--tomato);
}
.not-for__foot a:hover {
  background: var(--tomato);
  color: var(--cream);
  border-radius: 3px;
  padding: 0 0.2em;
}
@media (max-width: 760px) {
  .not-for__list { grid-template-columns: 1fr; }
  .not-for__item { padding: 1.3rem 1.3rem 1.3rem 3.6rem; }
  .not-for__x { top: 1.2rem; left: 1.2rem; width: 28px; height: 28px; font-size: 1.2rem; }
}

/* ════════════════════════════════════════════════════════════
   SCROLL PROGRESS · hairline arriba de todo
════════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 10000;
  pointer-events: none;
  background: transparent;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--tomato), var(--sunshine));
  will-change: transform;
}

/* ════════════════════════════════════════════════════════════
   WHATSAPP STICKY · floating bottom-right con tooltip
════════════════════════════════════════════════════════════ */
.wa-sticky {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 9998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow:
    0 0 0 6px rgba(37, 211, 102, 0.18),
    0 16px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 0.4s var(--easing-out, cubic-bezier(0.16, 1, 0.3, 1)),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s var(--easing);
}
.wa-sticky.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: waPulse 3.6s ease-in-out infinite;
}
.wa-sticky:hover {
  box-shadow:
    0 0 0 8px rgba(37, 211, 102, 0.28),
    0 20px 44px rgba(0, 0, 0, 0.45);
  animation: none;
  transform: translateY(-2px) scale(1.04);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.18), 0 16px 36px rgba(0, 0, 0, 0.35); }
  50%      { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0.04), 0 16px 36px rgba(0, 0, 0, 0.35); }
}
.wa-sticky__icon { width: 30px; height: 30px; }
.wa-sticky__bubble {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translate(8px, -50%);
  background: var(--forest);
  color: var(--cream);
  padding: 0.55rem 0.95rem;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--easing), transform 0.3s var(--easing-out);
}
.wa-sticky__bubble::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--forest);
  border-radius: 2px;
}
.wa-sticky.is-teasing .wa-sticky__bubble {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .wa-sticky:hover .wa-sticky__bubble {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@media (max-width: 560px) {
  .wa-sticky { width: 54px; height: 54px; }
  .wa-sticky__icon { width: 26px; height: 26px; }
  .wa-sticky__bubble { font-size: 0.78rem; padding: 0.45rem 0.8rem; }
}

/* ════════════════════════════════════════════════════════════
   NOISE GRAIN · textura editorial print-quality
════════════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
@media (prefers-reduced-motion: reduce) {
  body::before { opacity: 0.02; }
}

/* ════════════════════════════════════════════════════════════
   MANIFESTO · drop cap editorial en el primer párrafo
════════════════════════════════════════════════════════════ */
.manifesto__body p:first-child::first-letter {
  font-family: var(--ff-display);
  font-size: 4.6em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em -0.05em 0;
  color: var(--tomato);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
  letter-spacing: -0.04em;
}
@media (max-width: 560px) {
  .manifesto__body p:first-child::first-letter {
    font-size: 3.6em;
    margin: 0.05em 0.1em -0.05em 0;
  }
}


