/* ==========================================================================
   Ornela Campolongo — Altas Rappi
   Sistema de diseño propio (sin Bootstrap). 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marca */
  --brand: #ff441f;
  --brand-600: #e83a17;
  --brand-300: #ff8a63;
  --brand-soft: rgba(255, 68, 31, .10);
  --brand-glow: rgba(255, 68, 31, .35);

  --mint: #00b37e;
  --mint-soft: rgba(0, 179, 126, .12);

  /* Neutros */
  --ink: #0c0c11;
  --ink-2: #16161e;
  --ink-3: #22222d;
  --paper: #ffffff;
  --paper-2: #f7f5f2;
  --paper-3: #efece7;

  --text: #16161c;
  --muted: #6c6c79;
  --muted-2: #9a9aa6;
  --line: rgba(12, 12, 17, .09);
  --line-strong: rgba(12, 12, 17, .16);

  /* Sobre fondo oscuro */
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, .62);
  --on-dark-line: rgba(255, 255, 255, .12);

  /* Formas */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-full: 999px;

  --shadow-sm: 0 2px 8px rgba(12, 12, 17, .05);
  --shadow-md: 0 14px 40px -18px rgba(12, 12, 17, .28);
  --shadow-lg: 0 40px 90px -40px rgba(12, 12, 17, .45);
  --shadow-brand: 0 18px 40px -16px rgba(255, 68, 31, .55);

  /* Tipografía */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
}

.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.section--dark {
  background: var(--ink);
  color: var(--on-dark);
}
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.section--dark .eyebrow { color: var(--brand-300); }

.s-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 20ch;
}
.s-lead {
  margin-top: 16px;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted);
  max-width: 52ch;
}
.section--dark .s-lead { color: var(--on-dark-muted); }

