/* Hero: vídeo 1280×720, fondo más blanco, fade lateral más suave */

@font-face {
  font-family: "Gochi Hand";
  src:
    url("fonts/GochiHand-Regular.woff2") format("woff2"),
    url("fonts/GochiHand-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Fondo negro: se lee en el pad lateral del marco */
html {
  background: #0a0a0a;
}
body {
  background: #0a0a0a;
}

/* Chip 50 plazas en el banner HEY */
.hero__plazas {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  margin: 0;
  padding: 0.32em 0.58em 0.34em;
  border-radius: 999px;
  background: #ffdd2d;
  color: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(10, 10, 10, 0.06),
    0 4px 14px rgba(255, 221, 45, 0.55);
  line-height: 1;
  vertical-align: middle;
  animation: hero-plazas-pulse 2.4s ease-in-out infinite;
}
.hero__plazas-n {
  font-size: 1.22em;
  font-weight: 800;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.hero__plazas-l {
  font-size: 0.92em;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
@keyframes hero-plazas-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(10, 10, 10, 0.06),
      0 4px 14px rgba(255, 221, 45, 0.45);
  }  50% {
    transform: scale(1.045);
    box-shadow:
      0 0 0 1px rgba(10, 10, 10, 0.08),
      0 6px 20px rgba(255, 221, 45, 0.7);
  }}
@media (prefers-reduced-motion: reduce) {
  .hero__plazas {
    animation: none;
  }}
/* Tipografía compartida: subtítulo hero = leads de sección */
:root {
  --hero-sub: min(
    clamp(0.92rem, 1.05vw + 0.55vh, 1.22rem),
    clamp(0.9rem, 0.45vw + 1.55vh, 1.22rem)
  );
}
@media (max-width: 768px) {
  :root {
    --hero-sub: min(
      clamp(0.9rem, 1.35vw + 0.42vh, 1.08rem),
      clamp(0.88rem, 0.5vw + 0.95vh, 1.08rem)
    );
  }
}
@media (min-width: 769px) and (max-height: 800px) {
  :root {
    --hero-sub: min(
      clamp(0.9rem, 0.95vw + 0.48vh, 1.08rem),
      clamp(0.88rem, 0.4vw + 1.35vh, 1.08rem)
    );
  }
}
/* Banner HEY — jerarquía más legible */
.hero__header--v4 {
  --hero-badge: min(
    clamp(0.78rem, 0.82vw + 0.48vh, 0.92rem),
    clamp(0.76rem, 0.4vw + 1.05vh, 0.92rem)
  );
  --hero-hey: min(
    clamp(0.58rem, 0.68vw + 0.38vh, 0.7rem),
    clamp(0.56rem, 0.3vw + 0.88vh, 0.7rem)
  );
  --hero-badge-min: min(
    clamp(1.85rem, 2vw + 1.25vh, 2.45rem),
    clamp(1.75rem, 0.75vw + 3.1vh, 2.45rem)
  );
}
.hero__header--v4 .hero__badge-chip {
  padding: 0.45em 0.95em;
  background: #f4f4f4;
  color: #1a1a1a;
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.06);
}
.hero__header--v4 .hero__badge-inner {
  gap: 0.75em;
}
.hero__header--v4 .hero__badge-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65em 1em;
  font-weight: 500;
  color: #3a3a3a;
}
.hero__badge-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.hero__badge-lead {
  font-weight: 600;
  color: #222;
  letter-spacing: 0;
}
.hero__badge-sep {
  width: 1px;
  height: 1.05em;
  background: rgba(10, 10, 10, 0.18);
  flex-shrink: 0;
}
.hero__badge-when {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  padding: 0.28em 0.65em 0.32em;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.1);
  color: #0a0a0a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
.hero__badge-date {
  font-size: 1.08em;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}
.hero__badge-hour {
  font-size: 0.95em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #333;
  letter-spacing: 0;
}
.hero__badge-tz {
  font-size: 0.72em;
  font-weight: 600;
  color: #6a6a6a;
  letter-spacing: 0;
}
.hero__header--v4 .hero__badge time,
.hero__header--v4 .hero__badge .odometer {
  position: relative;
  margin-left: 0;
  font-size: 1.12em;
  font-weight: 700;
  color: #0a0a0a;
  border-radius: 999px;
  isolation: isolate;
}
.hero__header--v4 .hero__badge .odometer {
  overflow: hidden;
  animation: countdown-glow-pulse 2.6s ease-in-out infinite;
}
.hero__header--v4 .hero__badge .odometer::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 6;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 221, 45, 0.35) 46%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 221, 45, 0.4) 54%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 160% 0;
  animation: countdown-shine 2.8s linear infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
@keyframes countdown-shine {
  from {
    background-position: 160% 0;
  }  to {
    background-position: -80% 0;
  }}
@keyframes countdown-glow-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 221, 45, 0.2));
  }  50% {
    filter: drop-shadow(0 0 10px rgba(255, 221, 45, 0.55))
      drop-shadow(0 0 18px rgba(255, 221, 45, 0.28));
  }}
@media (prefers-reduced-motion: reduce) {
  .hero__header--v4 .hero__badge .odometer,
  .hero__header--v4 .hero__badge .odometer::after {
    animation: none;
    filter: none;
  }
  .hero__header--v4 .hero__badge .odometer::after {
    display: none;
  }}
.hero__header--v4 .odometer__block {
  padding: 0.28em 0.55em 0.3em 0.5em;
}
.hero__header--v4 .odometer__digit {
  width: 0.72em;
}
.hero__header--v4 .odometer__unit {
  font-size: 0.82em;
}
/* —— Móvil: banner apilado y legible —— */
@media (max-width: 720px) {
  .hero__header--v4 {
    --hero-badge: 0.78rem;
    --hero-hey: 0.62rem;
    --hero-badge-min: 0;
  }
  .hero__header--v4 .hero__badge {
    width: 100%;
    max-width: min(22.5rem, calc(100vw - 1.5rem));
    margin-inline: auto;
  }
  .hero__header--v4 .hero__badge-chip {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0.7rem 0.8rem 0.75rem;
    border-radius: 1.15rem;
  }
  .hero__header--v4 .hero__badge-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
  }
  .hero__header--v4 .hero__hey {
    align-self: center;
  }
  .hero__header--v4 .hero__badge-copy {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }
  .hero__badge-meta {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  .hero__badge-sep {
    display: none;
  }
  .hero__badge-when {
    width: auto;
    max-width: 100%;
    justify-content: center;
    gap: 0.45em;
    padding: 0.45em 0.75em 0.48em;
    border-radius: 0.75rem;
    background: #fff;
    border-color: rgba(10, 10, 10, 0.12);
  }
  .hero__badge-date {
    font-size: 1rem;
    font-weight: 800;
  }
  .hero__badge-hour {
    font-size: 0.88rem;
  }
  .hero__badge-tz {
    font-size: 0.68em;
  }
  .hero__plazas {
    animation: none;
    padding: 0.3em 0.55em 0.32em;
  }
  .hero__header--v4 .hero__badge .odometer,
  .hero__header--v4 .hero__badge time {
    font-size: 1.12rem;
    letter-spacing: 0;
    gap: 0.35rem;
  }
  .hero__header--v4 .odometer__block {
    margin-left: 0;
    min-width: 2.15em;
    padding: 0.32em 0.42em 0.34em;
    gap: 0.06em;
  }
  .hero__header--v4 .odometer__digit {
    width: 0.68em;
  }
  .hero__header--v4 .odometer__unit {
    margin-left: 0.08em;
    font-size: 0.78em;
  }
  .hero__header--v4 {
    --hero-h1: min(
      clamp(1.85rem, 6.4vw + 1.3vh, 2.5rem),
      clamp(1.8rem, 1.7vw + 5vh, 2.5rem)
    );
  }
  .hero__header--v4 .hero__badge {
    margin-bottom: 0.85rem;
  }
  .cover-track .stage--hero {
    padding-bottom: 1.25rem;
  }
  .topnav__cta {
    font-size: 0.78rem;
    padding-inline: 0.7rem;
  }
  .page-section--courses {
    margin: -12vh 0 1rem;
    padding-top: clamp(3.25rem, 8vh, 4.5rem);
    padding-bottom: clamp(4.25rem, 11vh, 6rem);
  }
  .page-section.page-section--manifesto {
    margin-top: calc(-14vh + 1rem);
    padding-top: calc(14vh - 1rem);
  }
  .courses-board {
    --courses-stack-gap: 1.75rem;
    gap: var(--courses-stack-gap);
    padding-inline: 0.15rem;
  }
  .courses-board__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
  .course-feat {
    grid-template-columns: 1.25fr 0.75fr;
    padding: 0.75rem 0.6rem 0.75rem 0.85rem;
  }
  .course-feat__title {
    font-size: 0.88rem;
  }
  .course-feat__desc {
    font-size: 0.72rem;
  }
  .course-feat__art,
  .course-feat__img {
    height: 5.25rem;
    max-height: 5.25rem;
  }
  .courses-band__bar {
    flex-wrap: wrap;
    gap: 0.55rem;
  }
  .courses-band__label {
    max-width: none;
    white-space: normal;
  }
  .course-rail__card {
    width: min(15.5rem, 78vw);
  }}
@media (max-width: 420px) {
  .hero__badge-date {
    font-size: 0.98rem;
  }
  .hero__badge-meta {
    gap: 0.35em;
  }
  .topnav__pill {
    gap: 0.35rem;
    padding-inline: 0.45rem;
  }
  .topnav__logo-svg {
    height: calc(var(--topnav-btn-h) * 0.46);
  }}
/* —— Menú hamburguesa vertical en móvil —— */
@media (max-width: 720px) {
  .topnav.is-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(10, 10, 10, 0.28);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
  }
  .topnav__pill {
    z-index: 1;
    width: max-content;
    max-width: calc(100vw - 1.25rem);
    --topnav-pill-gap: 0.55rem;
    padding: 0.38rem 0.5rem 0.38rem 0.7rem;
  }
  .topnav__logo-svg {
    height: calc(var(--topnav-btn-h) * 0.5);
  }
  .topnav__menu-shell,
  .topnav__pill--liquid .topnav__menu-shell,
  .topnav.is-open .topnav__menu-shell,
  .topnav.is-animating .topnav__menu-shell,
  .topnav.is-closing .topnav__menu-shell,
  .topnav.is-measuring .topnav__menu-shell {
    position: static;
    overflow: visible;
    transform: none;
    filter: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    will-change: auto;
  }
  .topnav.is-open .topnav__menu-shell,
  .topnav.is-animating .topnav__menu-shell,
  .topnav.is-closing .topnav__menu-shell,
  .topnav.is-measuring .topnav__menu-shell {
    width: var(--topnav-btn-h);
    max-width: var(--topnav-btn-h);
    height: var(--topnav-btn-h);
    justify-content: center;
    background: var(--nav-glass-bg-soft);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 4px 14px rgba(10, 10, 10, 0.05);
  }
  .topnav.is-open .topnav__toggle {
    margin-left: 0;
  }
  .topnav__links {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    right: auto;
    z-index: 5;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: min(11.75rem, calc(100vw - 2rem));
    max-width: none;
    min-width: 10.5rem;
    margin: 0;
    padding: 0.4rem;
    overflow: hidden;
    border-radius: 1.05rem;
    border: 1px solid var(--nav-glass-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 18px 40px rgba(10, 10, 10, 0.16);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    white-space: normal;
    font-size: 0.92rem;
    color: #2a2a2a;
  }
  .topnav.is-open .topnav__links {
    max-width: none;
    padding: 0.4rem;
    opacity: 1;
    pointer-events: auto;
  }
  .topnav:not(.is-open) .topnav__links {
    visibility: hidden;
  }
  .topnav.is-open .topnav__links,
  .topnav.is-animating .topnav__links,
  .topnav.is-closing .topnav__links {
    visibility: visible;
  }
  .topnav__links a {
    display: block;
    width: 100%;
    padding: 0.72rem 0.9rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
  }
  .topnav__links a:hover,
  .topnav__links a:active {
    color: var(--ink);
    background: rgba(255, 221, 45, 0.35);
  }}
