/* ╔══════════════════════════════════════════════════════════════╗
   ║  TUCAJADEUSA · "MANIFIESTO DE CARGA"                          ║
   ║  Design system v6 — customs-stamp / boarding-pass aesthetic   ║
   ║  Shared across: Landing · Rastrear · Cómo funciona · Tarifas  ║
   ╚══════════════════════════════════════════════════════════════╝ */

:root {
  /* ─ Palette ─ */
  --navy-night: #080C24;
  --navy-deep:  #0B1230;
  --navy:       #141C52;
  --navy-2:     #1E2A78;
  --orange:     #F26B1F;
  --orange-hot: #FF7E33;
  --orange-soft:#FF9F63;
  --orange-ink: rgba(242, 107, 31, 0.5);
  --cream:      #F5EEE1;
  --cream-2:    #FBF6EC;
  --kraft:      #E7D8BC;
  --kraft-line: #D8C5A0;
  --ink:        #0A0F25;
  --white:      #FFFFFF;

  /* ─ Surfaces ─ */
  --glass:        rgba(245, 238, 225, 0.05);
  --glass-2:      rgba(245, 238, 225, 0.09);
  --glass-border: rgba(245, 238, 225, 0.13);
  --paper-line:   rgba(10, 15, 37, 0.10);
  --paper-line-2: rgba(10, 15, 37, 0.16);

  /* ─ Type ─ */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  /* ─ Layout ─ */
  --maxw: 1300px;
  --gutter: clamp(20px, 4vw, 64px);
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;

  /* ─ Motion ─ */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bk:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─ Reset ─ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--navy-night);
  overflow-x: hidden;   /* clip horizontal en la raíz: window sigue siendo el scroller (window.scrollY OK) */
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  width: 100%;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }
::selection { background: var(--orange); color: var(--cream); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ╔════════ LAYOUT ════════╗ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.section { position: relative; padding: clamp(72px, 11vw, 150px) 0; overflow: clip; }
.section--tight { padding: clamp(52px, 7vw, 100px) 0; }
.bg-night { background: var(--navy-night); color: var(--cream); }
.bg-navy  { background: var(--navy-deep); color: var(--cream); }
.bg-cream { background: var(--cream); color: var(--ink); }
.bg-kraft { background: var(--kraft); color: var(--ink); }
.bg-orange{ background: var(--orange); color: var(--white); }

/* ╔════════ TYPE ════════╗ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: inherit;
  text-wrap: balance;
}
.display {
  font-size: clamp(46px, 8vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.h-section {
  font-size: clamp(34px, 5.2vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.h-md {
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.lede {
  font-size: clamp(15.5px, 1.3vw, 19px);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.8;
  max-width: 56ch;
  text-wrap: pretty;
}
.accent { color: var(--orange); }
.ink-underline {
  position: relative;
  white-space: nowrap;
}
.ink-underline::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.32em;
  background: var(--orange);
  opacity: 0.28;
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-0.6deg);
}

/* ── Manifest label (monospace, • separators) ── */
.manifest {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.manifest::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--orange);
}
.manifest--plain::before { display: none; }

/* ╔════════ PERFORATED DIVIDER ════════╗ */
.perf {
  position: relative;
  height: 1px;
  background-image: linear-gradient(90deg, currentColor 0 50%, transparent 50% 100%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  opacity: 0.35;
}
.perf--notch::before,
.perf--notch::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream);
  transform: translateY(-50%);
}
.perf--notch::before { left: -11px; }
.perf--notch::after  { right: -11px; }

/* ╔════════ CUSTOMS STAMP ════════╗ */
.stamp {
  position: absolute;
  width: 132px;
  height: 132px;
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  opacity: 0.55;
  transform: rotate(-14deg);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed var(--orange);
  border-radius: 50%;
  opacity: 0.7;
}
.stamp__txt {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.bg-night .stamp, .bg-navy .stamp { mix-blend-mode: screen; opacity: 0.4; }

/* ╔════════ BARCODE ════════╗ */
.barcode {
  height: 38px;
  width: 160px;
  background-image: repeating-linear-gradient(
    90deg,
    currentColor 0 2px,
    transparent 2px 4px,
    currentColor 4px 5px,
    transparent 5px 9px,
    currentColor 9px 12px,
    transparent 12px 14px
  );
  opacity: 0.85;
}

/* ╔════════ GRAIN + MESH ════════╗ */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh::before, .mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.mesh::before {
  width: 58vw; height: 58vw;
  background: radial-gradient(circle, rgba(242,107,31,0.5), transparent 70%);
  top: -22%; right: -12%;
}
.mesh::after {
  width: 52vw; height: 52vw;
  background: radial-gradient(circle, rgba(30,42,120,0.75), transparent 70%);
  bottom: -22%; left: -12%;
}
.mesh--soft::before { background: radial-gradient(circle, rgba(242,107,31,0.2), transparent 70%); }
.mesh--soft::after  { background: radial-gradient(circle, rgba(20,28,82,0.6), transparent 70%); }

/* ── Kraft paper texture (subtle) ── */
.paper {
  background-color: var(--kraft);
  background-image:
    repeating-linear-gradient(90deg, rgba(10,15,37,0.022) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(0deg, rgba(10,15,37,0.022) 0 1px, transparent 1px 26px);
}

/* ╔════════ BUTTONS ════════╗ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 0;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 30px -10px var(--orange-ink);
}
.btn--primary:hover { background: var(--orange-hot); box-shadow: 0 18px 42px -10px var(--orange-ink); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid var(--glass-border); }
.btn--ghost:hover { background: var(--glass); border-color: rgba(245,238,225,0.32); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--navy); }
.btn--soft { background: rgba(10,15,37,0.06); color: var(--ink); }
.btn--soft:hover { background: rgba(10,15,37,0.1); }
.btn--lg { padding: 18px 30px; font-size: 15.5px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }

/* ╔════════ LOADER ════════╗ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-night);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 26px;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__brand { display: flex; align-items: center; gap: 14px; }
.loader__mark { width: 56px; height: 56px; animation: l-rock 1.8s var(--ease-io) infinite; }
@keyframes l-rock { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.loader__word { font-family: var(--font-display); font-weight: 800; font-size: 27px; letter-spacing: -0.04em; color: var(--cream); }
.loader__word .accent { color: var(--orange); }
.loader__bar { width: 240px; height: 2px; background: rgba(245,238,225,0.08); border-radius: 999px; overflow: hidden; position: relative; }
.loader__bar::after { content: ''; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: l-bar 1.6s var(--ease-io) infinite; }
@keyframes l-bar { 0% { transform: translateX(-100%);} 50% { transform: translateX(0);} 100% { transform: translateX(100%);} }
.loader__cap { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,238,225,0.45); }
.loader__cap .dot { color: var(--orange); }

/* ╔════════ SCROLL PROGRESS ════════╗ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  width: 0; z-index: 200;
  box-shadow: 0 0 16px var(--orange-ink);
}

/* ╔════════ NAV ════════╗ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 9px 9px 9px 18px;
  border-radius: 999px;
  background: rgba(8,12,36,0.32);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled .nav__inner {
  background: rgba(11,18,48,0.8);
  border-color: var(--glass-border);
  backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 8px 34px -10px rgba(0,0,0,0.45);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
/* Logo PNG (caja + líneas): mantener proporción landscape, no cuadrar */
img.brand__mark { width: auto; height: 36px; object-fit: contain; }
img.loader__mark { width: auto; height: 50px; object-fit: contain; }
.auth__brand-top img.brand__mark { height: 38px; }
.app__brand img.brand__mark { height: 32px; }
.footer__brand img.brand__mark { height: 38px; }
/* Botón "Entrar" del nav */
.nav__login { display: inline-flex; align-items: center; padding: 11px 18px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--cream); border: 1px solid var(--glass-border); transition: background 0.25s, border-color 0.25s; white-space: nowrap; }
.nav__login:hover { background: var(--glass); border-color: rgba(245,238,225,0.3); }
@media (max-width: 980px){ .nav__login { display: none; } }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.04em; color: var(--cream); line-height: 1; }
.brand__word .accent { color: var(--orange); }
.brand__tag { display: block; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,238,225,0.5); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: rgba(245,238,225,0.78); font-size: 13.5px; font-weight: 600; transition: color 0.25s; position: relative; }
.nav__links a:hover, .nav__links a.is-active { color: var(--cream); }
.nav__links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.3s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { padding: 11px 19px; font-size: 13px; }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-border); align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 16px; height: 1.7px; background: var(--cream); position: relative; }
.nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; inset: 0; background: var(--cream); }
.nav__burger span::before { transform: translateY(-5px); }
.nav__burger span::after { transform: translateY(5px); }
@media (max-width: 980px) { .nav__links { display: none; } .nav__burger { display: inline-flex; } .nav__cta { display: none; } }
.nav__menu {
  position: fixed; inset: 0; background: var(--navy-night); z-index: 90;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 22px; padding: 32px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav__menu.is-open { opacity: 1; visibility: visible; }
.nav__menu a { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--cream); letter-spacing: -0.03em; }
.nav__menu a:hover { color: var(--orange); }
.nav__menu .btn { margin-top: 18px; }

