/* ==========================================================================
   Skinread — nuve.css  (concept landing page; independent of site.css)
   ========================================================================== */

/* ----------------------------------- Tokens ----------------------------- */
:root {
  /* neutrals */
  --ink: #141414;
  --ink-2: #3a3a3a;
  --muted: #6b6b6b;
  --muted-2: #9a9a9a;
  --paper: #ffffff;
  --page: #eceae6;
  --card: #ffffff;
  --line: rgba(20, 20, 20, 0.10);
  --line-2: rgba(20, 20, 20, 0.16);

  /* primary accent: lavender */
  --lav: #8e72db;
  --lav-600: #7a5fd0;
  --lav-300: #c8b6f2;
  --lav-50: #efeafb;

  /* deep surface + single support pop */
  --green: #16401d;
  --green-700: #1d5026;
  --butter: #f4d11c;

  /* type */
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --text: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --step--1: clamp(0.8rem, 0.78rem + 0.1vw, 0.85rem);
  --step-0: 1rem;
  --step-1: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  --step-2: clamp(1.25rem, 1.15rem + 0.5vw, 1.55rem);
  --step-3: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-4: clamp(1.9rem, 1.6rem + 1.6vw, 2.6rem);
  --step-5: clamp(2.4rem, 1.9rem + 2.4vw, 3.4rem);
  --step-6: clamp(2.9rem, 2.1rem + 3.6vw, 4.4rem);
  --step-7: clamp(3.3rem, 2.3rem + 5.4vw, 5.8rem);

  /* radii / shadow / motion */
  --r-window: clamp(20px, 2vw, 34px);
  --r-card: 24px;
  --r-pill: 999px;
  --r-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 20, 0.05), 0 4px 12px rgba(20, 20, 20, 0.05);
  --shadow: 0 2px 6px rgba(20, 20, 20, 0.06), 0 16px 40px rgba(20, 20, 20, 0.10);
  --shadow-lg: 0 8px 24px rgba(20, 20, 20, 0.14), 0 30px 70px rgba(20, 20, 20, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1240px;
  --pad: clamp(1.1rem, 3.5vw, 2.75rem);
}

/* ----------------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--text);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--page);
  padding: clamp(8px, 1vw, 14px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
:focus-visible { outline: 2.5px solid var(--lav); outline-offset: 3px; border-radius: 6px; }

/* --------------------------------- Window ------------------------------- */
.window {
  max-width: 1480px;
  margin-inline: auto;
  background: var(--paper);
  border-radius: var(--r-window);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.04);
}

