/* ============================================================
   OxxRoad — sitio completo (Cinematic Dark Rally, estilo N×Q)
   Página única, tema oscuro bloqueado, un solo acento naranja.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui); color: var(--fg); background: var(--ink);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, canvas, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(var(--orange-rgb), .3); }

.wrap { width: 100%; max-width: min(1500px, 94vw); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .015em; }

.section { padding-block: clamp(5.5rem, 4rem + 7vw, 10rem); position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 2rem + 3vw, 4.5rem); }
.section-title {
  font-size: clamp(2.3rem, 1.7rem + 3.4vw, 4.6rem);
  font-weight: 700; line-height: .95;
}
.section-title .t-accent { color: var(--orange); }
.section-body {
  margin-top: 1.1rem; color: var(--fg-dim); max-width: 56ch;
  font-size: clamp(1rem, .94rem + .3vw, 1.2rem); line-height: 1.6;
}

/* ============================ NAV ============================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: .8rem 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.is-solid {
  background: rgba(6, 8, 12, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand img { height: 72px; width: auto; }
.brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 2.25rem;
  letter-spacing: .03em; text-transform: uppercase; line-height: 1;
}
.brand b { color: var(--orange); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: .86rem; color: var(--fg-dim); letter-spacing: .02em;
  position: relative; padding: .2em 0; transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .8rem; }

/* —— Selector de idioma —— */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .45em;
  background: none; border: 1px solid var(--line-strong); color: var(--fg-dim);
  font: 600 .8rem var(--font-mono); letter-spacing: .06em;
  padding: .5em .85em; border-radius: 999px; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.lang-btn:hover { color: var(--fg); border-color: rgba(var(--orange-rgb), .5); }
.lang-btn .chev { width: 10px; height: 10px; transition: rotate .25s var(--ease); }
.lang.is-open .lang-btn .chev { rotate: 180deg; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px;
  background: rgba(10, 13, 18, .96); border: 1px solid var(--line-strong);
  border-radius: 12px; padding: .4rem; backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  opacity: 0; translate: 0 -6px; pointer-events: none;
  transition: opacity .22s var(--ease), translate .22s var(--ease);
}
.lang.is-open .lang-menu { opacity: 1; translate: 0 0; pointer-events: auto; }
.lang-menu button {
  display: block; width: 100%; text-align: left;
  background: none; border: 0; color: var(--fg-dim); cursor: pointer;
  font: 500 .86rem var(--font-ui); padding: .5em .7em; border-radius: 8px;
  transition: background .15s, color .15s;
}
.lang-menu button:hover { background: rgba(var(--orange-rgb), .12); color: var(--fg); }
.lang-menu button[aria-current="true"] { color: var(--orange); }