/* ╔════════ BOARDING-PASS CARD (signature) ════════╗ */
.pass {
  display: grid;
  grid-template-columns: 1fr 132px;
  background: var(--cream-2);
  color: var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.55);
}
.pass__main { padding: 26px 28px; }
.pass__stub {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-align: center;
}
.pass__stub::before {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 2px;
  background-image: linear-gradient(0deg, rgba(245,238,225,0.4) 0 50%, transparent 50% 100%);
  background-size: 2px 10px;
}
.pass__stub-label { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,238,225,0.6); }
.pass__stub-val { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.pass__stub .barcode { color: var(--cream); width: 90px; height: 30px; }

/* ╔════════ MARQUEE ════════╗ */
.marquee { background: var(--orange); color: var(--navy-night); padding: 20px 0; overflow: hidden; position: relative; border-top: 2px solid var(--navy-night); border-bottom: 2px solid var(--navy-night); }
.marquee__track { display: flex; gap: 52px; animation: scroll 38s linear infinite; white-space: nowrap; width: max-content; }
.marquee__item { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.5vw, 32px); letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 52px; }
.marquee__item::after { content: '✦'; font-size: 0.7em; flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ╔════════ PARTNERS ════════╗ */
.partners { display: flex; align-items: center; justify-content: center; gap: clamp(18px,3vw,46px); flex-wrap: wrap; padding: 32px 0; }
.partners__lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.5; position: relative; padding-right: 22px; }
.partners__lbl::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 12px; height: 1px; background: currentColor; opacity: 0.4; }
.partners__list { display: flex; align-items: center; gap: clamp(18px,3vw,42px); flex-wrap: wrap; }
.partners__item { font-family: var(--font-display); font-weight: 800; font-size: clamp(15px,1.5vw,19px); letter-spacing: 0.01em; opacity: 0.62; transition: opacity 0.3s, color 0.3s; text-transform: uppercase; }
.partners__item:hover { opacity: 1; color: var(--orange); }

/* ╔════════ SECTION HEADER ════════╗ */
.s-head { display: grid; grid-template-columns: 220px 1fr; gap: clamp(30px,5vw,70px); align-items: start; margin-bottom: clamp(44px,6vw,76px); }
.s-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--orange); text-transform: uppercase; font-weight: 700; padding-top: 14px; border-top: 2px solid var(--orange); display: inline-block; }
.s-title { font-size: clamp(34px,5.2vw,72px); line-height: 0.96; letter-spacing: -0.035em; font-weight: 800; max-width: 22ch; text-wrap: balance; }
.s-lede { margin-top: 18px; max-width: 56ch; font-size: clamp(15px,1.2vw,17.5px); line-height: 1.6; opacity: 0.72; }
@media (max-width: 760px) { .s-head { grid-template-columns: 1fr; gap: 16px; } }

/* ╔════════ REVEAL + MOTION UTILS ════════╗ */
/* Story-scroll: cada seccion entra rotando desde la esquina inferior-izquierda */
.flow-init { transform: rotate(6deg) translateY(48px); transform-origin: 0% 100%; opacity: 0; will-change: transform, opacity; }
.flow-in { transform: rotate(0) translateY(0); opacity: 1; transition: transform 1.05s cubic-bezier(0.22,1,0.36,1), opacity 0.8s ease; }

.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.is-in { filter: blur(0); }
/* Sheen premium en botones primarios */
.btn--primary { overflow: hidden; }
.btn--primary::after { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-18deg); transition: left 0.7s var(--ease); z-index: 1; pointer-events: none; }
.btn--primary:hover::after { left: 130%; }
.btn--primary > * { position: relative; z-index: 2; }
/* Cue de scroll en el hero */
.hero__cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(245,238,225,0.5); font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; }
.hero__cue .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(245,238,225,0.35); border-radius: 12px; position: relative; }
.hero__cue .mouse::after { content: ''; position: absolute; left: 50%; top: 6px; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 3px; background: var(--orange); animation: mouse 1.8s var(--ease-io) infinite; }
@keyframes mouse { 0%{ opacity: 0; transform: translate(-50%, 0); } 30%{ opacity: 1; } 70%{ opacity: 1; transform: translate(-50%, 10px); } 100%{ opacity: 0; transform: translate(-50%, 12px); } }
@media (max-width: 980px){ .hero__cue { display: none; } }
@media (prefers-reduced-motion: reduce){ .reveal { filter: none; } .btn--primary::after { display: none; } .hero__cue .mouse::after { animation: none; } }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }
.magnetic { transition: transform 0.4s var(--ease); }
.counter[data-target] { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ╔════════ WHATSAPP FLOAT ════════╗ */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 95; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 36px -8px rgba(37,211,102,0.55); transition: all 0.4s var(--ease); opacity: 0; transform: translateY(20px) scale(0.85); pointer-events: none; }
.wa-float.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 20px 44px -8px rgba(37,211,102,0.65); }
.wa-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366; animation: wa-pulse 2.4s var(--ease) infinite; opacity: 0; }
@keyframes wa-pulse { 0% { transform: scale(.85); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-float svg { width: 28px; height: 28px; }
.wa-float__tip { position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px); background: var(--ink); color: var(--cream); padding: 10px 14px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s var(--ease); }
.wa-float:hover .wa-float__tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 600px) { .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; } .wa-float svg { width: 24px; height: 24px; } .wa-float__tip { display: none; } }

/* ╔════════ FOOTER ════════╗ */
.footer { background: var(--navy-night); color: rgba(245,238,225,0.7); padding: clamp(56px,8vw,96px) 0 34px; border-top: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: clamp(26px,4vw,56px); margin-bottom: 52px; position: relative; z-index: 2; }
.footer__brand .brand { color: var(--cream); margin-bottom: 16px; }
.footer__brand p { font-size: 13.5px; line-height: 1.6; color: rgba(245,238,225,0.6); max-width: 36ch; margin-bottom: 20px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a { width: 36px; height: 36px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-border); display: inline-flex; align-items: center; justify-content: center; color: rgba(245,238,225,0.7); transition: all 0.3s; }
.footer__social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }
.footer__col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 18px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: rgba(245,238,225,0.7); transition: color 0.25s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { padding-top: 26px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,238,225,0.5); position: relative; z-index: 2; }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ╔════════ BOOKING MODAL ════════╗ */
.modal-mask { position: fixed; inset: 0; background: rgba(8,12,36,0.84); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease); }
.modal-mask.is-open { opacity: 1; visibility: visible; }
.modal { background: var(--cream-2); color: var(--ink); border-radius: var(--r-xl); max-width: 660px; width: 100%; max-height: calc(100vh - 48px); overflow-y: auto; position: relative; transform: translateY(28px) scale(0.97); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s var(--ease); box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6); }
.modal-mask.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal__head { position: sticky; top: 0; background: var(--cream-2); padding: 26px 30px 20px; border-bottom: 1px solid var(--paper-line); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; z-index: 2; }
.modal__title { font-family: var(--font-display); font-weight: 800; font-size: 25px; letter-spacing: -0.025em; line-height: 1.05; }
.modal__sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 9px; font-weight: 700; }
.modal__close { width: 40px; height: 40px; border-radius: 50%; background: rgba(10,15,37,0.06); display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); flex-shrink: 0; }
.modal__close:hover { background: var(--orange); color: var(--white); transform: rotate(90deg); }
.modal__close svg { width: 16px; height: 16px; }
.modal__progress { display: flex; gap: 6px; padding: 0 30px 18px; }
.modal__progress span { flex: 1; height: 3px; background: rgba(10,15,37,0.08); border-radius: 999px; position: relative; overflow: hidden; }
.modal__progress span.is-done::after, .modal__progress span.is-active::after { content: ''; position: absolute; inset: 0; background: var(--orange); border-radius: 999px; transform-origin: left; animation: pf 0.55s var(--ease) forwards; }
@keyframes pf { from { transform: scaleX(0);} to { transform: scaleX(1);} }
.modal__body { padding: 4px 30px 30px; }
.modal__step { display: none; flex-direction: column; gap: 18px; animation: si 0.45s var(--ease); }
.modal__step.is-active { display: flex; }
@keyframes si { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }
.modal__lede { font-size: 15px; line-height: 1.55; color: rgba(10,15,37,0.7); margin-bottom: 4px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(10,15,37,0.6); font-weight: 700; }
.field input, .field select, .field textarea { background: var(--white); border: 1px solid var(--paper-line-2); border-radius: 12px; padding: 14px 16px; font-family: var(--font-body); font-size: 15px; color: var(--ink); outline: 0; transition: border-color 0.25s, box-shadow 0.25s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,107,31,0.12); }
.field textarea { resize: vertical; min-height: 90px; }
.field--error input, .field--error select, .field--error textarea { border-color: #d9343c; box-shadow: 0 0 0 4px rgba(217,52,60,0.12); }
.field__err { font-family: var(--font-mono); font-size: 11px; color: #d9343c; display: none; }
.field--error .field__err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } .modal__head, .modal__body, .modal__progress { padding-left: 22px; padding-right: 22px; } }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice { background: var(--white); border: 1px solid var(--paper-line-2); border-radius: 14px; padding: 18px; cursor: pointer; text-align: left; transition: all 0.3s var(--ease); display: flex; flex-direction: column; gap: 6px; }
.choice:hover { border-color: var(--orange); transform: translateY(-2px); }
.choice.is-selected { border-color: var(--orange); background: rgba(242,107,31,0.06); }
.choice__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.015em; }
.choice__sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(10,15,37,0.55); }
.choice__price { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--orange); letter-spacing: -0.015em; margin-top: 4px; }
.modal__nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.modal__nav .btn { padding: 13px 22px; font-size: 14px; }
.btn--secondary { background: rgba(10,15,37,0.06); color: var(--ink); }
.btn--secondary:hover { background: rgba(10,15,37,0.1); }
.modal__success { text-align: center; padding: 16px 0 4px; display: none; flex-direction: column; gap: 14px; align-items: center; animation: si 0.5s var(--ease); }
.modal__success.is-active { display: flex; }
.modal__success-icon { width: 68px; height: 68px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: var(--white); }
.modal__success-icon svg { width: 30px; height: 30px; animation: sp 0.6s var(--ease-bk); }
@keyframes sp { 0% { transform: scale(0); opacity: 0;} 60% { transform: scale(1.2); opacity: 1;} 100% { transform: scale(1);} }
.modal__success h3 { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.025em; }
.modal__success p { color: rgba(10,15,37,0.7); font-size: 15px; line-height: 1.55; max-width: 380px; }
.modal__success .ref { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--orange); background: rgba(242,107,31,0.08); padding: 8px 14px; border-radius: 999px; }

