/* Saibox — design tokens (marca) */
:root {
  --color-navy: #01092d;
  --color-azure: #032c7b;
  --color-royal: #0464de;
  --color-accent: #9146ff;
  --color-navy-soft: rgba(1, 9, 45, 0.92);
  --color-surface: rgba(3, 44, 123, 0.35);
  --color-border: rgba(4, 100, 222, 0.22);
  --color-border-strong: rgba(145, 70, 255, 0.35);
  --color-text: #e8eefc;
  --color-text-muted: rgba(232, 238, 252, 0.68);
  --color-text-dim: rgba(232, 238, 252, 0.45);
  --font-display: "Comfortaa", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 80px rgba(4, 100, 222, 0.12);
  /* Degradé horizontal con varios stops + toques de luz (no plano), alineado con CTAs */
  --gradient-brand:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-royal) 88%, #ffffff 12%) 0%,
      var(--color-royal) 18%,
      color-mix(in srgb, var(--color-royal) 42%, var(--color-accent) 58%) 44%,
      color-mix(in srgb, var(--color-royal) 14%, var(--color-accent) 86%) 72%,
      color-mix(in srgb, var(--color-accent) 88%, #ffffff 12%) 100%
    );
  /* Misma lectura que --gradient-brand, con más peso del azul logo (azure / royal) */
  --gradient-brand-hover:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-azure) 24%, color-mix(in srgb, var(--color-royal) 88%, #ffffff 12%) 76%) 0%,
      color-mix(in srgb, var(--color-azure) 20%, var(--color-royal) 80%) 18%,
      color-mix(in srgb, var(--color-royal) 52%, var(--color-accent) 48%) 44%,
      color-mix(in srgb, var(--color-royal) 26%, var(--color-accent) 74%) 72%,
      color-mix(in srgb, var(--color-accent) 76%, var(--color-royal) 24%) 100%
    );
  /* Brillo superior sutil (píldoras / header) */
  --gradient-brand-shine: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%);
  --gradient-brand-shine-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
  --header-h: 72px;
  /* Esquinas inferiores del header (logo + menú) */
  --header-radius-bottom: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Ancho máximo unificado para bloques de título + texto centrados (1024px) */
  --measure-centered: 64rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

@media (min-width: 480px) {
  body {
    font-size: 1.0625rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-royal);
}

img {
  max-width: 100%;
  height: auto;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 480px) {
  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid var(--color-border);
  border-bottom-left-radius: var(--header-radius-bottom);
  border-bottom-right-radius: var(--header-radius-bottom);
  backdrop-filter: blur(12px);
}

/* Fondo en capa aparte para poder bajar opacidad al scroll sin afectar texto/controles */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.28s var(--ease-out);
  border-bottom-left-radius: var(--header-radius-bottom);
  border-bottom-right-radius: var(--header-radius-bottom);
  /* Capas: brillo + velo navy (logo izq.) + mismo degradé que CTAs + base */
  background:
    var(--gradient-brand-shine-soft),
    linear-gradient(
      90deg,
      rgba(1, 9, 45, 0.22) 0%,
      rgba(1, 9, 45, 0.68) 42%,
      rgba(1, 9, 45, 0.88) 100%
    ),
    var(--gradient-brand),
    linear-gradient(180deg, var(--color-navy-soft) 0%, transparent 100%);
}

.site-header.is-scrolled::before {
  opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before {
    transition: none;
  }
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.logo:hover {
  color: var(--color-text);
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gradient-brand);
  box-shadow: 0 0 24px rgba(145, 70, 255, 0.35);
}

