:root {
  color-scheme: light;
  --ink: #121516;
  --muted: #5c6a67;
  --line: #dce6e0;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --soft: #eef6ef;
  --mint: #21a67a;
  --mint-dark: #147557;
  --mint-deep: #0f6249;
  --coral: #b4473b;
  --gold: #d9a441;
  --charcoal: #171a1a;
  --shadow: 0 24px 80px rgb(18 21 22 / 14%);
  --max: 1160px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: #c8f3de;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

main:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 8px;
}

:where(main#contenido-principal, section[id]) {
  scroll-margin-top: 92px;
}

:target {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.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;
}

/* ---------- Halos de color del fondo ---------- */

.page-aura {
  position: fixed;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aura {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}

.aura-mint {
  top: -16vh;
  left: -10vw;
  width: 54vw;
  height: 54vw;
  background: radial-gradient(circle, rgb(33 166 122 / 20%), transparent 68%);
}

.aura-gold {
  top: 26vh;
  right: -16vw;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgb(217 164 65 / 13%), transparent 68%);
}

.aura-sage {
  bottom: -20vh;
  left: 28vw;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgb(33 166 122 / 11%), transparent 70%);
}

.js-enabled .aura-mint {
  animation: drift-a 36s ease-in-out infinite alternate;
}

.js-enabled .aura-gold {
  animation: drift-b 44s ease-in-out infinite alternate;
}

.js-enabled .aura-sage {
  animation: drift-c 40s ease-in-out infinite alternate;
}

@keyframes drift-a {
  to {
    transform: translate3d(4vw, 3vh, 0) scale(1.08);
  }
}

@keyframes drift-b {
  to {
    transform: translate3d(-5vw, 4vh, 0) scale(1.06);
  }
}

@keyframes drift-c {
  to {
    transform: translate3d(3vw, -3vh, 0) scale(1.1);
  }
}

/* ---------- Barra de progreso de lectura ---------- */

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint-dark), var(--mint), var(--gold));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: 0 50%;
}

/* ---------- Encabezado ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgb(251 251 247 / 88%);
  box-shadow: 0 10px 30px rgb(18 21 22 / 6%);
  backdrop-filter: blur(18px) saturate(160%);
}

.header-inner {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--header-h);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
}

.registration-header {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--header-h);
  align-items: center;
  margin-inline: auto;
}

.brand-mark {
  display: flex;
  width: 124px;
  flex: none;
  align-items: center;
}

.brand-mark img,
.final-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  bottom: 7px;
  left: 14px;
  width: calc(100% - 28px);
  height: 2px;
  border-radius: 2px;
  background: var(--mint-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 220ms var(--ease);
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
}

.main-nav a.is-current {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 10px;
  padding: 0 20px;
  background: var(--mint-dark);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgb(20 117 87 / 26%);
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.nav-cta:hover {
  background: var(--mint-deep);
  color: white;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(18 21 22 / 14%);
  border-radius: 10px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

/* ---------- Riel de secciones (línea de tiempo) ---------- */

.rail {
  position: fixed;
  top: 50%;
  left: 26px;
  z-index: 70;
  display: none;
  transform: translateY(-50%);
}

.rail ol {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rail-track {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 5px;
  width: 2px;
  border-radius: 2px;
  background: var(--line);
}

.rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background: var(--mint-dark);
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: 50% 0;
}

.rail a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 24px;
}

.rail-dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  flex: none;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease);
}

.rail-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

.rail a:hover .rail-dot,
.rail a:focus-visible .rail-dot {
  border-color: var(--mint);
}

.rail a:hover .rail-label,
.rail a:focus-visible .rail-label {
  opacity: 1;
  transform: none;
}

.rail li.is-active .rail-dot {
  border-color: var(--mint-dark);
  background: var(--mint-dark);
  transform: scale(1.2);
}

.rail li.is-active .rail-label {
  color: var(--mint-dark);
}

/* La etiqueta de la sección activa sólo cabe cuando hay margen lateral de sobra. */
@media (min-width: 1520px) {
  .rail li.is-active .rail-label {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1280px) {
  .js-enabled .rail {
    display: block;
  }
}

/* ---------- Tipografía base ---------- */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.006em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease);
}