.hero__header--v4 + .hero__stage {
  background: #fff;
}
.hero__header--v4 + .hero__stage::before,
.hero__header--v4 + .hero__stage::after {
  width: min(14%, 7.5rem);
}
.hero__header--v4 + .hero__stage::before {
  background: linear-gradient(
    to right,
    #fff 0%,
    rgba(255, 255, 255, 0.85) 28%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero__header--v4 + .hero__stage::after {
  background: linear-gradient(
    to left,
    #fff 0%,
    rgba(255, 255, 255, 0.85) 28%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hero__header--v4 + .hero__stage .hero__video {
  aspect-ratio: 1280 / 720;
  background: #fff;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}
@supports (width: 1cqb) {
  .hero__header--v4 + .hero__stage .hero__video {
    width: min(100cqi, calc(100cqb * 1280 / 720));
    height: auto;
  }}
/* “superpoderes” — borde neón rosa→azul suave + glitter */
.hero__ai-word {
  display: inline;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: nowrap;
}
.hero__ai-letter {
  position: relative;
  display: inline-block;
  color: #222;
  font: inherit;
  line-height: inherit;
}
.hero__ai-letter-face {
  position: relative;
  z-index: 2;
  color: #222;
}
.hero__ai-letter-neon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.15px transparent;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, filter, text-shadow;
}
.hero__ai-letter-neon.is-on {
  animation: ai-neon-soft 2.4s ease-in-out infinite;
}
.hero__ai-letter-spark {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
@keyframes ai-neon-soft {
  0%,
  100% {
    filter: brightness(1) saturate(1.1);
  }  50% {
    filter: brightness(1.12) saturate(1.25);
  }}
@media (prefers-reduced-motion: reduce) {
  .hero__ai-letter-neon {
    opacity: 0.85;
    animation: none;
    text-shadow:
      0 0 2px rgba(255, 140, 210, 0.7),
      0 0 6px rgba(255, 120, 200, 0.45),
      0 0 8px rgba(130, 180, 255, 0.4),
      0 0 14px rgba(120, 175, 255, 0.35);
    -webkit-text-stroke: 1.15px rgba(200, 150, 240, 0.85);
  }}
/* Cubo — texto izquierda, vídeo pequeño derecha; solape suave sin tapar el rail */
.video-spacer {
  height: 155vh;
}
.page-section--cubo {
  position: relative;
  z-index: 3;
  margin-top: -10vh;
  background: #ffffff;
  box-shadow: 0 -18px 48px rgba(10, 10, 10, 0.08);
}
.page-section--cubo .feature__head {
  grid-column: 1 / span 7;
  grid-row: 1;
}
.page-section--cubo .feature__visual--video {
  grid-column: 8 / span 5;
  grid-row: 1 / span 3;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: #ffffff;
}
.page-section--cubo .feature__point:nth-of-type(1) {
  grid-column: 1 / span 3;
  grid-row: 2;
}
.page-section--cubo .feature__point:nth-of-type(2) {
  grid-column: 4 / span 4;
  grid-row: 2;
}
.page-section--cubo .feature__point:nth-of-type(3) {
  grid-column: 1 / span 7;
  grid-row: 3;
}
.page-section--cubo .feature__media {
  display: block;
  width: min(100%, 420px);
  height: auto;
  max-height: min(42vh, 340px);
  aspect-ratio: 736 / 400;
  object-fit: contain;
  object-position: center right;
  background: #ffffff;
  pointer-events: none;
  margin-left: auto;
}
@media (max-width: 820px) {
  .page-section--cubo .feature__head,
  .page-section--cubo .feature__visual--video,
  .page-section--cubo .feature__point:nth-of-type(1),
  .page-section--cubo .feature__point:nth-of-type(2),
  .page-section--cubo .feature__point:nth-of-type(3) {
    grid-column: 1 / -1;
  }
  .page-section--cubo .feature__visual--video {
    grid-row: 1;
    justify-content: center;
  }
  .page-section--cubo .feature__head {
    grid-row: 2;
  }
  .page-section--cubo .feature__point:nth-of-type(1) {
    grid-row: 3;
  }
  .page-section--cubo .feature__point:nth-of-type(2) {
    grid-row: 4;
  }
  .page-section--cubo .feature__point:nth-of-type(3) {
    grid-row: 5;
  }
  .page-section--cubo .feature__media {
    width: min(100%, 360px);
    margin-inline: auto;
  }}
/* El pin del hero tiene radius; track y spacer transparentes
   para que se lea el negro del body en las esquinas. */
.cover-track {
  position: relative;
  z-index: 3;
  background: transparent;
}
.cover-track .video-spacer {
  background: transparent;
}

/* —— Cursos: grid de nuevos + rail de disponibles —— */
.page-section--courses {
  position: relative;
  z-index: 2;
  background-color: #f4f4f6;
  background-image:
    radial-gradient(rgba(10, 10, 10, 0.11) 1.25px, transparent 1.3px),
    linear-gradient(165deg, #f7f7f9 0%, #f4f4f6 48%, #f1f1f3 100%);
  background-size: 16px 16px, auto;
  overflow: hidden;
  border-radius: var(--frame-radius, 24px);
  /* Dentro de cover-track: el hero sticky se queda quieto y cursos sale al final del vídeo */
  margin: -18vh 0 1rem;
  padding-top: clamp(4.5rem, 10vh, 6.5rem);
  padding-bottom: clamp(5.5rem, 14vh, 8.5rem);
  box-shadow: none;
}
.courses-board {
  --courses-stack-gap: clamp(2.75rem, 6vh, 4rem);
  --courses-band-gap: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: var(--courses-stack-gap);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--grid-margin, 1.25rem);
}
.courses-board__head {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}
.courses-board__hey {
  display: inline-flex;
  margin: 0 auto 32px;
  font-size: calc(0.72rem + 1pt);
}
.courses-board__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8a8a8a;
}
.courses-board__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0a0a;
}
.courses-board__lead,
.pricing__lead,
.cta-mail__lead {
  margin: 0.85rem 0 0;
  font-size: var(--hero-sub);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--ink, #0a0a0a);
}
.courses-band {
  display: flex;
  flex-direction: column;
  gap: var(--courses-band-gap, 1.15rem);
}
.ds-path {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1.15rem, 2.6vw, 1.65rem);
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.8vw, 1.75rem) clamp(1.1rem, 2.5vw, 1.65rem)
    clamp(1.1rem, 2.2vw, 1.45rem);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 28px rgba(10, 10, 10, 0.06);
  box-sizing: border-box;
  overflow: hidden;
}

/* Bento: DS izquierda (alto) + partners derecha (2 apilados) */
.courses-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 1fr);
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  align-items: stretch;
}
.courses-bento__main {
  max-width: none;
  margin: 0;
  min-height: 0;
  height: auto;
  overflow: hidden;
  align-self: stretch;
}
.ds-roll.courses-bento__main {
  min-height: 0;
}
.ds-temp.ds-roll.courses-bento__main {
  min-height: max-content;
}
.courses-bento__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  min-height: 0;
  height: 100%;
  align-self: stretch;
  align-content: stretch;
}
.courses-bento__side .partner-card {
  height: 100%;
  min-height: 0;
  padding: 1.05rem 1.1rem 0.65rem;
  gap: 0.42rem;
}
.courses-bento__side .partner-card__list {
  margin: 0.1rem 0 0;
  flex: 1 1 auto;
}
.courses-bento__side .partner-card__list li {
  padding: 0.48rem 0.1rem;
}
.courses-bento__side .partner-card__credit {
  width: auto;
  align-self: stretch;
  margin: auto -1.1rem -0.65rem;
  padding: 0.7rem 1.1rem 0.75rem;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  background: #f2f2f4;
}
.courses-bento__side .partner-card__desc {
  white-space: normal;
  margin-bottom: 0.55rem;
  font-size: clamp(0.86rem, 1.15vw, 0.96rem);
}
.courses-bento__side .partner-card__title {
  margin-top: 0.85rem;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media (max-width: 900px) {
  .courses-bento {
    grid-template-columns: 1fr;
  }
  .courses-bento__main {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .ds-roll.courses-bento__main {
    min-height: 22rem;
    overflow: hidden;
  }
  .ds-evo__logos {
    display: none;
  }
  .ds-evo__head {
    max-width: 22rem;
  }
  .courses-bento__side {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .courses-bento__side .partner-card__title,
  .courses-bento__side .partner-card__desc,
  .courses-bento__side .partner-card__list li,
  .courses-bento__side .partner-card__with {
    white-space: normal;
    overflow-wrap: break-word;
  }
}
@media (max-width: 700px) {
  .courses-bento__side {
    grid-template-columns: 1fr;
  }
  .courses-bento__side .partner-card__title {
    white-space: normal;
    overflow-wrap: break-word;
    font-size: clamp(1.02rem, 4vw, 1.15rem);
  }
  .courses-bento__side .partner-card__desc,
  .courses-bento__side .partner-card__list li,
  .courses-bento__side .partner-card__with {
    white-space: normal;
    overflow-wrap: break-word;
  }
  .ds-evo {
    gap: 1rem;
    padding: 0.15rem 0.1rem 0.5rem;
  }
  .ds-evo__title {
    font-size: 1.55rem;
  }
  .ds-evo__step {
    grid-template-columns: 1.7rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.58rem 0;
  }
  .ds-evo__step:not(:last-child)::before {
    left: 0.85rem;
    top: calc(0.58rem + 1.7rem);
  }
  .ds-evo__num {
    width: 1.7rem;
    height: 1.7rem;
  }
}
.ds-roll {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 1rem;
  gap: 0.85rem;
}
.ds-path.ds-roll {
  background: #fff;
}
.ds-roll__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ds-roll__pill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.08);
  box-sizing: border-box;
}
.ds-roll__pill-logo {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  height: clamp(1.35rem, 2.6vw, 1.75rem);
  max-width: 42%;
  object-fit: contain;
}
.ds-roll__pill-logo:first-of-type {
  object-position: left center;
}
.ds-roll__pill-logo--next {
  height: clamp(1.55rem, 3vw, 2.05rem);
  max-width: 48%;
  object-position: right center;
}
.ds-roll__pill-loop {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 1.45rem;
  color: #4a4a4a;
}
@media (max-width: 700px) {
  .ds-roll__pill {
    gap: 0.35rem;
    padding: 0.55rem 0.62rem;
    overflow: hidden;
  }
  .ds-roll__pill-logo {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: none;
    height: 1.02rem;
  }
  .ds-roll__pill-logo--next {
    height: 1.18rem;
    max-width: none;
  }
  .ds-roll__pill-loop {
    flex: 0 0 auto;
    width: 1.4rem;
    height: 0.88rem;
  }
}
.ds-evo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
  min-width: 0;
  min-height: 0;
  padding: 0.25rem 0.5rem 0.9rem;
}
.ds-evo__step {
  position: relative;
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.62rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}
.ds-evo__step:first-child {
  border-top: none;
}
.ds-evo__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: calc(0.62rem + 1.7rem);
  bottom: 0;
  width: 1px;
  background: rgba(17, 17, 17, 0.16);
  transform: translateX(-0.5px);
}
.ds-evo__logos {
  position: absolute;
  top: 0.1rem;
  right: -1.85rem;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
  pointer-events: none;
  user-select: none;
  opacity: 0.48;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%),
    linear-gradient(180deg, #000 52%, transparent 84%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%),
    linear-gradient(180deg, #000 52%, transparent 84%);
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 900px) {
  .ds-evo__logos {
    display: none;
  }
  .ds-evo__head {
    max-width: none;
  }
}
.ds-evo__logos-row {
  display: flex;
  gap: 0.46rem;
  justify-content: flex-end;
}
.ds-evo__logos-row:nth-child(odd) {
  padding-right: 1.58rem;
}
.ds-evo__logo {
  display: grid;
  place-items: center;
  width: 2.72rem;
  height: 2.72rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0.62rem;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(17, 17, 17, 0.06),
    0 8px 18px rgba(10, 10, 10, 0.09);
}
.ds-evo__logo svg,
.ds-evo__logo img {
  width: 58%;
  height: 58%;
  display: block;
  object-fit: contain;
}
.ds-evo__logo--empty svg,
.ds-evo__logo--empty img {
  display: none;
}
.ds-evo__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 22rem;
}
.ds-evo__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #111;
}
.ds-evo__lead {
  margin: 0;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.35;
  color: #5c5c5c;
}
.ds-evo__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.7rem;
  margin: 0.15rem 0 0;
}
.ds-evo__hours {
  margin: 0;
  padding: 0.32rem 0.7rem;
  width: fit-content;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.ds-evo__start {
  margin: 0;
  padding: 0.32rem 0.7rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.22);
  background: transparent;
  color: #111;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.ds-evo__steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ds-evo__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #ececef;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: #6a6a6a;
}
.ds-evo__step--next .ds-evo__num {
  background: #ece8ff;
  color: #6052fa;
}
.ds-evo__body {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
  padding-top: 0.12rem;
}
.ds-evo__over {
  margin: 0;
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.ds-evo__step--next .ds-evo__over {
  color: #6052fa;
}
.ds-evo__k {
  font-size: clamp(0.86rem, 1.15vw, 0.98rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}
.ds-evo__d {
  margin: 0;
  font-size: clamp(0.72rem, 0.92vw, 0.8rem);
  font-weight: 500;
  line-height: 1.35;
  color: #6a6a6a;
}
.ds-temp {
  --heat: #4d6ef5;
  --next: #6052fa;
  --t: 0.6667;
}
.ds-temp.ds-roll {
  gap: 0.65rem;
  padding: 1rem;
}
.ds-temp__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0;
  flex: 0 0 auto;
}
.ds-temp__level {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--heat);
  line-height: 1.15;
}
.ds-temp__slider {
  position: relative;
  z-index: 1;
  height: 2.15rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ececee;
  touch-action: none;
  cursor: pointer;
  user-select: none;
}
.ds-temp__slider:focus-visible {
  outline: 2px solid var(--heat);
  outline-offset: 3px;
}
.ds-temp__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #5b7cff 0%, var(--heat) 70%, #3f63f0 100%);
  clip-path: inset(0 calc((1 - var(--t)) * 100%) 0 0);
}
.ds-temp__spark {
  position: absolute;
  width: var(--s, 5px);
  height: var(--s, 5px);
  background: rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
  border-radius: 0.5px;
  left: var(--x);
  top: var(--y);
  opacity: 0.9;
}
.ds-temp__dots {
  position: absolute;
  inset: 0 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.ds-temp__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8b8be;
  transform: scale(calc(1 - var(--covered, 0)));
  opacity: calc(1 - var(--covered, 0));
}
.ds-temp__thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: -1.2rem;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1),
    0 6px 16px rgba(20, 20, 22, 0.16);
  pointer-events: none;
  will-change: transform;
}
.ds-temp__pill {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  min-width: 0;
  margin: 0.2rem 0 0.1rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(20, 20, 22, 0.06),
    0 10px 24px rgba(20, 20, 22, 0.06);
  box-sizing: border-box;
}
.ds-temp__pill img {
  display: block;
  height: 1.45rem;
  width: auto;
  max-width: 42%;
  object-fit: contain;
}
.ds-temp__pill img:last-of-type {
  height: 1.7rem;
  opacity: calc(0.28 + var(--t) * 0.72);
  transform: scale(calc(0.92 + var(--t) * 0.08));
  transform-origin: right center;
}
.ds-temp__flow {
  flex: 0 0 auto;
  width: 3.4rem;
  height: 0.7rem;
  color: #d4d4d8;
}
.ds-temp__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-width: 0;
}
.ds-temp__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 22rem;
  padding: 0.15rem 0.2rem 0;
}
.ds-temp__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #111;
}
.ds-temp__title span {
  display: block;
}
.ds-temp__title-next {
  opacity: var(--t);
  transform: translateY(calc((1 - var(--t)) * 0.35rem));
  filter: blur(calc((1 - var(--t)) * 4px));
}
.ds-temp__lead {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #2a2a2e;
  opacity: var(--t);
}
.ds-temp__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.ds-temp__chip {
  margin: 0;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 550;
  line-height: 1.2;
}
.ds-temp__chip--solid {
  background: #111;
  color: #fff;
}
.ds-temp__chip--line {
  border: 1px solid rgba(20, 20, 22, 0.2);
  background: transparent;
  color: #111;
}
.ds-temp__tools {
  position: absolute;
  top: 0;
  right: -1.4rem;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.36rem;
  padding-top: 0;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%),
    linear-gradient(180deg, #000 62%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%),
    linear-gradient(180deg, #000 62%, transparent 100%);
  mask-composite: intersect;
}
.ds-temp__tools-row {
  display: flex;
  gap: 0.36rem;
  justify-content: flex-end;
}
.ds-temp__tools-row:nth-child(odd) {
  padding-right: 1.58rem;
}
.ds-temp__tool {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0.62rem;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(17, 17, 17, 0.06),
    0 8px 18px rgba(10, 10, 10, 0.09);
  opacity: calc(0.35 + var(--on, 0) * 0.65);
  transform: scale(calc(0.88 + var(--on, 0) * 0.12));
}
.ds-temp__tool img,
.ds-temp__tool svg {
  width: 58%;
  height: 58%;
  display: block;
  object-fit: contain;
}
.ds-temp__tool--empty {
  opacity: 1;
  transform: none;
}
.ds-temp__tool--empty img,
.ds-temp__tool--empty svg {
  display: none;
}
.ds-temp__tool--base {
  --on: 1;
  opacity: 1;
  transform: scale(1);
}
.ds-temp__steps {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}
.ds-temp__step {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.55rem 0.1rem 0.42rem;
  border-top: 1px solid rgba(20, 20, 22, 0.1);
  opacity: calc(0.28 + var(--on) * 0.72);
  transform: translateX(calc((1 - var(--on)) * -0.35rem)) scale(calc(0.97 + var(--on) * 0.03));
  transform-origin: left center;
}
.ds-temp__step:first-child {
  border-top: 0;
}
.ds-temp__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.87rem;
  top: calc(0.55rem + 1.75rem);
  bottom: 0;
  width: 1px;
  background: rgba(20, 20, 22, 0.14);
  transform: translateX(-0.5px) scaleY(var(--on));
  transform-origin: top;
}
.ds-temp__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, #ececef calc((1 - var(--on)) * 100%), #ece8ff calc(var(--on) * 100%));
  color: color-mix(in srgb, #6a6a6a calc((1 - var(--on)) * 100%), var(--next) calc(var(--on) * 100%));
  font-size: 0.58rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.ds-temp__step:first-child .ds-temp__num {
  background: #ececef;
  color: #6a6a6a;
}
.ds-temp__over {
  margin: 0 0 0.12rem;
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, #8a8a8a calc((1 - var(--on)) * 100%), var(--next) calc(var(--on) * 100%));
}
.ds-temp__step:first-child .ds-temp__over {
  color: #8a8a8a;
}
.ds-temp__k {
  display: block;
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111;
}
.ds-temp__d {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0.18rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6a6a70;
  line-height: 1.35;
  transition: grid-template-rows 420ms cubic-bezier(0.32, 0.72, 0, 1);
}
.ds-temp__d > span {
  overflow: hidden;
}
.ds-temp__step.is-open .ds-temp__d {
  grid-template-rows: 1fr;
}
@media (max-width: 900px) {
  .ds-temp__tools {
    display: none;
  }
  .ds-temp__copy {
    max-width: none;
  }
  .ds-temp__title {
    font-size: clamp(1.55rem, 6vw, 2.05rem);
  }
}
@media (max-width: 700px) {
  .ds-temp__pill {
    gap: 0.35rem;
    padding: 0.55rem 0.62rem;
  }
  .ds-temp__pill img {
    height: 1.05rem;
  }
  .ds-temp__pill img:last-of-type {
    height: 1.2rem;
  }
  .ds-temp__flow {
    width: 2.4rem;
  }
  .ds-temp__step {
    grid-template-columns: 1.7rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.58rem 0;
  }
  .ds-temp__step:not(:last-child)::before {
    left: 0.85rem;
    top: calc(0.58rem + 1.7rem);
  }
  .ds-temp__num {
    width: 1.7rem;
    height: 1.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ds-temp__title-next,
  .ds-temp__tool,
  .ds-temp__step,
  .ds-temp__d,
  .ds-temp__pill img:last-of-type {
    transition: none !important;
    filter: none !important;
  }
}
.courses-band__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 2rem;
}
.courses-band__label {
  margin: 0;
  flex: 0 1 auto;
  width: fit-content;
  max-width: 100%;
  padding: 0.32rem 0.48rem 0.34rem;
  border-radius: 0;
  background: #0a0a0a;
  color: #fff;
  font-size: calc(0.7rem + 1pt);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: nowrap;
}
.courses-band__nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  margin-left: auto;
}
.courses-rail-count {
  margin: 0 0.35rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #6b6b6b;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.courses-rail-count__sep {
  margin: 0 0.15rem;
  color: #a3a3a3;
  font-weight: 500;
}
.courses-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  cursor: pointer;
}
.courses-nav-btn--next {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}
.courses-nav-btn:hover {
  transform: translateY(-1px);
}
.courses-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}
/* Grid de nuevos — fade al entrar vía .reveal + --d */
.course-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.course-feat {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.5rem;
  min-width: 0;
  min-height: 0;
  padding: 0.85rem 0.7rem 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(180, 201, 239, 0.14),
    0 8px 28px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.course-feat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      120% 90% at 28% 18%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.16) 34%,
      transparent 68%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.06) 48%,
      rgba(180, 201, 239, 0.08) 100%
    );
  opacity: 0.9;
  mix-blend-mode: soft-light;
}
.course-feat > * {
  position: relative;
  z-index: 1;
}
.course-feat__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.8rem;
  z-index: 2;
  padding: 0.14rem 0.4rem;
  border-radius: 0.3rem;
  border: 1px solid #f5e08a;
  background: #fff6c8;
  color: #5c5200;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
}
.course-feat__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.35rem;
  min-width: 0;
}
.course-feat__title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  color: #0a0a0a;
}
.course-feat__desc {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #282828;
}
.course-feat__art {
  position: relative;
  align-self: center;
  min-height: 0;
  height: 6.1rem;
  border-radius: 0.75rem;
  background: transparent;
  overflow: visible;
  display: grid;
  place-items: center;
}
.course-feat__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 6.1rem;
  object-fit: contain;
  object-position: center;
  padding: 0.1rem;
}
/* Rail disponibles — auto marquee + fade lateral */
.course-rail {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0 1.4rem;
  margin: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}
