/* =========================================================================
   SEBASTIÁN CUEVA — Sistema de estilos de marca
   Basado en el Manual de Marca (MARCA-SC.pdf)
   Único archivo de estilos del sitio. Sin frameworks ni plantillas.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TIPOGRAFÍA — autoalojada
   Primaria  : Faculty Glyphic  → títulos y elementos destacados
   Secundaria: Noto Sans        → textos y elementos que requieren legibilidad
   ------------------------------------------------------------------------- */
@font-face {
  font-family: "Faculty Glyphic";
  src: url("../fonts/facultyglyphic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/notosans-var.woff2") format("woff2-variations"),
       url("../fonts/notosans-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62.5% 100%;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------------------
   2. TOKENS DE MARCA
   ------------------------------------------------------------------------- */
:root {
  /* Paleta oficial */
  --navy:        #141923;  /* Midnight Navy  — profundidad, estructura   */
  --ice:         #DCFFFF;  /* Ice Cyan       — claridad, simplicidad     */
  --cyan:        #60EAF7;  /* Electric Cyan  — curiosidad, experimentación */
  --red:         #D22828;  /* Crimson Red    — acción y pasión           */
  --sky:         #60BBF7;  /* Sky Blue       — comunicación, sensibilidad */

  /* Derivados de superficie (mezclas del navy, no colores nuevos) */
  --surface:     #1b2230;
  --surface-2:   #222b3b;
  --line:        rgba(220, 255, 255, 0.12);
  --line-strong: rgba(96, 234, 247, 0.35);

  /* Texto */
  --text:        var(--ice);
  --text-muted:  rgba(220, 255, 255, 0.68);
  --text-faint:  rgba(220, 255, 255, 0.45);

  /* Tipografía */
  --font-title: "Faculty Glyphic", Georgia, serif;
  --font-body:  "Noto Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Escala */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.10rem);
  --step-1:  clamp(1.22rem, 1.13rem + 0.42vw, 1.48rem);
  --step-2:  clamp(1.48rem, 1.32rem + 0.80vw, 2.00rem);
  --step-3:  clamp(1.80rem, 1.52rem + 1.40vw, 2.70rem);
  --step-4:  clamp(2.20rem, 1.70rem + 2.50vw, 3.80rem);

  /* Ritmo */
  --gutter: 1.25rem;
  --max:    1180px;
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------------------------------------------------------------
   3. BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Trama de nodos: motivo gráfico del isotipo, muy sutil, sobre el fondo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(96, 234, 247, 0.10), transparent 42%),
    radial-gradient(circle at 88% 8%,  rgba(96, 187, 247, 0.08), transparent 38%),
    radial-gradient(circle at 70% 92%, rgba(210, 40, 40, 0.07), transparent 40%);
}

body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover, a:focus-visible { color: var(--ice); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--cyan); color: var(--navy); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan);
  color: var(--navy);
  padding: 0.7em 1.2em;
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------------------- */
.contenedor {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.seccion { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.seccion--ajustada { padding-block: clamp(2.5rem, 5vw, 4rem); }

.seccion--alterna {
  background: linear-gradient(180deg, transparent, rgba(27, 34, 48, 0.75) 12%, rgba(27, 34, 48, 0.75) 88%, transparent);
}

/* Encabezado de sección con el motivo de nodos crecientes */
.seccion-titulo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.seccion-titulo h2 { margin: 0; }

.seccion-titulo .nodos { flex-shrink: 0; }

.seccion-intro {
  color: var(--text-muted);
  max-width: 62ch;
  margin-top: -1.2rem;
  margin-bottom: 2.4rem;
}

/* Nodos: curiosidad → exploración → aprendizaje → habilidad → creación */
.nodos {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nodos span {
  display: block;
  border-radius: 50%;
  background: var(--cyan);
}

.nodos span:nth-child(1) { width: 4px;  height: 4px;  opacity: 0.45; }
.nodos span:nth-child(2) { width: 6px;  height: 6px;  opacity: 0.60; }
.nodos span:nth-child(3) { width: 8px;  height: 8px;  opacity: 0.75; }
.nodos span:nth-child(4) { width: 11px; height: 11px; opacity: 0.88; }
.nodos span:nth-child(5) { width: 14px; height: 14px; opacity: 1; }

/* -------------------------------------------------------------------------
   5. CABECERA Y NAVEGACIÓN
   ------------------------------------------------------------------------- */
.cabecera {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 25, 35, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.cabecera .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.marca-logo { display: flex; align-items: center; }
.marca-logo img { height: 50px; width: auto; }

@media (max-width: 420px) {
  .marca-logo img { height: 42px; }
}

.nav-lista {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-lista a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-lista a:hover { color: var(--ice); background: rgba(96, 234, 247, 0.08); }

.nav-lista a[aria-current="page"] {
  color: var(--cyan);
  background: rgba(96, 234, 247, 0.10);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ice);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.nav-toggle svg { display: block; width: 22px; height: 22px; }

@media (max-width: 800px) {
  .nav-toggle { display: block; }

  .nav-lista {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.95);
    display: none;
  }

  .nav-lista.abierto { display: flex; }
  .nav-lista a { padding: 0.85rem 0.6rem; font-size: var(--step-0); }
}

/* -------------------------------------------------------------------------
   6. PORTADA / HERO
   ------------------------------------------------------------------------- */
.portada {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(82vh, 720px);
  padding-block: clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
}

.portada--compacta { min-height: auto; }

.portada__fondo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.30;
}

.portada::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, var(--navy) 18%, rgba(20, 25, 35, 0.72) 58%, rgba(20, 25, 35, 0.90));
}

.portada .contenedor { position: relative; z-index: 2; }

.portada__contenido { max-width: 46rem; }

.etiqueta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.1rem;
}