/* ╔════════ PROMO POPUP (atracción) ════════╗ */
.promo-mask { position: fixed; inset: 0; background: rgba(8,12,36,0.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 320; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease); }
.promo-mask.is-open { opacity: 1; visibility: visible; }
.promo { display: grid; grid-template-columns: 0.85fr 1fr; max-width: 760px; width: 100%; background: var(--cream-2); color: var(--ink); border-radius: var(--r-xl); overflow: hidden; position: relative; transform: translateY(30px) scale(0.96); opacity: 0; transition: transform 0.55s var(--ease), opacity 0.45s var(--ease); box-shadow: 0 50px 110px -24px rgba(0,0,0,0.65); }
.promo-mask.is-open .promo { transform: translateY(0) scale(1); opacity: 1; }
.promo__visual { position: relative; background: var(--navy-night); overflow: hidden; isolation: isolate; min-height: 320px; }
.promo__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(242,107,31,0.18), rgba(8,12,36,0.55)); }
.promo__stamp { position: absolute; top: 18px; left: 18px; z-index: 2; width: 92px; height: 92px; border: 2px solid var(--orange); border-radius: 50%; display: grid; place-items: center; color: var(--orange); transform: rotate(-12deg); opacity: 0.95; background: rgba(8,12,36,0.35); }
.promo__stamp span { font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; line-height: 1.35; }
.promo__body { padding: 34px 34px 30px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.promo__badge { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.promo__badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.promo__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -0.03em; line-height: 0.98; }
.promo__title .accent { color: var(--orange); }
.promo__text { font-size: 14.5px; line-height: 1.55; color: rgba(10,15,37,0.7); }
.promo__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 2px 0; }
.promo__list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(10,15,37,0.78); font-weight: 500; }
.promo__list .check { width: 17px; height: 17px; }
.promo__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.promo__dismiss { background: none; border: 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10,15,37,0.45); cursor: pointer; transition: color 0.2s; align-self: center; padding: 4px; }
.promo__dismiss:hover { color: var(--ink); }
.promo__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 36px; height: 36px; border-radius: 50%; background: rgba(10,15,37,0.06); display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.promo__close:hover { background: var(--orange); color: var(--white); transform: rotate(90deg); }
.promo__close svg { width: 15px; height: 15px; }
@media (max-width: 620px) { .promo { grid-template-columns: 1fr; max-width: 420px; } .promo__visual { min-height: 170px; } .promo__body { padding: 26px 24px 24px; } }

/* ╔════════ HERO ════════╗ */
.hero { position: relative; color: var(--cream); min-height: 100vh; padding: 124px 0 84px; overflow: hidden; isolation: isolate; background: radial-gradient(115% 78% at 84% 6%, rgba(242,107,31,0.18), transparent 46%), radial-gradient(95% 100% at 6% 108%, rgba(34,48,134,0.5), transparent 56%), linear-gradient(180deg, #070b20 0%, #0a1130 55%, #070b1b 100%); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(rgba(245,238,225,0.05) 1px, transparent 1.6px); background-size: 24px 24px; -webkit-mask-image: radial-gradient(132% 92% at 56% 26%, #000 36%, transparent 76%); mask-image: radial-gradient(132% 92% at 56% 26%, #000 36%, transparent 76%); }
.hero__aurora { position: absolute; z-index: 0; top: -14%; right: -10%; width: 62vw; height: 62vw; max-width: 800px; max-height: 800px; pointer-events: none; background: radial-gradient(circle, rgba(242,107,31,0.15), transparent 60%); }
/* Capa de fondo IA */
.hero__bg { position: absolute; top: -6%; left: 0; width: 100%; height: 112%; object-fit: cover; z-index: 0; opacity: 0.3; pointer-events: none; transition: opacity 1.2s var(--ease); }
.hero__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(120% 90% at 72% 18%, transparent 0%, rgba(6,10,34,0.55) 62%, rgba(6,10,34,0.9) 100%), linear-gradient(180deg, rgba(6,10,34,0.25), rgba(6,10,34,0.7)); }
/* Background paths animados (líneas fluidas) */
.hero__paths { position: absolute; inset: 0; z-index: 1; pointer-events: none; color: var(--orange); opacity: 0.5; }
.hero__paths svg { width: 100%; height: 100%; display: block; }
.hero__paths path { fill: none; stroke: currentColor; stroke-linecap: round; animation: pathflow linear infinite; }
@keyframes pathflow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -260; } }
@media (prefers-reduced-motion: reduce){ .hero__paths { display: none; } }

