/* =========================================================
   Tu Terapia Empresas — landing
   ========================================================= */

:root {
  /* Paleta oficial Tu Terapia */
  --teal: #307070;
  --teal-hover: #1c5551;
  --teal-dark: #1c5551;
  --mint: #aed9b6;
  --mint-soft: #fefaf5;
  --lemon: #aed9b6;
  --lemon-tint: #fefaf5;
  --blue: #8da7e6;
  --blue-tint: #fefaf5;
  --pink: #8da7e6;
  --green-soft: #aed9b6;
  --black: #1c5551;
  --navy: #283d6b;
  --body: #5a7968;
  --paragraph: #5a7968;
  --grey-200: #fefaf5;
  --white: #fefaf5;
  --line: rgba(40, 61, 107, 0.12);

  --font-display: "Stack Sans Headline", system-ui, sans-serif;
  --font-body: "Stack Sans Headline", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 6px;
  --max: 1200px;
  --ticker-h: 0px;
  --header-h: 58px;
  --header-offset: calc(var(--ticker-h) + var(--header-h));
  --shadow: 0 18px 40px rgba(40, 61, 107, 0.1);
  --shadow-sm: 0 8px 24px rgba(40, 61, 107, 0.08);

  /* Pelotillas — onda juego */
  --pill-mint: #aed9b6;
  --pill-lime: #e5f988;
  --pill-orange: #f5b07a;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  scroll-padding-top: 1.5rem;
}

.page-jump {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #1c5551;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.page-jump.is-on {
  opacity: 0.72;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-jump {
    display: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--footer-scroll-pad, 0px);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
figure { margin: 0; }

.container {
  width: min(100% - 8%, var(--max));
  margin-inline: auto;
}

/* Type */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow--dark { color: var(--teal-dark); }
.eyebrow--lemon { color: var(--lemon); }

.section-lead {
  margin: 1rem auto 0;
  max-width: 40rem;
  color: var(--paragraph);
  font-size: 1.08rem;
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.45rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn:hover .btn__icon { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: #1c5551;
  color: var(--white);
  border-color: #1c5551;
}
.btn--primary:hover {
  background: #164643;
  border-color: #164643;
}

.btn--lemon {
  background: var(--lemon);
  color: var(--teal-dark);
  border-color: var(--lemon);
}
.btn--lemon:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: rgba(0, 92, 101, 0.35);
}
.btn--ghost:hover {
  background: rgba(0, 92, 101, 0.06);
  border-color: var(--teal);
  box-shadow: none;
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
}

.btn--sm {
  min-height: 42px;
  padding: 0 1.05rem;
  font-size: 0.875rem;
}
.btn--xs {
  min-height: 36px;
  padding: 0 0.9rem;
  font-size: 0.8rem;
}
.btn--lg {
  min-height: 56px;
  padding: 0 1.7rem;
  font-size: 1rem;
}
.btn--full { width: 100%; }

/* Top ticker — próximo evento (oculto) */
.top-ticker {
  display: none !important;
}
.top-ticker:hover,
.top-ticker:focus-visible {
  background: #aed9b6;
  color: #1c5551;
}
.top-ticker:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}
.top-ticker__viewport {
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.top-ticker__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: top-ticker 28s linear infinite;
}
.top-ticker:hover .top-ticker__track {
  animation-play-state: paused;
}
.top-ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding-inline: 1.5rem;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}
@keyframes top-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .top-ticker__track {
    animation: none;
  }
  .top-ticker__viewport {
    mask-image: none;
  }
  .top-ticker__group[aria-hidden="true"] {
    display: none;
  }
  .top-ticker__group {
    padding-inline: 1rem;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Header — transparente, sin fondo */
.hero-shell {
  position: relative;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: calc(var(--header-h) + 2.75rem);
  padding-bottom: 2.75rem;
  background:
    linear-gradient(
      180deg,
      rgba(8, 24, 22, 0.42) 0%,
      rgba(8, 24, 22, 0.22) 35%,
      rgba(8, 24, 22, 0.08) 65%,
      rgba(8, 24, 22, 0) 100%
    );
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}
.site-header.is-scrolled {
  background:
    linear-gradient(
      180deg,
      rgba(8, 24, 22, 0.52) 0%,
      rgba(8, 24, 22, 0.28) 38%,
      rgba(8, 24, 22, 0.1) 68%,
      rgba(8, 24, 22, 0) 100%
    );
  box-shadow: none;
  border-bottom: 0;
}
.site-header__inner {
  height: calc(var(--header-h) + 40px);
  padding-top: 40px;
  width: min(100% - 8%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}
.logo__img {
  height: 53px;
  width: auto;
  display: block;
  /* Monocromo blanco para nav sobre hero oscuro */
  filter: brightness(0) invert(1);
}
.logo--footer {
  gap: 0.65rem;
}
.logo__img--footer {
  height: 56px;
  /* Mismo logo oficial que el nav, en blanco sobre fondo oscuro */
  filter: brightness(0) invert(1);
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links {
  display: contents;
}
.nav a:not(.nav__cta) {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0;
  transition: color 0.25s ease;
  background: none;
  border: 0;
  box-shadow: none;
}
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  border-radius: 999px;
  background: var(--lemon);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav a:not(.nav__cta):hover,
.nav a:not(.nav__cta):focus-visible {
  color: var(--white);
}
.nav a:not(.nav__cta):hover::after,
.nav a:not(.nav__cta):focus-visible::after {
  transform: scaleX(1);
}

/* CTA nav: siempre botón blanco */
.nav__cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}
body.nav-open .site-header {
  z-index: 80;
  pointer-events: auto;
}
body.nav-open .nav-toggle {
  z-index: 90;
}

/* ========== HERO ========== */
.hero-pin {
  position: relative;
}
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: #1c5551;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1c5551;
}

.hero__media--gradient {
  inset: -14%;
  width: 128%;
  height: 128%;
  background:
    radial-gradient(ellipse 72% 58% at 78% 18%, rgba(174, 217, 182, 0.42), transparent 58%),
    radial-gradient(ellipse 58% 52% at 12% 85%, rgba(141, 167, 230, 0.3), transparent 62%),
    linear-gradient(145deg, #1c5551 0%, #307070 48%, #5a7968 76%, #283d6b 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    height: auto;
    min-height: 100svh;
  }
  .hero__media--gradient {
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 8%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-offset) + 1.5rem) 0 calc(clamp(9rem, 22vh, 13rem) - 50px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
}

.hero__title-block {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  max-width: min(100%, 36rem);
}
.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.hero__cta {
  width: max-content;
  max-width: 100%;
  flex-shrink: 0;
  white-space: nowrap;
}

.hero__line {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.28em;
}

.hero__rotate {
  display: inline-grid;
  vertical-align: baseline;
  min-width: 12ch;
}
.hero__rotate-item {
  grid-area: 1 / 1;
  color: var(--lemon);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0.35em);
  transition:
    opacity 0.55s ease,
    filter 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.hero__rotate-item.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero__accent,
.site-footer__accent {
  color: var(--lemon);
}

.hero__lead {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(28rem, 42%);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  color: var(--white);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  opacity: 0.75;
}
.hero__scroll svg { width: 22px; height: 22px; }

/* Off-screen sections: paint less while far from viewport */
.action,
.podcast,
.proof,
.roi,
.cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.story {
  --story-bg: #123835;
  --story-demand-glow: rgba(0, 92, 101, 0.4);
  background: var(--story-bg);
  color: var(--white);
  isolation: isolate;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 2;
}
.story__track {
  height: 220vh;
  position: relative;
}
.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: block;
  overflow: hidden;
  padding: calc(var(--header-offset) + 1rem) 1.5rem 2rem;
  transform: translate3d(0, var(--story-exit-y, 0px), 0) scale(var(--story-exit-scale, 1));
  transform-origin: center bottom;
}