.button.primary {
  background: var(--mint-dark);
  color: white;
  box-shadow: 0 14px 30px rgb(20 117 87 / 28%);
}

.button.primary:hover {
  background: var(--mint-deep);
  transform: translateY(-1px);
}

.button.secondary {
  border: 1px solid rgb(18 21 22 / 16%);
  background: rgb(255 255 255 / 82%);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgb(18 21 22 / 32%);
}

.button.full {
  width: 100%;
}

.button.whatsapp {
  gap: 10px;
  background: #1fa855;
  color: white;
  box-shadow: 0 14px 30px rgb(31 168 85 / 30%);
}

.button.whatsapp:hover {
  background: #17904a;
  transform: translateY(-1px);
}

.wa-glyph {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
}

.wa-glyph svg {
  width: 20px;
  height: 20px;
}

/* ---------- Hero ---------- */

/* La primera vista ocupa la pantalla completa, descontando el encabezado. */
.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - var(--header-h));
  align-items: center;
  padding: 0;
  isolation: isolate;
}

.hero-scene {
  position: absolute;
  inset: -80px 0 auto;
  z-index: -1;
  height: 760px;
  overflow: hidden;
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgb(18 21 22 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(18 21 22 / 5%) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black 8%, transparent 78%);
  transform: translateY(calc(var(--scroll-y, 0) * -0.02px));
}

.scene-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.glow-a {
  top: -120px;
  left: 6%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgb(33 166 122 / 20%), transparent 62%);
}

.glow-b {
  top: -60px;
  right: 3%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgb(217 164 65 / 16%), transparent 62%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 56px;
  align-items: center;
  margin-inline: auto;
  padding: 36px 0 52px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  border: 1px solid rgb(20 117 87 / 22%);
  border-radius: 999px;
  padding: 7px 15px 7px 12px;
  background: rgb(255 255 255 / 72%);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero h1 {
  text-wrap: pretty;
}

.hero-copy {
  max-width: 520px;
  margin: 0 0 30px;
  color: #394540;
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-facts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero-facts li::before {
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  content: "✓";
}

.hero-stage {
  position: relative;
  z-index: 2;
}

.hero-frame {
  transform:
    perspective(1600px) rotateY(-7deg) rotateX(1.5deg)
    translateY(calc(var(--scroll-y, 0) * -0.012px));
}

.floating-ticket {
  position: absolute;
  z-index: 3;
  width: 186px;
  border: 1px solid rgb(18 21 22 / 10%);
  border-radius: 14px;
  padding: 15px;
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 18px 40px rgb(18 21 22 / 12%);
  backdrop-filter: blur(12px);
}

.floating-ticket span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-ticket strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.ticket-one {
  bottom: 104px;
  left: 18px;
  transform: translateY(calc(var(--scroll-y, 0) * -0.05px));
}

/* Arriba a la derecha: no debe tapar el rótulo de datos de demostración del pie. */
.ticket-two {
  top: -26px;
  right: -26px;
  transform: translateY(calc(var(--scroll-y, 0) * 0.035px));
}

/* ---------- Marcos de pantalla ---------- */

.screen-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(18 21 22 / 10%);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.frame-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 11px 15px;
  background: #f4f7f4;
}

.frame-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9e2dc;
}

.frame-bar span:nth-child(1) {
  background: #e2a49c;
}

.frame-bar span:nth-child(2) {
  background: #ecd0a0;
}

.frame-bar span:nth-child(3) {
  background: #a9dcc4;
}

.frame-bar em {
  margin-left: 10px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.screen-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-frame figcaption {
  border-top: 1px solid var(--line);
  padding: 11px 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Cinta del circuito ---------- */

.circuit {
  overflow: hidden;
  border-block: 1px solid var(--line);
  margin-top: 56px;
  padding: 15px 0;
  background: rgb(238 246 239 / 70%);
  backdrop-filter: blur(6px);
}

.circuit-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
}

.js-enabled .circuit-track {
  animation: circuit-slide 60s linear infinite;
}

.circuit-track span {
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.circuit-track i {
  display: block;
  width: 34px;
  height: 6px;
  flex: none;
  background: var(--mint);
  clip-path: polygon(0 42%, 68% 42%, 68% 0, 100% 50%, 68% 100%, 68% 58%, 0 58%);
  opacity: 0.55;
}

@keyframes circuit-slide {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Contenedores de sección ---------- */

.proof-strip,
.section,
.pricing-section,
.faq-section,
.final-cta,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section,
.faq-section {
  padding-top: 104px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 640px;
}

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.benefit-grid article,
.use-case-grid article,
.faq-list details,
.principle-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgb(18 21 22 / 5%);
}

/* ---------- Puntos clave ---------- */

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 24px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 10px 30px rgb(18 21 22 / 5%);
  backdrop-filter: blur(6px);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.proof-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent);
  content: "";
}