/* ============================ BOTONES ============================ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 600; font-size: clamp(.95rem, .88rem + .2vw, 1.15rem);
  padding: .85em 1.7em; border-radius: 999px; white-space: nowrap; overflow: hidden;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .2s var(--ease);
}
.btn:active { scale: .97; }
.btn-primary {
  background: linear-gradient(180deg, #ff8e3c, #ff7a1a 55%, #e85f00); color: #190b02;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(0,0,0,.25), 0 12px 32px rgba(var(--orange-rgb), .30);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.45) 50%, transparent 60%);
  background-size: 240% 100%; background-position: 160% 0; opacity: 0;
  transition: background-position .7s var(--ease), opacity .2s;
}
.btn-primary:hover::after { background-position: -60% 0; opacity: 1; }
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 16px 44px rgba(var(--orange-rgb), .45); }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--fg);
  background: rgba(8, 11, 16, .35); backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(var(--orange-rgb), .65); background: rgba(var(--orange-rgb), .07); }
.btn-nav { padding: .55em 1.25em; font-size: .88rem; }
.btn-store .store-ico { flex: 0 0 auto; margin-top: -1px; }

/* ===== Popup "Próximamente" (Google Play + App Store) ===== */
.soon-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1.2rem;
  background: rgba(4, 6, 10, .66); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  animation: soon-fade .2s var(--ease, ease) both;
}
.soon-overlay[hidden] { display: none; }
.soon-card {
  position: relative; width: min(420px, 100%);
  padding: 2.4rem 1.8rem 1.8rem; border-radius: 22px; text-align: center;
  background: linear-gradient(180deg, rgba(20,24,32,.97), rgba(11,14,20,.98));
  border: 1px solid var(--line-strong, rgba(255,255,255,.14));
  box-shadow: 0 30px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
  animation: soon-rise .28s var(--ease, cubic-bezier(.16,1,.3,1)) both;
}
.soon-close {
  position: absolute; top: .8rem; right: .8rem; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line, rgba(255,255,255,.1)); background: rgba(255,255,255,.04);
  color: var(--muted, rgba(220,225,235,.7));
}
.soon-close:hover { color: var(--fg, #f2f5f9); }
.soon-title {
  font-family: var(--font-display, system-ui); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.8rem, 1.5rem + 2vw, 2.4rem); letter-spacing: .02em; line-height: 1; margin: 0 0 .7rem;
}
.soon-body {
  color: var(--muted, rgba(220,225,235,.72)); font-size: 1rem; line-height: 1.5;
  margin: 0 auto 1.5rem; max-width: 34ch;
}
.soon-stores { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.soon-store {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border-radius: 999px;
  border: 1px solid var(--line-strong, rgba(255,255,255,.14)); background: rgba(255,255,255,.04);
  font-size: .85rem; font-weight: 600; color: var(--fg, #f2f5f9);
}
.soon-store svg { color: var(--orange, #ff7a1a); }
@keyframes soon-fade { from { opacity: 0; } }
@keyframes soon-rise { from { opacity: 0; transform: translateY(14px) scale(.98); } }

/* ============================ GRANO ============================ */
.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================ HERO ============================ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: center;
  overflow: hidden; isolation: isolate;
  padding-top: 4.5rem; cursor: crosshair;
}
#world {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.6s var(--ease);
}
body.is-loaded #world { opacity: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(2, 3, 5, .55) 100%),
    linear-gradient(180deg, rgba(2,3,5,.5) 0%, transparent 18%),
    linear-gradient(0deg, rgba(7,9,13,1) 0%, transparent 14%);
}
.hero-inner {
  position: relative; z-index: 1; pointer-events: none;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: center; gap: clamp(1.4rem, 3.5vw, 3.4rem);
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding-block: 2rem;
}
.hero-inner a, .hero-inner button { pointer-events: auto; }
.hero-copy { display: grid; justify-items: start; gap: 1.05rem; }
.hero-mark { width: clamp(150px, 12vw, 230px); height: auto; filter: drop-shadow(0 18px 38px rgba(0,0,0,.65)); }
.hero-title {
  font-weight: 700;
  font-size: clamp(2.3rem, 4.3vw, 4.4rem);
  line-height: .94;
}
/* Showcase de 3 capturas (features) en el héroe */
.hero-showcase {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(.5rem, 1.2vw, 1rem);
}
.hero-shot { margin: 0; width: clamp(120px, 13.5vw, 190px); display: flex; flex-direction: column; gap: .65rem; }
.hero-shot:nth-child(2) { transform: translateY(-28px); }
.hero-phone {
  display: block; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.12); background: #0a0d12;
  box-shadow: 0 26px 60px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.04);
}
.hero-phone img { display: block; width: 100%; height: auto; }
.hero-shot figcaption { text-align: center; line-height: 1.25; }
.hero-shot figcaption b {
  display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: .82rem; letter-spacing: .03em; color: var(--fg, #f2f5f9);
}
.hero-shot figcaption span { display: block; margin-top: .12rem; font-size: .72rem; color: #aeb8c4; }
.hero-title .line { display: block; overflow: hidden; padding-block: .045em; margin-block: -.045em; }
.hero-title .line-i { display: block; transform: translateY(112%); transition: transform 1s var(--ease); will-change: transform; }
.hero-title .t-accent { color: var(--orange); }
.hero-sub {
  max-width: 50ch; color: #b9c2cc; text-shadow: 0 1px 16px rgba(3,5,8,.85);
  font-size: clamp(1rem, .92rem + .4vw, 1.35rem); line-height: 1.55; text-wrap: balance;
}
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: .6rem; }

.h-mark { opacity: 0; transform: translateY(18px); filter: blur(9px); transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease); }
body.is-loaded .h-mark { opacity: 1; transform: none; filter: none; transition-delay: .25s; }
.h-rise { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
body.is-loaded .hero-title .line:nth-child(1) .line-i { transform: none; transition-delay: .5s; }
body.is-loaded .hero-title .line:nth-child(2) .line-i { transform: none; transition-delay: .64s; }
body.is-loaded .h-rise { opacity: 1; transform: none; }
body.is-loaded .h-rise.d2 { transition-delay: .9s; }
body.is-loaded .h-rise.d3 { transition-delay: 1.05s; }

.hint {
  position: absolute; left: 50%; bottom: 2rem; translate: -50% 0; z-index: 1;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-mute); display: inline-flex; align-items: center; gap: .8em;
  transition: opacity .8s var(--ease);
}
.hint::before, .hint::after { content: ""; width: 26px; height: 1px; background: var(--orange); }
body.has-driven .hint { opacity: 0; }

/* ===================== REVELADO AL SCROLL ===================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: none; }

/* ===================== MANIFIESTO ===================== */
.manifesto { border-top: 1px solid var(--line); }
.manifesto-inner { max-width: 1050px; }
.manifesto p:first-child {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.3rem, 1.1rem + 1.2vw, 2.2rem); font-weight: 500;
  color: var(--fg-mute); letter-spacing: .03em;
}
.manifesto p.big {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700;
  font-size: clamp(2.6rem, 1.8rem + 4.6vw, 6.4rem); line-height: .95; margin-top: .35rem;
}
.manifesto p.big .t-accent { color: var(--orange); }
.manifesto .support {
  margin-top: 1.6rem; color: var(--fg-dim); max-width: 58ch;
  font-size: clamp(1rem, .94rem + .3vw, 1.2rem); line-height: 1.6;
}

/* ===================== MODOS (acordeón) ===================== */
.modos-row { display: flex; gap: .8rem; height: clamp(420px, 58vh, 600px); }
.modo {
  position: relative; flex: 1; min-width: 0; overflow: hidden;
  border-radius: var(--radius-lg); isolation: isolate;
  border: 1px solid var(--line);
  transition: flex .65s var(--ease);
  display: flex; align-items: flex-end;
}
.modo:hover, .modo:focus-within { flex: 2.4; }
.modo img.bg {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; transition: scale 1.2s var(--ease), filter .65s var(--ease);
  filter: saturate(.82) brightness(.8);
  scale: 1.06;
}
.modo:hover img.bg { filter: saturate(1) brightness(.92); scale: 1; }
.modo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(5,7,10,.18) 30%, rgba(5,7,10,.88) 92%);
}
.modo-content { padding: clamp(1.1rem, 1rem + 1vw, 2rem); width: 100%; }
.modo-tag {
  font: 600 .74rem var(--font-mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--mode-c, var(--orange));
}
.modo-name {
  font-size: clamp(1.7rem, 1.4rem + 1.6vw, 3rem); font-weight: 700; line-height: 1;
  margin-top: .3rem;
}
.modo-desc {
  margin-top: .55rem; color: var(--fg-dim); font-size: .95rem; line-height: 1.5;
  max-width: 40ch; opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s;
}
.modo:hover .modo-desc, .modo:focus-within .modo-desc { opacity: 1; transform: none; }
.modo[data-mode="moto"]  { --mode-c: #ff7a1a; }
.modo[data-mode="mtb"]   { --mode-c: #3fe0d0; }
.modo[data-mode="ebike"] { --mode-c: #37e3ff; }

/* ===================== TELÉFONOS ===================== */
.phone {
  position: relative;
  border-radius: clamp(28px, 2.6vw, 42px);
  padding: clamp(7px, .7vw, 11px);
  background: linear-gradient(180deg, #20262e, #0c1015 60%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255,255,255,.1);
}
.phone img {
  width: 100%; height: auto;
  border-radius: clamp(21px, 2vw, 32px);
}

/* ===================== ROADBOOK (estrella) ===================== */
.roadbook { border-top: 1px solid var(--line); overflow: hidden; }
.rb-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 1.5rem + 4vw, 6rem);
  align-items: center;
}
.rb-copy .section-title { font-size: clamp(2.4rem, 1.8rem + 3.6vw, 5rem); }
.rb-points { margin-top: 2rem; display: grid; gap: 1.05rem; padding: 0; list-style: none; }
.rb-points li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: baseline; }
.rb-points .k {
  font: 600 .78rem var(--font-mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); white-space: nowrap;
}
.rb-points .v { color: var(--fg-dim); font-size: .98rem; line-height: 1.55; }
.rb-visual { position: relative; display: grid; justify-items: center; }
.rb-visual .phone.main { width: min(360px, 78%); z-index: 1; }
.rb-visual .phone.side {
  position: absolute; width: min(240px, 52%);
  right: 0; bottom: -8%; z-index: 2;
  rotate: 4deg;
}
.rb-visual::before {
  content: ""; position: absolute; inset: -12% -8%; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 50% at 55% 50%, rgba(var(--orange-rgb), .14), transparent 70%);
}

/* ===================== FUNCIONES (bento) ===================== */
.bento {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
}
.cell {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--panel-2);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.cell:hover { border-color: rgba(var(--orange-rgb), .4); transform: translateY(-3px); }
.cell.is-wide { grid-column: span 2; }
.cell.is-tall { grid-column: span 2; grid-row: span 2; }
.cell img.shot {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: var(--shot-pos, center top);
  filter: brightness(.9);
  transition: scale 1s var(--ease);
  scale: 1.02;
}
.cell:hover img.shot { scale: 1.07; }
.cell::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,6,9,.72) 0%, rgba(5,7,10,0) 16%),
    linear-gradient(180deg, rgba(5,7,10,0) 38%, rgba(4,6,9,.93) 82%);
}
.cell-text { padding: 1.15rem 1.25rem 1.2rem; }
.cell-title { font-size: 1.35rem; font-weight: 700; line-height: 1; }
.cell-desc { margin-top: .4rem; color: var(--fg-dim); font-size: .9rem; line-height: 1.45; max-width: 46ch; }
.cell.is-tall .cell-title { font-size: 1.8rem; }
.cell.is-tall .cell-desc { font-size: .96rem; }

.also { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.also-label { font: 600 .76rem var(--font-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute); margin-right: .4rem; }
.also span.pill {
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: .42em 1em; font-size: .85rem; color: var(--fg-dim);
}

/* ===================== CONVOY ===================== */
.convoy { border-top: 1px solid var(--line); overflow: hidden; }
.cv-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 1.5rem + 4vw, 6rem);
  align-items: center;
}
.cv-visual { position: relative; display: grid; justify-items: center; order: -1; }
.cv-visual .phone.main { width: min(330px, 74%); z-index: 1; }
.cv-visual .phone.side {
  position: absolute; width: min(225px, 50%);
  left: 0; bottom: -10%; z-index: 2; rotate: -4deg;
}
.cv-visual::before {
  content: ""; position: absolute; inset: -12% -8%; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 50% at 45% 50%, rgba(var(--orange-rgb), .12), transparent 70%);
}

/* ===================== BETA (CTA final) ===================== */
.beta {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 72svh; display: grid; align-items: center;
  border-top: 1px solid var(--line);
}
.beta img.bg {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  filter: saturate(.9) brightness(.7);
}
.beta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,7,10,.88) 0%, rgba(5,7,10,.45) 55%, rgba(5,7,10,.25) 100%),
    linear-gradient(0deg, rgba(7,9,13,1) 0%, transparent 22%),
    linear-gradient(180deg, rgba(7,9,13,1) 0%, transparent 18%);
}
.beta-inner { max-width: 720px; padding-block: clamp(5rem, 14vh, 9rem); }
.beta-title { font-size: clamp(2.8rem, 2rem + 4.4vw, 6rem); font-weight: 700; line-height: .95; }
.beta-body { margin-top: 1.1rem; color: #c3cbd4; max-width: 48ch; font-size: clamp(1rem, .94rem + .3vw, 1.2rem); line-height: 1.6; }
.beta-cta { margin-top: 1.8rem; }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line); padding-block: 2.2rem; }
.footer .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; color: var(--fg-mute); font-size: .86rem;
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { color: var(--fg-dim); transition: color .2s; }
.footer-legal a:hover { color: var(--fg); }

/* ===================== MÓVIL ===================== */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 215px; }
  .cell.is-tall { grid-column: span 2; grid-row: span 2; }
  .rb-grid, .cv-grid { grid-template-columns: 1fr; }
  .cv-visual { order: 0; }
  .rb-visual { margin-top: 1rem; }
  .rb-visual .phone.side { bottom: -4%; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .brand img { height: 46px; }
  .brand span { font-size: 1.5rem; }
  .hero { padding-top: 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-title { font-size: clamp(2.9rem, 12.5vw, 4.2rem); }
  .hero-showcase { gap: .5rem; justify-content: space-between; }
  .hero-shot { width: clamp(90px, 28vw, 150px); }
  .hero-shot:nth-child(2) { transform: none; }
  .hero-shot figcaption span { display: none; }
  .hint { display: none; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .modos-row { flex-direction: column; height: auto; }
  .modo { min-height: 200px; flex: none; }
  .modo-desc { opacity: 1; transform: none; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 215px; }
  .cell.is-wide, .cell.is-tall { grid-column: auto; grid-row: auto; }
  .cell.is-tall { grid-row: span 2; }
  .rb-visual .phone.main, .cv-visual .phone.main { width: min(320px, 86%); }
  .rb-visual .phone.side, .cv-visual .phone.side { width: min(210px, 48%); }
  .footer .wrap { flex-direction: column; align-items: flex-start; }
}

/* ===================== MOVIMIENTO REDUCIDO ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .h-rise, .h-mark { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hero-title .line-i { transform: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  #world { opacity: 1; transition: none; }
  .modo, .modo img.bg, .cell img.shot { transition: none !important; }
}