.story__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
}
.story.is-away .story__glow {
  animation-play-state: paused;
}
.story__glow--a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: rgba(48, 112, 112, 0.55);
  top: 12%;
  left: 8%;
  animation: story-drift-a 14s ease-in-out infinite alternate;
}
.story__glow--b {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  background: rgba(174, 217, 182, 0.22);
  bottom: 10%;
  right: 10%;
  animation: story-drift-b 16s ease-in-out infinite alternate;
}
.story__vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.55s ease;
}

/* Hint sutil de scroll — abajo a la derecha */
.story__scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.25rem);
  bottom: clamp(1.5rem, 3.5vh, 2.5rem);
  z-index: 6;
  width: 1px;
  height: 48px;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.5s ease;
}
.story__scroll-hint.is-gone {
  opacity: 0;
}
.story__scroll-hint-line {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 35%,
    rgba(234, 244, 117, 0.7) 70%,
    transparent 100%
  );
  transform-origin: center top;
  animation: story-scroll-hint 2.1s ease-in-out infinite;
}
.story[data-mood="sad"] .story__scroll-hint-line {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(180, 180, 180, 0.45) 40%,
    rgba(140, 140, 140, 0.55) 70%,
    transparent 100%
  );
}

@keyframes story-scroll-hint {
  0% {
    transform: scaleY(0.35) translateY(0);
    opacity: 0.25;
  }
  45% {
    transform: scaleY(1) translateY(6px);
    opacity: 0.85;
  }
  100% {
    transform: scaleY(0.45) translateY(14px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story__scroll-hint-line {
    animation: none;
    opacity: 0.5;
    transform: none;
  }
}

.story__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  height: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}

.story__eyebrow {
  margin: 0 0 2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234, 244, 117, 0.85);
  opacity: 0;
  transform: translateY(12px);
  animation: story-eyebrow-in 0.9s 0.15s ease forwards;
  transition: color 0.55s ease;
}

.story__stages {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.story__stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: none;
  pointer-events: none;
  backface-visibility: hidden;
}

/* Colores por stage (no heredan el mood del padre → no “flash” al cruzar) */
.story__stage h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  max-width: 14ch;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
  text-align: center;
}
.story__stage h2.story__title-two {
  width: 100%;
  max-width: min(100%, 18ch);
  text-wrap: balance;
}
.story__title-two span {
  display: inline;
  white-space: normal;
  text-align: center;
}