.logo-mark.sm {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

/* Nav: drawer en móvil, barra horizontal desde 769px */
.nav {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  display: flex;
  justify-content: stretch;
  padding-top: 0;
  padding-bottom: 1rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

@media (min-width: 480px) {
  .nav {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }
}

.nav-list {
  display: none;
  flex-direction: column;
  gap: 0;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-navy-soft);
  backdrop-filter: blur(12px);
}

.nav-list.is-open {
  display: flex;
}

.nav-list li {
  border-bottom: 1px solid var(--color-border);
}

.nav-list li:last-child {
  border-bottom: 0;
}

.nav-list a {
  display: block;
  padding: 0.85rem 0.5rem;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s var(--ease-out);
}

.nav-list a:hover {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .header-actions {
    gap: 0.5rem;
  }
}

.header-actions .btn-ghost {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(3, 44, 123, 0.25);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 769px) {
  .nav {
    position: static;
    flex: 1;
    justify-content: center;
    padding: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    border-bottom: 0;
  }

  .nav-list a {
    display: inline;
    padding: 0;
    min-height: 0;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions .btn-ghost {
    display: inline-flex;
  }
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--color-text);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    transform 0.15s var(--ease-out);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  /* Anillo coherente con la firma Royal -> Complement */
  box-shadow:
    0 0 0 3px rgba(145, 70, 255, 0.28),
    0 12px 34px rgba(145, 70, 255, 0.12);
}

.btn-primary {
  /* Firma de marca: Royal -> Complement + brillo (degradé no plano) */
  background: var(--gradient-brand-shine), var(--gradient-brand);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(4, 100, 222, 0.3),
    0 8px 32px rgba(145, 70, 255, 0.18);
}

.btn-primary:hover {
  background: var(--gradient-brand-shine), var(--gradient-brand-hover);
  box-shadow:
    0 10px 44px rgba(3, 44, 123, 0.38),
    0 10px 40px rgba(4, 100, 222, 0.3),
    0 10px 36px rgba(145, 70, 255, 0.2);
  border-color: rgba(4, 100, 222, 0.5);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--color-text);
}

.btn-outline {
  background: rgba(3, 44, 123, 0.2);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: #fff;
}

.btn-outline-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline-on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(3, 44, 123, 0.2);
}

.lang-option {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.lang-option:hover {
  color: var(--color-text);
}

.lang-option.is-active {
  color: #fff;
  background: var(--gradient-brand-shine), var(--gradient-brand);
  box-shadow: 0 0 0 3px rgba(145, 70, 255, 0.15), 0 10px 28px rgba(4, 100, 222, 0.25);
}

.lang-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 70, 255, 0.3);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 85% at 15% 10%, rgba(4, 100, 222, 0.26) 0%, transparent 58%),
    radial-gradient(95% 75% at 85% 5%, rgba(145, 70, 255, 0.24) 0%, transparent 62%),
    linear-gradient(165deg, rgba(3, 44, 123, 0.62) 0%, rgba(1, 9, 45, 0.92) 55%, rgba(1, 9, 45, 1) 100%);
  will-change: transform;
  animation: hero-gradient-drift 30s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform, opacity;
}

.orb-1 {
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, var(--color-royal), transparent 65%);
  animation: orb-float-a 19s ease-in-out infinite alternate;
}

.orb-2 {
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, var(--color-accent), transparent 60%);
  opacity: 0.35;
  animation: orb-float-b 23s ease-in-out infinite alternate-reverse;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 100, 222, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 100, 222, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 100%);
  pointer-events: none;
}

@keyframes hero-gradient-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2.4%, 2.1%, 0) scale(1.035);
  }
}

/* Trayectorias irregulares para simular burbujas "aleatorias" */
@keyframes orb-float-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  21% {
    transform: translate3d(-2.2%, 1.6%, 0) scale(1.05);
  }
  47% {
    transform: translate3d(1.4%, -1.2%, 0) scale(0.98);
    opacity: 0.62;
  }
  73% {
    transform: translate3d(-1%, 2.4%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(2.1%, -1.5%, 0) scale(1.01);
    opacity: 0.52;
  }
}

@keyframes orb-float-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.3;
  }
  18% {
    transform: translate3d(2.4%, -1.4%, 0) scale(1.03);
  }
  39% {
    transform: translate3d(-1.8%, 2.6%, 0) scale(0.97);
    opacity: 0.42;
  }
  66% {
    transform: translate3d(1.2%, -2.1%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-2.6%, 1.2%, 0) scale(1);
    opacity: 0.34;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 auto 1.25rem;
  max-width: min(30ch, 100%);
}

