/* ===========================================================
   PawTricks.app — landing page styles
   Design tokens mirror the app (PawColors / PawShapes / PawSpacing)
   =========================================================== */

:root {
  /* Brand */
  --paw-orange: #FF9F43;
  --paw-orange-deep: #F58220;
  --paw-orange-soft: #FFF1E7;
  --mint: #4ECDC4;
  --mint-soft: #E3F7F5;
  --blue: #5DADE2;
  --blue-soft: #E7F2FA;
  --success: #2ECC71;
  --warning: #F1C40F;

  /* Accent (tweakable) */
  --accent: var(--paw-orange);
  --accent-deep: var(--paw-orange-deep);
  --accent-soft: var(--paw-orange-soft);

  /* Surfaces */
  --bg: #FFF8F2;
  --bg-warm: #FFF1E7;
  --surface: #FFFFFF;
  --outline: #E6DAD1;

  /* Text */
  --ink: #2D3436;
  --ink-soft: #636E72;
  --ink-faint: #9AA3A6;

  /* Shape */
  --r-card: 24px;
  --r-card-lg: 32px;
  --r-pill: 999px;
  --r-chip: 16px;

  /* Shadows — soft, warm */
  --sh-sm: 0 2px 8px rgba(45, 52, 54, 0.06);
  --sh-md: 0 10px 30px rgba(214, 130, 60, 0.12);
  --sh-lg: 0 24px 60px rgba(214, 130, 60, 0.18);
  --sh-card: 0 12px 36px rgba(45, 52, 54, 0.08);

  /* Type */
  --font: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; margin: 0; font-weight: 900; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.section { padding: 96px 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); margin: 18px 0 16px; }
.section-head p { font-size: 19px; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 800; font-size: 17px;
  padding: 16px 28px; border-radius: var(--r-pill);
  border: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: var(--sh-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 2px solid var(--outline); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); }

/* ---------- Store badges ---------- */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 12px 22px 12px 18px; border-radius: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: var(--sh-sm);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.store-badge svg { width: 28px; height: 28px; flex: none; }
.store-badge .sb-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; white-space: nowrap; }
.store-badge .sb-small { font-size: 11px; font-weight: 600; opacity: .82; letter-spacing: .02em; }
.store-badge .sb-big { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 242, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(230, 218, 209, 0.6);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 22px; letter-spacing: -0.02em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; box-shadow: var(--sh-sm); }
.brand .paw-orange { color: var(--accent-deep); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 700; font-size: 16px; color: var(--ink-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 22px; font-size: 15px; }
.menu-toggle { display: none; }

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  background: var(--surface);
  border: 2px solid var(--outline);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.lang-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--ink-soft);
  background: transparent;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  line-height: 1;
  transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: var(--sh-sm);
}

/* ---------- Rating row ---------- */
.rating-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 3px; color: var(--warning); }
.stars svg { width: 20px; height: 20px; }
.rating-row .rate-text { font-weight: 700; color: var(--ink-soft); font-size: 15px; }
.rating-row .rate-text b { color: var(--ink); }

/* ---------- HERO (shared) ---------- */
.hero { position: relative; padding: 64px 0 88px; overflow: hidden; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); }
.hero h1 .hl { color: var(--accent-deep); }
.hero-sub { font-size: 21px; color: var(--ink-soft); margin: 24px 0 32px; max-width: 30ch; font-weight: 600; }
.hero-cta { display: flex; flex-direction: column; gap: 22px; }

/* decorative blobs / paws */
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; z-index: 0; pointer-events: none; }
.paw-deco { position: absolute; color: var(--accent); opacity: .12; z-index: 0; pointer-events: none; }

/* hero variants share a container; we toggle via [data-hero] on body */
.hero-variant { display: none; }
body[data-hero="illustration"] .hero-variant.v-illustration { display: block; }
body[data-hero="phone"] .hero-variant.v-phone { display: block; }
body[data-hero="centered"] .hero-variant.v-centered { display: block; }

