/* ============================================================
   Lokaal Website — shared styles
   Brand: orange #f5880b · navy #1a1a2e · white #ffffff
   ============================================================ */

:root {
  --orange: #f5880b;
  --orange-dark: #d9760a;
  --navy: #1a1a2e;
  --navy-soft: #2a2a44;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-tint: #fff6ec;
  --text: #2b2b38;
  --text-muted: #5f6173;
  --border: #e6e8ee;
  --green: #1f9d57;
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, .08);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, .10);
  --shadow-lg: 0 18px 48px rgba(26, 26, 46, .16);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1140px;
  --font-head: "Poppins", system-ui, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", system-ui, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(56px, 9vw, 100px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #e9eaf2; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: .6rem;
}
.section--navy .eyebrow { color: var(--orange); }

.lead { font-size: 1.15rem; color: var(--text-muted); max-width: 60ch; }
.section--navy .lead { color: #c4c6d6; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(245,136,11,.5); outline-offset: 2px; }

.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(245,136,11,.32); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--navy); }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.section--navy .btn--ghost:hover { border-color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 70px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 34px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--navy);
  font-size: .98rem;
}
.nav__links a:hover { color: var(--orange-dark); text-decoration: none; }
.nav__cta { margin-left: 6px; }

.nav__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
  transition: .2s;
}
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 22px 18px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { padding: 4px 0; }
  .nav__links a { display: block; padding: 10px 0; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 78%); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: clamp(48px, 8vw, 86px) 0;
}
.hero__title { margin-bottom: .35em; }
.hero__title .accent { color: var(--orange); }
.hero__sub { font-size: 1.2rem; color: var(--text-muted); max-width: 50ch; margin-bottom: 1.7rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 1.2rem; font-size: .92rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero__note::before { content: "✓"; color: var(--green); font-weight: 700; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__note { justify-content: center; }
}

/* ---------- Hero device mockup (CSS art) ---------- */
.mockup { position: relative; aspect-ratio: 1 / .9; max-width: 460px; margin-inline: auto; }
.device {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.device--laptop { left: 0; top: 8%; width: 78%; }
.device--laptop .screen { aspect-ratio: 16 / 10; }
.device--laptop::after {
  content: ""; display: block; height: 12px;
  background: linear-gradient(180deg,#dfe2ea,#c7cbd6);
  border-radius: 0 0 8px 8px; margin: 0 -1px;
}
.device--phone { right: 0; bottom: 0; width: 38%; border-radius: 22px; padding: 7px; background:#1a1a2e; }
.device--phone .screen { border-radius: 15px; aspect-ratio: 9 / 18; }

.browserbar {
  height: 26px; background: #f0f1f5; display: flex; align-items: center; gap: 5px; padding: 0 10px;
  border-bottom: 1px solid #e3e5ec;
}
.browserbar i { width: 8px; height: 8px; border-radius: 50%; background: #cdd1da; display: block; }
.browserbar i:nth-child(1){ background:#ff5f57;} .browserbar i:nth-child(2){ background:#febc2e;} .browserbar i:nth-child(3){ background:#28c840;}

.screen { background: #fff; display: flex; flex-direction: column; }
.screen__hero { background: linear-gradient(135deg, var(--navy), var(--navy-soft)); padding: 14px; color:#fff; }
.screen__hero .tag { display:inline-block; font-size:7px; letter-spacing:1px; text-transform:uppercase; color:var(--orange); font-weight:700; }
.screen__hero .t1 { height: 9px; width: 72%; background: rgba(255,255,255,.92); border-radius: 3px; margin: 6px 0; }
.screen__hero .t2 { height: 6px; width: 50%; background: rgba(255,255,255,.45); border-radius: 3px; }
.screen__hero .pill { display:inline-block; margin-top:9px; height: 13px; width: 56px; background: var(--orange); border-radius: 7px; }
.screen__body { padding: 12px; display: grid; gap: 8px; }
.screen__row { display: grid; grid-template-columns: 22px 1fr; gap: 7px; align-items:center; }
.screen__row .ic { width: 22px; height: 22px; border-radius: 7px; background: var(--bg-tint); display:grid; place-items:center; font-size:11px; }
.screen__row .ln { height: 6px; background: #e9ebf1; border-radius: 3px; }
.screen__row .ln.short { width: 60%; }

.device--phone .screen__hero { padding: 12px 10px; }
.device--phone .screen__body { padding: 10px; }

@media (max-width: 540px){ .mockup { max-width: 340px; } }

/* ============================================================
   Social proof bar
   ============================================================ */
.proof { background: var(--navy); color: #fff; padding: 26px 0; }
.proof__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.proof__count { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.proof__count b { color: var(--orange); font-size: 1.25rem; }
.proof__icons { display: flex; gap: 12px; flex-wrap: wrap; }
.proof__chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: 8px 13px; border-radius: 999px; font-size: .86rem; color: #dfe1ee;
}
.proof__chip span { font-size: 1.05rem; }
@media (max-width: 700px){ .proof__inner { justify-content: center; text-align: center; } }

/* ============================================================
   How it works
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 42px; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; position: relative; box-shadow: var(--shadow-sm);
}
.step__num {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(245,136,11,.35);
}
.step__icon { font-size: 1.9rem; margin: 6px 0 10px; display: block; }
.step h3 { font-size: 1.08rem; margin-bottom: .35em; }
.step p { font-size: .95rem; color: var(--text-muted); margin: 0; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* ============================================================
   Pricing
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; max-width: 860px; margin: 42px auto 0; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative;
}
.plan--featured { border-color: var(--orange); box-shadow: var(--shadow-md); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: .76rem; letter-spacing: .5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 14px rgba(245,136,11,.35);
}
.plan__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.15rem; letter-spacing: .5px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 2px; }
.plan__price .amount { font-family: var(--font-head); font-weight: 700; font-size: 2.7rem; color: var(--navy); }
.plan__price .per { color: var(--text-muted); font-weight: 500; }
.plan__btw { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }
.plan__features { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.plan__features li { position: relative; padding-left: 28px; font-size: .96rem; }
.plan__features li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--green); font-weight: 700;
  width: 18px; height: 18px;
}
.plan__features li.plus::before { content: "+"; color: var(--orange); }
.plan .btn { margin-top: auto; }
.pricing__foot { text-align: center; margin-top: 28px; color: var(--text-muted); font-size: .98rem; }
.pricing__foot strong { color: var(--navy); }
@media (max-width: 720px){ .plans { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   Testimonials
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.quote {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.quote__text { font-size: 1rem; color: var(--text); margin-bottom: 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  background: var(--bg-tint); display: grid; place-items: center; font-size: 1.25rem;
}
.quote__name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .95rem; line-height: 1.2; }
.quote__role { font-size: .85rem; color: var(--text-muted); }
@media (max-width: 860px){ .quotes { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 760px; margin: 38px auto 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.06rem;
  padding: 20px 40px 20px 0; position: relative;
}
.faq__q:focus-visible { outline: 3px solid rgba(245,136,11,.4); outline-offset: 3px; border-radius: 6px; }
.faq__q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--orange); transition: transform .2s ease; line-height: 1;
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 0 20px; margin: 0; color: var(--text-muted); }

/* ============================================================
   About
   ============================================================ */
.about__card {
  max-width: 760px; margin-inline: auto; text-align: center;
}
.about__card .lead { font-size: 1.2rem; color: #d7d9e6; }

/* ============================================================
   Contact form
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact__pitch ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 13px; }
.contact__pitch li { position: relative; padding-left: 30px; color: #d7d9e6; }
.contact__pitch li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

.card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 11px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,136,11,.15);
}
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field__hint { font-size: .8rem; color: var(--text-muted); margin-top: 5px; }
.form__msg {
  display: none; margin-top: 14px; padding: 14px 16px; border-radius: 11px;
  background: #e7f7ee; border: 1px solid #b8e6cb; color: #14633a; font-size: .95rem;
}
.form__msg.is-visible { display: block; }
@media (max-width: 860px){ .contact__grid { grid-template-columns: 1fr; gap: 30px; } .field__row { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #14142a; color: #aab; padding: 52px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer__brand img { height: 32px; filter: brightness(0) invert(1); opacity: .96; }
.footer__brand p { margin-top: 12px; max-width: 34ch; color: #8b8da6; font-size: .95rem; }
.footer h4 { color: #fff; font-size: .95rem; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a { color: #aab; font-size: .95rem; }
.footer a:hover { color: var(--orange); text-decoration: none; }
.footer__bottom {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: #7a7c95;
}
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 460px){ .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Onboarding (start.html) + Success (success.html)
   ============================================================ */
.page-min {
  min-height: 100vh; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 40%);
}
.topbar { padding: 18px 0; border-bottom: 1px solid var(--border); background:#fff; }
.topbar__inner { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.topbar img { height: 32px; }
.topbar a { font-size: .9rem; color: var(--text-muted); }

.wrap-narrow { width: 100%; max-width: 760px; margin-inline: auto; padding: 40px 22px 64px; }

/* progress stepper */
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin: 6px auto 34px; max-width: 560px; }
.stepper__step { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.stepper__dot {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  background: #fff; border: 2px solid var(--border); color: var(--text-muted);
}
.stepper__label { font-family: var(--font-head); font-weight: 500; font-size: .92rem; white-space: nowrap; }
.stepper__step.is-active .stepper__dot { background: var(--orange); border-color: var(--orange); color: #fff; }
.stepper__step.is-active .stepper__label { color: var(--navy); }
.stepper__line { flex: 1 1 auto; height: 2px; background: var(--border); margin: 0 12px; min-width: 18px; }
@media (max-width: 560px){ .stepper__label { display: none; } .stepper { gap: 0; } }

.intro { text-align: center; margin-bottom: 28px; }
.intro h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); }
.intro p { color: var(--text-muted); max-width: 48ch; margin-inline: auto; }

.plan-select { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 26px; }
.plan-opt { position: relative; }
.plan-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.plan-opt label {
  display: block; cursor: pointer; height: 100%;
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; transition: border-color .15s ease, box-shadow .15s ease;
}
.plan-opt input:focus-visible + label { box-shadow: 0 0 0 3px rgba(245,136,11,.3); }
.plan-opt input:checked + label { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange) inset; background: var(--bg-tint); }
.plan-opt .po__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.plan-opt .po__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.plan-opt .po__price { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.plan-opt .po__price small { font-weight: 500; color: var(--text-muted); font-size: .78rem; }
.plan-opt .po__desc { font-size: .9rem; color: var(--text-muted); margin-top: 6px; }
.plan-opt .po__tag { font-size: .68rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #fff; background: var(--orange); padding: 3px 9px; border-radius: 999px; }
@media (max-width: 560px){ .plan-select { grid-template-columns: 1fr; } }

/* success page */
.success-card { text-align: center; }
.success-icon {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 22px;
  background: #e7f7ee; display: grid; place-items: center;
  animation: pop .5s cubic-bezier(.2,.9,.3,1.3) both;
}
.success-icon svg { width: 48px; height: 48px; }
@keyframes pop { 0%{ transform: scale(.3); opacity:0; } 100%{ transform: scale(1); opacity:1; } }

.timeline { list-style: none; padding: 0; margin: 30px auto 0; max-width: 420px; text-align: left; display: grid; gap: 4px; }
.timeline li { display: flex; align-items: center; gap: 13px; padding: 13px 16px; border-radius: 11px; background: var(--bg-soft); }
.timeline li .tl-ic { width: 26px; height: 26px; border-radius: 50%; flex:0 0 auto; display: grid; place-items: center; font-size: .85rem; }
.timeline li.done .tl-ic { background: var(--green); color: #fff; }
.timeline li.pending .tl-ic { background: #fff; border: 2px solid var(--border); color: var(--text-muted); }
.timeline li.done { background: #eef9f2; }
.timeline li .tl-text { font-family: var(--font-head); font-weight: 500; color: var(--navy); font-size: .96rem; }
.timeline li.pending .tl-text { color: var(--text-muted); }

.note-box { margin-top: 26px; font-size: .9rem; color: var(--text-muted); }

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

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