.course-rail__track {
  display: flex;
  gap: 0.85rem;
  margin: 0;
  padding: 0.2rem 0.5rem 0.35rem;
  list-style: none;
  width: max-content;
  will-change: transform;
}
.course-rail__card {
  flex: 0 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.7rem;
  width: min(17.5rem, 78vw);
  min-height: 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(180, 201, 239, 0.14),
    0 8px 28px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  overflow: visible;
  isolation: isolate;
  transform: translateZ(0);
}
.course-rail__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      120% 90% at 28% 18%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.16) 34%,
      transparent 68%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.06) 48%,
      rgba(180, 201, 239, 0.08) 100%
    );
  opacity: 0.9;
  mix-blend-mode: soft-light;
}
.course-rail__card > * {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .course-rail {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }}
.course-rail__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.2rem;
  background: var(--c, #ffdd2d);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.course-rail__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.course-rail__new {
  width: max-content;
  margin: 0 0 0.1rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: #ffdd2d;
  color: #0a0a0a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
}
.course-rail__text strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  color: #0a0a0a;
}
.course-rail__text span:not(.course-rail__new) {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #282828;
}
@media (max-width: 960px) {
  .course-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 640px) {
  .course-feat-grid {
    grid-template-columns: 1fr;
  }
  .course-feat {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .courses-band__label {
    white-space: normal;
  }}

/* —— Partner cards (amigos: a11y / research) —— */
.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.25rem);
  align-items: stretch;
}
.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
  padding: 1.15rem 1.2rem 0.35rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(180, 201, 239, 0.14),
    0 8px 28px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      120% 90% at 28% 18%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.16) 34%,
      transparent 68%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.06) 48%,
      rgba(180, 201, 239, 0.08) 100%
    );
  opacity: 0.9;
  mix-blend-mode: soft-light;
}
.partner-card > * {
  position: relative;
  z-index: 1;
}
.partner-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.partner-card__badges {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.partner-card--a11y .partner-card__badge {
  background: #d8e8ff;
  color: #1d4ed8;
}
.partner-card--research .partner-card__badge {
  background: #e8f3b8;
  color: #4f6b12;
}
.partner-card--research {
  border-color: #e8f3b8;
}
.partner-card--a11y {
  border-color: #d8e8ff;
}
.partner-card--research .partner-card__badge--nuevo {
  border: 1px solid #f5e08a;
  background: #fff6c8;
  color: #5c5200;
  letter-spacing: 0;
  font-weight: 600;
}
.partner-card__title {
  margin: 0.15rem 0 0;
  max-width: none;
  white-space: nowrap;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #0a0a0a;
}
.partner-card__desc {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  font-weight: 500;
  line-height: 1.4;
  color: #5c5c5c;
}
.partner-card__credit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin: 0.35rem 0 0.55rem;
}
.partner-card__credit .partner-card__with {
  margin: 0;
}
.partner-card__with {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  margin: 0.35rem 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #0a0a0a;
}
.partner-card__with--by {
  display: block;
  gap: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #5c5c5c;
}
.partner-card__with strong {
  font-weight: 700;
}
.partner-card__person {
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #4f6b12;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: none;
}
.partner-card__person:hover {
  text-decoration-color: #2f4308;
}
.partner-card__logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-card__logo--weaaare {
  width: auto;
  height: 2.35rem;
}
.partner-card__logo--centaur {
  height: 1.05rem;
  width: auto;
  max-width: 7.5rem;
}
.partner-card__list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  width: 100%;
}
.partner-card__list li {
  display: block;
  margin: 0;
  padding: 0.95rem 0.1rem;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #0a0a0a;
}
.partner-card__list li span {
  min-width: 0;
}
@media (max-width: 700px) {
  .partner-cards {
    grid-template-columns: 1fr;
  }
  .partner-card__title {
    white-space: normal;
    font-size: clamp(1.25rem, 5.5vw, 1.55rem);
  }
  .partner-card__desc {
    white-space: normal;
    font-size: 0.9rem;
  }
}

