/* PyBrowser marketing site — one stylesheet, one small set of tokens,
   deliberately mirroring the same "few colours, used consistently"
   philosophy as the app itself (see app/ui/theme.py). */

:root {
  --bg: #f8f8fb;
  --surface: #ffffff;
  --surface-alt: #f0f0f6;
  --line: #e4e4ec;
  --text: #16161d;
  --muted: #5b5b68;
  --faint: #8b8b98;

  --accent: #3d5afe;
  --accent-2: #7b3ff2;
  --accent-hover: #2f47e0;
  --accent-soft: #eaedff;
  --accent-text: #ffffff;

  --success: #1f8a4c;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 20px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 112px;

  --font-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-w: 1180px;

  --shadow-sm: 0 1px 2px rgba(20, 20, 30, .06);
  --shadow-md: 0 8px 30px rgba(20, 20, 30, .08);
  --shadow-lg: 0 20px 60px rgba(20, 20, 30, .12);

  color-scheme: light;
}

:root[data-theme="dark"],
:root:not([data-theme="light"]) {
  @media (prefers-color-scheme: dark) {
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #0e0e13;
  --surface: #16161d;
  --surface-alt: #1c1c25;
  --line: #2a2a35;
  --text: #f1f1f6;
  --muted: #a3a3b2;
  --faint: #6f6f7d;

  --accent: #8c9cff;
  --accent-2: #b98cff;
  --accent-hover: #a3b0ff;
  --accent-soft: #232746;
  --accent-text: #101026;

  --success: #6fcf97;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .45);
  color-scheme: dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0e0e13;
    --surface: #16161d;
    --surface-alt: #1c1c25;
    --line: #2a2a35;
    --text: #f1f1f6;
    --muted: #a3a3b2;
    --faint: #6f6f7d;

    --accent: #8c9cff;
    --accent-2: #b98cff;
    --accent-hover: #a3b0ff;
    --accent-soft: #232746;
    --accent-text: #101026;

    --success: #6fcf97;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .45);
  }
}

/* -- reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; }

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

section[id] { scroll-margin-top: 84px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-text);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

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

/* -- buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 13px 24px; font-size: 15px; }

/* -- nav --------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.01em;
  margin-right: auto;
}
.brand-mark { color: var(--accent); flex-shrink: 0; }
.nav-links {
  display: flex;
  gap: var(--space-5);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current] { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: none; }
:root[data-theme="dark"] .icon-moon { display: block; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 36px; height: 36px;
  border: none; background: none; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) 24px var(--space-5);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-nav a { text-decoration: none; padding: 8px 0; font-weight: 500; }
.mobile-nav[data-open] { display: flex; }

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

/* -- hero --------------------------------------------------------- */
.hero { padding: var(--space-7) 0 var(--space-6); overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-6);
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
  color: var(--accent); margin-bottom: var(--space-4);
}
.eyebrow-mark { color: var(--accent); }
h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  font-weight: 800;
  margin-bottom: var(--space-4);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: var(--space-5);
}
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-status {
  display: flex; align-items: center; gap: 8px;
  margin-top: var(--space-5);
  font-size: 13px; color: var(--faint);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 20%, transparent);
}

.hero-visual { position: relative; }
.hero-mascot {
  position: absolute;
  right: -18px;
  top: -64px;
  width: 130px;
  z-index: 5;
  text-align: center;
}
.mascot-img { width: 100%; height: auto; transform-origin: 50% 100%; will-change: transform; }
.hero-caption {
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  margin-top: -8px;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  transition: opacity .2s ease;
}

/* -- Py motion system --------------------------------------------------------
   A handful of small, named keyframes reused everywhere Py appears, keyed
   off a `data-state` (or `data-look`) attribute rather than one-off inline
   styles - so "what does Py do when thinking" is answered in one place.
   All of it is transform/opacity only (cheap to animate), and every rule
   here is disabled wholesale by the prefers-reduced-motion block at the
   end of this file. */
@keyframes py-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.008); }
}
@keyframes py-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2.2deg); }
}
@keyframes py-track {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}
@keyframes py-calm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes py-active {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-1.4deg); }
}
@keyframes py-alert-ring {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 30%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent); }
}