.s-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
@media (max-width: 860px) {
  .s-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* --------------------------------------------------------------------------
   4. Botones
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s ease, color .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--brand {
  --btn-bg: var(--brand);
  box-shadow: var(--shadow-brand);
}
.btn--brand:hover { --btn-bg: var(--brand-600); box-shadow: 0 24px 50px -18px rgba(255, 68, 31, .7); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { --btn-bg: var(--text); --btn-fg: #fff; border-color: var(--text); }

.section--dark .btn--ghost {
  --btn-fg: #fff;
  border-color: var(--on-dark-line);
}
.section--dark .btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* Brillo que recorre el botón de marca */
.btn--brand::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, .35) 45%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.btn--brand:hover::after { transform: translateX(120%); }

/* --------------------------------------------------------------------------
   5. Header / navegación
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--brand), var(--brand-300));
  z-index: 1001;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
/* Blanco sólido: sobre las secciones oscuras el semitransparente se veía gris */
.header.is-stuck {
  background: #fff;
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(12, 12, 17, .4);
}

.header__inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
/* Logo vectorial: se dibuja (trazo) y se rellena a medida que baja el scroll */
.brand__logo {
  width: 84px;
  height: 36px;
  flex: none;
  overflow: visible;
}
.brand__ghost use { fill: rgba(255, 68, 31, .22); stroke: none; }
.brand__outline use {
  fill: none;
  stroke: var(--brand);
  stroke-width: 7;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.brand__solid use { fill: var(--brand); stroke: none; }
.brand__sep {
  width: 1px;
  height: 26px;
  background: var(--line-strong);
}
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-size: 14px; font-weight: 800; letter-spacing: -.02em; }
.brand__role { font-size: 11px; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color .25s ease, background .25s ease;
}
.nav a:hover { color: var(--text); background: rgba(12, 12, 17, .05); }
.nav a.is-active { color: var(--text); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateX(-50%);
}

.header__cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,.6);
}
.burger span {
  display: block;
  width: 17px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .35s var(--ease), opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav, .header__cta .btn--ghost { display: none; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .header__cta .btn span { display: none; }
  .header__cta .btn { padding: 12px 14px; }
  .brand__txt, .brand__sep { display: none; }
}

/* Drawer móvil */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: calc(var(--nav-h) + 24px) 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  clip-path: circle(0% at calc(100% - 44px) 38px);
  visibility: hidden;
  transition: clip-path .6s var(--ease), visibility 0s linear .6s;
  overflow-y: auto;
}
.drawer.is-open {
  clip-path: circle(150% at calc(100% - 44px) 38px);
  visibility: visible;
  transition: clip-path .6s var(--ease), visibility 0s;
}
.drawer a {
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  padding: 10px 0;
  border-bottom: 1px solid var(--on-dark-line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .5s var(--ease);
}
.drawer.is-open a { opacity: 1; transform: none; }
.drawer.is-open a:nth-child(1) { transition-delay: .12s; }
.drawer.is-open a:nth-child(2) { transition-delay: .17s; }
.drawer.is-open a:nth-child(3) { transition-delay: .22s; }
.drawer.is-open a:nth-child(4) { transition-delay: .27s; }
.drawer.is-open a:nth-child(5) { transition-delay: .32s; }
.drawer.is-open a:nth-child(6) { transition-delay: .37s; }
.drawer__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
.drawer__foot .btn { width: 100%; }
.drawer__meta { font-size: 13px; color: var(--on-dark-muted); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(40px, 7vw, 84px)) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: var(--paper);
}
.hero__bg {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  pointer-events: none;
  background:
    radial-gradient(46% 40% at 76% 22%, rgba(255, 68, 31, .16), transparent 70%),
    radial-gradient(40% 36% at 10% 8%, rgba(255, 138, 99, .14), transparent 70%),
    radial-gradient(50% 40% at 50% 100%, rgba(0, 179, 126, .07), transparent 70%);
  filter: blur(6px);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(12,12,17,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(12,12,17,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.pill__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.pill__dot svg { width: 12px; height: 12px; }
.pill .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(0, 179, 126, .6);
  animation: ping 2.2s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(0, 179, 126, .55); }
  70% { box-shadow: 0 0 0 10px rgba(0, 179, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 179, 126, 0); }
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  letter-spacing: -.045em;
}
.hero h1 .accent {
  position: relative;
  color: var(--brand);
  white-space: nowrap;
}
.hero h1 .accent svg {
  position: absolute;
  left: 0; right: 0; bottom: -.18em;
  width: 100%;
  height: .28em;
  overflow: visible;
}
.hero h1 .accent path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw 1.1s .55s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__lead {
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
}
.hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.hero__proof li svg {
  width: 20px; height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--mint);
  flex: none;
}
.avatars { display: flex; }
.avatars img, .avatars span {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: contain;
  padding: 5px;
  margin-left: -12px;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.avatars > :first-child { margin-left: 0; }
.avatars span {
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: var(--ink);
  color: #fff;
}
.hero__proof p { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.hero__proof strong { color: var(--text); }

/* Visual del hero */
.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.2;
  background: var(--paper-3);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transition: transform .8s var(--ease);
}
.hero__visual:hover .hero__frame { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,12,17,.35));
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.float-card__icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--brand-soft);
  color: var(--brand);
}
.float-card__icon svg { width: 19px; height: 19px; }
.float-card b { display: block; font-size: 15px; letter-spacing: -.02em; }
.float-card small { color: var(--muted); font-size: 12px; font-weight: 600; }

.float-card--a { top: 8%; left: -6%; }
.float-card--b { bottom: 9%; right: -5%; animation-delay: -3s; }
.float-card--b .float-card__icon { background: var(--mint-soft); color: var(--mint); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@media (max-width: 980px) {
  .hero__frame { transform: none; aspect-ratio: 16/11; }
  .float-card--a { left: 0; top: -14px; }
  .float-card--b { right: 0; bottom: -14px; }
}
@media (max-width: 520px) {
  .float-card { padding: 10px 14px; }
  .float-card small { display: none; }
}

/* --------------------------------------------------------------------------
   7. Marquee de clientes
   -------------------------------------------------------------------------- */
.marquee-wrap { padding: 34px 0; border-block: 1px solid var(--line); background: var(--paper); }
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 24px;
}
.marquee {
  display: flex;
  overflow: hidden;
  gap: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 18px;
  flex: none;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(calc(-100% - 18px)); } }

.logo-card {
  width: 160px; height: 100px;
  flex: none;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  padding: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
/* width+height 100% con object-fit evita que los logos se corten */
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .35s ease, opacity .35s ease;
}
.logo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.logo-card:hover img { filter: none; opacity: 1; }