/* —— Swarm Agents team —— */
.page-section.page-section--swarm {
  min-height: 0;
  margin: 12px 0 0;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1.1rem, 2.8vw, 1.75rem)
    clamp(0.7rem, 1.5vw, 1.1rem);
  background: #fff;
  color: #0a0a0a;
  border-radius: var(--frame-radius, 24px);
  overflow: visible;
  scroll-margin-top: 5.25rem;
}
.swarm-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 1180px;
  margin: 0 auto;
}
.swarm-team__head {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.swarm-team__hey {
  display: inline-flex;
  margin: 0 auto 32px;
  font-size: calc(0.72rem + 1pt);
}
.hero__hey--ai {
  box-shadow:
    0 0 0 1.5px rgba(210, 170, 255, 0.9),
    0 0 14px rgba(150, 165, 255, 0.75),
    0 0 28px rgba(255, 130, 205, 0.55),
    0 0 44px rgba(110, 175, 255, 0.4);
}
.swarm-team__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0a0a;
}
.swarm-team__brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.08em;
  white-space: nowrap;
}
.swarm-team__beta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.18em;
  padding: 0.2em 0.45em 0.22em;
  border-radius: 999px;
  background: #ffdd2d;
  color: #0a0a0a;
  font-family: var(--font-body, "General Sans", sans-serif);
  font-size: 0.22em;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.swarm-team__lead {
  margin: 0.85rem 0 0;
  font-size: var(--hero-sub);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--ink, #0a0a0a);
}
.swarm-team__integrations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.7rem auto 0;
  max-width: 36rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: #8a8a8a;
}
.swarm-team__integrations-kicker {
  display: block;
}
.swarm-team__integrations-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.38rem 0.75rem;
}
.swarm-team__tool {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #5c5c5c;
  white-space: nowrap;
}
.swarm-team__tool img {
  display: block;
  width: 0.88rem;
  height: 0.88rem;
  object-fit: contain;
  flex: 0 0 auto;
}
.swarm-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 1120px;
  margin: 0 auto;
}
.swarm-team__figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 56rem;
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(0.5rem, 7vw, 4.5rem)
    clamp(1.15rem, 2.4vw, 1.85rem);
  overflow: visible;
}
.swarm-team__img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
}
.swarm-bubbles {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  /* Solo por encima de los pies de los muñecos */
  top: 0;
  left: 0;
  right: 0;
  bottom: 42%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.swarm-chat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  max-width: min(16.5rem, 52vw);
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.98);
  will-change: transform, opacity;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.swarm-chat.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.swarm-chat.is-out {
  opacity: 0;
  transform: translate3d(0, -8px, 0) scale(0.99);
}
.swarm-chat__row {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  max-width: 100%;
}
.swarm-chat__row--reply {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.85s,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}
.swarm-chat.is-in .swarm-chat__row--reply {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.swarm-chat.is-out .swarm-chat__row--reply {
  opacity: 0;
  transition-delay: 0s;
}
.swarm-chat__avatar {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: #eee;
  box-shadow: 0 0 0 1.5px #fff, 0 2px 8px rgba(10, 10, 10, 0.12);
}
.swarm-chat__avatar--bot {
  background: #fff;
  object-fit: cover;
  object-position: center 18%;
}
.swarm-chat__ask,
.swarm-chat__reply {
  margin: 0;
  padding: 0.5rem 0.72rem;
  font-family: var(--font-body, "General Sans", sans-serif);
  font-size: clamp(0.66rem, 1.02vw, 0.78rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #0a0a0a;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 8px 22px rgba(10, 10, 10, 0.07);
}
.swarm-chat__ask {
  background: #f4f4f4;
  border-radius: 1rem 1rem 1rem 0.28rem;
  color: #333;
}
.swarm-chat__reply {
  background: var(--agent-soft, #fff);
  border-color: var(--agent-line, rgba(10, 10, 10, 0.08));
  border-radius: 0.28rem 1rem 1rem 1rem;
}
.swarm-chat__who {
  display: block;
  margin-bottom: 0.12rem;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--agent-ink, #888);
}
.swarm-chat--shifty {
  --agent-soft: #fff8d4;
  --agent-line: rgba(200, 160, 20, 0.22);
  --agent-ink: #9a7400;
}
.swarm-chat--fressy {
  --agent-soft: #fce8f0;
  --agent-line: rgba(190, 90, 130, 0.2);
  --agent-ink: #b04a76;
}
.swarm-chat--punky {
  --agent-soft: #efe6f7;
  --agent-line: rgba(130, 90, 180, 0.2);
  --agent-ink: #7a4fb0;
}
.swarm-chat--crafty {
  --agent-soft: #e8f1fc;
  --agent-line: rgba(70, 120, 190, 0.2);
  --agent-ink: #3d6fad;
}
.swarm-chat--spicy {
  --agent-soft: #e8f6ec;
  --agent-line: rgba(60, 140, 90, 0.2);
  --agent-ink: #2f8a52;
}
.swarm-chat--end {
  align-items: flex-end;
}
.swarm-chat--end .swarm-chat__row {
  flex-direction: row-reverse;
}
.swarm-chat--end .swarm-chat__ask {
  border-radius: 1rem 1rem 0.28rem 1rem;
  text-align: right;
}
.swarm-chat--end .swarm-chat__reply {
  border-radius: 1rem 0.28rem 1rem 1rem;
  text-align: left;
}
@media (max-width: 820px) {
  .swarm-team__figure {
    padding: 1.75rem 0.35rem 0.85rem;
  }
  .swarm-bubbles {
    bottom: 46%;
  }
  .swarm-chat {
    max-width: min(13rem, 56vw);
  }
  .swarm-chat__ask,
  .swarm-chat__reply {
    font-size: 0.66rem;
    padding: 0.42rem 0.58rem;
  }
  .swarm-chat__avatar {
    width: 1.35rem;
    height: 1.35rem;
  }
}
@media (max-width: 720px) {
  .swarm-bubbles {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .swarm-chat,
  .swarm-chat__row--reply {
    transition: none;
  }
}

/* —— Manifiesto: párrafo grande que se ilumina al scroll —— */
.page-section.page-section--manifesto {
  position: relative;
  z-index: 1;
  min-height: 0;
  /* Pisca bajo cursos; deja ~1rem negro bajo el radio de cursos */
  margin: calc(-22vh + 1rem) 0 0;
  padding: 0;
  padding-top: calc(22vh - 1rem);
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.028) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: center top;
  border-radius: var(--frame-radius, 24px) var(--frame-radius, 24px) 0 0;
  overflow: visible;
  box-shadow: none;
  scroll-margin-top: 5.25rem;
}
.manifesto-pin {
  height: 240vh;
  overflow: visible;
}
.manifesto {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
  box-sizing: border-box;
  overflow: visible;
  padding:
    clamp(5.5rem, 14vh, 8.5rem)
    var(--grid-margin, 1.25rem)
    clamp(4.5rem, 10vh, 7rem);
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.028) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: center top;
}
.manifesto__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.85em;
  width: 100%;
  max-width: none;
  padding-right: 6.5rem;
  overflow: visible;
  will-change: transform;
}
.manifesto__ink {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  font-size: clamp(1.7rem, 2.6vw + 1.1vh, 3.15rem);
}
.manifesto__ink .manifesto__glyph,
.manifesto__ink .manifesto__leader,
.manifesto__ink .manifesto__sidenote {
  opacity: 0;
}
.manifesto__text {
  position: relative;
  margin: 0;
  max-width: none;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.7rem, 2.6vw + 1.1vh, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1.42;
  color: #0a0a0a;
  text-wrap: pretty;
  overflow: visible;
}
.manifesto__text--coda {
  font-size: clamp(1.15rem, 1.7vw + 0.7vh, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #3a3a3a;
}
.manifesto__word {
  display: inline;
  color: inherit;
  opacity: 0.14;
}
.manifesto__mark {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}
.manifesto__word--accent {
  background-image: linear-gradient(#ffdd2d, #ffdd2d);
  background-repeat: no-repeat;
  background-size: 0% 0.28em;
  background-position: 0 92%;
  padding-bottom: 0.06em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.manifesto__ann {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.manifesto__ann--comma {
  padding: 0 0.04em;
}
.manifesto__glyph,
.manifesto__leader {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}
.manifesto__glyph--under {
  height: 0.28em;
}
.manifesto__rule {
  display: block;
  height: 2px;
  background: #e23b3b;
  border-radius: 1px;
  transform-origin: 0 50%;
}
.manifesto__glyph--wavy {
  height: 0.34em;
}
.manifesto__glyph--pilcrow {
  width: auto;
  height: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62em;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: #3b82f6;
}
.manifesto__sidenote {
  position: absolute;
  font-family: var(--font-hand, "Gochi Hand", cursive);
  font-size: 0.42em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 0.8;
  white-space: nowrap;
  color: var(--ann-ink, #e23b3b);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transform-origin: left bottom;
}
.manifesto__sidenote--stet {
  color: #3b82f6;
  transform: rotate(-8deg);
  transform-origin: center bottom;
}
.manifesto__sidenote--insert {
  transform: rotate(-6deg);
  transform-origin: center top;
}
.manifesto__sidenote--del {
  transform: rotate(-6deg);
  transform-origin: left top;
}
.manifesto__sidenote--callout-up {
  transform: rotate(8deg);
  transform-origin: left bottom;
}
.manifesto__sidenote--callout-down,
.manifesto__sidenote--circle {
  transform: rotate(5deg);
}
@media (max-width: 720px) {
  .manifesto-pin {
    height: 200vh;
  }
  .manifesto {
    padding:
      clamp(5rem, 12vh, 7rem)
      var(--grid-margin, 1.25rem)
      clamp(3.5rem, 8vh, 5.5rem);
  }
  .manifesto__copy {
    max-width: none;
    padding-right: 2.25rem;
  }
  .manifesto__text {
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    letter-spacing: -0.034em;
    line-height: 1.45;
  }
  .manifesto__text--coda {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  }
  .manifesto__sidenote {
    font-size: 0.42em;
  }
  .manifesto__ann {
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  .manifesto-pin {
    height: auto;
  }
  .manifesto {
    position: relative;
    min-height: 0;
  }
  .manifesto__word {
    opacity: 1;
  }
  .manifesto__word--accent {
    background-size: 100% 0.28em;
  }
  .manifesto__ink .manifesto__glyph,
  .manifesto__ink .manifesto__leader,
  .manifesto__sidenote,
  .manifesto__sidenote--stet,
  .manifesto__sidenote--insert,
  .manifesto__sidenote--del,
  .manifesto__sidenote--callout-up,
  .manifesto__sidenote--callout-down,
  .manifesto__sidenote--circle,
  .manifesto__glyph--pilcrow {
    opacity: 1;
  }
}

/* —— Footer tipo Valley (estructura) —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* —— Calendario GitHub (actividad) —— */
.page-section.page-section--calendar {
  position: relative;
  z-index: 2;
  min-height: 0;
  min-width: 0;
  /* Cubre el pelo del sticky + la 1ª línea de la rejilla */
  margin: -2px 0 0;
  padding: clamp(2.25rem, 4.5vw, 3.25rem) clamp(1.1rem, 6vw, 5.5rem)
    clamp(3.5rem, 8vw, 6rem);
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.028) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: center -1px;
  color: #0a0a0a;
  /* Continuo con manifiesto; radio abajo = --frame-radius */
  border-radius: 0 0 var(--frame-radius, 24px) var(--frame-radius, 24px);
  overflow-x: clip;
  overflow-y: visible;
  scroll-margin-top: 5.25rem;
}
.cal-school {
  --gh0: #ebedf0;
  --gh1: #ffe9a3;
  --gh2: #ffd24a;
  --gh3: #f5c116;
  --gh4: #9a7400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4rem);
  width: 100%;
  max-width: 1120px;
  min-width: 0;
  margin: 0 auto;
}
.cal-school__head {
  position: relative;
  z-index: 3;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.cal-school__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.7fr);
  grid-template-rows: auto minmax(14rem, 22vw);
  gap: 0.75rem;
  align-items: stretch;
  isolation: isolate;
  width: 100%;
  max-width: 68rem;
  min-width: 0;
}
.cal-school__tile {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  border-radius: 1.25rem;
  background: #fff;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 32px rgba(10, 10, 10, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 10, 10, 0.28) transparent;
}
.cal-school__tile.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.cal-school__tile::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.cal-school__tile::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.22);
}
.cal-school__tile--dm {
  grid-column: 1;
  grid-row: 2;
}
.cal-school__tile--lab {
  grid-column: 2;
  grid-row: 2;
}
.cal-school__shot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: unset;
  object-position: top left;
  border-radius: 0;
  background: #fff;
  opacity: 1;
  transform: none;
  pointer-events: none;
}
.cal-school__hey {
  display: inline-flex;
  margin: 0 auto 32px;
  font-size: calc(0.72rem + 1pt);
}
.cal-school__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0a0a;
}
.cal-school__lead {
  margin: 0.85rem 0 0;
  font-size: var(--hero-sub);
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink, #0a0a0a);
}
.cal-school__stores {
  display: flex;
  justify-content: center;
  margin-top: 1.15rem;
}
.cal-school__store-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  padding: 0.38rem 0.95rem 0.38rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 10, 10, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 22px rgba(10, 10, 10, 0.05);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.cal-school__store {
  display: flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cal-school__store img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cal-school__store:hover {
  transform: translateY(-1px) scale(1.08);
}
.cal-school__store-copy {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  padding-left: 0.28rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0a0a0a;
  text-align: left;
}
.cal-school__store-where {
  font-weight: 500;
  color: rgba(10, 10, 10, 0.48);
}
.cal-school__card {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 0 0.5px rgba(255, 255, 255, 0.38) inset,
    0 0 0 1px rgba(180, 201, 239, 0.22),
    0 0 0 1.5px rgba(232, 184, 203, 0.12),
    0 18px 48px rgba(10, 10, 10, 0.12),
    0 4px 16px rgba(10, 10, 10, 0.06);
  overflow: visible;
}
.cal-school__card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(180, 217, 191, 0.7),
    rgba(255, 221, 45, 0.32),
    rgba(232, 184, 203, 0.62),
    rgba(180, 201, 239, 0.7),
    rgba(203, 182, 227, 0.55)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
}
.cal-school__mascot {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 10px 16px rgba(10, 10, 10, 0.14));
}
/* Agent azul: palmas en el canto redondeado de la card */
.cal-school__mascot--climb {
  left: 0;
  right: auto;
  top: 0;
  width: clamp(5.75rem, 12.5vw, 8.75rem);
  height: auto;
  /* Compensa el border-radius: manos sobre la curva, no flotando */
  transform: translate(-76%, -5%) translateY(-12px);
  z-index: 4;
}
.cal-school__banner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  background: #fff6c8;
  border-radius: 1.25rem 1.25rem 0 0;
  color: #0a0a0a;
}
.cal-school__banner-stat {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cal-school__banner-stat strong {
  font-weight: 700;
}
.cal-school__banner-stat--muted,
.cal-school__banner-stat--muted strong {
  font-weight: 500;
  margin-left: auto;
  text-align: right;
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  color: #3a3a3a;
}
.cal-school__banner .cal-school__year-pill {
  flex-shrink: 0;
  background: #0a0a0a;
  color: #fff;
  border: 0;
}
.cal-school__body {
  position: relative;
  padding: 1.15rem 1.25rem 1rem;
}
.cal-school__livebar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38rem;
  grid-column: 1;
  justify-self: start;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #0a0a0a;
  font-family: var(--font-display, "General Sans", sans-serif);
}
.cal-school__livebar-k {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.cal-school__livebar-k--lab {
  letter-spacing: 0.04em;
  text-transform: lowercase;
  font-weight: 600;
}
.cal-school__livebar-mark {
  display: block;
  width: auto;
  height: 0.72rem;
  color: currentColor;
}
.cal-school__livebar::before {
  content: "";
  width: 0.38em;
  height: 0.38em;
  border-radius: 50%;
  flex-shrink: 0;
  background: #89f336;
  box-shadow: 0 0 6px 2px rgba(137, 243, 54, 0.75);
  animation: gh-live-dot 2.6s ease-in-out infinite;
}
.cal-school__meta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.65rem;
}
.cal-school__year-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cal-school__year-pill::before {
  content: "";
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  flex-shrink: 0;
  background: #89f336;
  box-shadow: 0 0 7px 2px rgba(137, 243, 54, 0.9);
  animation: gh-live-dot 2.6s ease-in-out infinite;
}
@keyframes gh-live-dot {
  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 5px 1px rgba(137, 243, 54, 0.45);
  }
  50% {
    opacity: 1;
    background: #89f336;
    box-shadow:
      0 0 9px 2px rgba(137, 243, 54, 1),
      0 0 16px 5px rgba(137, 243, 54, 0.5);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cal-school__year-pill::before,
  .cal-school__livebar::before {
    animation: none;
    opacity: 0.85;
  }
}
.gh-board-wrap {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  overscroll-behavior-x: contain;
}
.gh-board-wrap.is-scrollable {
  overflow-x: auto;
}
.gh-board {
  --gh-cell: 15px;
  --gh-gap: 4px;
  --gh-label: 22px;
  --gh-dow: 36px;
  display: grid;
  grid-template-columns: var(--gh-dow) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.gh-years {
  display: contents;
}
.gh-years > span {
  grid-column: 1;
  grid-row: 1;
}
.gh-years-track {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2328;
}
.gh-years-track i {
  width: calc(var(--gh-cell) + var(--gh-gap) + 4px);
  flex-shrink: 0;
}
.gh-dows {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-rows: var(--gh-label) repeat(6, var(--gh-cell));
  gap: var(--gh-gap);
  font-size: 11px;
  font-weight: 600;
  color: #656d76;
  line-height: var(--gh-cell);
  text-align: right;
  padding-right: 2px;
}
.gh-weeks {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--gh-cell);
  gap: var(--gh-gap);
  overflow: visible;
}
.gh-week {
  display: grid;
  grid-template-rows: var(--gh-label) repeat(6, var(--gh-cell));
  gap: var(--gh-gap);
  overflow: visible;
}
.gh-week.is-split {
  margin-left: calc(var(--gh-cell) + var(--gh-gap));
}
.gh-month {
  overflow: visible;
  font-size: 11px;
  font-weight: 600;
  color: #656d76;
  line-height: var(--gh-label);
  white-space: nowrap;
}
.gh-cell {
  position: relative;
  width: var(--gh-cell);
  height: var(--gh-cell);
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--gh0);
  cursor: pointer;
  overflow: visible;
}
.gh-cell.is-ring {
  z-index: 2;
  animation: gh-ring 6.5s cubic-bezier(0.37, 0, 0.2, 1);
}
@keyframes gh-ring {
  0%,
  100% {
    box-shadow: inset 0 0 0 0 #0a0a0a;
  }
  18%,
  72% {
    box-shadow: inset 0 0 0 1.5px #0a0a0a;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gh-cell.is-ring {
    animation: none;
  }
}
.gh-cell:hover,
.gh-cell:focus-visible {
  outline: 1px solid #1f2328;
  outline-offset: -1px;
  z-index: 1;
}
.gh-cell.out {
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}
.gh-cell.lvl-0 { background: var(--gh0); }
.gh-cell.lvl-1 { background: var(--gh1); }
.gh-cell.lvl-2 { background: var(--gh2); }
.gh-cell.lvl-3 { background: var(--gh3); }
.gh-cell.lvl-4 { background: var(--gh4); }
.gh-cell.is-future {
  background:
    repeating-linear-gradient(
      -45deg,
      #f3f3f3 0 2px,
      #ffffff 2px 4px
    );
  opacity: 0.85;
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14);
}
.gh-cell.is-today {
  outline: 1px solid #1f2328;
  outline-offset: -1px;
}
.gh-foot {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 8px;
  align-items: center;
  margin-top: 1rem;
  font-size: 12px;
  color: #656d76;
}
.gh-legend {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}
.gh-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.gh-legend i,
.gh-scale i {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(27, 31, 35, 0.06);
}
.gh-scale {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.gh-legend .lvl-0,
.gh-scale .lvl-0 { background: var(--gh0); }
.gh-scale .lvl-1 { background: var(--gh1); }
.gh-legend .lvl-2,
.gh-scale .lvl-2 { background: var(--gh2); }
.gh-scale .lvl-3 { background: var(--gh3); }
.gh-scale .lvl-4 { background: var(--gh4); }
.gh-legend .is-future {
  background:
    repeating-linear-gradient(
      -45deg,
      #f3f3f3 0 2px,
      #ffffff 2px 4px
    );
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.14);
}
.gh-foot-label {
  margin-left: auto;
}
.gh-tooltip {
  position: fixed;
  z-index: 80;
  min-width: 180px;
  padding: 8px 10px;
  background: #24292f;
  color: #fff;
  border-radius: 6px;
  pointer-events: none;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  --gh-tip-y: calc(-100% - 10px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, var(--gh-tip-y), 0) scale(0.97);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.4s;
}
.gh-tooltip.is-on {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, var(--gh-tip-y), 0) scale(1);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}
.gh-tooltip.is-closing {
  transition:
    opacity 2.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 2.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 2.8s;
}
.gh-tooltip strong,
.gh-tooltip span,
.gh-tooltip em {
  display: block;
}
.gh-tooltip strong {
  font-size: 12px;
  font-weight: 600;
}
.gh-tooltip span,
.gh-tooltip em {
  color: #d0d7de;
  font-style: normal;
  font-size: 11px;
}
.gh-error {
  margin: 0;
  padding: 1rem;
  color: #656d76;
  font-size: 0.9rem;
}
.cal-school__cta-wrap {
  display: flex;
  justify-content: center;
}
.cal-school__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cal-school__cta:hover {
  background: #222;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .cal-school__stage {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr);
    grid-template-rows: auto minmax(12rem, 28vw);
    gap: 0.65rem;
  }
  .cal-school__banner {
    gap: 0.55rem 0.75rem;
    padding: 0.75rem 1rem;
  }
  .cal-school__banner-stat--muted {
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .cal-school__stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 0.7rem;
  }
  .cal-school__card {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }
  .cal-school__tile--dm,
  .cal-school__tile--lab {
    display: none;
  }
  .cal-school__store-pill {
    max-width: 100%;
    padding-right: 0.78rem;
  }
  .cal-school__store-copy {
    font-size: 0.72rem;
  }
  .cal-school__mascot--climb {
    width: 5rem;
    transform: translate(-74%, -3%) translateY(-11px);
  }
  .gh-board-wrap {
    overflow-x: auto;
    max-width: 100%;
  }
  .gh-board {
    --gh-cell: 11px;
    --gh-gap: 3px;
    --gh-dow: 28px;
  }
  .gh-foot-label {
    width: 100%;
    margin-left: 0;
  }
  .page-section.page-section--pricing,
  .page-section.page-section--cta-mail,
  .page-section.page-section--swarm {
    overflow-x: clip;
  }
  .price-card__mascot--left,
  .price-card__mascot--right,
  .price-card__mascot--top {
    display: none;
  }
  .site-footer__mark {
    overflow: hidden;
    margin-inline: 0;
  }
  .site-footer__mark-stage {
    width: 100%;
    transform: translateY(8%);
  }
}