.hero-mascot .mascot-img { animation: py-breathe 4.6s ease-in-out infinite; }
.hero-mascot[data-look="cta"] .mascot-img {
  animation: none;
  transform: translate(-6px, -2px) rotate(-3deg) scale(1.03);
  transition: transform .35s cubic-bezier(.2, .8, .3, 1.1);
}
.hero-mascot[data-look="product"] .mascot-img {
  animation: none;
  transform: translateX(-5px) rotate(-2deg);
  transition: transform .35s ease;
}

.story-py[data-state="searching"] img { animation: py-sway 2.3s ease-in-out infinite; }
.story-py[data-state="reading"] img { animation: py-track 2.8s ease-in-out infinite; }
.story-py[data-state="thinking"] img { animation: py-calm 5s ease-in-out infinite; }
.story-py[data-state="working"] img { animation: py-active 1.7s ease-in-out infinite; }
.story-py[data-state="approval"] { animation: py-alert-ring 2.2s ease-in-out infinite; }
.story-py[data-state="finished"] img { animation: none; }

.state-card img { transition: transform .3s cubic-bezier(.2, .8, .3, 1.2); transform-origin: 50% 100%; }
.state-card.is-playing[data-state="searching"] img { animation: py-sway 2.3s ease-in-out infinite; }
.state-card.is-playing[data-state="reading"] img { animation: py-track 2.8s ease-in-out infinite; }
.state-card.is-playing[data-state="thinking"] img { animation: py-calm 5s ease-in-out infinite; }
.state-card.is-playing[data-state="working"] img { animation: py-active 1.7s ease-in-out infinite; }
.state-card.is-playing[data-state="approval"] img { animation: py-sway 2.6s ease-in-out infinite; }
.state-card.is-playing[data-state="idle"] img { animation: py-breathe 4.6s ease-in-out infinite; }
.state-card[data-spotlight] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.shot-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.shot-frame img { width: 100%; height: auto; display: block; }
.shot-frame--wide { border-radius: var(--radius-md); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mascot { position: static; width: 110px; margin: 0 auto var(--space-4); }
}

/* -- generic sections --------------------------------------------------------- */
.section { padding: var(--space-8) 0; }
.section--muted { background: var(--surface-alt); }
.section-head { max-width: 620px; margin-bottom: var(--space-6); }
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-2);
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -.015em;
  font-weight: 800;
  margin-bottom: var(--space-3);
}
.section-sub { color: var(--muted); font-size: 17px; }
.section-note { color: var(--faint); font-size: 14px; margin-top: var(--space-5); }
.section-note--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

/* -- product tiers --------------------------------------------------------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.tier-card--accent {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, var(--surface)), var(--surface));
}
.tier-num { font-size: 13px; font-weight: 700; color: var(--faint); margin-bottom: var(--space-2); }
.tier-card h3 { font-size: 19px; font-weight: 700; margin-bottom: var(--space-2); }
.tier-card p { color: var(--muted); font-size: 15px; }

@media (max-width: 860px) {
  .tier-grid { grid-template-columns: 1fr; }
}

/* -- split sections --------------------------------------------------------- */
.split-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--space-6);
  align-items: center;
}
.quote-list { margin: var(--space-4) 0; display: flex; flex-direction: column; gap: 10px; }
.quote-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}
@media (max-width: 900px) {
  .split-inner { grid-template-columns: 1fr; }
}

/* -- scroll story --------------------------------------------------------- */
.story { padding: var(--space-8) 0; }
.story-head { max-width: 620px; margin-bottom: var(--space-6); }
.story-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-6);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.story-grid--reverse { grid-template-columns: 1fr 320px; }
.story-sticky { position: relative; }
.story-py {
  position: sticky;
  top: 96px;
  text-align: center;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.story-py img { width: 70%; margin: 0 auto var(--space-3); height: auto; }
.story-caption {
  font-size: 14px; font-weight: 600; color: var(--text);
  min-height: 40px;
  transition: opacity .15s ease;
}
.story-state {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); margin-top: 6px;
}
.story-steps { display: flex; flex-direction: column; gap: var(--space-7); }
.story-step h3 { font-size: 20px; font-weight: 700; margin-bottom: var(--space-2); }
.story-step p { color: var(--muted); font-size: 15px; }
.story--safety .story-step h2 { margin-top: var(--space-2); }
.story--safety .story-step p { margin-bottom: var(--space-3); }

.story-step[data-active] h3 { color: var(--accent); }

.mini-list { display: flex; flex-direction: column; gap: 8px; margin-top: var(--space-3); font-size: 14px; }
.mini-list--plain li { padding-left: 0; }
.mini-list li { display: flex; align-items: center; gap: 8px; color: var(--text); }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot--ok { background: var(--success); }
.dot--skip { background: var(--faint); }

.mini-panel {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}
.mini-label {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 6px;
}
.mini-text { font-size: 14px; color: var(--text); }

.story .wrap > .shot-frame,
.story .wrap { margin-top: var(--space-7); }

@media (max-width: 900px) {
  .story-grid, .story-grid--reverse { grid-template-columns: 1fr; }
  .story-sticky { order: -1; }
  .story-py { position: static; }
  .story-py img { width: 140px; }
}

/* -- missions example --------------------------------------------------------- */
.mission-example {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}
.mission-example-head h3 { font-size: 22px; font-weight: 700; margin-top: 6px; }
.mission-example-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.mex-card {
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
}
.mex-card--accent { background: var(--accent-soft); }
.chip-list { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; font-size: 13px; }
.chip-list li {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  width: fit-content;
}
.mex-stat { font-size: 14px; font-weight: 600; margin-top: 6px; }
.mex-text { font-size: 14px; margin-top: 6px; }

@media (max-width: 900px) {
  .mission-example-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .mission-example-grid { grid-template-columns: 1fr; }
}

/* -- structured results --------------------------------------------------------- */
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.result-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.result-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.result-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 860px) {
  .result-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .result-grid { grid-template-columns: 1fr; }
}

/* -- states grid (Meet Py) --------------------------------------------------------- */
.states-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}
.state-card {
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.state-card:hover, .state-card:focus-visible { border-color: var(--accent); }
.state-card img { width: 100%; height: auto; margin-bottom: var(--space-2); }
.state-name { font-weight: 700; font-size: 14px; }
.state-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (max-width: 900px) {
  .states-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .states-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -- technology --------------------------------------------------------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.tech-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.tech-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.tech-desc { font-size: 13px; color: var(--muted); }
@media (max-width: 860px) {
  .tech-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* -- engineering list --------------------------------------------------------- */
.eng-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 700px; }
.eng-list li {
  font-size: 15px; color: var(--text);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

/* -- about --------------------------------------------------------- */
.about-inner p { color: var(--muted); font-size: 16px; margin-bottom: var(--space-3); max-width: 640px; }
.status-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-top: var(--space-2);
}

/* -- early access --------------------------------------------------------- */
.access-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  align-items: center;
}
.access-copy p { color: var(--muted); margin: var(--space-3) 0 var(--space-4); max-width: 46ch; }
.download-note { font-size: 13px; margin-top: var(--space-4) !important; max-width: 48ch; }
.download-note a { color: var(--muted); text-decoration: underline; }
.download-note a:hover { color: var(--accent); }
.access-platforms { display: flex; flex-direction: column; gap: var(--space-2); }
.platform-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
}
.platform-row .tag { font-weight: 500; font-size: 12px; color: var(--faint); }
@media (max-width: 860px) {
  .access-card { grid-template-columns: 1fr; }
}

/* -- final cta --------------------------------------------------------- */
.final-cta {
  padding: var(--space-8) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-mascot { width: 140px; height: auto; margin-bottom: var(--space-4); }
.eyebrow--light { color: var(--accent); }
.eyebrow-mark--light { color: var(--accent); }
.final-cta h2 { margin-bottom: var(--space-2); }
.final-sub { color: var(--muted); font-size: 17px; margin-bottom: var(--space-5); }

/* -- footer --------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: var(--space-6) 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: center; justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.footer-links { display: flex; gap: var(--space-4); flex-wrap: wrap; font-size: 14px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-meta { text-align: right; font-size: 13px; color: var(--faint); }
.footer-copy { margin-top: 2px; }
@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-meta { text-align: left; }
}

/* -- reduced motion --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