/* --------------------------------------------------------------------------
   8. Barra de métricas
   -------------------------------------------------------------------------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--on-dark-line);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.metric {
  background: var(--ink);
  padding: clamp(24px, 3.4vw, 38px);
  transition: background .35s ease;
}
.metric:hover { background: var(--ink-2); }
.metric__value {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(120deg, #fff 30%, var(--brand-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric__label { margin-top: 12px; font-size: 14px; color: var(--on-dark-muted); font-weight: 600; }
@media (max-width: 860px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   9. Beneficios (cards con spotlight)
   -------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 68, 31, .1), transparent 65%);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255,68,31,.28); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 20px;
  transition: transform .4s var(--ease), background .3s ease, color .3s ease;
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon { transform: scale(1.06) rotate(-4deg); background: var(--brand); color: #fff; }
.card h3 { font-size: 1.17rem; letter-spacing: -.03em; }
.card p { margin-top: 10px; color: var(--muted); font-size: 15px; }

/* --------------------------------------------------------------------------
   10. Simulador
   -------------------------------------------------------------------------- */
.sim {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}
@media (max-width: 940px) { .sim { grid-template-columns: 1fr; } }

.panel {
  border-radius: var(--r-xl);
  border: 1px solid var(--on-dark-line);
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  padding: clamp(26px, 3.4vw, 40px);
}
.panel--glow {
  position: relative;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 68, 31, .22), transparent 62%),
    linear-gradient(160deg, var(--ink-2), var(--ink));
  overflow: hidden;
}
.panel--glow::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% -30%;
  height: 60%;
  background: radial-gradient(50% 100% at 50% 100%, rgba(255,68,31,.22), transparent 70%);
  pointer-events: none;
}

.field + .field { margin-top: 34px; }
.field__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.field__label { font-size: 14.5px; font-weight: 700; color: var(--on-dark); }
.field__hint { font-size: 12.5px; color: var(--on-dark-muted); }
.field__val {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--brand-300);
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--brand) var(--fill, 40%), rgba(255,255,255,.14) var(--fill, 40%));
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--brand);
  box-shadow: 0 6px 18px -4px rgba(255,68,31,.75);
  transition: transform .2s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--brand);
}
.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11.5px;
  color: rgba(255,255,255,.35);
  font-weight: 600;
}

.sim__result-label { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-muted); }
.sim__big {
  margin-top: 10px;
  font-size: clamp(2.6rem, 6vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.sim__sub { margin-top: 10px; font-size: 14.5px; color: var(--on-dark-muted); }

.sim__rows { margin-top: 30px; display: grid; gap: 14px; }
.sim__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--on-dark-line);
}
.sim__row span { font-size: 14px; color: var(--on-dark-muted); }
.sim__row b { font-size: 17px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.sim__note { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.5; }
.sim__cta { margin-top: 26px; }

/* --------------------------------------------------------------------------
   11. Comparador Ads (tabs)
   -------------------------------------------------------------------------- */
.segmented {
  display: inline-flex;
  padding: 5px;
  border-radius: var(--r-full);
  background: var(--paper-3);
  border: 1px solid var(--line);
  position: relative;
}
.segmented button {
  position: relative;
  z-index: 1;
  padding: 11px 26px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--muted);
  transition: color .3s ease;
}
.segmented button.is-active { color: #fff; }
.segmented__thumb {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  border-radius: var(--r-full);
  background: var(--ink);
  transition: transform .45s var(--ease), width .45s var(--ease), background .35s ease;
}
.segmented__thumb.is-brand { background: var(--brand); }

.compare {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(26px, 3.6vw, 44px);
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) { .compare { grid-template-columns: 1fr; } }

.bars { display: grid; gap: 24px; }
.bar__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 700;
}
.bar__top small { color: var(--muted); font-weight: 600; }
.bar__track {
  height: 12px;
  border-radius: var(--r-full);
  background: var(--paper-3);
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--brand), var(--brand-300));
  transition: width 1s var(--ease-out), background .4s ease;
}
.bar--muted .bar__fill { background: linear-gradient(90deg, #b9b9c4, #d6d6de); }
.bar__num { font-variant-numeric: tabular-nums; }

.compare__list { display: grid; gap: 14px; }
.compare__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--muted);
}
.compare__list svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.tick { color: var(--mint); }
.cross { color: #cfcfd8; }
.compare__title { font-size: 1.35rem; margin-bottom: 6px; }
.compare__kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.compare__kicker--off { background: var(--paper-3); color: var(--muted); }
.compare__kicker--on { background: var(--brand-soft); color: var(--brand); }

/* --------------------------------------------------------------------------
   12. Proceso (stepper)
   -------------------------------------------------------------------------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.steps__line {
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 2px;
  background: var(--on-dark-line);
  border-radius: 2px;
}
.steps__line i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-300));
  transition: width 1.2s var(--ease-out);
}
.step { position: relative; text-align: left; }
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  background: var(--ink-2);
  border: 1.5px solid var(--on-dark-line);
  color: var(--on-dark-muted);
  margin-bottom: 22px;
  transition: background .45s ease, color .45s ease, border-color .45s ease, transform .45s var(--ease);
  position: relative;
  z-index: 1;
}
.step.is-on .step__num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(255,68,31,.14);
}
.step h3 { font-size: 1.12rem; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--on-dark-muted); }
.step__tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 11px;
  border-radius: var(--r-full);
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps__line { top: 10px; bottom: 10px; left: 26px; right: auto; width: 2px; height: auto; }
  .steps__line i { width: 100%; height: 0; transition: height 1.2s var(--ease-out); }
  .step { padding-left: 78px; }
  .step__num { position: absolute; left: 0; top: 0; margin: 0; }
}

/* --------------------------------------------------------------------------
   13. Checklist de requisitos
   -------------------------------------------------------------------------- */
.checklist-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 940px) { .checklist-wrap { grid-template-columns: 1fr; } }