/* —— Pricing —— */
.page-section.page-section--pricing {
  min-height: 0;
  margin: 12px 0 0;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.1rem, 2.8vw, 1.75rem)
    clamp(3.25rem, 7vw, 5.25rem);
  background-color: #f4f4f6;
  background-image:
    radial-gradient(rgba(10, 10, 10, 0.11) 1.25px, transparent 1.3px),
    linear-gradient(165deg, #f7f7f9 0%, #f4f4f6 48%, #f1f1f3 100%);
  background-size: 16px 16px, auto;
  color: #0a0a0a;
  border-radius: var(--frame-radius, 24px);
  overflow: visible;
  scroll-margin-top: 5.25rem;
  font-weight: 500;
}

.page-section--pricing .pricing__title {
  font-weight: 700;
}
.page-section--pricing .price-card--biz .price-card__price,
.page-section--pricing .price-card--biz .price-card__price strong {
  font-weight: 500;
}
.pricing {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 1120px;
  margin: 0 auto;
}
.pricing__head {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.pricing__hey {
  display: inline-flex;
  margin: 0 auto 32px;
  font-size: calc(0.72rem + 1pt);
}
.pricing__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8a8a8a;
}
.pricing__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0a0a;
}
.pricing__dot {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  margin-left: 0.12em;
  border-radius: 50%;
  background: #ffdd2d;
  vertical-align: 0.08em;
}
.pricing__mark {
  background-image: linear-gradient(#ffdd2d, #ffdd2d);
  background-repeat: no-repeat;
  background-size: 100% 0.38em;
  background-position: 0 86%;
  font-weight: 700;
}
.pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: clamp(3.25rem, 6vw, 4.25rem) clamp(2.5rem, 5vw, 3.5rem) 0.5rem;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.price-card__shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.1);
  box-shadow: 0 10px 32px rgba(10, 10, 10, 0.05);
}
.price-card--pro .price-card__shell {
  border: 1.5px solid rgba(10, 10, 10, 0.12);
  box-shadow: 0 14px 40px rgba(10, 10, 10, 0.08);
}
.price-card--biz .price-card__shell {
  background: #fff;
  border-color: rgba(10, 10, 10, 0.1);
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.04);
  min-height: 28rem;
}
.price-card__mascot {
  position: absolute;
  z-index: 4;
  width: clamp(7rem, 14vw, 9rem);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 20px rgba(10, 10, 10, 0.16));
}
/* Shifty: corte en el lado derecho del PNG → alinear con borde izquierdo de la card */
.price-card__mascot--left {
  left: 0;
  bottom: 2.5%;
  transform: translateX(calc(-100% + 1.35rem));
}
/* Fressy: corte inferior del PNG → asoma por arriba de la card */
.price-card__mascot--top {
  left: 50%;
  top: 0;
  width: clamp(8.5rem, 16vw, 11rem);
  transform: translate(-50%, calc(-100% + 1.15rem));
}
/* legacy right (por si se reutiliza) */
.price-card__mascot--right {
  right: 0;
  bottom: 15%;
  transform: translateX(calc(100% - 1.05rem));
}
.price-card--biz {
  align-self: center;
}
.price-card--biz .price-card__head {
  gap: 0.5rem;
  padding: 1.55rem 1.55rem 1.35rem;
  background: #ececec;
}
.price-card--biz .price-card__label {
  color: #7a7a7a;
}
.price-card--biz .price-card__name {
  color: #0a0a0a;
}
.price-card--biz .price-card__desc {
  color: #282828;
}
.price-card--biz .price-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.15rem 1.55rem 1.5rem;
}
.price-card--biz .price-card__price {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
}
.price-card--biz .price-card__list {
  gap: 0.8rem;
  padding: 0.55rem 0 0;
  margin: 0;
  flex: 1 1 auto;
}
.price-card--biz .price-card__list li {
  font-size: 0.84rem;
  line-height: 1.4;
}
.price-card--biz .price-card__divider {
  margin-top: auto;
  margin-bottom: 1.35rem;
  padding-top: 1.75rem;
  height: 0;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}