/* --------------------------------- Helpers ------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  font-size: var(--step--1); font-weight: 600; box-shadow: var(--shadow-sm);
}
.chip__grid { width: 14px; height: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.chip__grid i { background: var(--ink); border-radius: 1px; }
.eyebrow { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.85rem 1.5rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: var(--step-0); line-height: 1;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--lav { background: var(--lav-300); color: var(--ink); }
.btn--lav:hover { background: var(--lav); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--butter { background: var(--butter); color: #2a2300; }
.btn--butter:hover { background: #ffe04d; }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--block { width: 100%; }

/* ---------------------------------- Nav --------------------------------- */
.nav { position: fixed; top: clamp(10px, 1.4vw, 18px); left: 50%; transform: translateX(-50%); z-index: 200; width: min(1180px, calc(100% - 28px)); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(18, 18, 18, 0.92); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: var(--r-pill); padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  transition: box-shadow 0.25s var(--ease);
}
.nav.is-stuck .nav__inner { box-shadow: var(--shadow-lg); }
.nav__brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--display); font-weight: 700; font-size: var(--step-1); letter-spacing: -0.02em; }
.nav__spark { width: 18px; height: 18px; color: var(--lav-300); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links a { font-size: var(--step--1); font-weight: 500; color: rgba(255, 255, 255, 0.66); transition: color 0.18s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; }
.nav__cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--lav-300); color: var(--ink); min-height: 44px; padding: 0 1.15rem; border-radius: var(--r-pill); font-weight: 600; font-size: var(--step--1); }
.nav__cta:hover { background: #fff; }
.nav__dot { width: 12px; height: 12px; border-radius: 4px; background: var(--lav); }
.nav__toggle { display: none; }

/* ---------------------------------- Hero -------------------------------- */
.hero { --scan: 0.9; padding-top: clamp(5.5rem, 9vw, 7.5rem); padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1.25fr 0.8fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0.9rem 0.4rem 0.5rem; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: var(--step--1); font-weight: 500; box-shadow: var(--shadow-sm); }
.hero__avatars { display: inline-flex; }
.hero__avatars span { width: 26px; height: 26px; border-radius: var(--r-pill); border: 2px solid var(--paper); margin-left: -10px; }
.hero__avatars span:first-child { margin-left: 0; }
.hero__title { font-size: var(--step-7); margin-top: 1.25rem; }
.hero__sub { margin-top: 1.25rem; color: var(--muted); font-size: var(--step-1); max-width: 32ch; }
.hero__cta { margin-top: 1.75rem; }

.hero__stage { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-card); overflow: hidden; background: #111; box-shadow: var(--shadow); }
.hero__stage img { width: 100%; height: 100%; object-fit: cover; }
.scan {
  position: absolute; width: 23%; aspect-ratio: 1 / 1; border: 1.5px solid rgba(255, 255, 255, 0.95);
  transform: scale(var(--scan)); transform-origin: center; transition: transform 0.12s linear;
  display: flex; align-items: flex-end; padding: 6px;
}
.scan::before { content: ""; position: absolute; top: 6px; left: 6px; width: 7px; height: 7px; background: #fff; }
.scan span { font-size: clamp(0.55rem, 0.9vw, 0.72rem); font-weight: 600; color: #fff; line-height: 1.05; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }
.scan--a { top: 22%; left: 52%; }
.scan--b { top: 50%; left: 60%; }
.scan--c { top: 58%; left: 30%; }

.hero__stats { display: flex; flex-direction: column; gap: clamp(1.25rem, 2.5vw, 2rem); }
.stat { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 0.9rem; }
.stat__ico { width: 44px; height: 44px; color: var(--muted-2); }
.stat__num { font-family: var(--display); font-weight: 700; font-size: var(--step-4); letter-spacing: -0.03em; line-height: 1; }
.stat__lbl { color: var(--muted); font-size: var(--step--1); }

/* ------------------------------- Reveal block --------------------------- */
.reveal { position: relative; padding-block: clamp(5rem, 11vw, 9rem); overflow: hidden; }
.reveal__text { max-width: 16ch; margin-inline: auto; text-align: center; font-family: var(--display); font-weight: 700; font-size: var(--step-6); line-height: 1.06; letter-spacing: -0.03em; max-width: 22ch; }
.reveal__w { color: var(--ink); transition: color 0.3s var(--ease); }
.js .reveal__w { color: #d6d4d0; }
.js .reveal__w.on { color: var(--ink); }
.tagpill {
  position: absolute; display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.95rem; border-radius: var(--r-pill); background: var(--paper);
  box-shadow: var(--shadow); font-weight: 600; font-size: var(--step--1);
  animation: floaty 6s var(--ease) infinite alternate;
}
.tagpill svg { width: 16px; height: 16px; }
.tagpill--a { top: 12%; left: 16%; animation-delay: -0.4s; }
.tagpill--b { top: 9%; right: 12%; animation-delay: -2.3s; }
.tagpill--c { top: 44%; left: 7%; animation-delay: -1.3s; }
.tagpill--d { bottom: 16%; left: 40%; animation-delay: -3s; }
.tagpill--e { bottom: 11%; right: 15%; animation-delay: -1.8s; }
@keyframes floaty { from { transform: translateY(7px); } to { transform: translateY(-9px); } }

/* ------------------------------- Face Scan ------------------------------ */
.facescan__head { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 1.5rem 3rem; align-items: end; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.facescan__title { font-size: var(--step-5); }
.facescan__sub { color: var(--muted); font-size: var(--step-1); align-self: end; }
.facescan__media { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 21 / 9; box-shadow: var(--shadow); }
.facescan__img { width: 100%; height: 100%; object-fit: cover; }
image-slot { position: relative; display: block; width: 100%; height: 100%; cursor: pointer; }
image-slot img { width: 100%; height: 100%; object-fit: cover; }
.image-slot__hint {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  padding: 0.5rem 1rem; border-radius: var(--r-pill); background: rgba(20, 20, 20, 0.7); color: #fff;
  font-size: var(--step--1); font-weight: 600; opacity: 0; transition: opacity 0.2s var(--ease);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); pointer-events: none;
}
image-slot:hover .image-slot__hint, image-slot:focus-visible .image-slot__hint { opacity: 1; }
image-slot.is-dragover { outline: 3px dashed var(--lav); outline-offset: -8px; }
.facescan__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem 1.5rem 1.5rem; color: #fff; font-weight: 600; text-align: center; font-size: var(--step-1); background: linear-gradient(transparent, rgba(20, 20, 20, 0.55)); }

/* ------------------------------- Features ------------------------------- */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.feature { background: var(--page); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(1.5rem, 2.5vw, 2.25rem); display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.feature__ico { width: 56px; height: 56px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--ink); }
.feature__ico svg { width: 28px; height: 28px; }
.feature__ico--am { background: #f3c98a; }
.feature__ico--star { background: #e7dcae; }
.feature__ico--rec { background: #a9d8c4; }
.feature h3 { font-size: var(--step-2); }

/* --------------------------------- Device ------------------------------- */
.device { position: relative; width: 100%; max-width: 280px; aspect-ratio: 280 / 580; background: #0c0c0c; border-radius: 38px; padding: 9px; box-shadow: var(--shadow-lg); }
.device__screen { position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #f4f4f5; }
.device__island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 78px; height: 22px; background: #0c0c0c; border-radius: 12px; z-index: 6; }
.device__screens { position: relative; width: 100%; height: 100%; }
.screen { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); }
.device[data-active="0"] .screen[data-screen="0"],
.device[data-active="1"] .screen[data-screen="1"],
.device[data-active="2"] .screen[data-screen="2"] { opacity: 1; visibility: visible; }
/* default (no data-active / single-screen devices) */
.device:not([data-active]) .screen[data-screen="0"] { opacity: 1; visibility: visible; }
.screen img { width: 100%; height: 100%; object-fit: cover; }

/* glass segmented control */
.segmented {
  position: absolute; top: 44px; left: 50%; transform: translateX(-50%); z-index: 7;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; width: 76%;
  padding: 4px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.35); border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.18);
}
.segmented button { display: grid; place-items: center; height: 34px; border-radius: var(--r-pill); color: #2a2a2a; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.segmented button svg { width: 18px; height: 18px; }
.segmented button[aria-selected="true"] { background: #fff; box-shadow: var(--shadow-sm); color: #111; }

/* screen content */
.scr-dark { background: #0e0e10; color: #fff; padding: 58px 16px 16px; display: flex; flex-direction: column; gap: 14px; }
.scr-dark__greet { font-size: 0.72rem; color: rgba(255, 255, 255, 0.55); }
.scr-dark__name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.scr-score { display: flex; align-items: center; gap: 12px; }
.ring { --v: 90; position: relative; width: 64px; height: 64px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: none; background: conic-gradient(var(--lav-300) calc(var(--v) * 1%), rgba(255, 255, 255, 0.14) 0); }
.ring::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #0e0e10; }
.ring b { position: relative; font-family: var(--display); font-size: 1.05rem; line-height: 1; }
.ring small { position: relative; font-size: 0.5rem; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.5); }
.scr-score__txt b { font-family: var(--display); font-size: 0.95rem; line-height: 1.1; display: block; }
.scr-score__txt span { font-size: 0.66rem; color: rgba(255, 255, 255, 0.55); }
.scr-routine { background: #fff; color: var(--ink); border-radius: 18px; margin: 4px -16px -16px; padding: 16px; flex: 1; }
.scr-routine h4 { font-family: var(--display); font-size: 0.85rem; text-align: center; margin-bottom: 12px; }
.routine-row { display: grid; grid-template-columns: 30px 1fr 20px; align-items: center; gap: 10px; padding: 7px 0; }
.routine-row img { width: 30px; height: 30px; border-radius: 9px; }
.routine-row b { font-size: 0.78rem; }
.routine-row span { display: block; font-size: 0.62rem; color: var(--muted); }
.routine-row .tick { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-2); }
.routine-row .tick.done { background: #2f9e57; border-color: #2f9e57; }

.scr-photo { position: relative; height: 100%; }
.scr-photo img { width: 100%; height: 100%; object-fit: cover; }
.scr-topbar { position: absolute; top: 44px; left: 12px; right: 12px; z-index: 5; display: flex; justify-content: center; }
.scr-topbar span { background: rgba(20,20,20,.8); color: #fff; font-size: 0.62rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.scr-tag { position: absolute; background: #fff; font-size: 0.62rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.scr-health { position: absolute; top: 90px; right: 14px; background: #fff; color: #1d7a44; font-size: 0.64rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; box-shadow: var(--shadow); }
.scr-tips { position: absolute; left: 12px; right: 12px; bottom: 12px; background: #fff; border-radius: 16px; padding: 12px; box-shadow: var(--shadow); }
.scr-tips b { display: flex; align-items: center; gap: 6px; font-family: var(--display); font-size: 0.78rem; }
.scr-tips p { font-size: 0.64rem; color: var(--muted); margin-top: 5px; }

/* ------------------------------ Testimonials ---------------------------- */
.tm__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.tm__title { font-size: var(--step-6); }
.tm__sub { color: var(--muted); font-size: var(--step-1); max-width: 34ch; margin-top: 1rem; }
.tm__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; height: 560px; overflow: hidden; -webkit-mask-image: linear-gradient(transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(transparent, #000 12%, #000 88%, transparent); }
.tm__col { display: flex; flex-direction: column; gap: 1.25rem; animation: tmup 34s linear infinite; }
.tm__col--2 { animation-duration: 44s; }
.tm__col--3 { animation-duration: 38s; }
.tm__cols:hover .tm__col { animation-play-state: paused; }
@keyframes tmup { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.tm-card { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 1.4rem; box-shadow: var(--shadow-sm); }
.tm-card__top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.85rem; }
.tm-av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 0.85rem; flex: none; }
.tm-card__name { font-weight: 600; font-size: var(--step-0); }
.tm-card__handle { color: var(--muted); font-size: var(--step--1); }
.tm-card p { color: var(--ink-2); font-size: var(--step-0); }

/* -------------------------------- CTA band ------------------------------ */
.ctaband { padding-block: clamp(1rem, 3vw, 2rem); }
.ctaband__panel { position: relative; overflow: hidden; background: var(--green); color: #fff; border-radius: var(--r-card); padding: clamp(2.25rem, 5vw, 4.5rem); }
.ctaband__panel::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 26px); pointer-events: none; }
.ctaband h2 { font-size: var(--step-6); max-width: 16ch; }
.ctaband p { margin-top: 1.25rem; color: rgba(255, 255, 255, 0.78); font-size: var(--step-1); max-width: 44ch; }
.ctaband .btn { margin-top: 2rem; }

/* ------------------------------- App showcase --------------------------- */
.showcase { text-align: center; }
.showcase__grid { background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 44px 44px; border-radius: var(--r-card); padding: clamp(2rem, 5vw, 4rem); margin-top: 2.5rem; display: grid; place-items: center; -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 55%, transparent); mask-image: radial-gradient(120% 90% at 50% 40%, #000 55%, transparent); }
.showcase .device { max-width: 300px; }

/* --------------------------------- Footer ------------------------------- */
.footer { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2rem; }
.footer__brand { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--display); font-weight: 700; font-size: var(--step-2); }
.footer__blurb { margin-top: 1rem; color: var(--muted); max-width: 34ch; font-size: var(--step--1); }
.footer__col h4 { font-family: var(--text); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1rem; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a { color: var(--ink-2); font-size: var(--step-0); }
.footer__col a:hover { color: var(--lav-600); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: var(--step--1); }

/* ------------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 1.5rem 2.5rem; }
  .features__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .facescan__head { grid-template-columns: 1fr; }
  .facescan__media { aspect-ratio: 16 / 10; }
  .tm__cols { grid-template-columns: 1fr 1fr; height: 520px; }
  .tm__col--3 { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav__links { display: none; }
  .hero__stats { flex-direction: column; }
  .tm__cols { grid-template-columns: 1fr; }
  .tm__col--2 { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 1.5rem; }
  .facescan__media { aspect-ratio: 4 / 5; }
}

/* ----------------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tm__col, .tagpill { animation: none !important; }
  .scan { transform: none !important; }
  *, *::before, *::after { transition-duration: 0.001ms !important; }
}
