/* Roamler US waitlist — brand values lifted from roamler.com:
   Montserrat 700 headings, Lato body, #FF6738 primary, #666 body text. */

:root {
  --orange: #ff6738;
  --orange-dark: #eb3700;
  --orange-tint: #fff3ef;
  --ink: #2b2b2b;
  --body: #666;
  --line: #e6e6e6;
  --bg-soft: #f7f7f7;
  --white: #fff;
  --err: #d02f1e;
  --radius: 6px;
  --shadow: 0 2px 14px rgba(0, 0, 0, .07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Lato, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-badge, .btn, .step-num, .ph-pay, legend {
  font-family: Montserrat, -apple-system, "Segoe UI", sans-serif;
}

h1, h2, h3 { color: var(--ink); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.125rem); }
h3 { font-size: 1.125rem; }
p { margin: 0 0 1rem; }

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

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

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

:where(a, button, input, select, summary):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--orange); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo:hover { text-decoration: none; }
.logo img { width: 132px; height: auto; display: block; }
.logo-badge {
  font-size: .6875rem; font-weight: 800; letter-spacing: .08em;
  color: var(--orange); background: var(--orange-tint);
  border: 1px solid rgba(255, 103, 56, .3);
  padding: 2px 7px; border-radius: 3px; line-height: 1.4;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block; border: 2px solid transparent; border-radius: var(--radius);
  padding: 11px 26px; font-size: .9375rem; font-weight: 700; text-align: center;
  cursor: pointer; transition: background-color .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }
.btn-primary[disabled] { background: #f9a68d; border-color: #f9a68d; cursor: not-allowed; transform: none; }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 14px 34px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* ---------- hero ---------- */

.hero { padding: clamp(40px, 7vw, 80px) 0 clamp(48px, 7vw, 88px); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8125rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
  background: var(--orange-tint); padding: 6px 14px; border-radius: 100px;
  margin: 0 0 20px;
}
.lede { font-size: 1.0625rem; max-width: 34em; }
.hero-cta { margin: 12px 0 8px; }

.stats {
  display: flex; flex-wrap: wrap; gap: 12px 40px;
  list-style: none; margin: 36px 0 0; padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.stats li { display: flex; flex-direction: column; }
.stats strong {
  font-family: Montserrat, sans-serif; font-size: 1.375rem;
  font-weight: 700; color: var(--ink); line-height: 1.3;
}
.stats span { font-size: .875rem; }

/* ---------- phone mockup ---------- */

.hero-visual { display: flex; justify-content: center; }
.phone {
  position: relative; width: 290px; padding: 12px 12px 22px;
  background: #1f1f1f; border-radius: 34px; box-shadow: var(--shadow-lg);
}
.phone::before {
  content: ""; position: absolute; inset: -60px -70px auto auto;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--orange-tint); z-index: -1;
}
.phone-notch {
  width: 96px; height: 5px; background: #4a4a4a;
  border-radius: 100px; margin: 2px auto 10px;
}
/* App "Available Tasks" screen, modelled on the real Roamler app UI. */
.phone-screen.app {
  background: #f2f3f5; border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column;
}

.app-head {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; padding: 14px 14px 12px;
}
.app-brand { display: flex; align-items: center; gap: 7px; min-width: 0; }
/* The logo asset is the full horizontal wordmark; crop to just the hex mark
   on the left so the app header reads like the real app. */
.app-logo { width: 20px; height: 20px; flex: 0 0 auto; object-fit: cover; object-position: left center; }
.app-title { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .9375rem; color: var(--ink); }
.app-head-icons { display: flex; gap: 12px; flex: 0 0 auto; }
.app-ico { width: 17px; height: 17px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }

.app-filters {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; padding: 0 14px 12px;
  border-bottom: 1px solid var(--line);
}
.app-filter { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; font-weight: 700; color: var(--orange); }
.app-ico-sm { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.app-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 16px; height: 16px; padding: 0 4px; border-radius: 100px;
  background: var(--orange); color: #fff; font-size: .625rem; font-weight: 700;
}
.app-count { font-size: .75rem; color: #8c8c8c; }

.app-list { display: flex; flex-direction: column; gap: 8px; padding: 10px; }

.task {
  display: flex; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 10px;
}
.task-thumb {
  flex: 0 0 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.task-thumb svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tint-blue  { background: #e8f1ff; } .tint-blue  svg { stroke: #2f7bd0; }
.tint-green { background: #e7f6ec; } .tint-green svg { stroke: #2f9e5a; }
.tint-amber { background: var(--orange-tint); } .tint-amber svg { stroke: var(--orange); }

.task-main { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.task-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.task-title {
  font-size: .8125rem; font-weight: 700; color: var(--ink); line-height: 1.25;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.task-actions { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; color: #b5b5b5; }
.task-actions .app-ico-sm { width: 13px; height: 13px; }
.task-kebab { font-size: .875rem; line-height: 1; color: #b5b5b5; }
.task-store {
  font-size: .6875rem; color: #8c8c8c; margin-top: 1px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.task-pay { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .875rem; color: var(--orange); margin-top: 4px; }
.task-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.task-tag {
  font-size: .625rem; font-weight: 700; color: #6f6f6f;
  background: #f0f0f0; border-radius: 100px; padding: 2px 8px;
}
.task-dist { display: inline-flex; align-items: center; gap: 3px; font-size: .6875rem; color: #9a9a9a; }
.task-dist svg { stroke: #b5b5b5; }

/* ---------- interactive demo: two sliding screens + balance ---------- */

.app-stage { position: relative; height: 468px; overflow: hidden; }

.app-view {
  position: absolute; inset: 0; background: #f2f3f5;
  display: flex; flex-direction: column;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.app-list-view { transform: translateX(0); }
.app-detail-view { transform: translateX(100%); z-index: 2; }
#app-demo.show-detail .app-list-view { transform: translateX(-14%); }
#app-demo.show-detail .app-detail-view { transform: translateX(0); }

.app-list { flex: 1; overflow-y: auto; }

.task { cursor: pointer; transition: transform .15s ease, border-color .2s ease; }
.task:hover { border-color: #cfcfcf; }
.task.pressing { transform: scale(.97); }

/* balance bar */
.app-balance {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px; background: var(--ink); color: #fff; flex: 0 0 auto;
}
.bal-label { display: block; font-size: .625rem; opacity: .65; line-height: 1.2; }
.bal-amount { font-family: Montserrat, sans-serif; font-weight: 700; font-size: 1rem; }
.bal-bump {
  position: absolute; right: 14px; top: 4px; font-size: .8125rem; font-weight: 700;
  color: #4fd487; opacity: 0; pointer-events: none;
}
.bal-bump.show { animation: balbump 1.9s ease forwards; }
@keyframes balbump {
  0% { opacity: 0; transform: translateY(4px); }
  18% { opacity: 1; transform: translateY(0); }
  70% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-14px); }
}

/* detail screen */
.detail-head {
  display: flex; align-items: center; gap: 8px; flex: 0 0 auto;
  background: #fff; padding: 12px; border-bottom: 1px solid var(--line);
}
.detail-back { font-size: 1.5rem; line-height: 1; color: var(--ink); width: 18px; cursor: pointer; }
.detail-htitle { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .875rem; color: var(--ink); }
.detail-scroll { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 12px; }

.detail-summary {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px;
}
.detail-sum-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.detail-title { font-size: .8125rem; font-weight: 700; color: var(--ink); }
.detail-pay { font-family: Montserrat, sans-serif; font-weight: 700; font-size: .9375rem; color: var(--orange); }
.detail-meta { font-size: .6875rem; color: #8c8c8c; margin: -4px 2px 0; }
.detail-qs { display: flex; flex-direction: column; gap: 10px; }

.q {
  display: flex; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.q.q-active { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 103, 56, .12); }
.q-idx {
  flex: 0 0 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  background: #f0f0f0; color: #6f6f6f; font-size: .6875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: background-color .3s, color .3s;
}
.q.q-active .q-idx { background: var(--orange); color: #fff; }
.q-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.q-text { font-size: .75rem; font-weight: 700; color: var(--ink); line-height: 1.3; }

.q-chips { display: flex; gap: 8px; }
.q-chip {
  flex: 1; text-align: center; font-size: .75rem; font-weight: 700; color: var(--body);
  border: 1px solid #d4d4d4; border-radius: 8px; padding: 7px 0; transition: all .25s ease;
}
.q-chip.sel { border-color: var(--orange); background: var(--orange-tint); color: var(--orange); }

.q-capture {
  display: flex; align-items: center; gap: 8px; color: #8c8c8c;
  border: 1px dashed #cfcfcf; border-radius: 8px; padding: 10px; transition: all .25s ease;
}
.q-capture svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: #9a9a9a; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.q-cap-label { font-size: .75rem; }
.q-capture.done { border-style: solid; border-color: #3bb56e; background: #eafaf0; color: #1f9e57; }
.q-capture.done svg { stroke: #1f9e57; }
.q-check { width: 16px; height: 16px; margin-left: auto; }

.q-stepper { display: inline-flex; align-items: center; align-self: flex-start; border: 1px solid #d4d4d4; border-radius: 8px; overflow: hidden; transition: border-color .25s ease; }
.q-step { width: 28px; text-align: center; padding: 6px 0; font-weight: 700; color: var(--body); background: #fafafa; }
.q-num-val { width: 32px; text-align: center; font-weight: 700; font-size: .8125rem; color: var(--ink); }
.q-stepper.filled { border-color: var(--orange); }
.q-stepper.filled .q-num-val { color: var(--orange); }

.q-price { display: inline-flex; align-items: center; gap: 2px; align-self: flex-start; border: 1px solid #d4d4d4; border-radius: 8px; padding: 7px 10px; font-weight: 700; font-size: .8125rem; color: var(--ink); transition: border-color .25s ease, color .25s ease; }
.q-dollar { color: #9a9a9a; }
.q-price.filled { border-color: var(--orange); color: var(--orange); }
.q-price.filled .q-dollar { color: var(--orange); }

.detail-submit {
  flex: 0 0 auto; margin: 0; border: 0; width: 100%;
  background: var(--orange); color: #fff; cursor: pointer;
  font-family: Montserrat, sans-serif; font-weight: 700; font-size: .875rem; padding: 13px;
  transition: transform .15s ease, background-color .3s ease;
}
.detail-submit.pressing { transform: scale(.97); }
.detail-submit.done { background: #1f9e57; }

/* ---------- steps ---------- */

.steps { background: var(--bg-soft); padding: clamp(48px, 6vw, 76px) 0; }
.steps h2, .benefits h2, .faq h2 { text-align: center; margin-bottom: 44px; }
.step-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  list-style: none; margin: 0; padding: 0; counter-reset: none;
}
.step-grid li {
  background: #fff; border-radius: var(--radius); padding: 32px 26px 26px;
  box-shadow: var(--shadow); position: relative;
}
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 1.0625rem;
  margin-bottom: 16px;
}
.step-grid p { margin: 0; font-size: .9375rem; }

/* ---------- benefits ---------- */

.benefits { padding: clamp(48px, 6vw, 76px) 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 44px; }
.benefit { padding-left: 20px; border-left: 3px solid var(--orange); }
.benefit p { margin: 0; font-size: .9375rem; }

/* ---------- signup ---------- */

.signup { background: var(--bg-soft); padding: clamp(48px, 6vw, 80px) 0; scroll-margin-top: 80px; }
.signup-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.signup-intro { padding-top: 8px; }
.signup-intro h2 { margin-bottom: .4em; }
.ticks { list-style: none; margin: 24px 0 0; padding: 0; }
.ticks li { position: relative; padding: 0 0 10px 30px; font-size: .9375rem; }
.ticks li::before {
  content: "\2713"; position: absolute; left: 0; top: -1px;
  color: var(--orange); font-weight: 700; font-size: 1.0625rem;
}

.signup-form, .success {
  background: #fff; border-radius: 8px; padding: 32px;
  box-shadow: var(--shadow-lg);
}

.field { margin-bottom: 18px; border: 0; padding: 0; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; }

label, legend {
  display: block; font-size: .875rem; font-weight: 700;
  color: var(--ink); margin-bottom: 6px; padding: 0;
}
.hint { font-size: .8125rem; color: #8c8c8c; margin: -2px 0 10px; }

input[type="text"], input[type="email"], select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; background: #fff;
  border: 1px solid #d4d4d4; border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
input:hover, select:hover { border-color: #b5b5b5; }
input:focus, select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 103, 56, .16);
}
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--err); }

.err { display: none; color: var(--err); font-size: .8125rem; margin: 6px 0 0; }
.err.show { display: block; }
.form-err { text-align: center; margin-top: 12px; }

.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0; padding: 10px 16px; cursor: pointer;
  font-weight: 400; font-size: .9375rem; color: var(--body);
  border: 1px solid #d4d4d4; border-radius: 100px;
  transition: border-color .15s ease, background-color .15s ease;
}
.pill:hover { border-color: var(--orange); }
.pill input { accent-color: var(--orange); margin: 0; }
.pill:has(input:checked) {
  border-color: var(--orange); background: var(--orange-tint); color: var(--ink); font-weight: 700;
}

.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check-pill {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 0; padding: 8px 14px; cursor: pointer;
  font-weight: 400; font-size: .875rem; color: var(--body);
  border: 1px solid #d4d4d4; border-radius: 100px;
  transition: border-color .15s ease, background-color .15s ease;
}
.check-pill:hover { border-color: var(--orange); }
.check-pill input { accent-color: var(--orange); margin: 0; }
.check-pill:has(input:checked) {
  border-color: var(--orange); background: var(--orange-tint); color: var(--ink); font-weight: 700;
}

.radio-col { display: flex; flex-direction: column; gap: 8px; }
.radio-line {
  display: flex; align-items: center; gap: 10px;
  margin: 0; padding: 11px 14px; cursor: pointer;
  font-weight: 400; font-size: .9375rem; color: var(--body);
  border: 1px solid #d4d4d4; border-radius: var(--radius);
  transition: border-color .15s ease, background-color .15s ease;
}
.radio-line:hover { border-color: var(--orange); }
.radio-line input { accent-color: var(--orange); margin: 0; flex: 0 0 auto; }
.radio-line:has(input:checked) {
  border-color: var(--orange); background: var(--orange-tint); color: var(--ink); font-weight: 700;
}

.freq-field { margin: 18px 0 0; }
.freq-field legend { margin-bottom: 10px; }

.apps-field, .other-field, .freq-field { animation: fade .18s ease; }
.other-field { margin: 14px 0 0; }
@keyframes fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.consent { margin: 22px 0 20px; }
.check-inline {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 400; font-size: .875rem; color: var(--body);
  line-height: 1.5; cursor: pointer; margin: 0;
}
.check-inline input { accent-color: var(--orange); margin: 3px 0 0; flex: 0 0 auto; width: 16px; height: 16px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formnote { font-size: .75rem; color: #999; text-align: center; margin: 14px 0 0; }

/* ---------- success ---------- */

.success { text-align: center; padding: 48px 32px; }
.success-mark {
  width: 62px; height: 62px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.75rem;
}
.success-share { font-size: .875rem; color: #8c8c8c; margin: 20px 0 0; }

/* ---------- faq ---------- */

.faq { padding: clamp(48px, 6vw, 76px) 0 clamp(56px, 7vw, 88px); }
.faq-list { max-width: 760px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative;
  font-family: Montserrat, sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--orange); font-size: 1.375rem; font-weight: 400; line-height: 1;
}
details[open] summary::after { content: "\2212"; }
summary:hover { color: var(--orange); }
details p { margin: 0 0 18px; font-size: .9375rem; padding-right: 34px; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, .6); padding: 44px 0; }
.footer-inner { text-align: center; }
.footer-logo { width: 120px; height: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 14px; }
.footer-tag { font-size: .9375rem; margin-bottom: 10px; }
.footer-legal { font-size: .8125rem; margin: 0; }
.site-footer a { color: rgba(255, 255, 255, .85); }
.site-footer a:hover { color: var(--orange); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone { width: 260px; }
  .signup-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .header-cta { display: none; }
  .signup-form, .success { padding: 24px 20px; border-radius: 6px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .stats { gap: 16px 28px; }
  .stats strong { font-size: 1.1875rem; }
  .hero-cta { display: block; width: 100%; }
  /* 16px keeps iOS Safari from zooming the viewport on focus. */
  input[type="text"], input[type="email"], select { font-size: 16px; }
}

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