/* Líneas de luz que cruzan el hero */
.hero__streaks { display: none; }
.hero__streaks i { position: absolute; left: -20%; height: 2px; width: 22vw; border-radius: 999px; background: linear-gradient(90deg, transparent, rgba(242,107,31,0.9), transparent); opacity: 0; filter: blur(0.4px); animation: streak 9s linear infinite; }
.hero__streaks i:nth-child(1){ top: 22%; width: 28vw; animation-delay: 0s; }
.hero__streaks i:nth-child(2){ top: 48%; width: 18vw; animation-delay: 2.4s; opacity: 0; }
.hero__streaks i:nth-child(3){ top: 67%; width: 24vw; animation-delay: 4.8s; }
.hero__streaks i:nth-child(4){ top: 81%; width: 14vw; animation-delay: 6.6s; }
@keyframes streak { 0% { transform: translateX(0); opacity: 0; } 8% { opacity: 0.8; } 70% { opacity: 0.5; } 100% { transform: translateX(130vw); opacity: 0; } }
/* Partículas flotantes suaves */
.hero__dust { display: none; }
.hero__dust b { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(242,107,31,0.55); box-shadow: 0 0 8px rgba(242,107,31,0.6); animation: dust 14s ease-in-out infinite; opacity: 0.5; }
.hero__dust b:nth-child(1){ left: 18%; top: 70%; animation-delay: 0s; }
.hero__dust b:nth-child(2){ left: 34%; top: 30%; width: 3px; height: 3px; animation-delay: 2s; }
.hero__dust b:nth-child(3){ left: 58%; top: 60%; animation-delay: 5s; }
.hero__dust b:nth-child(4){ left: 76%; top: 38%; width: 5px; height: 5px; animation-delay: 7s; }
.hero__dust b:nth-child(5){ left: 88%; top: 72%; width: 3px; height: 3px; animation-delay: 3.5s; }
@keyframes dust { 0%,100% { transform: translateY(0) translateX(0); opacity: 0.25; } 50% { transform: translateY(-40px) translateX(12px); opacity: 0.7; } }
/* Glow detrás del box del hero */
.hero__visual::before { content: ''; position: absolute; inset: 8% 8% 12% 8%; z-index: 0; background: radial-gradient(circle, rgba(242,107,31,0.32), transparent 68%); animation: glowpulse 5s var(--ease-io) infinite alternate; }
@keyframes glowpulse { from { opacity: 0.55; } to { opacity: 0.9; } }
.hero__image { animation: floaty 7s var(--ease-io) infinite alternate; }
@keyframes floaty { from { transform: translateY(0) rotate(-0.4deg); } to { transform: translateY(-16px) rotate(0.4deg); } }
@media (prefers-reduced-motion: reduce){ .hero__streaks, .hero__dust { display: none; } .hero__image, .hero__visual::before { animation: none; } }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 0.94fr; gap: clamp(36px,5vw,72px); align-items: center; min-height: calc(100vh - 300px); }
.hero__copy { display: flex; flex-direction: column; gap: clamp(20px,2.6vw,30px); }
.hero__chip { display: inline-flex; align-items: center; gap: 12px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 999px; padding: 8px 16px 8px 13px; width: fit-content; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero__chip .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); position: relative; flex-shrink: 0; }
.hero__chip .pulse::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid var(--orange); animation: pr 2.2s var(--ease) infinite; }
@keyframes pr { 0% { transform: scale(.7); opacity: .9; } 100% { transform: scale(2); opacity: 0; } }
.hero__chip span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,238,225,0.78); font-weight: 700; }
.hero h1 { font-size: clamp(50px,8.4vw,128px); line-height: 0.9; letter-spacing: -0.045em; font-weight: 800; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: lu 1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.2s; }
@keyframes lu { to { transform: translateY(0); } }
.hero__lede { font-size: clamp(16px,1.4vw,20px); line-height: 1.55; color: rgba(245,238,225,0.78); max-width: 52ch; }
.hero__lede strong { color: var(--cream); font-weight: 700; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,30px); padding-top: clamp(20px,2.6vw,30px); border-top: 1px solid var(--glass-border); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px,3.6vw,48px); line-height: 1; letter-spacing: -0.035em; color: var(--cream); display: flex; align-items: baseline; }
.stat__num .unit { color: var(--orange); font-size: 0.45em; margin-left: 4px; font-weight: 700; }
.stat__lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,238,225,0.55); margin-top: 8px; }
/* ── Hero · showcase (panel cohesivo del casillero) ── */
.hero__showcase { position: relative; width: 100%; max-width: 440px; margin: 0 auto; }
.hero__sc-card { position: relative; z-index: 2; border-radius: 26px; overflow: hidden; background: linear-gradient(180deg, rgba(22,30,78,0.55), rgba(8,12,36,0.92)); border: 1px solid rgba(245,238,225,0.12); box-shadow: 0 54px 120px -36px rgba(0,0,0,0.82); animation: cf 7s var(--ease-io) infinite alternate; will-change: transform; }
@keyframes cf { to { transform: translateY(-13px); } }
.hero__sc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hero__sc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__sc-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(8,12,36,0.78)); }
.hero__sc-live { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; background: rgba(8,12,36,0.72); border: 1px solid var(--glass-border); border-radius: 999px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); }
.hero__sc-live .ld { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 var(--orange-ink); animation: ldp 1.6s var(--ease) infinite; }
.hero__sc-route { position: absolute; left: 14px; right: 14px; bottom: 13px; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 9px 14px; background: rgba(8,12,36,0.66); border: 1px solid var(--glass-border); border-radius: 13px; }
.hero__sc-route .rp { display: flex; flex-direction: column; line-height: 1.15; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,238,225,0.6); white-space: nowrap; }
.hero__sc-route .rp b { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0; color: var(--cream); }
.hero__sc-route .rp--end { align-items: flex-end; text-align: right; }
.hero__sc-route .rl { position: relative; flex: 1; height: 16px; }
.hero__sc-route .rl::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; border-top: 1.5px dashed rgba(242,107,31,0.5); }
.hero__sc-route .rl svg { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 17px; height: 17px; color: var(--orange); }
.hero__sc-body { padding: 17px 19px 19px; display: flex; flex-direction: column; gap: 13px; }
.hero__sc-flag { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.hero__sc-code { font-family: var(--font-mono); font-size: 12.5px; color: rgba(245,238,225,0.72); margin-top: 6px; letter-spacing: 0.02em; }
.hero__sc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid var(--glass-border); }
.hero__sc-foot > span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(245,238,225,0.8); }
.hero__sc-foot svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.hero__sc-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #fff; background: var(--orange); padding: 5px 9px; border-radius: 7px; }
.hero__pill { position: absolute; z-index: 3; background: rgba(8,12,36,0.94); border: 1px solid var(--glass-border); border-radius: 13px; padding: 11px 14px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,238,225,0.6); box-shadow: 0 22px 54px -18px rgba(0,0,0,0.72); white-space: nowrap; }
.hero__pill b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; text-transform: none; margin-bottom: 1px; }
.hero__pill--a { top: -16px; left: -20px; } .hero__pill--a b { color: var(--orange); }
.hero__pill--b { bottom: -16px; right: -16px; } .hero__pill--b b { color: var(--cream); }
@media (max-width: 980px) { .hero { padding: 104px 0 64px; min-height: auto; } .hero__inner { grid-template-columns: 1fr; gap: 44px; min-height: auto; } .hero__showcase { max-width: 420px; } }
@media (max-width: 560px) { .hero__stats { grid-template-columns: 1fr 1fr; gap: 18px; } .hero__stats .stat:nth-child(3) { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--glass-border); } .hero__pill--a { left: -8px; } .hero__pill--b { right: -8px; } .hero__showcase { max-width: 360px; } }
@media (prefers-reduced-motion: reduce){ .hero__sc-card { animation: none; } }

/* ╔════════ HERO TOOL ════════╗ */
.hero-tool { position: relative; z-index: 5; margin-top: clamp(36px,5vw,64px); padding: 8px; background: var(--glass-2); border: 1px solid var(--glass-border); border-radius: var(--r-xl); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); box-shadow: 0 32px 80px -24px rgba(0,0,0,0.6); }
.hero-tool__tabs { display: flex; gap: 4px; padding: 6px; background: rgba(8,12,36,0.42); border-radius: calc(var(--r-xl) - 6px); }
.hero-tool__tab { flex: 1; background: transparent; border-radius: calc(var(--r-lg) - 4px); padding: 14px 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: rgba(245,238,225,0.6); transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; gap: 9px; }
.hero-tool__tab svg { width: 16px; height: 16px; opacity: 0.7; }
.hero-tool__tab:hover { color: var(--cream); }
.hero-tool__tab.is-active { background: var(--orange); color: var(--white); box-shadow: 0 8px 24px -10px var(--orange-ink); }
.hero-tool__tab.is-active svg { opacity: 1; }
.hero-tool__panel { display: none; padding: 20px 22px 22px; grid-template-columns: 1fr auto; align-items: end; gap: 14px; }
.hero-tool__panel.is-active { display: grid; }
.hero-tool__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-tool__field { display: flex; flex-direction: column; gap: 6px; }
.hero-tool__field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,238,225,0.55); font-weight: 700; }
.hero-tool__field input, .hero-tool__field select { background: rgba(245,238,225,0.05); border: 1px solid var(--glass-border); color: var(--cream); border-radius: 12px; padding: 13px 14px; font-family: var(--font-mono); font-size: 14px; outline: 0; transition: border-color 0.25s, background 0.25s; }
.hero-tool__field input:focus, .hero-tool__field select:focus { border-color: var(--orange); background: rgba(245,238,225,0.08); }
.hero-tool__field input::placeholder { color: rgba(245,238,225,0.3); }
.hero-tool__field select option { background: var(--navy-deep); color: var(--cream); }
.hero-tool__cta { width: 100%; justify-content: center; white-space: nowrap; }
.hero-tool__result { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; color: rgba(245,238,225,0.7); padding: 12px 16px; background: rgba(245,238,225,0.04); border: 1px solid var(--glass-border); border-radius: 999px; grid-column: 1 / -1; }
.hero-tool__result strong { color: var(--orange); font-weight: 700; font-family: var(--font-display); font-size: 17px; letter-spacing: -0.02em; }
@media (max-width: 720px) { .hero-tool__panel { grid-template-columns: 1fr; } .hero-tool__fields { grid-template-columns: 1fr; } .hero-tool__tab { font-size: 12px; padding: 12px 8px; gap: 6px; } .hero-tool__tab span { display: none; } }

/* ╔════════ STEPS ════════╗ */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.step { position: relative; padding: 32px; border-radius: var(--r-lg); background: var(--cream-2); border: 1px solid var(--paper-line); overflow: hidden; display: flex; flex-direction: column; gap: 14px; transition: transform 0.5s var(--ease), box-shadow 0.5s; min-height: 280px; }
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 50px -22px rgba(10,15,37,0.22); }
.step__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(80px,8vw,128px); line-height: 0.85; letter-spacing: -0.06em; color: var(--orange); position: absolute; top: 10px; right: 18px; opacity: 0.1; }
.step__num { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; color: var(--orange); text-transform: uppercase; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.step__num::before { content: ''; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.step__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,2.4vw,30px); letter-spacing: -0.025em; line-height: 1.04; color: var(--ink); }
.step__copy { font-size: 14.5px; line-height: 1.6; color: rgba(10,15,37,0.66); margin-top: auto; }
.step__time { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.step__time::before { content: ''; width: 14px; height: 1.5px; background: var(--orange); }
.step--image { padding: 0; background: var(--ink); color: var(--cream); position: relative; isolation: isolate; }
.step--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.2s var(--ease); }
.step--image:hover img { transform: scale(1.06); }
.step--image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,12,36,0.3) 0%, rgba(8,12,36,0.86)); z-index: 1; }
.step--image .step__inner { position: relative; z-index: 2; padding: 32px; display: flex; flex-direction: column; gap: 12px; height: 100%; justify-content: flex-end; }
.step--image .step__title { color: var(--cream); }
.step--image .step__copy { color: rgba(245,238,225,0.72); }
.step--ink { background: var(--ink); color: var(--cream); }
.step--ink .step__title { color: var(--cream); }
.step--ink .step__copy { color: rgba(245,238,225,0.7); }
.step--orange { background: var(--orange); color: var(--white); }
.step--orange .step__title { color: var(--white); }
.step--orange .step__copy { color: rgba(255,255,255,0.88); }
.step--orange .step__num, .step--orange .step__num::before, .step--orange .step__time { color: rgba(255,255,255,0.9); }
.step--orange .step__num::before, .step--orange .step__time::before { background: rgba(255,255,255,0.9); }
.step--orange .step__big { color: var(--white); opacity: 0.16; }
@media (max-width: 740px) { .steps { grid-template-columns: 1fr; } }