.story__stage p {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
  text-align: center;
}
.story__stage p.story__copy-two {
  width: max-content;
  max-width: min(100%, 44rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: unset;
}
.story__copy-two span {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.story__stage[data-mood="sad"] h2 {
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: min(100%, 16ch);
}
.story__stage[data-mood="sad"] p {
  color: rgba(255, 255, 255, 0.92);
}
/* Refuerzo visual “mente nublada” al entrar al paso */
.story__stage[data-mood="sad"] {
  transition: filter 0.05s linear;
}
.story__stage[data-mood="hope"] h2 {
  color: var(--white);
}
.story__stage[data-mood="hope"] p {
  color: rgba(255, 255, 255, 0.78);
}

/* Beat 1 — exigencia */
.story__demand {
  margin-top: 2.25rem;
  width: min(100%, 320px);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.story__demand-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.story__demand-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.story__demand-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2f8f6b, #eaf475 40%, #c45a32 72%, #8a2a1a);
  border-radius: inherit;
}
.story__demand-hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.story[data-mood="demand"] {
  --story-bg: #123835;
  transition: none;
}
.story[data-mood="demand"] .story__glow--a {
  background: var(--story-demand-glow);
  opacity: 0.7;
}
.story[data-mood="demand"] .story__glow--b {
  background: var(--story-demand-glow-b, rgba(234, 244, 117, 0.1));
}
.story[data-mood="demand"] .story__inner.is-straining {
  animation: story-strain 0.35s ease;
}
.story[data-mood="demand"] .story__demand-hint {
  color: var(--story-demand-hint, rgba(255, 255, 255, 0.4));
  transition: color 0.12s linear;
}

.story[data-mood="sad"] {
  --story-bg: #050505;
}
.story[data-mood="sad"] .story__glow {
  opacity: 0.08;
  background: rgba(80, 80, 80, 0.3) !important;
  animation: none;
}
.story[data-mood="sad"] .story__vignette {
  opacity: 1;
}
.story[data-mood="sad"] .story__eyebrow {
  color: rgba(160, 160, 160, 0.7);
}

.story[data-mood="hope"],
.story[data-mood="orbit"] {
  --story-bg: #0f2a28;
}
.story[data-mood="hope"] .story__glow--a,
.story[data-mood="orbit"] .story__glow--a {
  background: rgba(0, 92, 101, 0.55);
  opacity: 0.6;
}
.story[data-mood="hope"] .story__glow--b,
.story[data-mood="orbit"] .story__glow--b {
  background: rgba(234, 244, 117, 0.18);
  opacity: 0.7;
}
.story[data-mood="hope"] .story__eyebrow,
.story[data-mood="orbit"] .story__eyebrow {
  color: rgba(234, 244, 117, 0.9);
}

/* Paso collage dentro del sticky */
.story__stage--orbit {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  display: block;
  z-index: 2;
  padding: calc(var(--header-offset) + 0.5rem) 0.75rem 1rem;
}
.story__stage--orbit.is-active {
  pointer-events: auto;
}
.story.is-orbit .story__inner {
  opacity: 0;
  pointer-events: none;
}

@keyframes story-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8%, 6%) scale(1.08); }
}
@keyframes story-drift-b {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-10%, -8%) scale(1.12); }
}
@keyframes story-eyebrow-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes story-strain {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

@media (max-width: 720px) {
  .story__track { height: 200vh; }
  .story__stages { min-height: 420px; }
  .story__stage h2 { max-width: 16ch; }
  .story__stage p.story__copy-two {
    width: auto;
    max-width: 22rem;
    font-size: 1rem;
  }
  .story__copy-two span {
    white-space: normal;
  }
}

/* ========== ORBIT / COLLAGE (dentro del story scroll) ========== */
.story .orbit {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  overflow: hidden;
}
.orbit__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
}