.price-card--biz .price-card__cta {
  margin-top: 0;
  margin-inline: auto;
  min-height: 2.85rem;
}
.price-card__banner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem 1.35rem 1.2rem;
  background: #ffdd2d;
}
.price-card__banner-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.price-card__hours {
  flex: 0 0 auto;
  margin-top: 0.15rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: calc(0.58rem + 1pt);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.price-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 0;
  padding: 1.2rem 1.35rem 1.25rem;
}
.price-card--pro .price-card__body {
  padding-bottom: 0;
}
.price-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.35rem 1.35rem 0.85rem;
}
.price-card__label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8a8a8a;
}
.price-card__name {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  color: #0a0a0a;
}
.price-card__name--logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0a0a0a;
}
.price-card__wordmark {
  display: block;
  width: auto;
  height: clamp(1.15rem, 2.1vw, 1.45rem);
  color: inherit;
}
.price-card__name-pro {
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: inherit;
}
.price-card__desc {
  margin: 0;
  max-width: 28rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #3a3a3a;
}
.price-card__desc--lead {
  max-width: 34rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #0a0a0a;
}
.price-card__banner .price-card__desc--lead {
  margin-top: 0.55rem;
}
.price-card__desc--lead strong {
  font-weight: 700;
}
.price-card__all-in {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin: 0.15rem 0 0;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffdd2d;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
}
.price-card--biz .price-card__desc {
  color: #6b6b6b;
  font-weight: 500;
}
.price-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}
.price-card__price-row .price-card__price {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  line-height: 1;
  transform: translateY(-0.12em);
}
.price-card__price-row .price-card__price strong {
  display: block;
  line-height: 0.9;
}
.price-card__price-row .price-card__cta {
  margin-top: 0;
  margin-left: auto;
  flex: 0 0 auto;
  align-self: center;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  font-size: clamp(1.85rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #0a0a0a;
}
.price-card--pro .price-card__price,
.price-card--pro .price-card__price strong {
  font-size: 60px;
  font-weight: 500;
}
.price-card__price strong {
  font-weight: 700;
}
.price-card--pro .price-card__price strong {
  font-weight: 500;
}
.price-card__price span {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #6b6b6b;
}
.price-card__groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.15rem 0 0.35rem;
}
.price-card__group-label {
  margin: 0 0 0.45rem;
  font-size: calc(0.68rem + 1pt);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  /* ~3.2:1 sobre blanco (WCAG 3:1) */
  color: #8f8f8f;
}
.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0.15rem 0 0.35rem;
  list-style: none;
}
.price-card__group .price-card__list {
  padding: 0;
}
.price-card__list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #1a1a1a;
}
.price-card--biz .price-card__list li {
  color: #3a3a3a;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #0a0a0a
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.2 8.2 6.8 10.7 11.8 5.3' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.65rem no-repeat;
}
.price-card__perk {
  position: relative;
  grid-column: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 1.4rem 1.5rem 1.4rem 1.35rem;
  overflow: visible;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 1.25rem;
  box-shadow: none;
  color: #1a1a1a;
}
.price-card__perk-dash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.price-card__perk-dash rect {
  x: 1px;
  y: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  rx: 1.2rem;
  ry: 1.2rem;
  fill: none;
  stroke: rgba(10, 10, 10, 0.34);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
  stroke-linecap: butt;
  vector-effect: non-scaling-stroke;
}
.price-card__perk-art,
.price-card__perk-copy {
  position: relative;
  z-index: 1;
}
.price-card__perk-copy {
  min-width: 0;
  padding: 0;
}
.price-card__perk-kicker {
  margin: 0 0 0.5rem;
  font-size: calc(0.68rem + 1pt);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #8f8f8f;
}
.price-card__perk-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: #1a1a1a;
}
.price-card__perk-more {
  display: block;
  margin: 0.65rem 0 0;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
  color: #8a8a8a;
}
.price-card__perk-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-right: 0;
  border-radius: 50%;
  background: #ffdd2d;
  color: #0a0a0a;
}
.price-card__perk-ico {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}
.price-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.45rem;
  margin: 0.85rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.price-card__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid rgba(10, 10, 10, 0.1);
  color: #282828;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}
.price-card__tag-ai-ico {
  --ai-spark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.2 1.15c.16 0 .3.1.35.26l.55 1.7a.75.75 0 0 0 .47.47l1.7.55a.37.37 0 0 1 0 .7l-1.7.55a.75.75 0 0 0-.47.47l-.55 1.7a.37.37 0 0 1-.7 0l-.55-1.7a.75.75 0 0 0-.47-.47l-1.7-.55a.37.37 0 0 1 0-.7l1.7-.55a.75.75 0 0 0 .47-.47l.55-1.7a.37.37 0 0 1 .35-.26Z'/%3E%3Cpath fill='%23000' d='M12.35 6.9c.12 0 .22.08.26.2l.32 1a.55.55 0 0 0 .34.34l1 .32a.27.27 0 0 1 0 .52l-1 .32a.55.55 0 0 0-.34.34l-.32 1a.27.27 0 0 1-.52 0l-.32-1a.55.55 0 0 0-.34-.34l-1-.32a.27.27 0 0 1 0-.52l1-.32a.55.55 0 0 0 .34-.34l.32-1a.27.27 0 0 1 .26-.2Z'/%3E%3Cpath fill='%23000' d='M11.15 1.55c.1 0 .18.06.21.15l.22.7a.4.4 0 0 0 .24.24l.7.22a.2.2 0 0 1 0 .38l-.7.22a.4.4 0 0 0-.24.24l-.22.7a.2.2 0 0 1-.38 0l-.22-.7a.4.4 0 0 0-.24-.24l-.7-.22a.2.2 0 0 1 0-.38l.7-.22a.4.4 0 0 0 .24-.24l.22-.7a.2.2 0 0 1 .21-.15Z'/%3E%3C/svg%3E");
  flex: 0 0 auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: linear-gradient(135deg, #ec5fa8 0%, #2f6bff 100%);
  -webkit-mask: var(--ai-spark) center / contain no-repeat;
  mask: var(--ai-spark) center / contain no-repeat;
}
.price-card__tags li.price-card__tag--ai {
  position: relative;
  border-color: transparent;
}
.price-card__tags li.price-card__tag--ai::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgba(130, 110, 230, 0.55) 0%,
    rgba(100, 150, 255, 0.5) 48%,
    rgba(150, 120, 240, 0.45) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
  min-height: 2.75rem;
  margin-top: auto;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.price-card__cta--dark {
  background: #0a0a0a;
  color: #ffdd2d;
  border: 1.5px solid #0a0a0a;
  opacity: 0.55;
  pointer-events: auto;
  cursor: pointer;
}
.price-card__cta--dark:hover {
  transform: none;
  background: #0a0a0a;
  opacity: 0.7;
}
.price-card__cta--outline {
  background: #fff;
  color: #0a0a0a;
  border: 1.5px solid rgba(10, 10, 10, 0.22);
}
.price-card__cta--outline:hover {
  transform: translateY(-1px);
  border-color: #0a0a0a;
}
.price-card__cta-ico {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #ffdd2d;
  color: #0a0a0a;
}
.price-card__cta-ico--ink {
  background: #0a0a0a;
  color: #fff;
}
.price-card__cta--outline .price-card__cta-ico--ink {
  background: #0a0a0a;
  color: #fff;
}
@media (max-width: 860px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    padding-inline: 1.75rem;
  }
  .price-card__mascot {
    width: clamp(5.5rem, 24vw, 7rem);
  }
  .price-card__mascot--top {
    display: none;
  }
  .price-card__mascot--left {
    left: 0;
    bottom: 2%;
    transform: translateX(calc(-100% + 1.15rem));
  }
  .price-card__mascot--right {
    right: 0;
    bottom: 11%;
    transform: translateX(calc(100% - 0.9rem));
  }
}
@media (max-width: 520px) {
  .page-section.page-section--pricing {
    padding-block: 2.35rem;
  }
  .pricing__grid {
    padding-inline: 0;
  }
  .price-card__banner,
  .price-card__body,
  .price-card__head {
    padding-inline: 1.1rem;
  }
  .price-card__hours {
    white-space: normal;
    text-align: center;
    max-width: 7.5rem;
  }
  .price-card__price {
    font-size: 1.7rem;
  }
  .price-card--pro .price-card__price,
  .price-card--pro .price-card__price strong {
    font-size: 60px;
  }
}
/* —— Logo marquee (dentro de pricing) —— */
.page-section--pricing .logo-cloud--in-pricing {
  width: 100%;
  max-width: 52rem;
  margin: clamp(1.15rem, 2.8vw, 1.85rem) auto 0;
  padding: 0;
  overflow: visible;
}
.logo-cloud__head {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  padding: 0 1.25rem;
  text-align: center;
}
.logo-cloud__title {
  margin: 0 auto;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #0a0a0a;
  text-wrap: balance;
  max-width: 22em;
}
.logo-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.logo-marquee__row {
  overflow: hidden;
}
.logo-marquee__track {
  --marquee-x: 0px;
  display: flex;
  width: max-content;
  gap: 0;
  animation: logo-marquee-left 42s linear infinite;
  animation-play-state: paused;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.logo-marquee__track.is-ready {
  animation-play-state: running;
}
.logo-marquee__row--reverse .logo-marquee__track {
  animation-name: logo-marquee-right;
  animation-duration: 48s;
}
.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  flex: 0 0 auto;
}
.logo-marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 8.5rem;
  height: 3.75rem;
  padding: 0 0.5rem;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
.logo-marquee__item:hover {
  opacity: 1;
}
.logo-marquee__item img {
  display: block;
  height: 1.85rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: grayscale(1) contrast(1.05);
}
/* Marcas más cuadradas: más alto para igualar peso visual */
.logo-marquee__item img[src*="adidas"],
.logo-marquee__item img[src*="seat"] {
  height: 2.55rem;
  max-width: 4.5rem;
}
/* Wordmarks bajos / finos: un poco más de altura para legibilidad */
.logo-marquee__item img[src*="garaje"],
.logo-marquee__item img[src*="kutxa"],
.logo-marquee__item img[src*="nateevo"],
.logo-marquee__item img[src*="idealista"],
.logo-marquee__item img[src*="inditex"],
.logo-marquee__item img[src*="indra"],
.logo-marquee__item img[src*="inbix"] {
  height: 2rem;
  max-width: 12rem;
}
.logo-marquee__item img[src*="garaje"] {
  height: 1.55rem;
  max-width: 13.5rem;
}
@keyframes logo-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-x)), 0, 0); }
}
@keyframes logo-marquee-right {
  from { transform: translate3d(calc(-1 * var(--marquee-x)), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
  .logo-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* —— CTA email —— */
.page-section.page-section--cta-mail {
  min-height: 0;
  margin: 12px 0 0;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.1rem, 2.8vw, 1.75rem);
  background-color: #f7f4e8;
  background-image: radial-gradient(rgba(10, 10, 10, 0.1) 1px, transparent 1px);
  background-size: 14px 14px;
  color: #0a0a0a;
  border-radius: var(--frame-radius, 24px);
  overflow: visible;
  scroll-margin-top: 0;
}
.cta-mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 1120px;
  margin: 0 auto;
}
.cta-mail__head {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}
.cta-mail__hey {
  display: inline-flex;
  margin: 0 auto 32px;
  font-size: calc(0.72rem + 1pt);
}
.cta-mail__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #8a8a8a;
}
.cta-mail__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0a0a;
}
.cta-mail__mark {
  background-image: linear-gradient(#ffdd2d, #ffdd2d);
  background-repeat: no-repeat;
  background-size: 100% 0.38em;
  background-position: 0 86%;
  font-weight: 600;
}
.cta-mail__form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 44rem;
}
.cta-mail__honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cta-mail__field {
  min-width: 0;
  height: 2.95rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #0a0a0a;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(10, 10, 10, 0.05);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cta-mail__field[name="name"] {
  flex: 0.72 1 0;
}
.cta-mail__field[name="email"] {
  flex: 1.35 1 0;
}
.cta-mail__field::placeholder {
  color: #9a9a9a;
  font-weight: 500;
}
.cta-mail__field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(10, 10, 10, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 0 0 3px rgba(255, 221, 45, 0.28),
    0 6px 18px rgba(10, 10, 10, 0.06);
}
/* Botón CTA amarillo + elasticidad (como Reservar plaza) */
.cta-mail__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  height: 2.95rem;
  padding: 0 0.32rem 0 0.95rem;
  border: 1.5px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  background: #ffdd2d;
  color: #0a0a0a;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transform-origin: center center;
  will-change: transform;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 4px 14px rgba(10, 10, 10, 0.08);
}
.cta-mail__submit:hover {
  background: #ffe56a;
}
.cta-mail__submit-ico {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #0a0a0a;
  color: #ffdd2d;
  transform-origin: center center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 2px rgba(10, 10, 10, 0.12);
}
@media (max-width: 820px) {
  .cta-mail__form {
    flex-wrap: wrap;
  }
  .cta-mail__field[name="name"],
  .cta-mail__field[name="email"] {
    flex: 1 1 calc(50% - 0.25rem);
  }
  .cta-mail__submit {
    flex: 1 1 100%;
    justify-content: center;
    padding-inline: 0.95rem;
  }}
@media (max-width: 520px) {
  .page-section.page-section--cta-mail {
    padding-block: 2.15rem;
  }
  .cta-mail__title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
  .cta-mail__field[name="name"],
  .cta-mail__field[name="email"] {
    flex: 1 1 100%;
  }
}

/* —— Swarm Agents team —— */
.page-section.page-section--swarm {
  min-height: 0;
  margin: 12px 0 0;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1.1rem, 2.8vw, 1.75rem)
    clamp(0.7rem, 1.5vw, 1.1rem);
  background: #fff;
  color: #0a0a0a;
  border-radius: var(--frame-radius, 24px);
  overflow: visible;
  scroll-margin-top: 5.25rem;
}
.swarm-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 1120px;
  margin: 0 auto;
}
.swarm-team__head {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.swarm-team__hey {
  display: inline-flex;
  margin: 0 auto 32px;
  font-size: calc(0.72rem + 1pt);
}
.swarm-team__title {
  margin: 0;
  font-family: var(--font-display, "General Sans", sans-serif);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0a0a0a;
}
.swarm-team__lead {
  margin: 0.85rem 0 0;
  font-size: var(--hero-sub);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--ink, #0a0a0a);
}
.swarm-team__figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 56rem;
  padding: clamp(2.25rem, 5vw, 3.75rem) clamp(0.5rem, 7vw, 4.5rem)
    clamp(1.15rem, 2.4vw, 1.85rem);
  overflow: visible;
}
.swarm-team__img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
}