/* ╔════════ COVERAGE ════════╗ */
.coverage { position: relative; isolation: isolate; padding: clamp(60px,8vw,120px) 0; background: var(--navy-night); color: var(--cream); overflow: hidden; }
.coverage__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; z-index: 0; }
.coverage__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,12,36,0.4), rgba(8,12,36,0.88)); }
.coverage__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.coverage__stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.cstat { padding: 24px 26px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-lg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.cstat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px,5vw,62px); letter-spacing: -0.04em; line-height: 1; color: var(--cream); }
.cstat__num .unit { color: var(--orange); font-size: 0.42em; margin-left: 4px; }
.cstat__lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,238,225,0.55); margin-top: 10px; }
@media (max-width: 880px) { .coverage__inner { grid-template-columns: 1fr; gap: 34px; } }

/* ╔════════ TRACKER ════════╗ */
.tracker { position: relative; padding: clamp(28px,4vw,46px); background: rgba(245,238,225,0.03); border: 1px solid var(--glass-border); border-radius: var(--r-xl); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.tracker__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--glass-border); }
.tracker__code { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--orange); font-weight: 700; }
.tracker__status { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,238,225,0.7); display: flex; align-items: center; gap: 10px; }
.tracker__status .ld { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 var(--orange-ink); animation: ldp 1.6s var(--ease) infinite; }
@keyframes ldp { 0% { box-shadow: 0 0 0 0 rgba(242,107,31,0.5);} 100% { box-shadow: 0 0 0 12px rgba(242,107,31,0);} }
.tracker__rail { position: relative; display: grid; grid-template-columns: repeat(5,1fr); margin-top: 32px; }
.tracker__rail::before { content: ''; position: absolute; left: 10%; right: 10%; top: 22px; height: 2px; background: rgba(245,238,225,0.12); }
.tracker__rail::after { content: ''; position: absolute; left: 10%; top: 22px; height: 2px; width: 60%; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); transform-origin: left; animation: trf 4.2s var(--ease) infinite alternate; }
@keyframes trf { 0% { transform: scaleX(.05);} 100% { transform: scaleX(1);} }
.tracker__node { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 0 6px; }
.tracker__dot { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); border: 2px solid rgba(245,238,225,0.18); display: flex; align-items: center; justify-content: center; color: rgba(245,238,225,0.4); transition: all 0.6s var(--ease); }
.tracker__dot svg { width: 18px; height: 18px; }
.tracker__node.is-done .tracker__dot, .tracker__node.is-active .tracker__dot { background: var(--orange); border-color: var(--orange); color: var(--white); }
.tracker__node.is-active .tracker__dot { box-shadow: 0 0 0 6px rgba(242,107,31,0.18); }
.tracker__lbl { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; letter-spacing: -0.01em; color: var(--cream); }
.tracker__sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,238,225,0.5); }
@media (max-width: 700px) { .tracker__rail { grid-template-columns: 1fr; gap: 22px; margin-top: 22px; } .tracker__rail::before, .tracker__rail::after { display: none; } .tracker__node { flex-direction: row; text-align: left; gap: 14px; } }

/* ╔════════ SHOPS ════════╗ */
.shops__layout { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px,5vw,72px); align-items: center; }
.shops__copy { display: flex; flex-direction: column; gap: 20px; }
.shops__chips { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 8px; }
.shop-chip { padding: 16px 14px; border-radius: 14px; background: rgba(245,238,225,0.04); border: 1px solid var(--glass-border); text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; letter-spacing: -0.01em; color: var(--cream); transition: all 0.3s var(--ease); cursor: default; }
.shop-chip:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }
.shop-chip--more { background: var(--orange); color: var(--white); border-color: var(--orange); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.shops__visual { position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden; isolation: isolate; }
.shops__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shops__visual:hover img { transform: scale(1.04); }
.shops__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(8,12,36,0.28)); pointer-events: none; }
.shops__badge { position: absolute; bottom: 20px; left: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(8,12,36,0.78); border: 1px solid var(--glass-border); border-radius: 999px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.shops__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@media (max-width: 880px) { .shops__layout { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .shops__chips { grid-template-columns: 1fr 1fr; } }

/* ╔════════ COMPARE ════════╗ */
.compare { display: grid; grid-template-columns: 1.3fr 1fr 1fr; background: var(--cream-2); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--paper-line); box-shadow: 0 28px 70px -32px rgba(10,15,37,0.2); }
.compare__head { padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid var(--paper-line); position: relative; }
.compare__head--meta { background: var(--kraft); border-right: 1px solid var(--paper-line); }
.compare__head--air { background: var(--orange); color: var(--white); }
.compare__badge { display: inline-flex; width: fit-content; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(10,15,37,0.07); color: rgba(10,15,37,0.6); font-weight: 700; }
.compare__head--air .compare__badge { background: rgba(255,255,255,0.2); color: var(--white); }
.compare__head h4 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,2.4vw,28px); letter-spacing: -0.025em; line-height: 1; }
.compare__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px,4vw,46px); letter-spacing: -0.035em; line-height: 1; margin-top: 4px; }
.compare__price .currency { font-size: 0.42em; margin-right: 3px; opacity: 0.7; }
.compare__price .unit { font-size: 0.3em; opacity: 0.7; margin-left: 6px; letter-spacing: 0.05em; }
.compare__sub { font-size: 13.5px; line-height: 1.5; opacity: 0.75; margin-top: 4px; }
.compare__cell { padding: 18px 26px; border-top: 1px solid var(--paper-line); font-size: 14px; display: flex; align-items: center; min-height: 64px; }
.compare__cell--label { background: var(--kraft); border-right: 1px solid var(--paper-line); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(10,15,37,0.6); font-weight: 700; }
.compare__cell--air { background: rgba(242,107,31,0.05); font-weight: 700; }
.check { width: 18px; height: 18px; border-radius: 50%; background: var(--orange); color: var(--white); display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; flex-shrink: 0; }
.check svg { width: 10px; height: 10px; }
.compare__foot { padding: 22px 26px; border-top: 1px solid var(--paper-line); }
.compare__foot--meta { background: var(--kraft); border-right: 1px solid var(--paper-line); }
.compare__foot--air { background: rgba(242,107,31,0.06); }
.compare__foot .btn { width: 100%; justify-content: center; padding: 13px; font-size: 13.5px; }
@media (max-width: 780px) { .compare { grid-template-columns: 1fr 1fr; } .compare__head--meta, .compare__cell--label, .compare__foot--meta { grid-column: 1 / -1; text-align: center; border-right: 0; justify-content: center; } }

/* ╔════════ TESTIMONIOS ════════╗ */
.testi { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi__card { background: var(--cream-2); border: 1px solid var(--paper-line); border-radius: var(--r-lg); padding: 30px 26px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.testi__card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px -28px rgba(10,15,37,0.25); }
.testi__stars { display: inline-flex; gap: 3px; color: var(--orange); }
.testi__stars svg { width: 13px; height: 13px; }
.testi__quote { font-family: var(--font-display); font-size: 17px; line-height: 1.45; letter-spacing: -0.015em; font-weight: 600; color: var(--ink); flex: 1; text-wrap: pretty; }
.testi__who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--paper-line); }
.testi__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; flex-shrink: 0; letter-spacing: -0.02em; }
.testi__name { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; }
.testi__where { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(10,15,37,0.5); }
@media (max-width: 860px) { .testi { grid-template-columns: 1fr; } }

/* ╔════════ FAQ ════════╗ */
.faq { max-width: 920px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--paper-line); }
.faq__btn { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px 0; text-align: left; transition: padding 0.3s var(--ease); }
.faq__item.is-open .faq__btn { padding-bottom: 10px; }
.faq__q { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px,1.7vw,22px); letter-spacing: -0.015em; line-height: 1.3; transition: color 0.25s; }
.faq__btn:hover .faq__q { color: var(--orange); }
.faq__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(10,15,37,0.06); flex-shrink: 0; position: relative; transition: background 0.3s, transform 0.5s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--ink); border-radius: 1px; top: 50%; left: 50%; }
.faq__icon::before { width: 12px; height: 1.6px; transform: translate(-50%,-50%); }
.faq__icon::after { width: 1.6px; height: 12px; transform: translate(-50%,-50%); transition: transform 0.5s var(--ease); }
.faq__item.is-open .faq__icon { background: var(--orange); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--white); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__q { color: var(--orange); }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.faq__panel-inner { padding: 0 0 30px; font-size: 16px; line-height: 1.65; color: rgba(10,15,37,0.7); max-width: 700px; }