.orbit__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: min(100% - 2rem, 34rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  opacity: var(--orbit-p, 0);
  transition: none;
}
.orbit .story__eyebrow {
  opacity: 1;
  transform: none;
  animation: none;
  margin: 0 0 2rem;
}
.orbit__titles {
  position: relative;
  width: 100%;
  min-height: 5.6em;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.orbit__title {
  grid-area: 1 / 1;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--white);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    filter 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.orbit__title.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  pointer-events: auto;
}
.orbit__lead {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}
.orbit__center .btn {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.orbit__card {
  --orbit-p: 0;
  --fx: 0;
  --fy: 0;
  --ox: 0;
  --oy: 0;
  position: absolute;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(16, 48, 46, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: var(--orbit-p);
  transform:
    translate(
      calc((var(--fx) + (var(--ox) - var(--fx)) * var(--orbit-p)) * 1px),
      calc((var(--fy) + (var(--oy) - var(--fy)) * var(--orbit-p)) * 1px)
    )
    scale(calc(0.88 + 0.12 * var(--orbit-p)));
  will-change: transform, opacity;
}
.orbit__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit__card--tl {
  top: 8%;
  left: 3%;
  width: min(220px, 20vw);
  aspect-ratio: 4 / 3;
  --fx: -160;
  --fy: -110;
}
.orbit__card--ml {
  top: 36%;
  left: 1%;
  width: min(150px, 14vw);
  aspect-ratio: 3 / 4;
  --fx: -180;
  --fy: 30;
}
.orbit__card--bl {
  bottom: 8%;
  left: 6%;
  width: min(200px, 18vw);
  aspect-ratio: 5 / 3.5;
  --fx: -140;
  --fy: 130;
}
.orbit__card--tr {
  top: 10%;
  right: 4%;
  width: min(200px, 18vw);
  aspect-ratio: 4 / 3;
  --fx: 170;
  --fy: -100;
}
.orbit__card--mr {
  top: 34%;
  right: 2%;
  width: min(160px, 15vw);
  aspect-ratio: 3 / 3.6;
  --fx: 190;
  --fy: 20;
}
.orbit__card--br {
  bottom: 10%;
  right: 5%;
  width: min(230px, 21vw);
  aspect-ratio: 16 / 10;
  --fx: 160;
  --fy: 120;
}
.orbit__card--bc {
  bottom: 4%;
  left: 50%;
  width: min(170px, 16vw);
  aspect-ratio: 4 / 3;
  margin-left: calc(min(170px, 16vw) / -2);
  --fx: 0;
  --fy: 150;
}

@media (max-width: 980px) {
  .orbit__card--ml,
  .orbit__card--bc { display: none; }
  .orbit__card--tl,
  .orbit__card--tr { width: min(160px, 26vw); }
  .orbit__card--bl,
  .orbit__card--br { width: min(150px, 24vw); }
  .orbit__card--mr { width: min(130px, 20vw); }
}

@media (max-width: 720px) {
  .orbit__center {
    width: min(100% - 1.5rem, 22rem);
  }
  .orbit__titles { min-height: 4.8em; }
  .orbit__lead { display: none; }
  .orbit__card--ml,
  .orbit__card--bc,
  .orbit__card--mr,
  .orbit__card--bl { display: none; }
  .orbit__card--tl {
    top: 6%;
    left: 4%;
    width: 112px;
  }
  .orbit__card--tr {
    top: 8%;
    right: 4%;
    width: 108px;
  }
  .orbit__card--br {
    bottom: 10%;
    right: 6%;
    width: 130px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit__card {
    opacity: 1;
    transform: none;
  }
  .orbit__title {
    transition: none;
  }
}

/* ========== LOGOS + SEGMENTS BAND ========== */
.logos-band {
  --logos-parallax: 0px;
  position: relative;
  z-index: 4;
  margin-top: -16vh;
  background: var(--white);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 50px rgba(16, 62, 66, 0.14);
  transform: translate3d(0, var(--logos-parallax), 0);
  overflow: hidden;
}
.logos {
  padding: calc(2.75rem + 50px) 0 1.5rem;
  background: transparent;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .logos-band {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  .story__sticky {
    transform: none;
  }
}
.logos__label {
  text-align: center;
  margin: 0 0 1.1rem;
}
.logos__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logos__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding: 0.35rem 0 0.75rem;
}
.logos__track.is-paused,
.top-ticker__track.is-paused {
  animation-play-state: paused;
}
.logos__track img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.25s ease;
}
.logos__track img:hover { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== ACTION GALLERY ========== */
.action {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: transparent;
}
.action .section-head h2 {
  color: #1c5551;
}
.action__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.action__item {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--mint);
  isolation: isolate;
}
.action__item--lg {
  grid-row: span 2;
  min-height: 100%;
}
.action__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}
.action__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.action__item--lg img { min-height: 460px; }
.action__item:hover img { transform: scale(1.04); }

.action__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 42, 40, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.action__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.35rem;
  color: var(--white);
  display: grid;
  gap: 0.2rem;
}
.action__item figcaption strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--lemon);
}
.action__item figcaption span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  max-width: 28ch;
}

@media (max-width: 900px) {
  .action__grid {
    grid-template-columns: 1fr 1fr;
  }
  .action__item--lg {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .action__item--lg img { min-height: 280px; }
  .action__item--wide { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  .action__grid { grid-template-columns: 1fr; }
  .action__item--wide { aspect-ratio: 4 / 3; }
}

/* ========== PODCAST ========== */
.podcast {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--mint);
}
.podcast__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.podcast__copy h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  color: #1c5551;
}
.podcast__copy > p {
  margin: 0 0 1.35rem;
  color: var(--paragraph);
  max-width: 34rem;
  font-size: 1.08rem;
}
.podcast__points {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.75rem;
}
.podcast__points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--teal-dark);
}
.podcast__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: inset 0 0 0 2px var(--teal);
}
.btn--spotify,
.btn--youtube {
  min-height: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  gap: 0;
  background: transparent;
  border: 0;
  color: #1c5551;
  box-shadow: none;
  overflow: visible;
  border-radius: 0;
  transform: none;
}
.btn--spotify:hover,
.btn--youtube:hover {
  background: transparent;
  border-color: transparent;
  color: #1c5551;
  box-shadow: none;
  transform: none;
  opacity: 0.72;
}
.btn--spotify:hover .btn__spotify,
.btn--youtube:hover .btn__youtube {
  transform: none;
}
.btn__spotify,
.btn__youtube {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: block;
  overflow: visible;
}
.podcast__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}
.podcast__media {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9;
}
.podcast__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .podcast__inner { grid-template-columns: 1fr; }
  .podcast__media { max-width: 520px; }
}

/* ========== SEGMENTS ========== */
.segments {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: transparent;
}
.segments .section-head h2 {
  color: #1c5551;
}
.segments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.segment {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1c5551;
  color: #fff;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.segment:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.segment--mint,
.segment--lemon,
.segment--blue {
  background: #1c5551;
}

.segment__photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.segment__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.segment:hover .segment__photo img { transform: scale(1.05); }

.segment__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.45rem;
}
.segment__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.55rem;
}
.segment h3 {
  margin-bottom: 0.65rem;
  color: #fff;
}
.segment p {
  margin: 0;
  flex: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}