.proof-card:hover {
  box-shadow: 0 20px 44px rgb(18 21 22 / 10%);
  transform: translateY(-3px);
}

.accent-mint {
  --accent: var(--mint);
  --accent-soft: #e4f4ec;
  --accent-ink: var(--mint-dark);
}

.accent-gold {
  --accent: var(--gold);
  --accent-soft: #fbf1dc;
  --accent-ink: #8a6417;
}

.accent-coral {
  --accent: var(--coral);
  --accent-soft: #fbeae7;
  --accent-ink: #8f3a30;
}

.proof-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.proof-icon svg {
  width: 22px;
  height: 22px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.012em;
}

.proof-text {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Cómo funciona ---------- */

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: start;
}

.story-visual {
  position: sticky;
  top: var(--header-h);
  display: flex;
  height: calc(100vh - var(--header-h));
  align-items: center;
}

.laptop {
  width: 100%;
  margin: 0;
}

.laptop-screen {
  overflow: hidden;
  border: 10px solid var(--charcoal);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 30px 70px rgb(18 21 22 / 20%);
}

.laptop-view {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--soft);
}

.laptop-view img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 420ms ease;
}

.laptop-view img.is-active {
  opacity: 1;
}

.laptop-base {
  width: 116%;
  height: 14px;
  margin: 0 -8%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #232827, #141717);
  box-shadow: 0 16px 26px rgb(18 21 22 / 18%);
}

.laptop-base::after {
  display: block;
  width: 86px;
  height: 5px;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
  background: #3b4341;
  content: "";
}

.laptop figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: flex;
  min-height: 34vh;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid var(--line);
  padding: 24px 0 24px 26px;
}

.js-enabled .step {
  opacity: 0.42;
  transition:
    opacity 300ms ease,
    border-color 300ms ease,
    transform 300ms var(--ease);
}

.js-enabled .step.active {
  border-color: var(--mint-dark);
  opacity: 1;
  transform: translateX(5px);
}

.step-num {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.step p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.no-js-story-gallery {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.no-js-story-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.no-js-story-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.no-js-story-gallery figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.story > noscript {
  display: block;
  grid-column: 1 / -1;
}

.step p strong {
  color: var(--mint-dark);
  font-weight: 800;
}

/* ---------- Beneficios ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-grid article {
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.benefit-grid article:hover {
  box-shadow: 0 20px 44px rgb(18 21 22 / 9%);
  transform: translateY(-3px);
}

.b-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 12px;
  background: var(--soft);
  color: var(--mint-dark);
}

.b-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-grid h3 {
  margin-bottom: 10px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Franja oscura del panel ---------- */

.showcase {
  position: relative;
  margin-top: 118px;
  padding: 96px 0;
  background: var(--charcoal);
  color: #e7eeea;
}

.showcase-inner {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: center;
  margin-inline: auto;
}

.showcase .eyebrow {
  color: #7fd8b4;
}

.showcase h2 {
  margin-bottom: 18px;
  color: white;
}

.showcase-copy > p {
  color: #b6c4bf;
  line-height: 1.7;
}

.showcase-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-left: 26px;
  color: #dbe6e1;
  font-weight: 700;
}

.showcase-list li::before {
  position: absolute;
  left: 0;
  color: #7fd8b4;
  content: "✓";
}

.showcase-frame {
  border-color: rgb(255 255 255 / 12%);
  background: #101313;
  box-shadow: 0 40px 90px rgb(0 0 0 / 40%);
}

.showcase-frame .frame-bar {
  border-bottom-color: rgb(255 255 255 / 10%);
  background: #232827;
}

.showcase-frame .frame-bar em {
  color: #93a29d;
}

.showcase-frame figcaption {
  border-top-color: rgb(255 255 255 / 10%);
  background: #1d2221;
  color: #93a29d;
}

/* ---------- Dentro del sistema ---------- */

.system-section {
  padding-top: 118px;
}

.system-rows {
  display: grid;
  gap: 96px;
}

.system-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
}