/* Variant A — Illustration */
.v-illustration .hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2;
}
.v-illustration .hero-art { position: relative; }
.v-illustration .hero-art > img { width: 100%; max-width: 600px; margin-left: auto; filter: drop-shadow(0 24px 40px rgba(45,52,54,.14)); animation: floaty 6s ease-in-out infinite; }

/* Variant B — Phone first */
.v-phone .hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; position: relative; z-index: 2;
}
.v-phone .hero-art { position: relative; display: flex; justify-content: center; }

/* Variant C — Centered */
.v-centered { text-align: center; position: relative; z-index: 2; }
.v-centered .hero-cta { align-items: center; }
.v-centered .hero-sub { max-width: 46ch; margin-left: auto; margin-right: auto; }
.v-centered .rating-row { justify-content: center; }
.v-centered .store-badges { justify-content: center; }
.v-centered .hero-stage {
  position: relative; margin-top: 56px; display: flex; align-items: flex-end; justify-content: center; gap: 0;
}
.v-centered .hero-stage .cphone { z-index: 3; }
.v-centered .hero-stage .side-dog { width: 280px; filter: drop-shadow(0 18px 30px rgba(45,52,54,.12)); }
.v-centered .hero-stage .side-dog.left { transform: scaleX(-1) translateY(10px); margin-right: -30px; }
.v-centered .hero-stage .side-dog.right { transform: translateY(10px); margin-left: -30px; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* floating chips around art */
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border-radius: var(--r-pill);
  padding: 11px 18px; font-weight: 800; font-size: 16px; color: var(--ink);
  box-shadow: var(--sh-card); z-index: 5; border: 1px solid rgba(230,218,209,.6);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip .fc-emoji { font-size: 19px; }
.float-chip.c-xp { top: 8%; left: -4%; color: var(--accent-deep); animation-delay: .4s; }
.float-chip.c-streak { top: 38%; right: -6%; animation-delay: 1.2s; }
.float-chip.c-badge { bottom: 8%; left: 4%; animation-delay: .8s; }

/* ---------- Phone mockup ---------- */
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: #1f2425; border-radius: 46px; padding: 11px;
  box-shadow: 0 30px 70px rgba(45,52,54,.30), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 28px; background: #1f2425; border-radius: 999px; z-index: 4;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--bg); display: flex; flex-direction: column;
}
.phone.tilt { transform: rotate(-6deg); }
.phone.tilt:hover { transform: rotate(-3deg) translateY(-6px); transition: transform .4s ease; }