/* ╔════════ FINAL CTA ════════╗ */
/* ════════ Container-scroll (tarjeta que se endereza) ════════ */
.tiltshow { padding: clamp(40px,6vw,90px) 0 clamp(60px,8vw,120px); perspective: 1100px; overflow: clip; }
.tiltshow__head { text-align: center; max-width: 760px; margin: 0 auto clamp(18px,2.5vw,34px); will-change: transform; }
.tiltshow__head .manifest { justify-content: center; margin-bottom: 14px; }
.tiltshow__head h2 { font-size: clamp(32px,5vw,64px); line-height: 0.98; letter-spacing: -0.035em; }
.tiltshow__head p { margin-top: 12px; font-size: clamp(14.5px,1.2vw,17px); line-height: 1.55; color: rgba(245,238,225,0.7); max-width: 52ch; margin-left:auto; margin-right:auto; }
.tiltshow__card { max-width: 1000px; margin: 0 auto; border-radius: 30px; border: 6px solid rgba(245,238,225,0.10); background: #0a1130; padding: 8px; box-shadow: 0 50px 110px -34px rgba(0,0,0,0.75); transform-style: preserve-3d; will-change: transform; }
.tiltshow__inner { border-radius: 22px; overflow: hidden; aspect-ratio: 16/9; background: #0a1130; position: relative; }
.tiltshow__inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce){ .tiltshow__card { transform: none !important; } }

/* ── #rastreo · tablet con UI de rastreo ── */
.tiltshow--tablet .tiltshow__card { max-width: 920px; border-radius: 38px; border: 10px solid rgba(245,238,225,0.10); padding: clamp(12px,1.6vw,18px); background: linear-gradient(180deg,#11183f,#0a1130); position: relative; }
.tablet__cam { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 7px; height: 7px; border-radius: 50%; background: rgba(245,238,225,0.22); box-shadow: inset 0 0 0 2px rgba(0,0,0,0.45); z-index: 3; }
.tablet__screen { border-radius: 24px; overflow: hidden; background: var(--ink); padding: clamp(16px,2.4vw,30px); }
.trackui { display: flex; flex-direction: column; gap: clamp(15px,2vw,22px); }
.trackui__bar { display: flex; align-items: center; justify-content: space-between; }
.trackui__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; color: var(--cream); font-size: 15px; letter-spacing: -0.01em; }
.trackui__logo { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; background: var(--orange); color: #fff; padding: 4px 8px; border-radius: 7px; font-weight: 700; }
.trackui__live { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,238,225,0.72); }
.trackui__live .ld { width: 8px; height: 8px; border-radius: 50%; background: #36d399; box-shadow: 0 0 0 0 rgba(54,211,153,0.5); animation: ldp 1.6s var(--ease) infinite; }
.trackui__map { position: relative; height: clamp(118px,15vw,164px); border-radius: 16px; overflow: hidden; background: radial-gradient(circle at 28% 24%, #182466, #0a1130 72%); border: 1px solid var(--glass-border); }
.trackui__map::before { content:''; position:absolute; inset:0; background-image: radial-gradient(rgba(245,238,225,0.10) 1px, transparent 1.4px); background-size: 17px 17px; opacity:0.55; }
.trackui__mapsvg { position: absolute; inset: 0; width: 100%; height: 100%; }
.trackui__route-path { fill: none; stroke: url(#tkArc); stroke-width: 2.6; stroke-linecap: round; stroke-dasharray: 7 9; filter: drop-shadow(0 0 5px rgba(242,107,31,0.55)); animation: arcFlow 2.4s linear infinite; }
.trackui__from, .trackui__to { fill: var(--orange); filter: drop-shadow(0 0 5px rgba(242,107,31,0.7)); }
.trackui__pkg { fill: #fff; filter: drop-shadow(0 0 6px var(--orange)); }
.trackui__city { position: absolute; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); background: rgba(8,12,36,0.72); padding: 3px 7px; border-radius: 6px; border: 1px solid var(--glass-border); }
.trackui__city--mia { left: 6%; bottom: 12%; }
.trackui__city--ccs { right: 6%; top: 18%; }
.trackui__info { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-bottom: clamp(12px,1.6vw,18px); border-bottom: 1px solid var(--glass-border); }
.trackui__code { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.08em; color: var(--orange); font-weight: 700; }
.trackui__sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,238,225,0.55); margin-top: 5px; }
.trackui__eta { text-align: right; display: flex; flex-direction: column; gap: 3px; }
.trackui__eta span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,238,225,0.5); }
.trackui__eta b { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--cream); letter-spacing: -0.02em; }
.trackui .tracker__rail { margin-top: 4px; }
.tiltshow__cta { margin-top: clamp(28px,4vw,46px); text-align: center; }
@media (max-width: 700px){ .tiltshow--tablet .tiltshow__card { border-width: 7px; border-radius: 26px; } .trackui__info { flex-direction: column; align-items: flex-start; } .trackui__eta { text-align: left; } }

/* ── #app · showcase de la interfaz (ventana flotante) ── */
.appshow { padding: clamp(56px,8vw,116px) 0; position: relative; overflow: hidden; isolation: isolate; }
.appshow__grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(36px,5vw,76px); align-items: center; }
.appshow__copy h2 { margin: 14px 0 10px; }
.appshow__feats { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 22px 0 28px; }
.appshow__feats li { position: relative; padding-left: 28px; color: rgba(245,238,225,0.82); font-size: clamp(14.5px,1.1vw,16px); line-height: 1.5; }
.appshow__feats li::before { content: ''; position: absolute; left: 0; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px rgba(242,107,31,0.7); }
.appshow__stage { position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 1; }
.appshow__glow { position: absolute; inset: -10%; z-index: 0; background: radial-gradient(circle, rgba(242,107,31,0.26), transparent 64%); animation: glowpulse 6s var(--ease-io) infinite alternate; }
.appshow__window { position: relative; z-index: 2; border-radius: 26px; overflow: hidden; border: 1px solid var(--glass-border); background: var(--ink); box-shadow: 0 54px 120px -36px rgba(0,0,0,0.82); animation: appFloat 7s var(--ease-io) infinite alternate; will-change: transform; }
.appshow__bar { display: flex; gap: 7px; padding: 12px 15px; background: rgba(8,12,36,0.6); border-bottom: 1px solid var(--glass-border); }
.appshow__bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(245,238,225,0.2); }
.appshow__bar span:first-child { background: var(--orange); }
.appshow__window img { display: block; width: 100%; height: auto; }
@keyframes appFloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }
.appshow__chip { position: absolute; z-index: 3; background: rgba(8,12,36,0.92); border: 1px solid var(--glass-border); border-radius: 15px; padding: 12px 15px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(245,238,225,0.6); box-shadow: 0 22px 54px -18px rgba(0,0,0,0.7); display: flex; align-items: center; gap: 11px; line-height: 1.4; }
.appshow__chip svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; }
.appshow__chip b { display: block; color: var(--cream); font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0; text-transform: none; margin-top: 1px; }
.appshow__chip--a { top: 6%; left: -7%; animation: appFloat 6s var(--ease-io) infinite alternate; }
.appshow__chip--b { bottom: 9%; right: -7%; animation: appFloat 6.6s var(--ease-io) -1.6s infinite alternate; }
@media (prefers-reduced-motion: reduce){ .appshow__window, .appshow__chip, .appshow__glow { animation: none; } }
@media (max-width: 900px){ .appshow__grid { grid-template-columns: 1fr; gap: 44px; } .appshow__stage { max-width: 380px; } .appshow__chip--a { left: -2%; } .appshow__chip--b { right: -2%; } }
@media (max-width: 460px){ .appshow__chip span { display: none; } .appshow__chip { padding: 12px; } }

/* ════════ Perspective marquee de tiendas (3D) ════════ */
.storemq { position: relative; height: clamp(280px, 38vw, 440px); overflow: hidden; perspective: 1200px; }
.storemq__row { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: clamp(8px, 1.5vw, 22px); transform: rotateX(10deg) rotateY(-22deg); transform-style: preserve-3d; }
.storemq__track { display: flex; align-items: center; white-space: nowrap; width: max-content; will-change: transform; }
.storemq__track--a { animation: mqScroll 38s linear infinite; }
.storemq__track--b { animation: mqScroll 38s linear infinite reverse; animation-delay: -6s; }
.storemq__track--c { animation: mqScroll 46s linear infinite; animation-delay: -14s; }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.storemq__item { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5vw, 76px); letter-spacing: -0.035em; color: var(--cream); opacity: 0.92; padding-right: clamp(40px, 5vw, 84px); }
.storemq__item--accent { color: var(--orange); }
.storemq__item .reg { font-size: 0.42em; vertical-align: super; opacity: 0.5; font-weight: 600; margin-left: 4px; }
.storemq__fade { position: absolute; inset: 0; z-index: 2; pointer-events: none; background:
  linear-gradient(90deg, var(--navy-night) 0%, transparent 16%, transparent 84%, var(--navy-night) 100%),
  linear-gradient(180deg, var(--navy-night) 0%, transparent 28%, transparent 72%, var(--navy-night) 100%); }
@media (prefers-reduced-motion: reduce){ .storemq__track--a, .storemq__track--b, .storemq__track--c { animation: none; } .storemq__row { transform: rotateX(6deg) rotateY(-10deg); } }