.segment__link {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}
.segment__link span {
  display: inline-block;
  transition: transform 0.22s ease;
}
.segment:hover .segment__link span { transform: translateX(4px); }

.segments__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}

/* ========== PROOF ========== */
.proof {
  background: var(--grey-200);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.proof__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.proof__copy h2 {
  color: #1c5551;
}
.proof__copy p:not(.eyebrow) {
  margin: 1rem 0 1.5rem;
  color: var(--paragraph);
  max-width: 32rem;
}
.proof__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin: 0;
}
.proof__stats > div {
  background: transparent;
  border-radius: 0;
  padding: 1.25rem 0 0;
  text-align: left;
  box-shadow: none;
  border-left: 0;
  border-top: 1px solid rgba(0, 92, 101, 0.18);
  transition: transform 0.25s ease;
}
.proof__stats > div:first-child {
  border-top: 0;
  padding-top: 0;
}
.proof__stats > div:hover { transform: none; }
.proof__stats dt {
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 0.95;
  margin-bottom: 0.65rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.proof__stats dd {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--paragraph);
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== CARE ========== */
.care {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--white);
}
.care__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.care-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-200);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.care-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.care-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.care-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.care-card:hover .care-card__media img { transform: scale(1.05); }
.care-card__body {
  padding: 1.25rem 1.3rem 1.45rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.care-card h3 { margin-bottom: 0.5rem; }
.care-card p {
  margin: 0 0 1rem;
  color: var(--paragraph);
  font-size: 0.98rem;
}
.care-card__list {
  margin-top: auto;
  display: grid;
  gap: 0.4rem;
}
.care-card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
}
.care-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lemon);
}

/* ========== STACKED CARDS (network + roi) ========== */
.stack-deck {
  position: relative;
}
.stack-deck__card {
  position: sticky;
  top: 0;
  z-index: calc(1 + var(--stack-i, 0));
  min-height: 100svh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.stack-deck__card:not(:first-child) {
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 48px rgba(16, 62, 66, 0.12);
}
@media (prefers-reduced-motion: reduce) {
  .stack-deck__card {
    position: relative;
    top: auto;
    min-height: 0;
  }
  .stack-deck__card:not(:first-child) {
    border-radius: 0;
    box-shadow: none;
  }
}

/* ========== NETWORK ========== */
.network {
  background: var(--mint);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.network__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.network__copy p:not(.eyebrow) {
  margin: 1rem 0 1.35rem;
  color: var(--paragraph);
  max-width: 32rem;
}
.network__faces {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.network__faces img,
.network__faces span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--mint);
  margin-left: -10px;
  object-fit: cover;
}
.network__faces img:first-child,
.network__faces span:first-child { margin-left: 0; }
.network__faces span {
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  border-color: var(--white);
}

.network__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.network__stats > div {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 16px rgba(38, 49, 89, 0.04);
  transition: transform 0.25s ease;
}
.network__stats > div:hover { transform: translateY(-3px); }
.network__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  font-weight: 400;
}
.network__stats span {
  font-size: 0.92rem;
  color: var(--paragraph);
}

/* ========== ROI ========== */
.roi {
  background:
    radial-gradient(ellipse 40% 50% at 10% 10%, rgba(255, 255, 255, 0.45), transparent 50%),
    var(--lemon);
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--teal-dark);
}
.roi__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.roi__copy {
  justify-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.roi__copy h2 {
  color: var(--teal-dark);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  max-width: 22ch;
  letter-spacing: -0.03em;
  margin-left: auto;
  text-wrap: balance;
}
.roi__title-line {
  display: block;
  white-space: nowrap;
}
.roi__title-accent {
  display: block;
  white-space: nowrap;
  color: var(--teal);
}
.roi__lead {
  margin: 1.25rem 0 0 auto;
  color: rgba(16, 62, 66, 0.82);
  max-width: 30rem;
  font-size: 1.12rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.roi__copy .btn {
  margin-top: 1.6rem;
}
.roi__cite {
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  color: rgba(16, 62, 66, 0.55);
  line-height: 1.4;
}
.roi__metrics {
  order: -1;
  display: grid;
  gap: 0.85rem;
}
.roi__side {
  order: -1;
  display: grid;
  gap: 0.85rem;
}
.roi__metrics > div {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border: 1px solid rgba(0, 92, 101, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}
.roi__metrics > div:hover {
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.92);
}
.roi__metrics strong {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--teal);
  line-height: 1;
  font-weight: 400;
  min-width: 4.5rem;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.roi__metrics span {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--teal-dark);
}

/* ========== SUBPÁGINA: BENEFICIOS EMPRESAS ========== */
.page-hero {
  position: relative;
  min-height: min(72svh, 640px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 22, 0.35) 0%, rgba(8, 24, 22, 0.55) 45%, rgba(8, 24, 22, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 92, 101, 0.35), transparent 55%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 8%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-offset) + 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  max-width: 38rem;
}
.page-hero__brand {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--lemon);
}
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 5.5vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.page-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}
.btn--ghost-light {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.biz-benefit {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 50% 45% at 80% 10%, rgba(234, 244, 117, 0.22), transparent 55%),
    var(--mint-soft);
}
.biz-benefit__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.biz-benefit__panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 8px 28px rgba(38, 49, 89, 0.06);
}
.biz-benefit__kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.biz-benefit__panel h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.biz-benefit__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.biz-benefit__panel li {
  display: grid;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--lemon);
}
.biz-benefit__panel strong {
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 1rem;
}
.biz-benefit__panel span {
  color: var(--paragraph);
  font-size: 0.95rem;
  line-height: 1.45;
}
.biz-benefit__panel--hr li {
  border-left-color: var(--teal);
}

.biz-how {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--white);
}
.biz-benefit__steps {
  list-style: none;
  margin: 0;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--mint-soft);
  border-radius: var(--radius);
}
.biz-benefit__steps li {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}
.biz-benefit__step-num {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.biz-benefit__steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.biz-benefit__steps p {
  margin: 0;
  color: var(--paragraph);
  font-size: 0.92rem;
  line-height: 1.45;
}

.biz-pack {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--teal);
  color: var(--white);
}
.biz-pack__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.biz-pack .eyebrow {
  color: var(--lemon);
}
.biz-pack h2 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.biz-pack__copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 28rem;
}
.biz-pack__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.biz-pack__list li {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.98rem;
}

/* ========== BENEFITS ========== */
.benefits {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--white);
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefits__list li {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--grey-200);
  transition: background 0.25s ease, transform 0.25s ease;
}
.benefits__list li:hover {
  background: var(--mint);
  transform: translateY(-3px);
}
.benefits__icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.benefits__list h3 { margin-bottom: 0.45rem; }
.benefits__list p {
  margin: 0;
  color: var(--paragraph);
  font-size: 0.98rem;
}

/* ========== CONDITIONS ========== */
.conditions {
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  background: var(--white);
  /* No content-visibility: rompe medidas y física de las pills */
  content-visibility: visible;
}
.conditions .section-head {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.conditions .section-head h2 {
  color: #1c5551;
}
.conditions .section-lead {
  max-width: 36rem;
}
.conditions__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: min(34vh, 300px);
  min-height: 240px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(48, 112, 112, 0.06), transparent 65%);
}
.conditions__tags.is-dragging-pill {
  touch-action: none;
}
.conditions__tags.is-static-wrap {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 0.55rem 0.65rem;
  padding: 0.75rem clamp(0.75rem, 3vw, 1.5rem) 2.5rem;
  touch-action: auto;
  background: none;
}
.conditions__tags.is-static-wrap li[aria-hidden="true"] {
  display: none;
}
.conditions__tags.is-static-wrap li {
  position: static !important;
  left: auto !important;
  top: auto !important;
  opacity: 1 !important;
  pointer-events: auto;
  cursor: default;
  transform: none !important;
  will-change: auto;
  width: clamp(6.5rem, 28vw, 8.25rem);
  height: clamp(6.5rem, 28vw, 8.25rem);
  font-size: clamp(0.78rem, 2.6vw, 0.95rem);
  padding: 0.65rem;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
.conditions__tags li {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(6rem, 8vw, 7.25rem);
  height: clamp(6rem, 8vw, 7.25rem);
  padding: 0.55rem;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--pill-mint);
  color: var(--teal-dark);
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: grab;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.conditions__tags li:nth-child(3n + 2) {
  background: var(--pill-lime);
  color: var(--teal-dark);
}
.conditions__tags li:nth-child(3n) {
  background: var(--pill-orange);
  color: var(--teal-dark);
}
.conditions__tags li.is-ready {
  opacity: 1;
  pointer-events: auto;
}
.conditions__tags li.is-dragging {
  cursor: grabbing;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .conditions__tags {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    touch-action: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem 0.65rem;
    padding: 0.75rem 1rem 2.5rem;
    background: none;
  }
  .conditions__tags li[aria-hidden="true"] {
    display: none;
  }
  .conditions__tags li {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto;
    cursor: default;
    transform: none !important;
    will-change: auto;
  }
}

/* ========== QUOTES ========== */
.quotes {
  background: var(--blue-tint);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.quotes blockquote {
  margin: 0;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 4px 16px rgba(38, 49, 89, 0.04);
  transition: transform 0.25s ease;
}
.quotes blockquote:hover { transform: translateY(-3px); }
.quotes blockquote p {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--navy);
  flex: 1;
}
.quotes footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quotes__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.quotes__meta {
  flex: 1;
  min-width: 0;
}
.quotes footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--teal);
  font-family: var(--font-body);
}
.quotes footer span {
  font-size: 0.85rem;
  color: var(--body);
}
.quotes__company {
  margin-left: auto;
  height: 28px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.72);
}

/* ========== CTA ========== */
.cta {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 45% 60% at 10% 90%, rgba(234, 244, 117, 0.18), transparent 50%),
    var(--teal);
  padding: clamp(3.25rem, 6vw, 4.75rem) 0 calc(clamp(3.75rem, 7vw, 5.5rem) + 18vh);
}
.cta__panel {
  display: block;
  max-width: none;
}
.cta__form {
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.35rem, 3vw, 2.25rem);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.cta__copy h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.cta__copy .eyebrow {
  margin: 0 0 0.75rem;
}
.cta__copy > p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}
.cta__fields .btn--full {
  grid-column: 1 / -1;
}
.cta__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  min-width: 0;
}
.cta__form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.cta__form label span {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}
.cta__form input,
.cta__form select {
  width: 100%;
  min-height: 0;
  padding: 0.3rem 0 0.45rem;
  border: 0;
  border-radius: 0;
  border-bottom: 1.5px solid rgba(174, 217, 182, 0.55);
  background: transparent;
  color: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}