.system-row:nth-child(even) {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.system-row:nth-child(even) .system-copy {
  order: 2;
}

.system-copy h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.system-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.system-copy ul,
.price-included ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.system-copy li,
.price-included li {
  position: relative;
  padding-left: 25px;
  color: #35423e;
  font-weight: 700;
}

.system-copy li::before,
.price-included li::before {
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  content: "✓";
}

/* ---------- Rubros ---------- */

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.use-case-grid article {
  display: flex;
  flex-direction: column;
  padding: 22px;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.use-case-grid article:hover {
  box-shadow: 0 18px 38px rgb(18 21 22 / 9%);
  transform: translateY(-3px);
}

.use-case-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.use-case-grid article:nth-child(4n + 1) {
  background: #f2f9f4;
}

.use-case-grid article:nth-child(4n + 2) {
  background: #fdf8ee;
}

.use-case-grid article:nth-child(4n + 3) {
  background: #fdf4f1;
}

.use-case-grid article:nth-child(4n + 4) {
  background: var(--surface);
}

/* ---------- Precio ---------- */

.pricing-section {
  padding-top: 118px;
}

.price-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 26px 64px rgb(18 21 22 / 10%);
}

.price-main {
  border-right: 1px solid var(--line);
  padding: 38px;
  background: linear-gradient(165deg, #f4fbf7, #e6f4ed);
}

.plan-label {
  display: block;
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 26px;
}

.price strong {
  display: block;
  font-size: clamp(44px, 5.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
}

.price-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.price-included {
  padding: 38px;
}

.price-included-title {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cancel-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgb(18 21 22 / 5%);
}

.cancel-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--mint-dark);
}

.cancel-icon svg {
  width: 26px;
  height: 26px;
}

.cancel-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.cancel-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Alta asistida ---------- */

.onboarding-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding-flow li {
  position: relative;
  padding-right: 10px;
}

/* Conector entre el nodo de un paso y el del siguiente (48px de nodo + 10 de aire). */
.onboarding-flow li::before {
  position: absolute;
  top: 23px;
  left: 58px;
  width: calc(100% - 34px);
  height: 2px;
  background: linear-gradient(90deg, rgb(20 117 87 / 45%), rgb(20 117 87 / 12%));
  content: "";
}

.onboarding-flow li:last-child::before {
  display: none;
}

.o-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border: 2px solid var(--mint-dark);
  border-radius: 50%;
  background: var(--paper);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.o-node i {
  font-style: normal;
}

.onboarding-flow strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.onboarding-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Principios ---------- */

.principles-section {
  padding-top: 104px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.principle-grid article {
  padding: 34px;
  background: linear-gradient(180deg, var(--surface), #f6faf7);
}

.principle-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--mint-dark);
}

.principle-icon svg {
  width: 25px;
  height: 25px;
}

.principle-tag {
  margin: 0 0 10px;
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle-text {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.008em;
}

/* ---------- FAQ ---------- */

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  display: flex;
  min-height: 24px;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.faq-list p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Campañas de promoción ---------- */

.promo-section {
  padding-top: 118px;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.promo-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.promo-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.promo-list li {
  position: relative;
  padding-left: 27px;
  color: var(--muted);
  line-height: 1.6;
}

.promo-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--mint-dark);
  content: "✓";
  font-weight: 850;
}

.promo-list strong {
  color: var(--ink);
}

/* ---------- Contacto ---------- */

.contact-section {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding-top: 118px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.wa-card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 36px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgb(18 21 22 / 7%);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.wa-card > * {
  position: relative;
  z-index: 1;
}

.wa-card:hover {
  box-shadow: 0 24px 52px rgb(18 21 22 / 10%);
  transform: translateY(-3px);
}

.wa-badge {
  margin-bottom: 26px;
  border-radius: 999px;
  padding: 6px 14px;
  background: #e6f6ec;
  color: #12864a;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wa-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: #25d366;
  color: white;
}

.wa-icon svg {
  width: 34px;
  height: 34px;
}

.wa-card strong {
  margin-bottom: 10px;
  font-size: 25px;
  letter-spacing: -0.016em;
  line-height: 1.2;
}

.wa-text {
  max-width: 340px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.wa-go {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  margin-top: 28px;
  border-radius: 12px;
  padding: 0 24px;
  background: #1fa855;
  color: white;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 12px 26px rgb(31 168 85 / 24%);
}

.wa-go::after {
  margin-left: 8px;
  content: "→";
}

.wa-card:hover .wa-go {
  background: #17904a;
}

.contact-alt {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.contact-alt .contact-email {
  display: inline;
  min-height: 0;
  margin: 0 2px;
}

.contact-alt span {
  display: block;
  margin-top: 6px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgb(18 21 22 / 7%);
}

.form-title {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 850;
}

.field {
  display: grid;
  margin-bottom: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.field label {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fcfdfc;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--mint);
  outline: none;
  box-shadow: 0 0 0 3px rgb(33 166 122 / 18%);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 2px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* ---------- Cierre ---------- */

.final-cta {
  display: grid;
  place-items: center;
  padding: 118px 0 90px;
  text-align: center;
}

.final-cta div {
  max-width: 720px;
}

.final-cta img {
  width: 160px;
  margin-bottom: 26px;
}

.final-cta h2 {
  margin-bottom: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a:hover {
  color: var(--ink);
}

/* ---------- Páginas internas ---------- */

.registration-page,
.legal-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.registration-page main,
.legal-page main {
  flex: 1;
}

.registration-shell {
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  padding: 72px 0;
}

.registration-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.registration-card h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 52px);
}

.registration-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #394540;
  font-size: 18px;
  line-height: 1.65;
}

.registration-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.contact-panel {
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: var(--soft);
}

.contact-panel h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.contact-panel p {
  max-width: 580px;
  color: #35423e;
  line-height: 1.6;
}

.contact-email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--mint-dark);
  color: var(--mint-dark);
  font-weight: 850;
}

.contact-hours {
  margin: 16px 0 0;
  font-size: 14px;
}

.registration-details {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.registration-details h2 {
  margin-bottom: 24px;
  font-size: clamp(24px, 4vw, 32px);
}

.registration-steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 24px;
}

.registration-steps li {
  padding-left: 8px;
}

.registration-steps strong,
.registration-steps span {
  display: block;
}

.registration-steps strong {
  margin-bottom: 4px;
  font-size: 17px;
}

.registration-steps span {
  color: var(--muted);
  line-height: 1.55;
}

.registration-note {
  margin: 30px 0 0;
  border-left: 3px solid var(--mint-dark);
  padding: 16px 18px;
  background: var(--soft);
  color: #35423e;
  line-height: 1.6;
}

/* Las páginas internas no cargan script.js: el encabezado va siempre sólido. */
.legal-page .site-header,
.registration-page .site-header {
  border-bottom-color: var(--line);
  background: rgb(251 251 247 / 92%);
  backdrop-filter: blur(14px);
}

.inner-simple {
  grid-template-columns: auto 1fr;
}

.back-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.back-link::before {
  margin-right: 8px;
  content: "←";
}

.back-link:hover {
  color: var(--ink);
}

.legal-shell {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
  padding: 56px 0 24px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 52px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgb(18 21 22 / 7%);
}

.legal-card h1 {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: clamp(30px, 4.4vw, 44px);
}

.legal-meta {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.draft-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 32px;
  border: 1px solid rgb(180 71 59 / 32%);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fdf3f0;
  color: #7a3128;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.draft-banner::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  content: "!";
  font-size: 13px;
  font-weight: 900;
}

.legal-index {
  margin: 0 0 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  background: var(--soft);
}

.legal-index p {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-index ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  counter-reset: idx;
  list-style: none;
}

.legal-index li {
  counter-increment: idx;
}

.legal-index a {
  display: inline-flex;
  gap: 10px;
  color: #35423e;
  font-size: 15px;
  font-weight: 700;
}

.legal-index a::before {
  color: var(--mint-dark);
  content: counter(idx, decimal-leading-zero);
  font-weight: 850;
}

.legal-index a:hover {
  color: var(--mint-dark);
}

.legal-card h2 {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(20px, 2.6vw, 26px);
  scroll-margin-top: 96px;
}

.legal-card h2 .num {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.legal-card h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 19px;
}

.legal-card p,
.legal-card li {
  color: #35423e;
  line-height: 1.75;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.placeholder {
  border-bottom: 2px solid var(--coral);
  color: #762d26;
  font-weight: 850;
}

.legal-more {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.legal-more a {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--surface);
  font-size: 15px;
  font-weight: 800;
}

.legal-more a span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-more a:hover {
  border-color: rgb(18 21 22 / 24%);
}

.legal-more a[aria-current="page"] {
  border-color: rgb(20 117 87 / 40%);
  background: var(--soft);
  color: var(--mint-dark);
}

.legal-footer {
  width: min(calc(100% - 40px), var(--max));
}

.registration-footer {
  align-items: center;
  justify-content: space-between;
}

/* ---------- Aparición al hacer scroll ---------- */

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Adaptación a pantallas chicas ---------- */

@media (max-width: 1180px) {
  .floating-ticket {
    display: none;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr;
    row-gap: 0;
  }

  .js-enabled .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
  }

  .js-enabled .main-nav {
    display: none;
    width: 100%;
    border-top: 1px solid var(--line);
    padding: 10px 0;
  }

  .js-enabled .main-nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .benefit-grid,
  .story,
  .showcase-inner,
  .price-card,
  .hero-grid,
  .promo-layout,
  .contact-grid,
  .system-row,
  .system-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    gap: 40px;
    padding: 20px 0 76px;
  }

  .hero-frame {
    transform: translateY(calc(var(--scroll-y, 0) * -0.012px));
  }

  .system-row:nth-child(even) .system-copy {
    order: 0;
  }

  .system-rows {
    gap: 68px;
  }

  .story {
    gap: 32px;
  }

  .story-visual {
    position: relative;
    top: auto;
    height: auto;
  }

  .step {
    min-height: 0;
    padding: 18px 0 18px 22px;
  }

  .js-enabled .step {
    opacity: 1;
  }

  .js-enabled .step.active {
    transform: none;
  }

  .proof-strip,
  .benefit-grid,
  .use-case-grid,
  .onboarding-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .onboarding-flow::before {
    display: none;
  }

  .price-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stage {
    margin-top: 44px;
  }
}