/* ════════ Masonry testimonios (fotos reales) ════════ */
.masonry { columns: 4; column-gap: 16px; }
@media (max-width: 1100px){ .masonry { columns: 3; } }
@media (max-width: 768px){ .masonry { columns: 2; } }
@media (max-width: 480px){ .masonry { columns: 1; } }
.mcard { break-inside: avoid; margin-bottom: 16px; border-radius: var(--r-lg); overflow: hidden; position: relative; display: block; transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.mcard:hover { transform: translateY(-4px); box-shadow: 0 22px 60px -26px rgba(0,0,0,0.5); }
.mcard img { width: 100%; display: block; }
.mcard__grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,12,36,0.9), rgba(8,12,36,0.15) 55%, transparent 80%); z-index: 1; }
.mcard__c { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; z-index: 2; color: #fff; }
.mcard__stars { display: inline-flex; gap: 2px; color: var(--orange); margin-bottom: 8px; }
.mcard__stars svg { width: 12px; height: 12px; }
.mcard__q { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.3; letter-spacing: -0.01em; text-shadow: 0 2px 12px rgba(0,0,0,0.5); margin-bottom: 8px; text-wrap: pretty; }
.mcard__who { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); }
.mcard__who b { color: #fff; }
.mcard__badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(8,12,36,0.6); border: 1px solid var(--glass-border); color: var(--cream); padding: 5px 9px; border-radius: 999px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* ════════ Globe band (cobe) ════════ */
.globe-band { position: relative; background: var(--navy-night); color: var(--cream); overflow: hidden; isolation: isolate; }
.globe-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.globe-band__copy h2 { font-size: clamp(34px,5vw,72px); line-height: 0.96; letter-spacing: -0.035em; }
.globe-band__copy p { margin-top: 18px; font-size: clamp(15px,1.2vw,17.5px); line-height: 1.6; color: rgba(245,238,225,0.72); max-width: 46ch; }
.globe-cities { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.globe-city { display: flex; flex-direction: column; gap: 4px; }
.globe-city .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); margin-bottom: 4px; }
.globe-city .n { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; }
.globe-city .c { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,238,225,0.5); }
.globe-wrap { position: relative; width: 100%; max-width: 520px; margin: 0 auto; aspect-ratio: 1; }
/* ── Globo cobe (WebGL) + fallback SVG ── */
.globe-stage { position: relative; width: 100%; height: 100%; }
/* Video 360 del globo (reemplaza el canvas/SVG) */
.globe-video { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; background: #0a1130; box-shadow: 0 0 90px -10px rgba(242,107,31,0.20), inset 0 0 0 1px rgba(245,238,225,0.05); }
.globe-stage::after { content: ''; position: absolute; inset: -6%; z-index: 0; border-radius: 50%; background: radial-gradient(circle, rgba(242,107,31,0.12), transparent 62%); pointer-events: none; }
#tcduGlobe { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.1s var(--ease); cursor: grab; touch-action: pan-y; contain: layout paint size; }
#tcduGlobe:active { cursor: grabbing; }
/* El fallback SVG se ve por defecto (sin JS / sin WebGL); se oculta cuando el globo 3D está listo */
.globe-stage .svg-globe { position: absolute; inset: 0; opacity: 1; transition: opacity 0.6s var(--ease); pointer-events: none; }
.globe-stage.globe--ready .svg-globe { opacity: 0; }
.globe-stage.globe--fallback #tcduGlobe { display: none; }
.globe-hint { position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,238,225,0.45); white-space: nowrap; opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none; }
.globe-stage.globe--ready .globe-hint { opacity: 1; }
@media (max-width: 880px){ .globe-hint { display: none; } }
/* Globo SVG (siempre renderiza, sin WebGL) */
.svg-globe { width: 100%; height: 100%; display: block; overflow: visible; }
.svg-globe .sph-glow { animation: sphGlow 5s var(--ease-io) infinite alternate; transform-origin: center; }
@keyframes sphGlow { from { opacity: 0.5; } to { opacity: 0.9; } }
.svg-globe .grid-spin { transform-origin: 210px 210px; animation: gridSpin 48s linear infinite; }
@keyframes gridSpin { to { transform: rotate(360deg); } }
.svg-globe .arc { fill: none; stroke: var(--orange); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 7 10; animation: arcFlow 2.4s linear infinite; filter: drop-shadow(0 0 4px rgba(242,107,31,0.6)); }
.svg-globe .arc.a2 { animation-delay: -1.2s; }
@keyframes arcFlow { to { stroke-dashoffset: -34; } }
.svg-globe .city { fill: var(--orange); }
.svg-globe .city-ring { fill: none; stroke: var(--orange); stroke-width: 2; transform-origin: center; transform-box: fill-box; animation: cityPulse 2s var(--ease-out) infinite; }
.svg-globe .city-ring.r2 { animation-delay: 0.66s; }
.svg-globe .city-ring.r3 { animation-delay: 1.33s; }
@keyframes cityPulse { 0% { transform: scale(0.4); opacity: 0.9; } 100% { transform: scale(3.2); opacity: 0; } }
.svg-globe .traveler { fill: #fff; filter: drop-shadow(0 0 6px var(--orange)); }
.svg-globe .clabel { font-family: var(--font-mono); font-size: 11px; fill: var(--cream); font-weight: 700; letter-spacing: 0.05em; }
.svg-globe .csub { font-family: var(--font-mono); font-size: 7.5px; fill: rgba(245,238,225,0.5); letter-spacing: 0.12em; }
@media (prefers-reduced-motion: reduce){ .svg-globe .grid-spin, .svg-globe .arc, .svg-globe .city-ring, .svg-globe .traveler, .svg-globe .sph-glow { animation: none; } }
@media (max-width: 880px){ .globe-band__inner { grid-template-columns: 1fr; } .globe-wrap { max-width: 380px; } }

/* ════════ Payment strip ════════ */
.paystrip { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; padding: 18px 24px; background: var(--cream-2); border: 1px solid var(--paper-line); border-radius: 999px; max-width: max-content; margin-left: auto; margin-right: auto; }
.paystrip__lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.paystrip__item { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: rgba(10,15,37,0.72); }
.paystrip__sep { width: 4px; height: 4px; border-radius: 50%; background: var(--paper-line-2); }
@media (max-width: 620px){ .paystrip { border-radius: var(--r-lg); } }

/* ════════ Referral band ════════ */
.refer { position: relative; background: var(--orange); color: var(--navy-darker); border-radius: var(--r-xl); padding: clamp(32px,5vw,56px); overflow: hidden; isolation: isolate; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.refer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.25), transparent 55%); pointer-events: none; }
.refer__c { position: relative; z-index: 2; }
.refer__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; opacity: 0.7; }
.refer__c h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,4vw,48px); letter-spacing: -0.035em; line-height: 0.98; margin: 10px 0 12px; color: var(--navy-darker); }
.refer__c p { font-size: 15.5px; line-height: 1.5; max-width: 44ch; opacity: 0.86; }
.refer__nums { position: relative; z-index: 2; display: flex; gap: 28px; }
.refer__num .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px,6vw,68px); letter-spacing: -0.04em; line-height: 1; }
.refer__num .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px; opacity: 0.75; }
.refer .btn { margin-top: 20px; background: var(--navy-darker); color: var(--cream); }
.refer .btn:hover { background: var(--ink); }
@media (max-width: 760px){ .refer { grid-template-columns: 1fr; } }

/* ════════ Hero: barra de garantía/urgencia ════════ */
.hero__assure { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 4px; }
.hero__assure-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(245,238,225,0.82); }
.hero__assure-item svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.hero__assure-item--hot { color: var(--orange); }
.hero__assure-item--hot svg { color: var(--orange); }

/* ════════ Sección Garantía / confianza ════════ */
.assurance { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.assurance__visual { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; isolation: isolate; }
.assurance__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.assurance__visual:hover img { transform: scale(1.04); }
.assurance__seal { position: absolute; top: 18px; left: 18px; z-index: 2; width: 92px; height: 92px; border: 2px solid var(--orange); border-radius: 50%; display: grid; place-items: center; color: var(--orange); transform: rotate(-10deg); background: rgba(8,12,36,0.45); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.assurance__seal span { font-family: var(--font-mono); font-size: 8.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; line-height: 1.3; }
.assurance__list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.assure-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--r-lg); background: var(--cream-2); border: 1px solid var(--paper-line); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.assure-card:hover { transform: translateX(4px); box-shadow: 0 14px 40px -22px rgba(11,18,48,0.2); }
.assure-card__ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(242,107,31,0.12); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.assure-card__ico svg { width: 22px; height: 22px; }
.assure-card__t { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.015em; margin-bottom: 3px; }
.assure-card__s { font-size: 13.5px; line-height: 1.5; color: rgba(10,15,37,0.62); }
@media (max-width: 880px){ .assurance { grid-template-columns: 1fr; } }

/* ════════ BRAND FILM scroll-expansion ════════ */
.filmexp { position: relative; height: 240vh; background: var(--navy-night); }
.filmexp__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; isolation: isolate; }
.filmexp__title { position: absolute; z-index: 3; display: flex; gap: 0 0.35em; justify-content: center; align-items: center; width: 100%; text-align: center; pointer-events: none; will-change: transform, opacity; }
.filmexp__title .w { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 8vw, 116px); letter-spacing: -0.04em; line-height: 1; color: var(--cream); text-shadow: 0 4px 40px rgba(0,0,0,0.6); will-change: transform; }
.filmexp__title .w2 { color: var(--orange); }
.filmexp__frame { position: relative; z-index: 2; width: 42vw; height: 48vh; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); will-change: width, height; background: #000; }
.filmexp__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.filmexp__veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(6,10,34,0.1), transparent 40%, transparent 72%, rgba(6,10,34,0.5)); }
.filmexp__chip { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; background: rgba(8,12,36,0.62); border: 1px solid var(--glass-border); border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.filmexp__chip .ld { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 var(--orange-ink); animation: ldp 1.6s var(--ease) infinite; }
.filmexp__hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,238,225,0.55); animation: bob 2s var(--ease-io) infinite; }
@media (max-width: 768px){ .filmexp { height: 200vh; } .filmexp__frame { width: 80vw; height: 36vh; } .filmexp__title .w { font-size: clamp(34px,9vw,64px); } }
@media (prefers-reduced-motion: reduce){ .filmexp { height: auto; } .filmexp__sticky { position: relative; height: 80vh; } .filmexp__frame { width: 86vw; height: 60vh; } .filmexp__title { display: none; } .filmexp__hint { display: none; } }