.gradient-text {
  display: inline;
  background: linear-gradient(105deg, var(--color-royal) 0%, var(--color-accent) 55%, #b47cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Marca escrita como en el logo: saibox en minúsculas, más grande */
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  display: inline;
  font-size: 1.2em;
  vertical-align: -0.05em;
  line-height: 1;
  color: #0c1222;
}

.brand-name.gradient-text {
  font-size: 1.28em;
  vertical-align: -0.07em;
  color: transparent;
}

.section-head h2 .brand-name.gradient-text,
.rt-split__title .brand-name.gradient-text {
  font-size: 1.22em;
  vertical-align: -0.06em;
}

.compare-table th .brand-name {
  font-size: 1.12em;
  vertical-align: -0.04em;
}

.faq-item summary .brand-name {
  font-size: 1.1em;
  vertical-align: -0.03em;
}

/* Qué hace saibox */
.container--what {
  max-width: min(var(--measure-centered), 100%);
}

.section-head--what .pill-eyebrow {
  margin-bottom: 0.75rem;
}

.section-head--what .pill-eyebrow--saibox {
  margin-bottom: 0.75rem;
  padding: 0.5rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #0c1222;
}

.section-head--what .pill-eyebrow--saibox .brand-name {
  font-size: 1.35em;
  line-height: 1;
  vertical-align: -0.02em;
}

.section-head--what h2 {
  margin-bottom: 1rem;
}

.what-subtitle {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.015em;
  text-align: center;
  text-wrap: balance;
  color: #475569;
}

.what-prose {
  margin: 2.5rem auto 0;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  max-width: min(var(--measure-centered), 100%);
  text-align: center;
}

.what-prose__block {
  margin: 0;
  padding: 0;
}

.what-prose__block + .what-prose__block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
}

.what-prose__label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-royal);
}

.what-prose__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.035em;
  color: #0c1222;
}

.what-prose__text {
  margin: 0 auto;
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: #475569;
}

.what-prose__text--emphasis {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
  color: #334155;
}

.what-prose__block:last-child .what-prose__text {
  margin-top: 0.35rem;
}

/* Beneficios (tablero por columnas) y Para quién: rejilla de tarjetas */
.pillars-intro {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
}

.container--benefits {
  max-width: min(var(--measure-centered), 100%);
}

.section-head--benefits .pill-eyebrow {
  margin-bottom: 0.75rem;
}

.section-head--benefits h2 {
  margin-bottom: 1rem;
}

.benefits-deck {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: #64748b;
}

.benefits-board {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  max-width: min(var(--measure-centered), 100%);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .benefits-board {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    align-items: stretch;
  }
}

.benefits-column {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius-lg) - 2px);
  box-shadow:
    0 1px 2px rgba(1, 9, 45, 0.04),
    0 10px 32px rgba(4, 100, 222, 0.05);
  overflow: hidden;
  transition:
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.benefits-column:hover {
  border-color: rgba(4, 100, 222, 0.22);
  box-shadow:
    0 1px 2px rgba(1, 9, 45, 0.04),
    0 16px 44px rgba(4, 100, 222, 0.1);
  transform: translateY(-2px);
}

.benefits-column__head {
  padding: 1rem 1.25rem 1.05rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}

.benefits-column__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #0c1222;
}

.benefits-column__list {
  list-style: none;
  margin: 0;
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
}

.benefits-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.1rem;
  border-radius: 8px;
  color: var(--color-royal);
  background: rgba(4, 100, 222, 0.1);
  border: 1px solid rgba(4, 100, 222, 0.18);
}

.benefits-item__icon svg {
  display: block;
}

/* Métricas (después de Plataforma viva) */
.container--metrics {
  max-width: min(var(--measure-centered), 100%);
}

.section-head--metrics .pill-eyebrow {
  margin-bottom: 0.75rem;
}

.section-head--metrics h2 {
  margin-bottom: 1rem;
}

.metrics-intro {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0;
  text-align: center;
}

.metrics-intro__lead {
  margin: 0 auto 0.75rem;
  max-width: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #334155;
  text-align: center;
  text-wrap: balance;
}

.metrics-intro__support {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
  text-wrap: balance;
  hyphens: none;
}

.metric-tile__kicker.gradient-text {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

.metrics-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 960px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.metric-tile {
  margin: 0;
  padding: 1.25rem 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius-md) + 2px);
  box-shadow: 0 1px 3px rgba(1, 9, 45, 0.04);
  transition:
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.metric-tile:hover {
  border-color: rgba(4, 100, 222, 0.22);
  box-shadow: 0 8px 28px rgba(4, 100, 222, 0.08);
  transform: translateY(-2px);
}

.metric-tile__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #475569;
}

.pillar-grid {
  display: grid;
  gap: 1.15rem;
  max-width: min(var(--measure-centered), 100%);
  margin-inline: auto;
  margin-top: 0.25rem;
}

.pillar-grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .pillar-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.pillar-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.35rem 1.45rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 14px rgba(1, 9, 45, 0.04);
  transition:
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.pillar-card:hover {
  border-color: rgba(4, 100, 222, 0.28);
  box-shadow: 0 10px 36px rgba(4, 100, 222, 0.09);
  transform: translateY(-3px);
}

.pillar-card__accent {
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 4px;
  background: var(--gradient-brand);
}

.pillar-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #334155;
}

.pillar-card--audience {
  padding: 1.5rem 1.35rem;
}

.pillar-card__icon {
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--color-royal);
  background: rgba(4, 100, 222, 0.1);
  border: 1px solid rgba(4, 100, 222, 0.18);
}

.pillar-card__icon svg {
  display: block;
}

body.page-runtime .section-pillars--audience .pillar-card {
  background: #f8fafc;
}

body.page-runtime .section-pillars--audience .pillar-card:hover {
  background: #fff;
}

/* Degradé en títulos de sección (misma firma que hero) */
.section-head h2 .gradient-text,
.rt-split__title .gradient-text,
.split-content h2 .gradient-text {
  font-weight: inherit;
  letter-spacing: inherit;
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 58ch;
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.hero-lead--tight {
  margin-top: -1rem;
  margin-bottom: 1.25rem;
}

.hero-microcopy {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  line-height: 1.5;
}

.pain-band .section-head h2 {
  max-width: 100%;
  margin-inline: auto;
}

.checklist--pain li {
  font-size: 1rem;
}

.section-lead-em {
  margin: 1.25rem 0 0;
  font-weight: 600;
  color: var(--color-text);
}

/* Cómo funciona: número en columna fija, sin solapar texto */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}

.how-step {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  text-align: left;
}

@media (min-width: 480px) {
  .how-step {
    grid-template-columns: 3.35rem minmax(0, 1fr);
    gap: 1.15rem 1.5rem;
    padding: 1.6rem 1.5rem;
  }
}

.how-step__index {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  background: var(--gradient-brand-shine), var(--gradient-brand);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(4, 100, 222, 0.2);
  flex-shrink: 0;
}

.how-step__body {
  min-width: 0;
}

.how-step.feature-card h3.how-step__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: #0c1222;
}

.how-step.feature-card p.how-step__lead {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.how-step.feature-card p.how-step__detail {
  margin-top: 0.35rem;
}

.feature-detail {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-dim);
}

.feature-detail--kicker {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #334155;
}

.feature-grid--layers {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .feature-grid--layers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid--layers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.container--narrow {
  max-width: 720px;
}

.table-wrap {
  overflow-x: auto;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: rgba(1, 9, 45, 0.45);
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.compare-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: rgba(3, 44, 123, 0.35);
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table td {
  color: var(--color-text-muted);
  width: 50%;
}

.pricing-card .price--text:first-of-type {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.9rem;
  min-height: 2.75rem;
}

.pricing-footnotes {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
  max-width: 48ch;
  margin-inline: auto;
}

.pricing-footnotes li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-dim);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(3, 44, 123, 0.22);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.hero-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }

  .hero-cta .btn {
    width: auto;
  }
}

/* Lista hero: columna legible centrada (estilo landing amplia) */
.hero-inner .checklist {
  max-width: 52ch;
  margin: 0 auto 2rem;
  text-align: left;
}

/* Bloques con título centrado: lista alineada al centro del layout */
.section-runtime .container .checklist {
  max-width: 52ch;
  margin-inline: auto;
  text-align: left;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 560px) {
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.metric {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.5rem;
}

.metric-value,
.metric-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-text);
}

.metric-suffix {
  font-size: 1.25rem;
  color: var(--color-royal);
}

.metric-label {
  width: 100%;
  font-size: 0.875rem;
  color: var(--color-text-dim);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 7.5rem) 0;
}