.check {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease);
}
.check + .check { margin-top: 12px; }
.check:hover { transform: translateX(4px); border-color: var(--line-strong); }
.check__box {
  width: 26px; height: 26px;
  border-radius: 9px;
  border: 2px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex: none;
  color: transparent;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .3s var(--ease);
}
.check__box svg { width: 15px; height: 15px; }
.check[aria-pressed="true"] { border-color: var(--mint); background: rgba(0,179,126,.05); }
.check[aria-pressed="true"] .check__box {
  background: var(--mint);
  border-color: var(--mint);
  color: #fff;
  transform: scale(1.06);
}
.check b { display: block; font-size: 15.5px; letter-spacing: -.02em; }
.check small { color: var(--muted); font-size: 13px; }

.ring-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding: 32px;
  border-radius: var(--r-xl);
  background: var(--ink);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.ring { position: relative; width: 150px; height: 150px; margin: 0 auto 22px; }
.ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring circle { fill: none; stroke-width: 10; stroke-linecap: round; }
.ring .track { stroke: rgba(255,255,255,.12); }
.ring .prog { stroke: url(#ringGrad); transition: stroke-dashoffset .7s var(--ease-out); }
.ring__txt {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.ring__txt b { font-size: 2.3rem; font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.ring__txt small { font-size: 12px; color: var(--on-dark-muted); }
.ring-card h3 { font-size: 1.25rem; }
.ring-card p { margin-top: 10px; font-size: 14px; color: var(--on-dark-muted); }
.ring-card .btn { margin-top: 22px; }

/* --------------------------------------------------------------------------
   14. Zonas
   -------------------------------------------------------------------------- */
.zone-search {
  position: relative;
  max-width: 520px;
}
.zone-search input {
  width: 100%;
  padding: 18px 54px 18px 22px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.zone-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-soft);
}
.zone-search svg {
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--muted-2);
  pointer-events: none;
}

.zones {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone {
  padding: 11px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14.5px;
  font-weight: 600;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, color .3s ease, opacity .3s ease;
}
.zone:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.zone.is-hit { background: var(--brand); border-color: var(--brand); color: #fff; }
.zone.is-dim { opacity: .28; }
.zone__region { font-size: 11.5px; color: var(--muted-2); margin-left: 6px; font-weight: 600; }
.zone.is-hit .zone__region { color: rgba(255,255,255,.7); }

.zone-empty {
  margin-top: 26px;
  padding: 22px 26px;
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-strong);
  background: #fff;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.zone-empty.is-visible { display: flex; }

/* --------------------------------------------------------------------------
   15. Sobre mí
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 940px) { .about { grid-template-columns: 1fr; } }

.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  right: -18px; bottom: 28px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
  max-width: 200px;
}
.about__badge b { font-size: 1.5rem; letter-spacing: -.04em; display: block; }
.about__badge small { font-size: 12.5px; opacity: .9; font-weight: 600; }
@media (max-width: 520px) { .about__badge { right: 8px; } }

.facts {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fact {
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
}
.fact b { display: block; font-size: 1.5rem; letter-spacing: -.04em; }
.fact small { color: var(--muted); font-size: 13px; font-weight: 600; }
@media (max-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } }

.quote {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--brand);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq-list { display: grid; gap: 12px; max-width: 880px; }
.faq {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.faq.is-open { border-color: rgba(255,68,31,.3); box-shadow: var(--shadow-md); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  text-align: left;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -.025em;
}
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--paper-3);
  color: var(--text);
  transition: background .3s ease, color .3s ease, transform .4s var(--ease);
}
.faq.is-open .faq__icon { background: var(--brand); color: #fff; transform: rotate(135deg); }
.faq__icon svg { width: 15px; height: 15px; }
.faq__a {
  height: 0;
  overflow: hidden;
  transition: height .45s var(--ease);
}
.faq__a > div { padding: 0 26px 26px; color: var(--muted); font-size: 15.5px; max-width: 70ch; }
.faq__a strong { color: var(--text); }

/* --------------------------------------------------------------------------
   17. Formulario multi-paso
   -------------------------------------------------------------------------- */
.form-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 940px) { .form-shell { grid-template-columns: 1fr; } }

.form-card {
  padding: clamp(26px, 3.6vw, 42px);
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.form-progress__bar {
  flex: 1;
  height: 5px;
  border-radius: var(--r-full);
  background: var(--paper-3);
  overflow: hidden;
}
.form-progress__bar i {
  display: block;
  height: 100%;
  width: 33.33%;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--brand), var(--brand-300));
  transition: width .5s var(--ease);
}
.form-progress span { font-size: 12.5px; font-weight: 700; color: var(--muted); white-space: nowrap; }

.fstep { display: none; animation: fadeUp .45s var(--ease); }
.fstep.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.fstep h3 { font-size: 1.35rem; }
.fstep > p { margin-top: 8px; color: var(--muted); font-size: 14.5px; }

.f-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .f-grid { grid-template-columns: 1fr; } }

.f-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.f-field input, .f-field select, .f-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--paper-2);
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.f-field textarea { resize: vertical; min-height: 110px; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.f-field input:invalid:not(:placeholder-shown) { border-color: #e4573d; }

.chip-group { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 10px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--paper-2);
  font-size: 14px;
  font-weight: 600;
  transition: all .25s ease;
}
.chip.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }

.form-actions { margin-top: 26px; display: flex; gap: 12px; justify-content: space-between; }
.form-actions .btn { flex: 1; }

.contact-aside { display: grid; gap: 14px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .3s var(--ease), border-color .3s ease;
}
.contact-line:hover { transform: translateX(4px); border-color: var(--brand); }
.contact-line__ico {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  flex: none;
}
.contact-line__ico svg { width: 20px; height: 20px; }
.contact-line b { display: block; font-size: 15px; }
.contact-line small { color: var(--muted); font-size: 13px; }

/* --------------------------------------------------------------------------
   18. CTA final
   -------------------------------------------------------------------------- */
.cta-final {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), #ff6a3d 55%, #ff9268);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent);
}
.cta-final > * { position: relative; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-final p { margin-top: 16px; font-size: 1.05rem; opacity: .92; max-width: 46ch; margin-inline: auto; }
.cta-final .btn { margin-top: 32px; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: clamp(56px, 7vw, 84px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer img.logo { height: 30px; width: auto; margin-bottom: 18px; }
.footer p { color: var(--on-dark-muted); font-size: 14.5px; max-width: 38ch; }
.footer h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 16px; font-weight: 700; }
.footer li + li { margin-top: 10px; }
.footer li a { font-size: 14.5px; color: var(--on-dark); opacity: .8; transition: opacity .25s ease, padding-left .25s ease; }
.footer li a:hover { opacity: 1; padding-left: 5px; color: var(--brand-300); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--on-dark-line);
  transition: background .3s ease, color .3s ease, transform .3s var(--ease), border-color .3s ease;
}
.socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--on-dark-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-dark-muted);
}
.footer__bottom a { color: var(--brand-300); }

/* --------------------------------------------------------------------------
   20. WhatsApp flotante
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px 13px 13px;
  border-radius: var(--r-full);
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, .6);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .6s var(--ease), opacity .4s ease, box-shadow .3s ease;
}
.wa-float.is-visible { transform: none; opacity: 1; }
.wa-float:hover { box-shadow: 0 22px 50px -12px rgba(37, 211, 102, .8); }
.wa-float__ico {
  position: relative;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  flex: none;
}
.wa-float__ico svg { width: 26px; height: 26px; }
.wa-float__ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.75);
  animation: pulse-ring 2.4s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.7); opacity: .9; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 560px) {
  /* Botón circular: se oculta solo la etiqueta, nunca el ícono */
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
    padding: 0;
    justify-content: center;
    gap: 0;
  }
  .wa-float__label { display: none; }
  .wa-float__ico { width: 34px; height: 34px; }
  .wa-float__ico svg { width: 32px; height: 32px; }
}

/* --------------------------------------------------------------------------
   21. Animaciones de entrada
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