/* App screen content */
.scr { padding: 28px 16px 16px; display: flex; flex-direction: column; gap: 12px; height: 100%; font-size: 13px; }
.scr-top { display: flex; align-items: center; justify-content: space-between; }
.scr-greet { font-weight: 800; font-size: 16px; }
.scr-greet span { color: var(--ink-soft); font-weight: 600; font-size: 12px; display: block; }
.scr-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; font-size: 20px; }
.scr-streak {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: #FFF3E0; color: var(--accent-deep); border: 1px solid #FFE0B2;
  padding: 6px 12px; border-radius: 999px; font-weight: 800; font-size: 12px; white-space: nowrap;
}
.scr-xp-card {
  background: var(--surface); border-radius: 18px; padding: 14px; box-shadow: var(--sh-sm);
  border: 1px solid var(--outline);
}
.scr-xp-card .lvl { display: flex; justify-content: space-between; font-weight: 800; font-size: 11px; }
.scr-xp-card .lvl span { white-space: nowrap; }
.scr-xp-card .lvl .pts { color: var(--ink-soft); font-weight: 700; }
.xpbar { height: 10px; background: var(--accent-soft); border-radius: 999px; margin-top: 8px; overflow: hidden; }
.xpbar > i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); border-radius: 999px; }
.scr-label { font-weight: 800; font-size: 13px; margin-top: 2px; }
.trick-card {
  display: flex; align-items: center; gap: 11px; background: var(--surface);
  border-radius: 16px; padding: 10px; box-shadow: var(--sh-sm); border: 1px solid var(--outline);
}
.trick-card .tc-img { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); flex: none; overflow: hidden; display: grid; place-items: center; }
.trick-card .tc-img img { width: 100%; height: 100%; object-fit: cover; }
.trick-card .tc-body { flex: 1; min-width: 0; }
.trick-card .tc-title { font-weight: 800; font-size: 13px; }
.trick-card .tc-sub { color: var(--ink-soft); font-weight: 600; font-size: 11px; }
.chip-sm { font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 999px; }
.chip-progress { background: var(--mint-soft); color: #1a8f86; }
.chip-done { background: #E8F8EE; color: #1f9d57; }
.chip-new { background: var(--blue-soft); color: #2b7cb3; }
.scr-nav {
  margin-top: auto; display: flex; justify-content: space-around; align-items: center;
  background: var(--surface); border-radius: 18px; padding: 10px; box-shadow: var(--sh-sm); border: 1px solid var(--outline);
}
.scr-nav .ni { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; font-size: 17px; color: var(--ink-faint); }
.scr-nav .ni.on { background: var(--accent); color: #fff; }

/* ---------- Trust strip ---------- */
.trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 44px;
  padding: 28px 0; border-top: 1px solid var(--outline); border-bottom: 1px solid var(--outline);
}
.trust .ti { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust .ti .big { font-size: 30px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
.trust .ti .small { font-size: 13px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }
.trust .div { width: 1px; height: 40px; background: var(--outline); }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface); border-radius: var(--r-card-lg); padding: 36px;
  border: 1px solid var(--outline); box-shadow: var(--sh-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.feature-card .fi {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  font-size: 28px; margin-bottom: 22px;
}
.fi.fi-orange { background: var(--accent-soft); }
.fi.fi-mint { background: var(--mint-soft); }
.fi.fi-blue { background: var(--blue-soft); }
.fi.fi-green { background: #E8F8EE; }
.feature-card h3 { font-size: 24px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 17px; font-weight: 500; }

/* ---------- Showcase (phones) ---------- */
.showcase { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); }
.showcase-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; justify-items: center;
}
.showcase-item { text-align: center; max-width: 320px; }
.showcase-item .phone { margin: 0 auto 28px; }
.showcase-item h3 { font-size: 22px; margin-bottom: 8px; }
.showcase-item p { color: var(--ink-soft); font-size: 16px; font-weight: 500; }

/* ---------- Testimonials ---------- */
.testi-grid { columns: 3; column-gap: 24px; }
.testi-card {
  break-inside: avoid; margin-bottom: 24px;
  background: var(--surface); border-radius: var(--r-card); padding: 28px;
  border: 1px solid var(--outline); box-shadow: var(--sh-card);
}
.testi-card .stars { margin-bottom: 14px; }
.testi-card .quote { font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.55; margin-bottom: 18px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 22px; flex: none; }
.testi-who .nm { font-weight: 800; font-size: 15px; }
.testi-who .meta { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { padding: 100px 0; }
.cta-inner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 40px; padding: 72px 56px; text-align: center; color: #fff;
  box-shadow: var(--sh-lg);
}
.cta-inner h2 { font-size: clamp(32px, 4.4vw, 52px); color: #fff; }
.cta-inner p { font-size: 20px; opacity: .95; margin: 18px auto 34px; max-width: 44ch; font-weight: 600; }
.cta-inner .store-badges { justify-content: center; }
.cta-inner .store-badge { background: #fff; color: var(--ink); }
.cta-deco { position: absolute; opacity: .9; pointer-events: none; }
.cta-deco.d1 { width: 180px; bottom: -10px; left: -10px; transform: scaleX(-1); }
.cta-deco.d2 { width: 170px; bottom: -6px; right: -6px; }
@media (max-width: 720px) { .cta-deco { display: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.footer-blurb { color: rgba(255,255,255,.6); font-size: 15px; font-weight: 500; max-width: 30ch; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 16px; font-weight: 800; }
.footer-col a { display: block; color: rgba(255,255,255,.82); font-weight: 600; font-size: 15px; padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--paw-orange); }
.footer-langs { color: rgba(255,255,255,.5); font-size: 13px; font-weight: 600; margin-top: 10px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.55); font-size: 14px; font-weight: 600;
}

/* ---------- Legal pages ---------- */
.legal-hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 { font-size: clamp(36px, 5.4vw, 60px); }
.legal-hero .legal-meta { margin-top: 18px; font-size: 16px; font-weight: 700; color: var(--ink-soft); }
.legal-body { padding: 8px 0 96px; }
.legal-body .wrap { max-width: 760px; }
.legal-card {
  background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-card-lg);
  box-shadow: var(--sh-card); padding: 48px clamp(24px, 5vw, 56px);
}
.legal-toc {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
  padding-bottom: 32px; border-bottom: 1px solid var(--outline);
}
.legal-toc a {
  font-size: 14px; font-weight: 800; color: var(--accent-deep);
  background: var(--accent-soft); padding: 8px 16px; border-radius: var(--r-pill);
  transition: transform .15s ease, box-shadow .15s ease;
}
.legal-toc a:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.legal-section { scroll-margin-top: 96px; }
.legal-section + .legal-section { margin-top: 44px; padding-top: 44px; border-top: 1px solid var(--outline); }
.legal-section h2 { font-size: 26px; margin-bottom: 16px; }
.legal-section h3 { font-size: 19px; font-weight: 800; margin: 26px 0 8px; }
.legal-section p { color: var(--ink-soft); font-size: 17px; font-weight: 500; margin-bottom: 14px; }
.legal-section a:not(.legal-toc a) { color: var(--accent-deep); font-weight: 700; }
.legal-section a:hover { text-decoration: underline; }
.legal-section ul { margin: 4px 0 16px; padding-left: 22px; color: var(--ink-soft); font-size: 17px; font-weight: 500; }
.legal-section li { margin-bottom: 8px; }
.legal-section strong { color: var(--ink); font-weight: 800; }
.legal-contact-card {
  background: var(--accent-soft); border-radius: var(--r-card); padding: 22px 26px; margin: 6px 0 16px;
  font-weight: 600; color: var(--ink); line-height: 1.8;
}
.legal-contact-card .lc-name { font-weight: 900; font-size: 18px; }
.back-home {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  font-weight: 800; font-size: 15px; color: var(--ink-soft); transition: color .15s ease;
}
.back-home:hover { color: var(--accent-deep); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-chip);
  margin-bottom: 14px; box-shadow: var(--sh-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 800; font-size: 18px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { font-size: 26px; font-weight: 400; color: var(--accent-deep); transition: transform .2s ease; line-height: 1; }
.faq-item[open] .faq-x { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 16px; font-weight: 500; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .feature-grid { grid-template-columns: 1fr; }
  .showcase-row { grid-template-columns: 1fr; gap: 56px; }
  .testi-grid { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .v-illustration .hero-grid,
  .v-phone .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .v-illustration .hero-cta, .v-phone .hero-cta { align-items: center; }
  .v-illustration .hero-sub, .v-phone .hero-sub { margin-left: auto; margin-right: auto; max-width: 46ch; }
  .v-illustration .rating-row, .v-phone .rating-row,
  .v-illustration .store-badges, .v-phone .store-badges { justify-content: center; }
  .v-illustration .hero-art > img { margin: 0 auto; }
  .v-illustration .hero-art { order: -1; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .testi-grid { columns: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust .div { display: none; }
  .v-centered .hero-stage .side-dog { display: none; }
  .cta-inner { padding: 52px 26px; }
  .hero-sub { font-size: 19px; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .store-badges { width: 100%; }
  .store-badge { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