/* Ritmo tipo Runtime: secciones con más aire y bloques legibles */
.section-runtime {
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section-alt {
  background: linear-gradient(180deg, rgba(3, 44, 123, 0.18) 0%, rgba(1, 9, 45, 0.35) 50%, transparent 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: min(var(--measure-centered), 100%);
}

.section-head--wide {
  max-width: min(var(--measure-centered), 100%);
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-runtime .section-head {
  text-align: center;
  margin-inline: auto;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: #0c1222;
}

.section-head p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Ritmo homogéneo: pill → título → párrafo (secciones centradas) */
.section-rt .section-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: min(var(--measure-centered), 100%);
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  box-sizing: border-box;
  text-align: center;
}

.section-rt .section-head > .pill-eyebrow {
  align-self: center;
  margin-bottom: 0.75rem;
}

.section-rt .section-head > h2 {
  margin: 0 0 1rem;
  width: 100%;
  max-width: 100%;
}

.section-rt .section-head > p:not(.pill-eyebrow) {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.section-rt .section-head .metrics-intro {
  width: 100%;
}

.section-head p + p {
  margin-top: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, rgba(3, 44, 123, 0.5) 0%, rgba(1, 9, 45, 0.72) 100%);
  box-shadow: var(--shadow-glow), 0 24px 60px rgba(0, 0, 0, 0.2);
}

.feature-card {
  padding: 1.35rem 1.25rem;
  transition:
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.feature-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-3px);
}

@media (min-width: 640px) {
  .feature-card {
    padding: 1.75rem;
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  color: var(--color-accent);
  background: rgba(145, 70, 255, 0.12);
  border: 1px solid rgba(145, 70, 255, 0.25);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.975rem;
  color: var(--color-text-muted);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.split-runtime {
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .split-runtime {
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.split-content > p {
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gradient-brand);
}

.terminal {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: rgba(1, 9, 45, 0.85);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: rgba(3, 44, 123, 0.4);
  border-bottom: 1px solid var(--color-border);
}

.terminal-bar span:nth-child(-n + 3) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.terminal-bar span:nth-child(1) {
  background: #ff5f57;
}
.terminal-bar span:nth-child(2) {
  background: #febc2e;
}
.terminal-bar span:nth-child(3) {
  background: #28c840;
}

.terminal-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  font-family: ui-monospace, monospace;
}

.terminal-body {
  margin: 0;
  padding: 1.25rem 1.25rem 1.5rem;
  font-family: "IBM Plex Sans", ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  overflow-x: auto;
}

.t-prompt {
  color: var(--color-accent);
  font-weight: 600;
}

.t-cmd {
  color: var(--color-royal);
}

.t-str {
  color: #9ec5ff;
}

.t-flag {
  color: var(--color-text-dim);
}

.t-out {
  color: var(--color-text);
}

.t-out.dim {
  color: var(--color-text-dim);
}

/* Logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.logo-pill {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(3, 44, 123, 0.2);
}

/* Pricing */
.pricing-billing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.pricing-billing-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.pricing-billing-switch {
  margin: 1rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid #dbe5f6;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(4, 100, 222, 0.08);
}

.pricing-billing-option {
  appearance: none;
  border: 0;
  background: transparent;
  color: #64748b;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.pricing-billing-option:hover {
  color: #334155;
}

.pricing-billing-option.is-active {
  color: #fff;
  background: var(--gradient-brand-shine), var(--gradient-brand);
  box-shadow: 0 8px 22px rgba(4, 100, 222, 0.28);
}

.pricing-billing-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 70, 255, 0.28);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.pricing-grid--four {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pricing-grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1100px) {
  .pricing-grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.pricing-card {
  position: relative;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 2rem 1.75rem;
  }
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  background: linear-gradient(105deg, var(--color-royal) 0%, var(--color-accent) 55%, #b47cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.8vw, 1.7rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pricing-card .price:not(.price--text) {
  margin-bottom: 1.05rem;
}

.pricing-savings {
  margin: 0 0 0.95rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

body.page-runtime .pricing-savings {
  color: #64748b;
}

.price-currency {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  vertical-align: super;
  font-weight: 700;
  opacity: 0.72;
  margin-right: 0.12rem;
}

.price-note {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-dim);
}

.price--text {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.25;
  color: var(--color-text);
}

.price .price-period {
  margin-left: 0.1em;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.pricing-list {
  margin: 0.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.pricing-list li.pricing-list-strong {
  font-weight: 700;
  color: var(--color-text);
}

.pricing-list li.pricing-list-note {
  padding-left: 0;
  margin-top: -0.25rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #8e97ad;
}

.pricing-list li.pricing-list-note::before {
  content: none;
}

.pricing-email-input {
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #0c1222;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(145, 70, 255, 0.48);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(145, 70, 255, 0.2);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pricing-email-input::placeholder {
  color: #64748b;
}

.pricing-email-input:focus {
  border-color: rgba(145, 70, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(145, 70, 255, 0.24);
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-royal);
  font-weight: 700;
  font-size: 0.85rem;
}

.pricing-list-item--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.pricing-list-item--stack::before {
  top: 0.2em;
}

.pricing-list-title {
  display: block;
}

.pricing-list-sub {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--color-text-dim);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  /* Firma de marca consistente con CTAs */
  background: var(--gradient-brand-shine), var(--gradient-brand);
  border-radius: 999px;
}

.pricing-card-featured {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 0 1px rgba(145, 70, 255, 0.2), var(--shadow-glow);
}

/* CTA */
.cta-band {
  padding-bottom: clamp(4rem, 12vw, 7rem);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    125deg,
    #0348a8 0%,
    var(--color-royal) 26%,
    color-mix(in srgb, var(--color-royal) 40%, var(--color-accent) 60%) 52%,
    #7c3aed 78%,
    color-mix(in srgb, var(--color-accent) 92%, #ffffff 8%) 100%
  );
  box-shadow:
    0 4px 28px rgba(4, 100, 222, 0.38),
    0 28px 72px rgba(76, 29, 149, 0.32);
}

.cta-inner > div:first-child {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.8vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  text-align: center;
  max-width: min(42ch, 100%);
  margin-inline: auto;
  color: #fff;
  text-shadow: 0 1px 3px rgba(1, 9, 45, 0.25);
}

/* Acento del título: blanco → lavanda muy clara (legible sobre el degradé del bloque) */
.cta-inner h2 .gradient-text {
  font-weight: inherit;
  letter-spacing: inherit;
  background: linear-gradient(105deg, #ffffff 0%, #e8eeff 45%, #f4f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.cta-inner > div:first-child p {
  margin: 0 auto;
  max-width: 58ch;
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 2px rgba(1, 9, 45, 0.2);
}

html[lang="es"] .cta-inner > div:first-child p {
  max-width: 64ch;
}

.cta-inner .brand-name {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(1, 9, 45, 0.3);
}

.cta-form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.65rem;
  align-items: stretch;
  justify-content: center;
  width: min(720px, 100%);
  margin-inline: auto;
}

.cta-form .btn {
  width: 100%;
  justify-content: center;
}

@media (min-width: 520px) {
  .cta-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .cta-form .btn {
    width: auto;
  }
}

.cta-form input {
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #0c1222;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

@media (min-width: 520px) {
  .cta-form input {
    min-width: min(220px, 100%);
    width: auto;
  }
}

.cta-form input::placeholder {
  color: #64748b;
}

.cta-form input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-royal);
  text-align: center;
}

.cta-inner .form-hint {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(1, 9, 45, 0.2);
}

/* Banner: una sola plataforma (entre Qué hace saibox y Producto) */
.platform-banner {
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
  padding: clamp(3.75rem, 11vw, 6.5rem) 0;
  background: linear-gradient(
    125deg,
    #01061f 0%,
    #041a4a 20%,
    #082f75 40%,
    #352085 62%,
    #5b21b6 82%,
    #6d28d9 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 60px rgba(15, 23, 42, 0.2);
}

.platform-banner__aurora {
  position: absolute;
  inset: -35% -25% auto -25%;
  height: 100%;
  min-height: 28rem;
  background:
    radial-gradient(ellipse 65% 50% at 15% 25%, rgba(4, 100, 222, 0.5) 0%, transparent 58%),
    radial-gradient(ellipse 50% 42% at 92% 30%, rgba(145, 70, 255, 0.42) 0%, transparent 52%),
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(91, 33, 182, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.platform-banner__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, transparent 38%);
  pointer-events: none;
}

.platform-banner__content {
  position: relative;
  z-index: 1;
  max-width: min(var(--measure-centered), 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  text-align: center;
}

.platform-banner__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 5.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.platform-banner__accent {
  background: linear-gradient(105deg, #c7d2fe 0%, #ffffff 45%, #ede9fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.platform-banner__lead {
  margin: 0 auto;
  max-width: 100%;
  font-size: clamp(1.0625rem, 2.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.22);
}

.platform-banner .brand-name {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.platform-banner__actions {
  margin-top: 2.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.platform-banner .btn-primary {
  box-shadow:
    0 4px 20px rgba(4, 100, 222, 0.45),
    0 12px 40px rgba(15, 23, 42, 0.35);
}

.platform-banner .btn-primary:hover {
  transform: translateY(-1px);
}

.platform-banner .btn-outline-on-dark:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0 3rem;
  background: rgba(1, 9, 45, 0.98);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  max-width: 32ch;
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

.footer-meta {
  text-align: left;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

@media (min-width: 640px) {
  .footer-meta {
    text-align: right;
  }
}

.footer-meta p {
  margin: 0 0 0.35rem;
}

.site-footer .brand-name {
  color: #ffffff;
}

.footer-note code {
  font-size: 0.75rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(3, 44, 123, 0.4);
}

/* ——— Layout estilo Runtime + tema claro Saibox ——— */
.noise--subtle {
  opacity: 0.022;
}

body.page-runtime {
  background: #eef2f7;
  color: #0c1222;
}

body.page-runtime a:hover {
  color: var(--color-royal);
}

/* Mayor especificidad que `body.page-runtime a:hover` para no pisar el color del CTA */
body.page-runtime a.btn.btn-primary:hover,
body.page-runtime a.btn.btn-outline-on-dark:hover {
  color: #fff;
}

body.page-runtime .site-header {
  border-bottom-color: rgba(1, 9, 45, 0.08);
}

body.page-runtime .site-header::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.92) 100%);
}

body.page-runtime .site-header.is-scrolled::before {
  opacity: 1;
}

body.page-runtime .nav-list {
  background: #fff;
  border-color: #e2e8f0;
}

body.page-runtime .nav-list a {
  color: #475569;
}

body.page-runtime .nav-list a:hover {
  color: var(--color-navy);
}

@media (min-width: 769px) {
  body.page-runtime .nav-list {
    background: transparent;
    border: 0;
  }

  body.page-runtime .nav-list a {
    color: #475569;
  }
}

body.page-runtime .lang-switch {
  border-color: #e2e8f0;
  background: #f8fafc;
}

body.page-runtime .lang-option:not(.is-active) {
  color: #64748b;
}

body.page-runtime .nav-toggle {
  background: #f8fafc;
  border-color: #e2e8f0;
}

body.page-runtime .nav-toggle-bar {
  background: #01092d;
}

body.page-runtime .btn-ghost {
  color: #64748b;
}

body.page-runtime .btn-ghost:hover {
  color: var(--color-navy);
}

body.page-runtime .btn-outline {
  background: #fff;
  color: var(--color-navy);
  border-color: #cbd5e1;
}

body.page-runtime .btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-navy);
}

body.page-runtime .cta-band .btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-runtime .cta-band .btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Trust band con carrusel de logos */
.trust-band {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.2rem) 0 clamp(1.8rem, 5vw, 2.8rem);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.trust-band__inner {
  display: grid;
  gap: 1rem;
}

.trust-band__title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #334155;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: logo-marquee-scroll 32s linear infinite;
}

.logo-pill {
  flex: 0 0 auto;
  min-width: 148px;
  height: 56px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #dbe3ee;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(1, 9, 45, 0.04);
}

.logo-pill img {
  display: block;
  max-height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
}

/* Hero tipo Runtime: copy + mock a la derecha */
.rt-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 9vw, 6.5rem);
  overflow: hidden;
}

.hero-bg--light {
  background:
    radial-gradient(100% 80% at 90% 0%, rgba(4, 100, 222, 0.12) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(145, 70, 255, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  animation: none;
}

.rt-hero__stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

.rt-hero__copy--center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt-hero__copy--center .hero-title {
  max-width: min(22ch, 100%);
  margin-left: auto;
  margin-right: auto;
  color: #0c1222;
}

.rt-hero__copy--center .hero-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
  color: #475569;
}

.rt-hero__copy--center .hero-microcopy {
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
  margin-top: 0.25rem;
  margin-bottom: 0;
  color: #64748b;
}

.rt-hero__copy--center .hero-cta {
  justify-content: center;
}

.rt-hero__collage {
  width: 100%;
  max-width: min(1100px, 100%);
  margin-top: 2.25rem;
  margin-inline: auto;
}

.hero-collage {
  position: relative;
  width: 100%;
  padding: clamp(0.9rem, 2.1vw, 1.35rem) clamp(0.35rem, 2vw, 1rem) clamp(1.1rem, 2.8vw, 1.7rem);
  overflow: visible;
}

.hero-collage__surface {
  position: absolute;
  inset: 0;
  border-radius: clamp(1rem, 2.2vw, 1.6rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 248, 255, 0.76) 100%),
    radial-gradient(120% 90% at 20% 24%, rgba(145, 70, 255, 0.16) 0%, transparent 58%),
    radial-gradient(100% 80% at 84% 36%, rgba(4, 100, 222, 0.14) 0%, transparent 56%);
  border: 1px solid rgba(180, 201, 236, 0.35);
  box-shadow:
    0 18px 54px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  z-index: 0;
}

.hero-collage__aurora {
  position: absolute;
  top: -10%;
  bottom: 20%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 70% 55% at 18% 45%, rgba(145, 70, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 82% 38%, rgba(4, 100, 222, 0.2) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 72%, rgba(4, 100, 222, 0.08) 0%, transparent 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-collage__wave {
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 8%;
  height: clamp(5.2rem, 16vw, 8rem);
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.hero-collage__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-collage__wave-line {
  opacity: 0.6;
}

.hero-collage__img {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 44px rgba(1, 9, 45, 0.12)) drop-shadow(0 6px 16px rgba(4, 100, 222, 0.08));
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage__wave {
    opacity: 0.4;
  }
}

.pill-eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(1, 9, 45, 0.04);
}

.pill-eyebrow--center {
  margin-left: auto;
  margin-right: auto;
}

.rt-frame {
  margin: 0;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(1, 9, 45, 0.05),
    0 20px 50px rgba(4, 100, 222, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
}

.rt-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.rt-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .rt-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .rt-split--reverse .rt-split__visual {
    order: -1;
  }
}

.rt-split__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: #0c1222;
}

.rt-split__lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
}