/* ════════ UNBOXING scroll-scrub ════════ */
.unbox { position: relative; height: 280vh; background: var(--navy-night); }
.unbox__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; isolation: isolate; }
.unbox__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.unbox__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(90% 90% at 50% 50%, transparent 30%, rgba(6,10,34,0.55) 80%), linear-gradient(180deg, rgba(6,10,34,0.5), transparent 30%, transparent 70%, rgba(6,10,34,0.7)); }
.unbox__copy { position: relative; z-index: 2; text-align: center; max-width: 760px; padding: 0 var(--gutter); color: var(--cream); }
.unbox__copy .manifest { justify-content: center; margin-bottom: 16px; }
.unbox__copy h2 { font-size: clamp(34px,6vw,82px); line-height: 0.96; letter-spacing: -0.04em; text-shadow: 0 4px 40px rgba(0,0,0,0.5); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.unbox__copy p { margin-top: 16px; font-size: clamp(15px,1.4vw,19px); color: rgba(245,238,225,0.85); text-shadow: 0 2px 20px rgba(0,0,0,0.6); transition: opacity 0.5s var(--ease); }
.unbox__hint { margin-top: 30px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,238,225,0.55); animation: bob 2s var(--ease-io) infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }
.unbox__progress { position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%); width: 180px; height: 3px; background: rgba(245,238,225,0.15); border-radius: 999px; overflow: hidden; z-index: 2; }
.unbox__progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); border-radius: 999px; }
@media (prefers-reduced-motion: reduce){ .unbox { height: auto; } .unbox__sticky { position: relative; height: 70vh; } .unbox__hint { animation: none; } }

.final { position: relative; background: var(--navy-night); color: var(--cream); padding: clamp(96px,14vw,190px) 0; overflow: hidden; isolation: isolate; }
.final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.5; transform: scale(1.05); animation: finalZoom 18s var(--ease-io) infinite alternate; }
@keyframes finalZoom { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.14) translateY(-2%); } }
.final__veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(110% 90% at 50% 40%, transparent 0%, rgba(6,10,34,0.55) 60%, rgba(6,10,34,0.92) 100%), linear-gradient(180deg, rgba(6,10,34,0.5), rgba(6,10,34,0.8)); }
.final__inner { position: relative; z-index: 2; text-align: center; max-width: 1000px; margin: 0 auto; }
@media (prefers-reduced-motion: reduce){ .final__bg { animation: none; } }
.final h2 { font-size: clamp(54px,11vw,156px); font-weight: 800; line-height: 0.9; letter-spacing: -0.05em; margin-bottom: 30px; }
.final h2 .accent { color: var(--orange); display: block; }
.final__lede { font-size: clamp(16px,1.4vw,19.5px); color: rgba(245,238,225,0.78); max-width: 560px; margin: 0 auto 42px; line-height: 1.55; }
.final__actions { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.final__contact { margin-top: 70px; padding-top: 42px; border-top: 1px solid var(--glass-border); display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; }
.final__contact-item { text-align: left; }
.final__contact-item .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; font-weight: 700; }
.final__contact-item .val { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; }

/* ╔════════ PAGE HEADER (subpages) ════════╗ */
.page-head { position: relative; background: var(--navy-night); color: var(--cream); padding: 150px 0 80px; overflow: hidden; isolation: isolate; }
.page-head__inner { position: relative; z-index: 3; max-width: 820px; }
.page-head h1 { font-size: clamp(44px,7vw,104px); line-height: 0.92; letter-spacing: -0.04em; margin: 18px 0 22px; }
.page-head__lede { font-size: clamp(16px,1.4vw,20px); line-height: 1.55; color: rgba(245,238,225,0.78); max-width: 56ch; }
.breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,238,225,0.5); display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--orange); }
.breadcrumb .sep { opacity: 0.4; }

/* ╔════════ BIG TRACK PANEL ════════╗ */
.track-hero { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 760px; margin: 36px 0 0; }
.track-box { background: var(--glass-2); border: 1px solid var(--glass-border); border-radius: var(--r-xl); padding: clamp(24px,3vw,38px); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.track-box__row { display: flex; gap: 10px; flex-wrap: wrap; }
.track-box input { flex: 1; min-width: 200px; background: rgba(245,238,225,0.05); border: 1px solid var(--glass-border); color: var(--cream); border-radius: 14px; padding: 17px 18px; font-family: var(--font-mono); font-size: 16px; letter-spacing: 0.08em; outline: 0; transition: border-color 0.25s; }
.track-box input:focus { border-color: var(--orange); }
.track-box input::placeholder { color: rgba(245,238,225,0.3); }
.track-states { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 28px; }
.track-state { padding: 22px; border-radius: var(--r); background: rgba(245,238,225,0.03); border: 1px solid var(--glass-border); }
.track-state__ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(242,107,31,0.14); color: var(--orange); display: grid; place-items: center; margin-bottom: 14px; }
.track-state__ico svg { width: 20px; height: 20px; }
.track-state h4 { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 6px; }
.track-state p { font-size: 13px; line-height: 1.5; color: rgba(245,238,225,0.6); }

/* ╔════════ VIDEO SHOWCASE ════════╗ */
.videoshow { position: relative; background: var(--navy-night); color: var(--cream); padding: clamp(64px,9vw,130px) 0; overflow: hidden; isolation: isolate; }
.videoshow__head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px,4vw,56px); position: relative; z-index: 2; }
.videoshow__head .manifest { justify-content: center; margin-bottom: 18px; }
.videoshow__head h2 { font-size: clamp(34px,5vw,68px); line-height: 0.96; letter-spacing: -0.035em; }
.videoshow__head p { margin-top: 16px; font-size: clamp(15px,1.2vw,17.5px); line-height: 1.6; color: rgba(245,238,225,0.7); }
.videoframe { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 50px 110px -34px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,238,225,0.04); aspect-ratio: 16/9; background: #000; }
.videoframe video { width: 100%; height: 100%; object-fit: cover; display: block; }
.videoframe__bar { position: absolute; left: 14px; bottom: 14px; z-index: 3; display: flex; align-items: center; gap: 10px; }
.videoframe__chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; background: rgba(8,12,36,0.7); border: 1px solid var(--glass-border); border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.videoframe__chip .ld { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 var(--orange-ink); animation: ldp 1.6s var(--ease) infinite; }
.videoframe__sound { z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(8,12,36,0.7); border: 1px solid var(--glass-border); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.3s var(--ease); }
.videoframe__sound:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.videoframe__sound svg { width: 17px; height: 17px; }
.videoframe__sound .on { display: none; }
.videoframe__sound.is-on .on { display: block; }
.videoframe__sound.is-on .off { display: none; }

/* ╔════════ CALC PANEL ════════╗ */
.calc { background: var(--ink); color: var(--cream); border-radius: var(--r-xl); padding: clamp(28px,4vw,46px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; position: relative; overflow: hidden; }
.calc::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(242,107,31,0.18), transparent 50%); pointer-events: none; }
.calc__intro { position: relative; z-index: 2; }
.calc__form { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 20px; }
.calc__field { display: flex; flex-direction: column; gap: 8px; }
.calc__field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,238,225,0.55); font-weight: 700; }
.calc__weight { display: flex; align-items: stretch; gap: 8px; background: rgba(245,238,225,0.06); border: 1px solid var(--glass-border); border-radius: 14px; padding: 4px; transition: border-color 0.25s; }
.calc__weight:focus-within { border-color: var(--orange); }
.calc__weight input { background: transparent; border: 0; outline: 0; color: var(--cream); font-family: var(--font-display); font-size: 22px; font-weight: 700; padding: 12px 16px; width: 100%; letter-spacing: -0.015em; }
.calc__weight .unit { display: inline-flex; align-items: center; padding: 0 16px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: rgba(245,238,225,0.6); text-transform: uppercase; }
.calc__modes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: rgba(245,238,225,0.06); border-radius: 14px; padding: 4px; }
.calc__mode { border-radius: 10px; padding: 14px 16px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: rgba(245,238,225,0.7); transition: all 0.3s var(--ease); display: flex; flex-direction: column; gap: 4px; cursor: pointer; border: 0; background: transparent; }
.calc__mode small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: rgba(245,238,225,0.45); text-transform: uppercase; font-weight: 700; }
.calc__mode.is-active { background: var(--orange); color: var(--white); }
.calc__mode.is-active small { color: rgba(255,255,255,0.8); }
.calc__result { display: flex; align-items: baseline; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--glass-border); gap: 16px; flex-wrap: wrap; }
.calc__result .lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,238,225,0.55); font-weight: 700; }
.calc__amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px,5vw,56px); letter-spacing: -0.035em; color: var(--cream); line-height: 1; transition: color 0.3s; }
.calc__amount.is-pop { color: var(--orange); }
.calc__amount .currency { font-size: 0.45em; margin-right: 4px; opacity: 0.7; }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }
