/* ============================================================
   BLINDAB — Andrés Borbor
   Sistema de temas: las secciones heredan tokens.
   .sec-dark  → fondo negro   (por defecto)
   .sec-light → fondo blanco
   Los componentes usan var(--surface)/var(--txt)/... y se
   adaptan solos al tema de la sección que los contiene.
   ============================================================ */

:root {
  /* --- tokens OSCURO (por defecto) --- */
  --bg:        #08080A;
  --surface:   #101014;
  --surface-2: #17171D;
  --line:      rgba(255, 255, 255, .09);
  --line-2:    rgba(255, 255, 255, .18);
  --txt:       #F4F4F6;
  --txt-2:     #B4B4BF;
  --muted:     #7C7C89;
  --shadow:    none;

  /* --- constantes de marca --- */
  --red:       #E30613;
  --red-soft:  #FF2B38;
  --red-glow:  rgba(227, 6, 19, .35);
  --ink:       #08080A;
  --paper:     #FFFFFF;

  --wrap: 1440px;              /* ancho del CONTENIDO (sin contar el padding) */
  --pad-x: clamp(1.25rem, 5vw, 70px);     /* padding lateral: 20px móvil → 70px desde 1400px */
  --pad-y: clamp(4.5rem, 9vw, 8rem);      /* padding vertical de sección */
  --r: 4px;
  --hdr-h: 76px;

  --f-display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* --- tokens CLARO --- */
.sec-light {
  --bg:        #FFFFFF;
  --surface:   #F4F4F6;
  --surface-2: #FFFFFF;
  --line:      rgba(8, 8, 12, .12);
  --line-2:    rgba(8, 8, 12, .26);
  --txt:       #0A0A0C;
  --txt-2:     #4C4C57;
  --muted:     #83838E;
  --shadow:    0 1px 3px rgba(8,8,12,.06);
}
/* variante gris muy suave */
.sec-light--soft { --bg: #F4F4F6; --surface: #FFFFFF; --surface-2: #FFFFFF; }

.sec-dark  { background: var(--bg); color: var(--txt); }
.sec-light { background: var(--bg); color: var(--txt); }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 12px); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--txt);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
}

/* El padding lateral está GARANTIZADO a cualquier ancho de pantalla: no se
   descuenta del contenido, se suma al max-width. Así el contenido llega a
   1440px reales y nunca toca los bordes. */
.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + (var(--pad-x) * 2));
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- utilidades ---------- */

.eyebrow {
  font-family: var(--f-display);
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); flex: none; }
.eyebrow--center { justify-content: center; }

.section { padding-block: var(--pad-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { max-width: 800px; margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(2.2rem, 5.5vw, 3.9rem); }
.section__head p { color: var(--txt-2); margin: 1.1rem 0 0; font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-soft); box-shadow: 0 0 26px var(--red-glow); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--txt); background: transparent; }
.btn--ghost:hover { border-color: var(--red); color: var(--red); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1C1C24; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.lnk {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-display); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); font-size: .95rem;
  transition: gap .3s var(--ease);
}
.lnk:hover { gap: .9rem; }
.lnk svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   HEADER  (siempre oscuro — ancla de marca)
   ============================================================ */

.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.15rem 0;
  transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(8,8,10,.85), transparent);
}
.hdr.is-stuck {
  background: rgba(8, 8, 10, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .7rem 0;
  border-bottom-color: rgba(255,255,255,.1);
}
/* páginas internas: header sólido desde el inicio */
.hdr--solid { background: rgba(8,8,10,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* El boton de la cabecera va mas compacto que los del cuerpo: ahi es un
   atajo permanente, no una llamada a la accion que deba pesar. */
.hdr__cta .btn {
  padding: .6rem 1.2rem;
  font-size: .9rem;
  letter-spacing: .12em;
  gap: .45rem;
}
.hdr__cta .btn svg { width: 16px; height: 16px; }
.hdr.is-stuck .hdr__cta .btn { padding: .52rem 1.05rem; font-size: .86rem; }
.hdr__logo img { height: 38px; width: auto; transition: height .35s var(--ease); }
.hdr.is-stuck .hdr__logo img { height: 30px; }

.nav { display: flex; align-items: center; gap: 1.9rem; }
/* OJO: el <li> cuelga de .nav > ul > li, no de .nav > li. Con el
   selector mal, .has-sub no era "position: relative" y el submenu se
   posicionaba respecto a la cabecera: aparecia en una esquina. */
.nav > ul > li { list-style: none; position: relative; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav > ul { display: flex; align-items: center; gap: 1.9rem; margin: 0; padding: 0; }

.nav a, .nav .nav__btn {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #B4B4BF;
  position: relative;
  padding: .3rem 0;
  transition: color .25s;
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
}
.nav a::after, .nav .nav__btn::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .3s var(--ease);
}
.nav a:hover, .nav a.is-active, .nav .nav__btn:hover, .nav li.is-open > .nav__btn { color: #fff; }
.nav a:hover::after, .nav a.is-active::after, .nav .nav__btn:hover::after, .nav li.is-open > .nav__btn::after { width: 100%; }
.nav__btn svg { width: 12px; height: 12px; fill: currentColor; transition: transform .3s var(--ease); }
.nav li.is-open > .nav__btn svg { transform: rotate(180deg); }

/* submenú */
.nav__sub {
  position: absolute;
  top: calc(100% + .7rem); left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: rgba(14,14,18,.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: .5rem;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 18px 46px rgba(0,0,0,.5);
}
.nav li.is-open .nav__sub { opacity: 1; visibility: visible; transform: translateX(-50%); }
.nav__sub a {
  display: block;
  padding: .7rem 1rem;
  font-size: .95rem;
  letter-spacing: .06em;
  border-radius: var(--r);
  color: #B4B4BF;
}
.nav__sub a::after { display: none; }
.nav__sub a:hover { background: rgba(227,6,19,.14); color: #fff; }

.hdr__cta { display: flex; align-items: center; gap: 1rem; }

.burger {
  display: none;
  width: 44px; height: 40px;
  background: none; border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r); cursor: pointer; padding: 0; position: relative;
}
.burger span { position: absolute; left: 12px; width: 20px; height: 2px; background: #fff; transition: all .3s var(--ease); }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 24px; }
.burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ============================================================
   HERO (portada)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
/* Mientras la foto carga, el navegador PINTA su texto alternativo, y se
   veia un texto suelto encima del hero que desaparecia al cargar. Con
   color transparente el alt sigue existiendo para lectores de pantalla
   y para SEO, pero deja de dibujarse. */
.hero__bg img { width: 100%; height: 100%; object-fit: cover; color: transparent; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,10,.94) 0%, rgba(8,8,10,.72) 45%, rgba(8,8,10,.45) 100%),
    linear-gradient(to top, var(--ink) 2%, transparent 45%);
}
.hero__in { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { font-size: clamp(2.6rem, 7.4vw, 5.5rem); margin-bottom: 1.5rem; color: #fff; }
.hero h1 .l1 { display: block; }
.hero h1 .l2 { display: block; color: var(--red); }
.hero h1 em { font-style: normal; -webkit-text-stroke: 1.5px #fff; color: transparent; }
.hero p { font-size: clamp(.98rem, 1.7vw, 1.12rem); color: #B4B4BF; max-width: 58ch; margin: 0 0 2.2rem; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.hero__stats div { background: rgba(8,8,10,.72); padding: 1.5rem 1.4rem; backdrop-filter: blur(6px); }
.hero__stats b { display: block; font-family: var(--f-display); font-size: 2.3rem; line-height: 1; color: var(--red); font-weight: 700; }
.hero__stats span { font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; color: #7C7C89; }

.scrollcue {
  position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 3;
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: cue 2.1s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity:.25; height:26px } 50% { opacity:1; height:46px } }

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */

.phero {
  position: relative;
  background: var(--ink);
  padding: calc(var(--hdr-h) + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
/* La caja del fondo se pasa por arriba y por abajo: anim.js la desplaza un 12%
   con el scroll y, a ras de sección, ese movimiento destaparía una franja. */
.phero__bg { position: absolute; left: 0; right: 0; top: -20%; height: 140%; z-index: 0; opacity: .68; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; color: transparent; }

/* Velo lateral, no uniforme: el texto va a la izquierda, así que ahí carga el
   negro y la foto respira a la derecha. La segunda capa oscurece la franja
   superior para que la cabecera fija siga legible sobre cualquier foto. */
.phero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(8,8,10,.94) 0%, rgba(8,8,10,.8) 42%, rgba(8,8,10,.3) 100%),
    linear-gradient(to bottom, rgba(8,8,10,.88) 0%, rgba(8,8,10,0) 34%);
}
.phero .wrap { position: relative; z-index: 2; }
.phero h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); color: #fff; max-width: 18ch; }
.phero p { color: #C6C6CF; max-width: 60ch; margin: 1.2rem 0 0; font-size: 1.06rem; }

/* ============================================================
   NIVELES
   ============================================================ */

.lv-tabs { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .6rem; margin-bottom: 2.5rem; }
.lv-tab {
  flex: none; padding: .8rem 1.4rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--txt-2);
  font-family: var(--f-display); font-size: 1rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .28s var(--ease); white-space: nowrap;
  box-shadow: var(--shadow);
}
.lv-tab:hover { border-color: var(--line-2); color: var(--txt); }
.lv-tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.lv-panel { display: none; }
.lv-panel.is-active { display: grid; animation: fade .45s var(--ease); }
@keyframes fade { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:none } }

.lv-panel { grid-template-columns: 1.25fr .95fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
.lv-body h3 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: .35rem; }
.lv-norm {
  display: inline-block; font-family: var(--f-display); font-size: .85rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
  border: 1px solid var(--red); padding: .25rem .8rem; border-radius: 99px; margin-bottom: 1.3rem;
}
.lv-body p { color: var(--txt-2); margin: 0 0 1.8rem; max-width: 62ch; }

.lv-specs { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.lv-specs div { background: var(--surface-2); padding: 1.15rem 1.3rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.lv-specs .k { font-size: .76rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); flex: none; }
.lv-specs .v { font-family: var(--f-display); font-size: 1.35rem; font-weight: 600; text-align: right; }
.lv-specs .v.tbd { color: var(--muted); font-size: 1rem; letter-spacing: .1em; }

.lv-threat { border-left: 2px solid var(--red); padding: .3rem 0 .3rem 1.2rem; margin-bottom: 1.8rem; }
.lv-threat .k { display:block; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.lv-threat .v { font-family: var(--f-display); font-size: 1.25rem; font-weight: 600; }

/* siluetas de arma en la columna Detiene */
.arma { width: 66px; height: 27px; fill: var(--txt-2); flex: none; opacity: .85; transition: fill .25s, opacity .25s; }
.arma .ap { fill: #0B0B10; }                 /* punta negra = municion perforante */
.sec-light .arma .ap { fill: #F4F4F6; }
.det { display: flex; align-items: center; gap: .8rem; }
table.cmp tbody tr:hover .arma { fill: var(--red); opacity: 1; }
.lv-threat .v { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.lv-threat .v em { font-style: normal; }
.lv-threat .arma { fill: var(--red); width: 56px; height: 23px; opacity: 1; }

/* overflow-x:auto con overflow-y:visible hace que el navegador convierta
   el eje Y en auto tambien, y aparece una barra vertical fantasma aunque
   no haya nada que desplazar. Por eso se fija hidden en Y. */
.tbl-scroll {
  overflow-x: auto; overflow-y: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
}
.tbl-scroll::-webkit-scrollbar { height: 6px; }
.tbl-scroll::-webkit-scrollbar-track { background: transparent; }
.tbl-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .93rem; background: var(--surface-2); }
table.cmp th, table.cmp td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th {
  background: var(--surface);
  font-family: var(--f-display); font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap;
}
table.cmp tbody tr { transition: background .25s; }
table.cmp tbody tr:hover { background: rgba(227, 6, 19, .06); }
table.cmp tbody td:first-child { font-family: var(--f-display); font-size: 1.08rem; font-weight: 600; white-space: nowrap; }
table.cmp .norm { color: var(--red); font-size: .85rem; white-space: nowrap; }
table.cmp .tbd { color: var(--muted); font-style: italic; }

/* ============================================================
   PARTES BLINDADAS
   ============================================================ */

.parts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.parts__fig { border: 1px solid var(--line); background: var(--ink); padding: .8rem; }
.parts__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.parts__list li {
  background: var(--surface-2); padding: .95rem 1.2rem;
  display: flex; align-items: flex-start; gap: .9rem; font-size: .96rem;
  transition: background .25s, padding-left .25s var(--ease);
}
.parts__list li:hover { background: var(--surface); padding-left: 1.5rem; }
.parts__list svg { width: 19px; height: 19px; flex: none; margin-top: .22rem; fill: var(--red); }

/* ============================================================
   MATERIALES / CARDS GENÉRICAS
   ============================================================ */

.mats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 1.6vw, 1.5rem); }
.mat {
  background: var(--surface-2); padding: clamp(1.8rem, 3.5vw, 2.6rem);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.mat:hover { background: var(--surface); border-color: var(--line-2); transform: translateY(-4px); }
.mat__n { font-family: var(--f-display); font-size: 3.2rem; line-height: 1; color: var(--line-2); font-weight: 700; margin-bottom: 1.2rem; }
.mat h3 { font-size: 1.55rem; margin-bottom: .7rem; }
.mat p { color: var(--txt-2); margin: 0; font-size: .95rem; }

/* ============================================================
   SERVICIOS
   ============================================================ */

.svcs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
.svc {
  background: var(--surface-2); padding: clamp(1.8rem, 3.5vw, 2.5rem);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--red); transition: height .4s var(--ease); }
.svc:hover { background: var(--surface); border-color: var(--line-2); transform: translateY(-4px); }
.svc:hover::before { height: 100%; }
.svc__ico { width: 40px; height: 40px; fill: var(--red); margin-bottom: 1.3rem; }
.svc h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.svc p { color: var(--txt-2); font-size: .93rem; margin: 0 0 1.3rem; }
.svc .lnk { margin-top: auto; }
.svc .tag {
  display: inline-block; margin-bottom: 1rem;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-2); padding: .2rem .6rem; border-radius: 99px;
}

/* bloques alternos texto+imagen */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__fig { order: -1; }
.split__fig { border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.split__fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__txt h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.1rem; }
.split__txt p { color: var(--txt-2); max-width: 60ch; }

.ticks { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: .75rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; font-size: .97rem; }
.ticks svg { width: 18px; height: 18px; fill: var(--red); flex: none; margin-top: .25rem; }

/* ============================================================
   GALERÍA
   ============================================================ */

.gal { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.gal figure { margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--ink); cursor: pointer; aspect-ratio: 4/5; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal figure:hover img { transform: scale(1.06); }
.gal figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 55%); pointer-events: none; }
.gal .play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(227,6,19,.9);
  display: grid; place-items: center; transition: transform .3s var(--ease);
}
.gal figure:hover .play { transform: translate(-50%,-50%) scale(1.12); }
.gal .play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.gal figcaption {
  position: absolute; z-index: 2; left: 0; bottom: 0; padding: 1rem 1.15rem;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--f-display); color: #fff;
}

.lb { position: fixed; inset: 0; z-index: 200; background: rgba(4,4,6,.95); backdrop-filter: blur(8px); display: none; place-items: center; padding: 2rem; }
.lb.is-open { display: grid; animation: fade .3s var(--ease); }
.lb__media { max-width: min(1000px, 92vw); max-height: 86vh; }
.lb__media img, .lb__media video { max-height: 86vh; width: auto; margin-inline: auto; border: 1px solid rgba(255,255,255,.15); }
.lb__x {
  position: absolute; top: 1.6rem; right: 1.8rem; width: 46px; height: 46px;
  background: none; border: 1px solid rgba(255,255,255,.25); border-radius: var(--r);
  color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: all .25s;
}
.lb__x:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   NOSOTROS
   ============================================================ */

/* Iban pegadas con una linea de 1px y se leian como un solo bloque.
   Separacion real y borde propio, igual que .svcs y .mats. */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 1.8vw, 1.6rem); }
.mv > div {
  background: var(--surface-2); padding: clamp(1.7rem,3vw,2.4rem);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
}
.mv h3 { font-size: 1.5rem; color: var(--red); margin-bottom: .7rem; letter-spacing: .08em; }
.mv p { margin: 0; font-size: .95rem; color: var(--txt-2); }

/* ============================================================
   FAQ
   ============================================================ */

/* El FAQ ocupaba 860px dentro de un contenedor de 1440: media pantalla
   vacia. Ahora el encabezado va a la izquierda y las preguntas a la
   derecha, y entre las dos llenan el ancho. */
.faq-wrap { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 981px) {
  .faq-wrap { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; }
  .faq-wrap .section__head { margin-bottom: 0; position: sticky; top: calc(var(--hdr-h) + 2rem); }
}
.faq { display: grid; gap: .7rem; }
.faq details { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); transition: border-color .25s; }
.faq details[open], .faq details:hover { border-color: var(--line-2); }
.faq summary {
  padding: 1.3rem 1.6rem; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.6rem; line-height: 1; flex: none; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--red); }
.faq details > div { padding: 0 1.6rem 1.4rem; color: var(--txt-2); font-size: .96rem; }

/* ============================================================
   CTA
   ============================================================ */

.cta { position: relative; overflow: hidden; background: #101014; color: #fff; text-align: center; padding: clamp(4rem, 8vw, 6.5rem) 0; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; color: transparent; }

/* Aquí el texto va centrado, así que el velo no puede ser un degradado lateral
   como en el phero: se cubre entero. Se conserva el tinte rojo en diagonal de
   la marca y un viñeteado que hunde los bordes y empuja la vista al centro. */
.cta::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(8,8,10,.42) 0%, rgba(8,8,10,.86) 100%),
    linear-gradient(135deg, rgba(26,2,5,.86) 0%, rgba(16,16,20,.8) 55%);
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); margin-bottom: 1rem; }
.cta p { color: #C6C6CF; max-width: 54ch; margin: 0 auto 2.2rem; }

/* ============================================================
   CONTACTO
   ============================================================ */

.cont { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.form { display: grid; gap: 1.1rem; max-width: 620px; }
.field label { display: block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: .85rem 1rem; color: var(--txt); font-family: var(--f-body); font-size: .96rem;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,6,19,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: .8rem; color: var(--muted); margin: 0; }

/* Antes era una rejilla con fondo gris y align-content:start: las filas
   se apilaban arriba y el fondo del contenedor asomaba abajo como un
   bloque gris muerto. Ahora cada fila es una tarjeta suelta y no hay
   contenedor que rellenar. */
.cont__info { display: grid; gap: .8rem; align-content: start; }
.cont__row {
  background: var(--surface-2); padding: 1.25rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  display: flex; gap: 1.1rem; align-items: center;
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.cont__row:hover { background: var(--surface); border-color: var(--line-2); }
/* enlaces reales: WhatsApp e Instagram se pueden pulsar */
a.cont__row:hover { border-color: var(--red); transform: translateX(4px); }
/* los datos que faltan se marcan como PENDIENTES, no como rotos */
.cont__row:has(.tbd) { border-style: dashed; background: transparent; }
.cont__row:has(.tbd) svg { opacity: .45; }
.cont__row svg { width: 22px; height: 22px; fill: var(--red); flex: none; margin-top: .25rem; }
.cont__row .k { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; }
.cont__row .v { font-family: var(--f-display); font-size: 1.28rem; font-weight: 600; }
.cont__row .v.tbd { color: var(--muted); font-size: .98rem; font-style: normal; letter-spacing: .04em; }

/* ============================================================
   FOOTER (siempre oscuro)
   ============================================================ */

.ftr { background: var(--ink); color: #F4F4F6; border-top: 1px solid rgba(255,255,255,.09); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.ftr__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.ftr__logo img { height: 44px; margin-bottom: 1.2rem; }
.ftr p { color: #7C7C89; font-size: .9rem; max-width: 38ch; margin: 0; }
.ftr h4 { font-size: 1rem; letter-spacing: .15em; margin-bottom: 1.1rem; color: #fff; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.ftr ul a { color: #7C7C89; font-size: .9rem; transition: color .25s; }
.ftr ul a:hover { color: var(--red); }
.ftr__btm { border-top: 1px solid rgba(255,255,255,.09); padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: #7C7C89; }

.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 30px rgba(37,211,102,.35);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.09); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   PROCESO DE BLINDAJE — escenario anclado + ficha de expediente
   ------------------------------------------------------------
   Maquetación: el vehículo arriba, más pequeño; abajo una ficha
   ancha con el número, el título y el detalle en dos columnas, y
   a la derecha las etapas que se van marcando.

   CLAVE DEL ENCUADRE: .proc__viewport es una CAJA EXPLÍCITA para
   el vehículo. La cámara se centra en ella, no en el hueco que
   deje el texto. Cambiar el tamaño del vehículo = cambiar la
   altura de esa caja, y nada más.

   ESTRATEGIA DE SEGURIDAD: por defecto esto es una lista estática
   y legible — camioneta entera y las 6 etapas en columna con sus
   párrafos. El modo cinematográfico se activa SOLO con
   html.anim-on y desde 981px.
   ============================================================ */

.proc { background: var(--bg); color: var(--txt); overflow: hidden; }
.proc__intro { padding-block: var(--pad-y) 0; }
.proc__stage { padding-block: clamp(2.5rem, 5vw, 4rem) var(--pad-y); }

.proc__viewport { position: relative; overflow: hidden; }
.proc__svg { width: 100%; max-width: 860px; height: auto; margin-inline: auto; display: block; }

/* --- zonas blindadas sobre el vector --- */
.pz__p {
  fill: var(--red);
  fill-opacity: .18;
  stroke: var(--red);
  stroke-width: 6;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.pz__p--glass { fill: #7FD4E8; fill-opacity: .17; stroke: #7FD4E8; }
.pz__p--line, .pz__p--arc, .pz__p--ring { fill: none; stroke-width: 10; }

/* --- ficha --- */
.proc__ficha { margin-top: 2.5rem; }
.proc__ficha-in { display: grid; gap: 2rem; }

.proc__bloque { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1rem; }
.proc__step-n {
  font-family: var(--f-display); font-weight: 700; color: var(--red);
  line-height: .82; font-size: clamp(3.4rem, 7vw, 5.6rem);
}
.proc__step h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: .55rem; }
.proc__step p { color: var(--txt-2); font-size: 1rem; margin: 0 0 1rem; max-width: 52ch; }
.proc__step + .proc__step { margin-top: 2.4rem; }

.proc__mat {
  display: inline-block; font-family: var(--f-display); font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--txt-2);
  border: 1px solid var(--line-2); border-radius: var(--r); padding: .34rem .78rem;
}

.proc__acum-k, .proc__cov-k {
  display: block; font-family: var(--f-display); font-size: .68rem;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}
.proc__acum-k { margin-bottom: .8rem; }

.proc__rail { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .55rem; }
.proc__dot {
  display: flex; align-items: baseline; gap: .55rem; color: var(--muted);
  font-family: var(--f-display); letter-spacing: .14em; text-transform: uppercase;
  transition: color .35s var(--ease);
}
.proc__dot b { font-size: .76rem; }
.proc__dot span { font-size: .74rem; }

.proc__cov b {
  font-family: var(--f-display); font-weight: 700; line-height: 1;
  font-size: clamp(2rem, 3.2vw, 2.8rem); color: var(--txt);
  font-variant-numeric: tabular-nums;
}
.proc__cov b i { font-style: normal; color: var(--red); font-size: .55em; }

/* el sello sólo tiene sentido como remate de la animación */
.proc__done {
  display: none; align-items: center; gap: .5rem; margin-top: 1.2rem;
  font-family: var(--f-display); font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--red); border: 1px solid var(--red); border-radius: var(--r);
  padding: .5rem .9rem;
}
.proc__done svg { width: 16px; height: 16px; fill: var(--red); flex: none; }


/* ============================================================
   Modo cinematográfico — sólo con GSAP vivo y pantalla ancha
   ============================================================ */
@media (min-width: 981px) {

  /* Al anclarse, el escenario pasa a position:fixed y se sale del flujo:
     el fondo de .proc deja de acompanarlo y se ve la seccion anterior
     por detras. Por eso lleva fondo propio. */
  html.anim-on .proc__stage {
    height: 100svh; min-height: 660px; padding: 0;
    display: grid; grid-template-rows: minmax(0, 1fr) auto;
    background: var(--bg);
  }

  /* LA CAJA DEL VEHÍCULO. Aquí se decide su tamaño y nada más. */
  html.anim-on .proc__viewport {
    grid-row: 1; align-self: center;
    padding-top: var(--hdr-h);
    height: min(48svh, 360px);
    perspective: 1600px;
    transition: padding-top .45s var(--ease), height .45s var(--ease);
  }
  /* Con la seccion anclada la cabecera se retira (lo hace js/anim.js) y
     esos 76px pasan al vehiculo: sin hueco muerto arriba y mas grande. */
  html.anim-on.proc-full .proc__viewport {
    padding-top: 0;
    height: min(56svh, 430px);
  }
  html.anim-on .proc__svg { width: 100%; max-width: none; height: 100%; margin: 0; }
  html.anim-on .proc__cam { will-change: transform; }

  html.anim-on .proc__ficha {
    grid-row: 2; margin: 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(to top, rgba(20,20,26,.92), rgba(8,8,10,.35));
    padding-block: clamp(1.6rem, 3.5vh, 2.6rem);
  }
  html.anim-on .proc__ficha-in {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, .85fr); gap: 3rem;
  }
  html.anim-on .proc__steps { position: relative; min-height: 13.5rem; }
  html.anim-on .proc__step { position: absolute; inset: 0 0 auto 0; margin: 0; opacity: 0; }
  html.anim-on .proc__cuerpo {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: 2rem;
  }
  html.anim-on .proc__acum { border-left: 1px solid var(--line); padding-left: 2rem; }
  html.anim-on .proc__dot.is-on { color: var(--txt); }
  html.anim-on .proc__dot.is-on b { color: var(--red); }
  html.anim-on .proc__done { display: inline-flex; opacity: 0; }

  /* portátiles bajos: la ficha se aprieta para no comerse el vehículo */
  @media (max-height: 820px) {
    html.anim-on .proc__step-n { font-size: 3.2rem; }
    html.anim-on .proc__step h3 { font-size: 1.55rem; }
    html.anim-on .proc__step p { font-size: .93rem; }
    html.anim-on .proc__steps { min-height: 11rem; }
    html.anim-on .proc__viewport { height: min(42svh, 300px); }
    html.anim-on.proc-full .proc__viewport { height: min(50svh, 360px); }
  }
  @media (max-height: 700px) {
    html.anim-on .proc__step p { display: none; }
    html.anim-on .proc__steps { min-height: 8rem; }
    html.anim-on .proc__rail,
    html.anim-on .proc__acum-k { display: none; }   /* el rotulo sin lista queda huerfano */
  }
}

/* ============================================================
   VEHICULO — camioneta dibujada (js la anima, build.py la genera)
   ------------------------------------------------------------
   La carroceria NO lleva relleno propio: lo aportan las bandas de
   reflejo recortadas contra la silueta (ver car_base en build.py).
   Por eso parece chapa y no una pegatina. Si algun dia se quitan
   esas bandas, hay que devolverle un fill a .v5-body.
   ============================================================ */
.v5-shadow  { fill: url(#v5Sh); }
.v5-contact { fill: #000; opacity: .8; }
.v5-body    { fill: #0B0B10; stroke: none; }
.v5-edge    { fill: none; stroke: rgba(255,255,255,.42); stroke-width: 1.5; }
.v5-flare   { fill: #17171E; stroke: rgba(255,255,255,.16); stroke-width: 1; }
.v5-glass   { fill: url(#v5Glass); stroke: none; }
.v5-sheen   { fill: url(#v5Sheen); stroke: none; }
.v5-frame   { fill: none; stroke: rgba(190,208,224,.55); stroke-width: 1.7; }
.v5-grille  { fill: #0C0C12; stroke: rgba(255,255,255,.26); stroke-width: .9; }
.v5-lamp    { fill: #48566A; stroke: rgba(255,255,255,.36); stroke-width: 1; }
.v5-lampin  { fill: #D8E4F0; opacity: .8; }
.v5-bumper  { fill: #17171F; stroke: rgba(255,255,255,.22); stroke-width: 1.1; }
.v5-skid    { fill: #2C2C36; stroke: rgba(255,255,255,.2); stroke-width: .8; }
.v5-hi      { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1.1; }
.v5-crease  { fill: none; stroke: rgba(0,0,0,.7); stroke-width: 1.6; }
.v5-cut     { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 1.3; }
.v5-bedrail { fill: #1E1E27; stroke: rgba(255,255,255,.3); stroke-width: 1.2; }
.v5-step    { fill: #15151B; stroke: rgba(255,255,255,.24); stroke-width: 1; }
.v5-trim    { fill: #34343F; stroke: rgba(255,255,255,.26); stroke-width: .9; }
.v5-mirror  { fill: #26262F; stroke: rgba(255,255,255,.3); stroke-width: 1; }
.v5-tire    { fill: url(#v5Tire); stroke: rgba(255,255,255,.3); stroke-width: 1.6; }
.v5-side    { fill: none; stroke: rgba(255,255,255,.10); stroke-width: 10; }
.v5-tread   { stroke: rgba(255,255,255,.15); stroke-width: 3.6; }
/* rin oscuro con los radios en metal claro: al reves no se ve girar */
.v5-rim     { fill: #0E0E14; stroke: rgba(255,255,255,.34); stroke-width: 1.4; }
.v5-spoke   { fill: none; stroke: url(#v5Rim); stroke-width: 11; stroke-linecap: round; }
.v5-hubring { fill: #4A4A58; stroke: rgba(255,255,255,.34); stroke-width: 1.2; }
.v5-nut     { fill: #9A9AAC; }
.v5-hub     { fill: #55556A; }

/* cada rueda gira sobre su propio centro; view-box hace que el
   transform-origin en px se mida en coordenadas del viewBox */
.rueda-rot  { transform-box: view-box; }

/* ---------- reveal (lo anima GSAP en js/anim.js) ----------
   .rv arranca oculto SOLO si hay JS. Si el JS falla, si GSAP no carga
   o si el usuario pidió menos movimiento, .no-anim lo muestra todo. */
.rv { opacity: 0; }

/* MISMO MOTIVO QUE .rv, PERO PARA EL HERO Y LAS CABECERAS INTERNAS:
   a estos bloques los anima js/anim.js con gsap.from(). Antes de que el
   script corra son visibles, y al arrancar GSAP los pone en opacity 0
   para entrarlos — se veia un parpadeo: el texto aparecia y se iba.
   Ocultandolos de entrada, el unico estado visible es el animado.
   La red de seguridad de abajo (.no-anim) y el <noscript> los devuelven
   si el JS o GSAP no llegan a correr. */
/* OJO: se apunta a los elementos que ANIMA anim.js, uno por uno.
   Con .hero__in > * se ocultaba tambien el <h1>, pero lo que se anima
   son los <span> de dentro: el h1 padre se quedaba en opacity 0 y el
   titular no aparecia nunca. */
.hero__in > .eyebrow,
.hero__in > p,
.hero__in > .hero__btns,
.hero h1 .l1,
.hero h1 .l2,
.phero h1,
.phero p { opacity: 0; }

html.no-anim .rv,
html.no-anim .rv * ,
html.no-anim .section__head > *,
html.no-anim .split__fig,
html.no-anim .split__txt > *,
html.no-anim .parts__fig,
html.no-anim .hero__in > *,
html.no-anim .hero h1 .l1,
html.no-anim .hero h1 .l2,
html.no-anim .phero h1,
html.no-anim .phero p,
html.no-anim .wa-float {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}


/* ============================================================
   MOVIL — objetivos tactiles y minimos de texto
   ------------------------------------------------------------
   Auditado a 360 / 375 / 390 px. Dos problemas reales:
     · los enlaces del pie median 17px de alto y los "Ver mas" 25:
       imposibles de tocar con el dedo sin fallar. Minimo comodo 44px.
     · varios rotulos bajaban de 12px. En mayusculas con tracking se
       leen, pero en pantalla pequena conviene subirlos un punto.
   ============================================================ */
/* La seccion del proceso se OCULTA en movil por decision del cliente:
   sin anclaje ni camara se queda en una lista larga que alarga mucho la
   pagina. Las 10 partes blindadas siguen publicadas en
   blindaje-automotriz.html, asi que no se pierde contenido del sitio.
   display:none tambien evita que el navegador descargue y pinte el SVG. */
@media (max-width: 980px) {
  .proc { display: none; }
}

@media (max-width: 860px) {
  .ftr ul { gap: .1rem; }
  .ftr ul a { display: block; padding: .62rem 0; font-size: .95rem; }
  .lnk { padding: .6rem 0; }
  .hdr__logo { display: inline-block; padding: .3rem 0; }
  .cont__row { padding: 1.1rem 1.2rem; }

  .tag,
  .svc .tag,
  .proc__acum-k,
  .proc__cov-k { font-size: .76rem; }
  .lv-specs .k,
  .lv-threat .k,
  .cont__row .k { font-size: .78rem; }

  /* iOS Safari hace ZOOM automatico al enfocar un campo con
     font-size < 16px. A 15.36px se disparaba en cada campo del
     formulario: la pagina saltaba y el usuario perdia el contexto. */
  .field input, .field select, .field textarea { font-size: 16px; }
  .proc__mat,
  .proc__dot span,
  .proc__dot b { font-size: .8rem; }
  .field label { font-size: .78rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .nav > ul { gap: 1.25rem; }
  .nav a, .nav .nav__btn { font-size: .94rem; }
}

@media (max-width: 980px) {
  .lv-panel.is-active, .parts, .split, .cont, .mv { grid-template-columns: 1fr; }
  .split--rev .split__fig { order: 0; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .form { max-width: none; }
  .nav {
    position: fixed; inset: 0 0 auto 0;
    background: rgba(8,8,10,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.09);
    padding: 5.5rem 1.5rem 2rem;
    transform: translateY(-102%);
    transition: transform .45s var(--ease);
    z-index: -1;
    max-height: 100svh; overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.09); }
  .nav a, .nav .nav__btn { padding: 1rem 0; font-size: 1.1rem; width: 100%; justify-content: space-between; }
  .nav a::after, .nav .nav__btn::after { display: none; }
  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; border: 0; box-shadow: none; padding: 0 0 .6rem 1rem;
    min-width: 0; display: none;
  }
  .nav li.is-open .nav__sub { display: block; }
  .nav__sub a { font-size: .98rem; padding: .6rem 0; color: #7C7C89; }
  .burger { display: block; }
  .hdr__cta .btn { display: none; }
  .hero { min-height: auto; padding: 7rem 0 3.5rem; }
  .hero__bg::after { background: linear-gradient(to right, rgba(8,8,10,.9), rgba(8,8,10,.7)), linear-gradient(to top, var(--ink) 3%, transparent 50%); }
  .hero__btns .btn { flex: 1 1 100%; justify-content: center; }
  .scrollcue { display: none; }
  .ftr__grid { grid-template-columns: 1fr; }
  .lv-specs div { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .lv-specs .v { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1 !important; transform: none !important; }
}