.page-frame {
  display: flow-root;
}
.page-sheet {
  position: relative;
  z-index: 2;
  isolation: isolate;
  /* Opaco: tapa el footer fixed; mismo negro que el body para el radius */
  background: #0a0a0a;
  margin-bottom: var(--footer-reveal-h, 26rem);
}
.page-frame .site-footer,
.site-footer {
  --footer-grow: 0;
  --footer-inset: calc((1 - var(--footer-grow)) * clamp(1.85rem, 5vw, 3.5rem));
  --footer-radius: var(--frame-radius, 24px);
  --footer-radius-bottom: calc(var(--footer-radius) * (1 - var(--footer-grow)));
  position: fixed;
  z-index: 0;
  left: calc(var(--hero-pad) + var(--footer-inset));
  right: calc(var(--hero-pad) + var(--footer-inset));
  bottom: 0;
  display: block;
  place-items: unset;
  min-height: 0;
  box-sizing: border-box;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  border-radius: var(--footer-radius) var(--footer-radius)
    var(--footer-radius-bottom) var(--footer-radius-bottom);
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.65rem, 3.5vw, 2.35rem) clamp(1.1rem, 3vw, 1.65rem) 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.85rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-right: clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #fff;
  text-decoration: none;
}
.site-footer__logo-svg {
  display: block;
  width: auto;
  height: 1.3rem;
}
.site-footer__tagline {
  margin: 0.35rem 0 0;
  max-width: 13rem;
  font-size: clamp(0.84rem, 1.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}
.site-footer__hilite {
  color: #fff;
  font-weight: 600;
  background-image: linear-gradient(#ffdd2d, #ffdd2d);
  background-repeat: no-repeat;
  background-size: 100% 0.28em;
  background-position: 0 100%;
  padding-bottom: 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.site-footer__contact {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.site-footer__contact a:hover {
  color: #fff;
}
.footer-note {
  max-width: 18.5rem;
  justify-self: start;
}
.recap-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  width: 100%;
  max-width: 18.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: border-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.recap-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.recap-card__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  color: #f3f3f0;
}
.recap-card__mark {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.32rem;
  object-fit: cover;
  flex-shrink: 0;
}
.recap-card__wordmark {
  display: block;
  width: auto;
  height: 1.2rem;
}
.recap-card__go {
  margin-left: auto;
  font-size: 0.78rem;
  line-height: 1;
  color: #89f336;
}
.recap-card:hover .recap-card__go {
  color: #b6ff6e;
}
.recap-card__lead {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}
.recap-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
}
.recap-card__dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #89f336;
  flex-shrink: 0;
}
.site-footer__events {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem clamp(1.1rem, 3vw, 2rem);
  padding: 1.05rem 0 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__events-label {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer__events-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem clamp(1.2rem, 3vw, 2.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__events-list li {
  display: flex;
  align-items: center;
}
.site-footer__events-list a {
  display: flex;
  align-items: center;
  opacity: 0.82;
  transition: opacity 180ms cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer__events-list a:hover,
.site-footer__events-list a:focus-visible {
  opacity: 1;
}
.site-footer__events-list img {
  display: block;
  width: auto;
  height: clamp(2.4rem, 4.8vw, 3.05rem);
  object-fit: contain;
}
.site-footer__events-list img.site-footer__events-layer {
  height: clamp(1.35rem, 2.6vw, 1.65rem);
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  padding: 0.85rem 0 0.2rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer__legal p {
  margin: 0;
}
.site-footer__legal p:first-child {
  text-decoration: none;
}
.site-footer__credit {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
}
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__mark {
  position: relative;
  display: grid;
  place-items: end center;
  margin: 0.35rem clamp(-2.5rem, -6vw, -0.75rem) 0;
  padding: 0.65rem 0 0.35rem;
  overflow: visible;
  user-select: none;
  pointer-events: none;
  --mark-green: #b4d9bf;
  --mark-yellow: #ffdd2d;
  --mark-pink: #e8b8cb;
  --mark-blue: #b4c9ef;
  --mark-purple: #cbb6e3;
}
.site-footer__mark-stage {
  position: relative;
  width: min(124%, 72rem);
  transform: translateY(14%);
}
.site-footer__mark-svg {
  display: block;
  width: 100%;
  height: auto;
  color: rgba(255, 255, 255, 0.24);
  overflow: visible;
}
.site-footer__mark-shine path {
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dashoffset: 0;
  animation: footer-mark-shine 9s linear infinite;
}
/* Un color por letra (S H I F + R) */
.site-footer__mark-shine--color path {
  stroke-width: 0.9;
  stroke-dasharray: 0.018 0.982;
  opacity: 0.92;
}
.site-footer__mark-shine--color path:nth-child(1) {
  stroke: var(--mark-green);
  animation-delay: 0s;
}.site-footer__mark-shine--color path:nth-child(2) {
  stroke: var(--mark-yellow);
  animation-delay: 0.45s;
}.site-footer__mark-shine--color path:nth-child(3) {
  stroke: var(--mark-pink);
  animation-delay: 0.8s;
}.site-footer__mark-shine--color path:nth-child(4) {
  stroke: var(--mark-blue);
  animation-delay: 1.15s;
}.site-footer__mark-shine--color path:nth-child(5) {
  stroke: var(--mark-purple);
  animation-delay: 1.5s;
}.site-footer__mark-shine--color path:nth-child(6) {
  stroke: var(--mark-yellow);
  animation-delay: 1.85s;
}
/* Filo blanco fino encima */
.site-footer__mark-shine--core path {
  stroke: #ffffff;
  stroke-width: 0.2;
  stroke-dasharray: 0.009 0.991;
  opacity: 1;
}
.site-footer__mark-shine--core path:nth-child(1) {
  animation-delay: 0s;
}.site-footer__mark-shine--core path:nth-child(2) {
  animation-delay: 0.45s;
}.site-footer__mark-shine--core path:nth-child(3) {
  animation-delay: 0.8s;
}.site-footer__mark-shine--core path:nth-child(4) {
  animation-delay: 1.15s;
}.site-footer__mark-shine--core path:nth-child(5) {
  animation-delay: 1.5s;
}.site-footer__mark-shine--core path:nth-child(6) {
  animation-delay: 1.85s;
}
@keyframes footer-mark-shine {
  to {
    stroke-dashoffset: -1;
  }}
@media (prefers-reduced-motion: reduce) {
  .site-footer__mark-shine {
    display: none;
  }
  .page-frame .site-footer,
  .site-footer {
    --footer-grow: 1;
  }}
.site-footer__mark::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0), #0a0a0a 78%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .site-footer__brand {
    padding-right: 0;
    padding-bottom: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-note {
    max-width: 18.5rem;
    padding-top: 0.2rem;
  }
}
@media (max-width: 540px) {
  .site-footer__legal {
    gap: 0.65rem 1rem;
  }
  .site-footer__events-list {
    gap: 0.7rem 1.15rem;
  }
  .site-footer__events-list img {
    height: 2.15rem;
  }
  .site-footer__events-list img.site-footer__events-layer {
    height: 1.2rem;
  }
  .site-footer__mark-svg {
    width: 100%;
    color: rgba(255, 255, 255, 0.24);
  }}
/* —— Liquid glass (prueba en topnav pill) ——
   Aprox. CSS del look Apple / liquid-glass-react, sin React.
   Mejor sobre el hero/vídeo; Chrome muestra más refracción visual. */
.topnav__pill--liquid {
  --lx: 50%;
  --ly: 40%;
  --liquid-blur: blur(28px) saturate(200%) brightness(1.05);
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: var(--liquid-blur);
  -webkit-backdrop-filter: var(--liquid-blur);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 0 0.5px rgba(255, 255, 255, 0.35) inset,
    0 0 0 1px rgba(180, 201, 239, 0.22),
    0 0 0 1.5px rgba(232, 184, 203, 0.12),
    0 14px 40px rgba(10, 10, 10, 0.12),
    0 2px 10px rgba(10, 10, 10, 0.06);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    background 320ms ease;
  transform: translateZ(0);
}
.topnav__pill--liquid:hover {
  background: rgba(255, 255, 255, 0.46);
  transform: translateY(-1px) scale(1.012);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 0.5px rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(180, 217, 191, 0.28),
    0 0 0 1.5px rgba(203, 182, 227, 0.16),
    0 18px 48px rgba(10, 10, 10, 0.14),
    0 4px 14px rgba(10, 10, 10, 0.07);
}
.topnav__pill--liquid::before {
  background:
    radial-gradient(
      120% 90% at var(--lx) var(--ly),
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.18) 32%,
      rgba(255, 255, 255, 0.02) 58%,
      transparent 72%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.08) 42%,
      rgba(180, 201, 239, 0.08) 70%,
      rgba(232, 184, 203, 0.1) 100%
    );
  opacity: 0.95;
  mix-blend-mode: soft-light;
}
.topnav__pill--liquid::after {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -18px 32px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.topnav__liquid-shine,
.topnav__liquid-rim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
/* Specular que sigue al cursor */
.topnav__liquid-shine {
  background: radial-gradient(
    38% 70% at var(--lx) var(--ly),
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.28) 28%,
    transparent 62%
  );
  opacity: 0.55;
  mix-blend-mode: screen;
  transition: opacity 200ms ease;
}
.topnav__pill--liquid:hover .topnav__liquid-shine {
  opacity: 0.72;
}
/* Borde cromático fino (verde→rosa→azul) */
.topnav__liquid-rim {
  inset: -1px;
  padding: 1px;
  background: linear-gradient(
    125deg,
    rgba(180, 217, 191, 0.75),
    rgba(255, 221, 45, 0.35),
    rgba(232, 184, 203, 0.7),
    rgba(180, 201, 239, 0.75),
    rgba(203, 182, 227, 0.65)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
}
.topnav__pill--liquid .topnav__menu-shell {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
}
@media (max-width: 720px) {
  .topnav__pill--liquid .topnav__menu-shell {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    filter: none;
  }
}
.topnav__pill--liquid .topnav__cta {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(10, 10, 10, 0.06);
}
.topnav__pill--liquid .topnav__cta:hover {
  background: rgba(255, 255, 255, 0.78);
}
@media (prefers-reduced-motion: reduce) {
  .topnav__pill--liquid {
    transition: none;
  }
  .topnav__pill--liquid:hover {
    transform: none;
  }
}

/* Aviso: reserva aún no abierta */
.reserve-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: max-content;
  max-width: calc(100vw - 2rem);
  padding: 0.85rem 0.85rem 0.85rem 1.35rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.28);
  transform: translateX(-50%) translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.reserve-toast.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.reserve-toast[hidden] {
  display: none;
}
.reserve-toast.is-open[hidden] {
  display: flex;
}
.reserve-toast__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  color: #f5f5f5;
}
.reserve-toast__text strong {
  color: #ffdd2d;
  font-weight: 600;
}
.reserve-toast__close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}
.reserve-toast__close:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .reserve-toast {
    transition: none;
  }
}

.enter-gate {
  position: fixed;
  right: 2.5rem;
  bottom: 3rem;
  left: auto;
  top: auto;
  z-index: 800;
  display: block;
  width: 20.5rem;
  padding: 0;
  pointer-events: none;
}
html.has-entered .enter-gate {
  display: none;
}
.enter-gate__card {
  position: relative;
  isolation: isolate;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.05rem;
  width: 20.5rem;
  padding: 1.45rem 1.4rem 1.35rem;
  overflow: hidden;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.35),
    0 0 0 1px rgba(180, 201, 239, 0.14),
    0 8px 28px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  font-family: var(--font-display, "General Sans", sans-serif);
  transform: translateZ(0);
}
.enter-gate__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      120% 90% at 28% 18%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.16) 34%,
      transparent 68%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.06) 48%,
      rgba(180, 201, 239, 0.08) 100%
    );
  opacity: 0.9;
  mix-blend-mode: soft-light;
}
.enter-gate__card > * {
  position: relative;
  z-index: 1;
}
.enter-gate__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.enter-gate__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #ffdd2d;
}
.enter-gate__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.enter-gate__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}
.enter-gate__copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  color: #1a1a1a;
}
.enter-gate__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}
.enter-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.78em 1.1em 0.82em;
  border: 0;
  border-radius: 999px;
  background: #ffdd2d;
  color: #111;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
}
.enter-gate__btn:hover {
  background: #ffe56a;
}
.enter-gate__btn:active {
  transform: scale(0.98);
}
.enter-gate__necessary {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #111;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}
.enter-gate__necessary:hover {
  opacity: 0.65;
}
@media (max-width: 640px) {
  .enter-gate {
    right: 1.5rem;
    bottom: 2.15rem;
    width: min(20.5rem, calc(100vw - 1.7rem));
  }
  .enter-gate__card {
    width: 100%;
    padding: 1.25rem 1.2rem 1.2rem;
  }
}