.etiqueta::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.portada h1 { margin-bottom: 0.45em; }
.portada h1 em { font-style: normal; color: var(--cyan); }

.portada__lema {
  font-size: var(--step-1);
  color: var(--text-muted);
  max-width: 40ch;
}

.cita {
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--red);
  color: var(--text-muted);
  font-size: var(--step-0);
  max-width: 44ch;
}

.cita cite {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: var(--step--1);
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

.portada__acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

/* -------------------------------------------------------------------------
   7. BOTONES
   ------------------------------------------------------------------------- */
.boton {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.boton--primario { background: var(--cyan); color: var(--navy); }
.boton--primario:hover { background: var(--ice); color: var(--navy); transform: translateY(-2px); }

.boton--accion { background: var(--red); color: #fff; }
.boton--accion:hover { background: #e63b3b; color: #fff; transform: translateY(-2px); }

.boton--linea { border-color: var(--line-strong); color: var(--ice); }
.boton--linea:hover { border-color: var(--cyan); background: rgba(96, 234, 247, 0.10); color: var(--ice); transform: translateY(-2px); }

/* -------------------------------------------------------------------------
   8. REJILLAS Y TARJETAS
   ------------------------------------------------------------------------- */
.rejilla {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.rejilla--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.rejilla--estrecha { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }

.tarjeta {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
  height: 100%;
}

a.tarjeta { color: inherit; }

.tarjeta:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.9);
}

.tarjeta__medio {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  overflow: hidden;
}

.tarjeta__medio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.tarjeta:hover .tarjeta__medio img { transform: scale(1.05); }

.tarjeta__medio--contener { position: relative; }
.tarjeta__medio--contener img {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  width: calc(100% - 3.2rem);
  height: calc(100% - 3.2rem);
  object-fit: contain;
}
.tarjeta:hover .tarjeta__medio--contener img { transform: scale(1.03); }

.tarjeta__cuerpo {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.tarjeta__cuerpo h3 { margin: 0; font-size: var(--step-1); }

.tarjeta__meta {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

.tarjeta__cuerpo p { color: var(--text-muted); font-size: var(--step--1); margin: 0; }

.tarjeta__pie {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* Tarjeta de proyecto pendiente de contenido */
.tarjeta--pendiente { border-style: dashed; border-color: rgba(220, 255, 255, 0.22); }
.tarjeta--pendiente:hover { transform: none; box-shadow: none; }
.tarjeta--pendiente .tarjeta__medio {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, var(--surface-2), var(--surface-2) 12px, var(--surface) 12px, var(--surface) 24px);
  color: var(--text-faint);
}
.tarjeta--pendiente .tarjeta__medio span {
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.tarjeta--pendiente .tarjeta__meta { color: var(--red); }

/* -------------------------------------------------------------------------
   9. CICLO DE APRENDIZAJE (motivo del isotipo)
   ------------------------------------------------------------------------- */
.ciclo {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  counter-reset: paso;
}

.ciclo li {
  position: relative;
  padding: 1.4rem 1.2rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ciclo li::before {
  counter-increment: paso;
  content: "0" counter(paso);
  display: block;
  font-family: var(--font-title);
  font-size: var(--step-0);
  color: var(--red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.ciclo h3 { font-size: var(--step-0); margin-bottom: 0.3rem; color: var(--cyan); }
.ciclo p { font-size: var(--step--1); color: var(--text-muted); margin: 0; }

/* -------------------------------------------------------------------------
   10. VALORES / LISTA DE PRINCIPIOS
   ------------------------------------------------------------------------- */
.principios { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

.principios li {
  padding-left: 1.1rem;
  border-left: 2px solid var(--line-strong);
}

.principios h3 { font-size: var(--step-1); margin-bottom: 0.25rem; }
.principios p { color: var(--text-muted); font-size: var(--step--1); margin: 0; }

/* -------------------------------------------------------------------------
   11. TEXTO LARGO
   ------------------------------------------------------------------------- */
.prosa { max-width: 68ch; color: var(--text-muted); }
.prosa p { text-align: justify; hyphens: auto; }
.prosa strong { color: var(--ice); font-weight: 600; }

.datos {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.datos li {
  padding: 1.2rem 1.3rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.datos strong {
  display: block;
  font-family: var(--font-title);
  font-size: var(--step-1);
  color: var(--cyan);
  font-weight: 400;
}

.datos span { font-size: var(--step--1); color: var(--text-muted); }

/* -------------------------------------------------------------------------
   12. VIDEO
   ------------------------------------------------------------------------- */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video--limitado { max-width: 900px; margin-inline: auto; }

/* -------------------------------------------------------------------------
   13. GALERÍA
   ------------------------------------------------------------------------- */
.galeria {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
}

.galeria__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.galeria__item > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.45s var(--ease);
}

.galeria__item:hover > img { transform: scale(1.04); }

.galeria__item .video { border: 0; border-radius: 0; height: 340px; aspect-ratio: auto; }

.galeria__pie {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(20, 25, 35, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}

.galeria__item:hover .galeria__pie,
.galeria__item:focus-within .galeria__pie { transform: translateY(0); }

.galeria__pie h3 { font-size: var(--step-0); margin: 0; color: var(--cyan); }
.galeria__pie p { margin: 0.2rem 0 0; font-size: var(--step--1); color: var(--text-muted); }

@media (hover: none) {
  .galeria__pie { transform: translateY(0); background: linear-gradient(to top, rgba(20, 25, 35, 0.96), rgba(20,25,35,0.25)); }
}

/* Visor de imagen */
.visor {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(10, 13, 19, 0.94);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.visor.abierto { display: grid; }

.visor img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 1);
}

.visor__cerrar {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--ice);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.visor__cerrar:hover { border-color: var(--cyan); color: var(--cyan); }

/* -------------------------------------------------------------------------
   14. REDES SOCIALES
   ------------------------------------------------------------------------- */
.redes {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
}

.redes a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}

.redes a:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  color: var(--ice);
}

.redes img { width: 46px; height: 46px; object-fit: contain; }
.redes svg { width: 34px; height: 34px; fill: currentColor; color: var(--cyan); }
.redes a:hover svg { color: var(--ice); }

/* -------------------------------------------------------------------------
   15. BOTONES FLOTANTES DE CONTACTO
   ------------------------------------------------------------------------- */
.flotantes {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flotante {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.95);
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
}

.flotante svg { width: 26px; height: 26px; fill: var(--cyan); }
.flotante img { width: 30px; height: 30px; object-fit: contain; }
.flotante:hover { transform: scale(1.1); border-color: var(--cyan); background: var(--surface-2); }
.flotante--accion svg { fill: var(--red); }
.flotante--accion:hover { border-color: var(--red); }

/* -------------------------------------------------------------------------
   16. LLAMADA FINAL
   ------------------------------------------------------------------------- */
.llamada {
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4.2rem) var(--gutter);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.llamada h2 { margin-bottom: 0.4em; }
.llamada p { color: var(--text-muted); max-width: 52ch; margin-inline: auto; }
.llamada .portada__acciones { justify-content: center; margin-top: 1.8rem; }

/* -------------------------------------------------------------------------
   17. PIE
   ------------------------------------------------------------------------- */
.pie {
  border-top: 1px solid var(--line);
  padding-block: 2.6rem;
  margin-top: 1rem;
}

.pie .contenedor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.pie img { height: 58px; width: auto; }

.pie__texto { font-size: var(--step--1); color: var(--text-faint); }
.pie__texto strong { display: block; color: var(--text-muted); font-weight: 600; }

.pie__enlaces { display: flex; flex-wrap: wrap; gap: 1.1rem; font-size: var(--step--1); }
.pie__enlaces a { color: var(--text-muted); }
.pie__enlaces a:hover { color: var(--cyan); }

/* -------------------------------------------------------------------------
   18. ACCESIBILIDAD / MOVIMIENTO
   ------------------------------------------------------------------------- */
.solo-lectores {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