@media (max-width: 680px) {
  .proof-strip,
  .section,
  .pricing-section,
  .faq-section,
  .final-cta,
  .site-footer,
  .header-inner,
  .registration-header,
  .contact-section,
  .hero-grid,
  .showcase-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .section,
  .faq-section,
  .system-section,
  .pricing-section,
  .promo-section,
  .contact-section {
    padding-top: 76px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .wa-card {
    padding: 30px 24px;
  }

  .brand-mark {
    width: 104px;
  }

  .nav-cta {
    padding: 0 15px;
    font-size: 13px;
  }

  .menu-toggle {
    padding: 0 12px;
    font-size: 13px;
  }

  .proof-strip,
  .benefit-grid,
  .use-case-grid,
  .onboarding-flow,
  .principle-grid,
  .no-js-story-gallery {
    grid-template-columns: 1fr;
  }

  .circuit {
    margin-top: 72px;
  }

  .showcase {
    margin-top: 84px;
    padding: 72px 0;
  }

  .price-main,
  .price-included {
    padding: 28px 24px;
  }

  .principle-grid article {
    padding: 28px 24px;
  }

  .registration-card,
  .legal-card {
    padding: 30px 22px;
  }

  .legal-index ol,
  .legal-more {
    grid-template-columns: 1fr;
  }

  .registration-shell,
  .legal-shell {
    width: min(calc(100% - 28px), 820px);
    padding-top: 48px;
  }

  .registration-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .registration-actions .button {
    width: 100%;
  }

  .final-cta {
    padding: 84px 0 70px;
  }

  .aura-gold,
  .aura-sage {
    display: none;
  }

  .aura {
    filter: blur(50px);
  }

  .site-footer,
  .site-footer nav,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- Movimiento reducido ---------- */

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

  *,
  *::before,
  *::after {
    animation: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
    transition-duration: 0.01ms !important;
  }

  .scene-grid,
  .floating-ticket,
  .hero-frame,
  .step,
  .step.active,
  .aura,
  .rail li.is-active .rail-dot {
    transform: none !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