.cta__form select {
  padding-right: 1.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23aed9b6' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  cursor: pointer;
}
.cta__form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.cta__form select option { color: #1c5551; }
.cta__form input:focus,
.cta__form select:focus {
  border-color: var(--mint);
  background: transparent;
}
.cta__fields .btn--primary,
.cta__fields .btn--white {
  grid-column: 1;
  justify-self: start;
  margin-top: 0.25rem;
}
.cta__note {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

/* ========== FOOTER ========== */
.site-footer {
  --footer-parallax: 0px;
  position: relative;
  z-index: 4;
  margin-top: -14vh;
  overflow: hidden;
  background: #1c5551;
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 1.75rem;
  isolation: isolate;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 50px rgba(8, 24, 22, 0.28);
  transform: translate3d(0, var(--footer-parallax), 0);
}
@media (prefers-reduced-motion: reduce) {
  .site-footer {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
}
.site-footer__glow {
  display: none;
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.25rem);
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-footer__mail {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(234, 244, 117, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-footer__mail:hover {
  color: var(--lemon);
  border-color: var(--lemon);
}

.site-footer__statement {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--white);
  font-weight: 400;
}
.site-footer__para {
  display: inline;
  color: var(--lemon);
}
.footer__rotate {
  display: inline-grid;
  vertical-align: baseline;
  min-width: 11ch;
}
.footer__rotate-item {
  grid-area: 1 / 1;
  color: var(--lemon);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(0.25em);
  transition:
    opacity 0.55s ease,
    filter 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  white-space: nowrap;
}
.footer__rotate-item.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.site-footer__accent {
  color: var(--lemon);
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.site-footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.site-footer__social a svg,
.site-footer__social a img {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__legal {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}
.site-footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__legal-links a:hover { color: rgba(255, 255, 255, 0.85); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .stack-deck__card {
    min-height: auto;
    align-items: stretch;
  }
  .stack-deck__card:not(:first-child) {
    border-radius: 20px 20px 0 0;
  }
  .proof__inner,
  .network__inner,
  .roi__inner,
  .biz-benefit__panels {
    grid-template-columns: 1fr;
  }
  .cta__form {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }
  .cta__fields {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .cta__fields .btn--primary,
  .cta__fields .btn--white {
    width: 100%;
    justify-self: stretch;
  }
  .biz-benefit__steps {
    grid-template-columns: 1fr 1fr;
  }
  .biz-pack__inner {
    grid-template-columns: 1fr;
  }
  .roi__metrics { order: 0; }
  .roi__copy {
    justify-self: stretch;
    text-align: left;
    align-items: flex-start;
  }
  .roi__copy h2,
  .roi__lead {
    margin-left: 0;
  }
  .roi__title-line,
  .roi__title-accent {
    white-space: normal;
  }
  .hero h1 { max-width: none; }
  .hero__lead {
    max-width: 100%;
    padding-right: 0;
  }
  .segments__grid,
  .care__grid,
  .benefits__list,
  .quotes__grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof__stats {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .proof__stats > div {
    border-left: 0;
    border-top: 1px solid rgba(0, 92, 101, 0.18);
    padding: 1.25rem 0 0;
  }
  .proof__stats > div:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .proof__stats dd { max-width: none; }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 2.5rem, var(--max));
  }

  .site-header__inner {
    width: min(100% - 2.5rem, var(--max));
    height: calc(var(--header-h) + 30px);
    padding-top: 30px;
  }

  .logo__img { height: 42px; }

  .nav-toggle {
    display: flex;
    position: fixed;
    top: calc(var(--ticker-h) + 30px);
    right: 1.25rem;
    z-index: 90;
    background: rgba(28, 85, 81, 0.92);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(28, 85, 81, 1);
  }
  .site-header__inner::after {
    content: "";
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    pointer-events: none;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(6, 18, 17, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: calc(var(--ticker-h) + 30px + 44px + 0.55rem);
    left: 1rem;
    right: 1rem;
    z-index: 85;
    flex-direction: column;
    align-items: stretch;
    gap: 1.35rem;
    padding: 1.15rem 1.15rem 1.25rem;
    background:
      linear-gradient(180deg, rgba(20, 58, 55, 0.98) 0%, rgba(12, 36, 34, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;
    max-height: calc(100svh - var(--header-offset) - 1.5rem);
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .nav a:not(.nav__cta),
  .site-header:not(.is-scrolled) .nav a:not(.nav__cta) {
    padding: 0.95rem 0.7rem;
    border: 0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav a:not(.nav__cta)::after {
    display: none;
  }
  .nav a:not(.nav__cta):hover,
  .nav a:not(.nav__cta):focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-scrolled .nav__cta,
  .site-header:not(.is-scrolled) .nav__cta,
  .nav.is-open .nav__cta {
    display: inline-flex;
    width: 100%;
    margin: 0.15rem 0 0;
    min-height: 48px;
    padding: 0 1.15rem;
    gap: 0.55rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
    box-shadow: none;
    transform: none;
    text-shadow: none;
    justify-content: center;
  }
  .nav.is-open .nav__cta .btn__icon,
  .site-header.is-scrolled .nav__cta .btn__icon,
  .site-header:not(.is-scrolled) .nav__cta .btn__icon {
    display: inline-block;
  }
  .nav.is-open .nav__cta:hover,
  .site-header.is-scrolled .nav a.nav__cta:hover,
  .site-header:not(.is-scrolled) .nav a.nav__cta:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--teal-dark);
  }

  /* Hero mobile */
  .hero__content {
    padding: calc(var(--header-offset) + 1.25rem) 0 7.75rem;
    justify-content: flex-end;
    gap: 1rem;
    width: min(100% - 2.5rem, var(--max));
  }
  .hero__title-block {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    gap: 1.25rem;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.2rem);
    max-width: none;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  .hero__line {
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .hero__rotate {
    min-width: 9ch;
  }
  .hero__cta {
    min-height: 48px;
    font-size: 0.9rem;
  }
  .hero__lead {
    margin: 0;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero__scroll { display: none; }
  .story {
    margin-top: -8vh;
    border-radius: 22px 22px 0 0;
  }
  .top-ticker__group {
    font-size: 0.72rem;
    gap: 0.7rem;
  }

  /* Story */
  .story__sticky {
    padding: calc(var(--header-offset) + 0.75rem) 1.25rem 1.5rem;
  }
  .story__track { height: 200vh; }
  .story__stages { min-height: 360px; }
  .story__stage h2 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .story__stage p.story__copy-two {
    width: auto;
    max-width: 22rem;
    font-size: 1rem;
  }
  .story__copy-two span {
    white-space: normal;
  }
  .story__demand {
    width: min(100%, 16rem);
  }

  /* Logos / segments */
  .logos {
    padding: calc(1.75rem + 28px) 0 1rem;
  }
  .segments {
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
  }

  .segments__grid,
  .care__grid,
  .benefits__list,
  .quotes__grid,
  .network__stats,
  .biz-benefit__steps {
    grid-template-columns: 1fr;
  }

  /* Conditions: física también en mobile */
  .conditions {
    padding-top: 2.25rem;
  }
  .conditions__tags {
    height: min(38vh, 320px);
    min-height: 260px;
  }
  .conditions__tags:not(.is-static-wrap) {
    display: block;
    overflow: hidden;
    flex-wrap: unset;
    justify-content: unset;
    gap: unset;
    padding: 0;
  }
  .conditions__tags:not(.is-static-wrap) li {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    cursor: grab;
    will-change: transform;
    width: clamp(5.5rem, 26vw, 6.75rem);
    height: clamp(5.5rem, 26vw, 6.75rem);
    padding: 0.5rem;
    font-size: 0.78rem;
  }
  .conditions__tags:not(.is-static-wrap) li.is-ready {
    opacity: 1;
    pointer-events: auto;
  }
  .conditions__tags.is-static-wrap {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.55rem;
    padding: 0.5rem 0.85rem 2.25rem;
  }
  .conditions__tags.is-static-wrap li[aria-hidden="true"] {
    display: none;
  }
  .conditions__tags.is-static-wrap li {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto;
    cursor: default;
    transform: none !important;
    will-change: auto;
    width: clamp(6.25rem, 29vw, 7.75rem);
    height: clamp(6.25rem, 29vw, 7.75rem);
    padding: 0.55rem;
    font-size: 0.82rem;
    white-space: normal;
  }

  /* ROI */
  .roi__metrics > div {
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
  }
  .roi__metrics strong {
    min-width: 0;
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  /* Quotes */
  .quotes footer {
    flex-wrap: wrap;
  }
  .quotes__company {
    margin-left: 0;
    max-width: 72px;
  }

  /* Footer */
  .site-footer {
    margin-top: -10vh;
    border-radius: 22px 22px 0 0;
  }
  .site-footer__statement {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .footer__rotate {
    min-width: 9ch;
  }
  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Formulario Empresas 2026 */
.cta__form .is-invalid {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.cta__status {
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  color:white;
}

.cta__status.is-error {
  font-weight: 600;
}

.cta__status.is-success {
  font-weight: 600;
}

.cta__form button[disabled] {
  opacity: .65;
  cursor: wait;
}

/* =========================================================
   Loader original Tu Terapia
   ========================================================= */
.content_loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #1c5551;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content_loading.hide {
  opacity: 0;
  pointer-events: none;
  transition-delay: 1s;
  -webkit-transition-delay: 1s;
}

.content_loading img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.content_loading .animation_logo_01 {
  width: 20px;
  top: -18px;
}

.content_loading .animation_logo_02 {
  width: 90px;
}

.content_loading .animation_logo_01 {
  will-change: transform;
  transform-origin: center;
  z-index: 2;
  -webkit-animation: loader_animation 2s infinite;
  animation: loader_animation 2s infinite;
}

@-webkit-keyframes loader_animation {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes loader_animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.content_loading .center_loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.content_loading.load .center_loading {
  left: -200px;
}

.content_loading.load.hide .center_loading {
  opacity: 0;
}

.content_loading .animation_logo_03 {
  right: -100px;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
}

.content_loading.load .animation_logo_03 {
  opacity: 1;
  right: -110px;
}

.content_loading.load.hide .animation_logo_03 {
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