.rt-split__em {
  margin: 0 0 1.25rem;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #1e293b;
}

.rt-icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rt-icon-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #334155;
}

.rt-icon-list--compact li {
  margin-bottom: 0.72rem;
  font-size: 0.9375rem;
}

.rt-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  color: var(--color-royal);
  background: rgba(4, 100, 222, 0.09);
  border: 1px solid rgba(4, 100, 222, 0.16);
}

.rt-icon svg {
  display: block;
}

.surface-white {
  background: #fff;
}

.surface-muted {
  background: #f1f5f9;
}

.section-rt {
  position: relative;
  z-index: 1;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

body.page-runtime .section-rt .section-head h2 {
  color: #0c1222;
}

body.page-runtime .section-rt .section-head p,
body.page-runtime .section-rt .benefits-deck {
  color: #64748b;
}

body.page-runtime .section-rt .what-subtitle {
  color: #475569;
}

body.page-runtime .section-rt .metrics-intro__support {
  color: #64748b;
}

body.page-runtime .section-rt .metrics-intro__lead {
  color: #334155;
}

body.page-runtime .metric-tile {
  background: #fff;
}

body.page-runtime .metric-tile:hover {
  box-shadow: 0 10px 36px rgba(4, 100, 222, 0.1);
}

body.page-runtime .checklist li {
  color: #475569;
}

body.page-runtime .feature-card {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 12px rgba(1, 9, 45, 0.04);
}

body.page-runtime .feature-card h3 {
  color: #0c1222;
}

body.page-runtime .feature-card p,
body.page-runtime .feature-detail {
  color: #475569;
}

body.page-runtime .feature-detail--kicker {
  color: #334155;
}

body.page-runtime .how-step {
  background: #fff;
  border-color: #e2e8f0;
}

body.page-runtime .how-step__title {
  color: #0c1222;
}

body.page-runtime .how-step.feature-card p.how-step__lead {
  color: #475569;
}

body.page-runtime .table-wrap {
  background: #fff;
  border-color: #e2e8f0;
}

body.page-runtime .compare-table th {
  background: #f8fafc;
  color: #0c1222;
}

body.page-runtime .compare-table td {
  color: #475569;
}

body.page-runtime .compare-table th,
body.page-runtime .compare-table td {
  border-color: #e2e8f0;
}

body.page-runtime .faq-item {
  background: #fff;
  border-color: #e2e8f0;
}

body.page-runtime .faq-item summary {
  color: #0c1222;
}

body.page-runtime .faq-item p {
  color: #475569;
}

body.page-runtime .pricing-card {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 28px rgba(1, 9, 45, 0.06);
}

body.page-runtime .pricing-card h3 {
  background: linear-gradient(105deg, var(--color-royal) 0%, var(--color-accent) 55%, #b47cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-runtime .pricing-card .price:not(.price--text) {
  color: #0c1222;
}

body.page-runtime .pricing-card .price--text {
  color: #64748b;
}

body.page-runtime .pricing-list li {
  color: #475569;
}

body.page-runtime .pricing-card-featured {
  border-color: rgba(145, 70, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(145, 70, 255, 0.12),
    0 16px 48px rgba(4, 100, 222, 0.1);
}

body.page-runtime .pricing-footnotes li {
  color: #64748b;
}

body.page-runtime .pain-band .rt-split__title {
  max-width: 26ch;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg {
    animation: none;
  }

  .hero-bg--light {
    animation: none;
  }

  .orb-1,
  .orb-2 {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
