:root {
  --form-navy: #071f3d;
  --form-blue: #0d5ea6;
  --form-sky: #dcecf8;
  --form-gold: #d6a62e;
  --form-gold-soft: #f6e8bc;
  --form-paper: #f7f3ea;
  --form-ink: #102a43;
  --form-muted: #5f6f7f;
  --form-success: #1f7a55;
  --form-error: #b42318;
}

.application-page {
  margin: 0;
  color: var(--form-ink);
  background: var(--form-paper);
  font-family: "Inter", sans-serif;
}

.application-page main { overflow-x: clip; }
.application-page h1,
.application-page h2,
.application-page h3 { text-wrap: balance; }
.application-page p { text-wrap: pretty; }

.application-header {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: .75rem max(1rem, calc((100% - 1180px) / 2));
  border-bottom: 1px solid rgba(7, 31, 61, .12);
  background: rgba(255, 255, 255, .95);
}

.application-header__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--form-navy);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.application-header__brand img { border-radius: 50%; }
.application-header__context { color: #476075; font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-align: center; }
.application-header__context span { color: var(--form-gold); }
.application-header__back { justify-self: end; color: var(--form-blue); font-size: .85rem; font-weight: 800; }
.application-header__back:hover { text-decoration: underline; }

.application-hero {
  position: relative;
  isolation: isolate;
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100% - 1160px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 80% 26%, rgba(214, 166, 46, .2), transparent 29%),
    linear-gradient(135deg, #05152b, #0a3765 70%, #062448);
}

.application-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .13;
  background-image: linear-gradient(30deg, transparent 49%, #fff 50%, transparent 51%);
  background-size: 36px 36px;
}

.application-eyebrow {
  margin: 0 0 1rem;
  color: var(--form-gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.application-hero h1,
.application-shell__intro h2,
.success-panel h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.application-hero h1 { max-width: 740px; color: #fff; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .98; }
.application-hero h1 em { color: #f6ce68; font-style: normal; }
.application-hero__lead { max-width: 690px; margin: 1.6rem 0 0; color: #e7eff7; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }

.application-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.application-trust span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #f6f9fc;
  background: rgba(255, 255, 255, .08);
  font-size: .8rem;
  font-weight: 700;
}

.application-trust span::before { content: "✓"; color: #f6ce68; font-weight: 900; }
.application-hero__visual { display: grid; place-items: center; }
.application-hero__seal {
  width: min(420px, 90vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 206, 104, .3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), rgba(255,255,255,.02) 66%, transparent 67%);
  box-shadow: 0 0 90px rgba(214, 166, 46, .16);
}
.application-hero__seal img { width: 90%; height: 90%; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(0,0,0,.22)); }

.application-notice {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin: -2.25rem auto 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(13, 94, 166, .18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 31, 61, .14);
}

.application-notice__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--form-success);
  font-weight: 900;
}
.application-notice strong { color: var(--form-navy); font-size: 1.05rem; }
.application-notice p { margin: .35rem 0 0; color: var(--form-muted); font-size: .92rem; line-height: 1.6; }

.application-shell {
  width: min(1180px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(250px, .67fr) minmax(0, 1.33fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.application-shell__intro {
  position: sticky;
  top: 1.5rem;
  padding-top: 1.5rem;
}
.application-shell__intro h2 { color: var(--form-navy); font-size: clamp(2.3rem, 4.5vw, 4rem); line-height: 1.03; }
.application-shell__intro > p:not(.application-eyebrow) { margin: 1.3rem 0 0; color: var(--form-muted); font-size: 1.02rem; line-height: 1.7; }
.application-scarcity { margin-top: 2rem; padding: 1.2rem 1.25rem; border-left: 4px solid var(--form-gold); border-radius: 0 14px 14px 0; background: #fff7de; }
.application-scarcity strong, .application-scarcity span { display: block; }
.application-scarcity strong { color: #5a3b00; font-size: .93rem; line-height: 1.5; }
.application-scarcity span { margin-top: .35rem; color: #765819; font-size: .82rem; line-height: 1.5; }

.lead-form {
  overflow: hidden;
  border: 1px solid rgba(13, 94, 166, .18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 31, 61, .12);
}

.lead-form__progress { padding: 1.45rem 1.7rem 1.25rem; color: #fff; background: var(--form-navy); }
.lead-form__progress-top { display: none; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; font-size: .8rem; }
.lead-form__progress-top span { color: #b8cbe0; }
.lead-form__bar { height: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.16); }
.lead-form__bar span { display: block; width: 20%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #f1c65f, #d6a62e); transition: width .35s ease; }
.lead-form__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; margin: 0; padding: 0; list-style: none; }
.lead-form__steps li { position: relative; display: flex; flex-direction: column; align-items: center; gap: .45rem; color: #8fa8c2; font-size: .7rem; font-weight: 800; text-align: center; }
.lead-form__steps li:not(:last-child)::after { content: ""; position: absolute; left: calc(50% + 17px); right: calc(-50% + 17px); top: 15px; height: 2px; background: rgba(255,255,255,.14); }
.lead-form__steps b { position: relative; z-index: 1; width: 32px; height: 32px; display: grid; place-items: center; border: 2px solid #55718e; border-radius: 50%; background: var(--form-navy); font-size: .75rem; }
.lead-form__steps li.is-active,
.lead-form__steps li.is-complete { color: #fff; }
.lead-form__steps li.is-active b,
.lead-form__steps li.is-complete b { border-color: #f1c65f; color: var(--form-navy); background: #f1c65f; }
.lead-form__steps li.is-complete:not(:last-child)::after { background: #f1c65f; }

.lead-form__body { padding: clamp(1.4rem, 4vw, 2.6rem); }
.form-step { min-width: 0; margin: 0; padding: 0; border: 0; animation: step-in .28s ease; }
@keyframes step-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.form-step legend { width: 100%; margin: 0 0 2rem; padding: 0; }
.form-step legend > span { display: block; margin-bottom: .55rem; color: var(--form-blue); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.form-step legend > strong { display: block; color: var(--form-navy); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 400; line-height: 1.08; }
.form-step legend > small { display: block; max-width: 620px; margin-top: .8rem; color: var(--form-muted); font-size: .9rem; line-height: 1.55; }

.field { min-width: 0; margin-top: 1.35rem; }
.field:first-of-type { margin-top: 0; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: end; }
.field label:not(.choice-card):not(.interest-card):not(.check-card):not(.consent-card),
.field__label { display: block; margin-bottom: .5rem; color: var(--form-navy); font-size: .9rem; font-weight: 800; }
.field label span[aria-hidden="true"],
.field__label span[aria-hidden="true"] { color: var(--form-error); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  padding: .85rem .95rem;
  border: 1.5px solid #c7d4df;
  border-radius: 11px;
  color: var(--form-ink);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--form-blue); box-shadow: 0 0 0 4px rgba(13, 94, 166, .12); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--form-error); box-shadow: 0 0 0 3px rgba(180, 35, 24, .1); }
.field > small,
.field__hint { display: block; margin: .45rem 0 0; color: #708090; font-size: .76rem; line-height: 1.45; }
.field__error { min-height: 1.1rem; margin: .35rem 0 0; color: var(--form-error); font-size: .76rem; font-weight: 700; }
.field__counter { float: right; margin-top: .35rem; color: #708090; font-size: .75rem; }
.field--check { display: flex; align-items: end; }

.nomad-explainer {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.7fr);
  gap: 1.2rem;
  align-items: center;
  margin-top: 1.45rem;
  padding: 1.15rem;
  border: 1px solid #dac776;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffdf3, #fff9d9);
}
.nomad-explainer__card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 1rem;
  border: 2px solid #2c160e;
  border-radius: 14px;
  color: #2c160e;
  background: #ffd000;
  box-shadow: 0 7px 0 #2c160e;
  transform: rotate(-1.5deg);
}
.nomad-explainer__card span { font-size: 1.35rem; font-weight: 900; letter-spacing: .12em; }
.nomad-explainer__card small { font-size: .58rem; font-weight: 900; letter-spacing: .08em; }
.nomad-explainer__copy { min-width: 0; }
.nomad-explainer__eyebrow { margin: 0 0 .3rem; color: #896600; font-size: .64rem; font-weight: 900; letter-spacing: .14em; }
.nomad-explainer__copy h3 { margin: 0; color: var(--form-navy); font-size: 1.05rem; }
.nomad-explainer__copy > p:not(.nomad-explainer__eyebrow) { margin: .45rem 0 .65rem; color: var(--form-ink); font-size: .82rem; line-height: 1.55; }
.nomad-explainer__copy a { display: inline-flex; align-items: center; gap: .3rem; min-height: 38px; color: #0d5ea6; font-size: .78rem; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.nomad-explainer__copy a:focus-visible { outline: 3px solid #f1c65f; outline-offset: 3px; border-radius: 4px; }
.nomad-explainer__copy > small { display: block; color: #74632c; font-size: .7rem; line-height: 1.45; }
.nomad-preference {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-left: 4px solid #d6a62e;
  border-radius: 10px;
  color: #5e4b0d;
  background: #fff9e7;
  font-size: .78rem;
  line-height: 1.55;
}
.field-grid--nomad { align-items: start; margin-top: 1.25rem; }
.field-grid--nomad .field { margin-top: 0; }
.nomad-guidance {
  margin-top: .7rem;
  padding: .8rem .85rem;
  border: 1px solid #b8d6ed;
  border-radius: 10px;
  color: #174f7b;
  background: #edf7ff;
  font-size: .76rem;
  line-height: 1.5;
}

.choice-row,
.choice-stack { display: grid; gap: .7rem; }
.choice-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-stack { grid-template-columns: 1fr; }
.choice-card,
.interest-card,
.check-card,
.consent-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  min-height: 52px;
  box-sizing: border-box;
  padding: .85rem .95rem;
  border: 1.5px solid #d1dce5;
  border-radius: 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.choice-card:hover,
.interest-card:hover,
.check-card:hover,
.consent-card:hover { border-color: #79a9cf; background: #f7fbff; }
.choice-card input,
.interest-card input,
.check-card input,
.consent-card input { flex: 0 0 auto; width: 18px; height: 18px; margin: .1rem 0 0; accent-color: var(--form-blue); }
.choice-card:has(input:checked),
.interest-card:has(input:checked),
.check-card:has(input:checked),
.consent-card:has(input:checked) { border-color: var(--form-blue); background: #eef7fd; box-shadow: 0 0 0 2px rgba(13,94,166,.07); }
.choice-card span { color: var(--form-ink); font-size: .85rem; font-weight: 700; line-height: 1.4; }
.check-card { width: 100%; align-items: center; }
.check-card span,
.interest-card span,
.consent-card span { display: flex; flex-direction: column; gap: .2rem; }
.check-card b,
.interest-card b,
.consent-card b { color: var(--form-navy); font-size: .85rem; line-height: 1.4; }
.check-card small,
.interest-card small,
.consent-card small { color: var(--form-muted); font-size: .72rem; line-height: 1.4; }

.interest-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; margin-top: .75rem; }
.interest-card { min-height: 74px; }

.lead-form__actions { display: flex; justify-content: space-between; gap: .8rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e3e9ef; }
.form-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: .8rem 1.3rem;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font: inherit;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.form-button:hover { transform: translateY(-1px); }
.form-button:focus-visible { outline: 3px solid #f1c65f; outline-offset: 3px; }
.form-button--primary { margin-left: auto; color: #fff; background: linear-gradient(135deg, #0d5ea6, #08467f); box-shadow: 0 10px 24px rgba(13,94,166,.22); }
.form-button--secondary { color: var(--form-navy); background: #eaf0f5; }
.form-button--submit { min-width: 220px; color: var(--form-navy); background: linear-gradient(135deg, #f3ce6a, #d6a62e); box-shadow: 0 10px 24px rgba(214,166,46,.23); }
.form-button--whatsapp { color: #fff; background: #1f8b52; }
.form-button[disabled] { cursor: wait; opacity: .65; transform: none; }
.lead-form__action-note { margin: .8rem 0 0; color: #748391; font-size: .74rem; line-height: 1.45; text-align: right; }
.lead-form__status { margin: 1rem 0 0; padding: .9rem; border-radius: 10px; font-size: .86rem; font-weight: 700; }
.lead-form__status[data-state="error"] { color: #8c1d14; background: #fff0ee; }
.lead-form__status[data-state="loading"] { color: #174f7b; background: #edf7ff; }
.lead-form__error-summary { margin-bottom: 1.2rem; padding: .9rem 1rem; border-left: 4px solid var(--form-error); color: #7a2018; background: #fff3f2; font-size: .84rem; font-weight: 700; line-height: 1.5; }

.review-card { display: grid; gap: .8rem; }
.review-section { padding: 1rem 1.05rem; border: 1px solid #d7e1e9; border-radius: 12px; background: #fbfcfd; }
.review-section__top { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.review-section h3 { margin: 0; color: var(--form-navy); font-size: .9rem; }
.review-section button { border: 0; cursor: pointer; color: var(--form-blue); background: none; font: inherit; font-size: .75rem; font-weight: 800; }
.review-section p { margin: .55rem 0 0; color: var(--form-muted); font-size: .8rem; line-height: 1.55; }

.email-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  margin-top: 1.3rem;
  padding: 1rem 1.05rem;
  border: 1px solid #e3c66f;
  border-radius: 12px;
  background: #fff8dd;
}
.email-alert > div { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #9b6b00; font-weight: 900; }
.email-alert p { margin: 0; color: #674c0b; font-size: .82rem; line-height: 1.55; }
.consent-group { display: grid; gap: .65rem; margin-top: 1.25rem; }
.consent-card--optional { background: #fbfcfd; }
.privacy-details { margin-top: 1rem; padding: .9rem 1rem; border: 1px solid #d7e1e9; border-radius: 10px; background: #f8fafc; }
.privacy-details summary { cursor: pointer; color: var(--form-blue); font-size: .82rem; font-weight: 800; }
.privacy-details p { margin: .8rem 0 0; color: var(--form-muted); font-size: .78rem; line-height: 1.6; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.security-check { margin-top: 1.25rem; padding: 1rem; border: 1px solid #dbe6ef; border-radius: 12px; background: #f8fbfd; }
.security-check p { margin: .65rem 0 0; color: var(--form-muted); font-size: .75rem; line-height: 1.45; }

.success-panel {
  width: min(780px, calc(100% - 2rem));
  box-sizing: border-box;
  margin: 5rem auto;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(31, 122, 85, .2);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7,31,61,.13);
  text-align: center;
}
.success-panel__icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 1.3rem; border-radius: 50%; color: #fff; background: var(--form-success); box-shadow: 0 10px 30px rgba(31,122,85,.25); font-size: 2rem; font-weight: 900; }
.success-panel .application-eyebrow { text-align: center; }
.success-panel h2 { color: var(--form-navy); font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1; }
.success-panel > p:not(.application-eyebrow):not(.success-panel__fineprint) { max-width: 620px; margin: 1.2rem auto 0; color: var(--form-muted); line-height: 1.65; }
.success-panel__contact { margin: 1.3rem 0 0; padding: .9rem; border-radius: 10px; color: var(--form-navy); background: #edf7ff; font-size: .86rem; font-weight: 800; }
.success-panel__reference { display: inline-block; margin: .9rem 0; padding: .7rem 1rem; border-radius: 9px; color: var(--form-navy); background: #fff5d8; font-weight: 900; letter-spacing: .05em; }
.success-panel .email-alert { text-align: left; }
.success-panel__fineprint { margin: 1.2rem 0 0; color: #748391; font-size: .75rem; line-height: 1.55; }
.success-panel__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 1.5rem; }

.application-community { margin-top: 0; }
.application-community .un-cta__lead,
.application-community .un-cta-card__text { text-align: center; }

@media (max-width: 900px) {
  .application-header { grid-template-columns: 1fr auto; }
  .application-header__context { display: none; }
  .application-hero { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .application-hero__lead { margin-inline: auto; }
  .application-trust { justify-content: center; }
  .application-hero__visual { display: none; }
  .application-shell { grid-template-columns: 1fr; }
  .application-shell__intro { position: static; padding: 0; text-align: center; }
  .application-shell__intro > p:not(.application-eyebrow) { max-width: 680px; margin-inline: auto; }
  .application-shell__intro .application-eyebrow { text-align: center; }
  .application-scarcity { max-width: 620px; margin-inline: auto; text-align: left; }
}

@media (max-width: 640px) {
  .application-header { min-height: 68px; padding: .55rem .85rem; }
  .application-header__brand img { width: 44px; height: 44px; }
  .application-header__brand span { display: none; }
  .application-header__back { font-size: .75rem; }
  .application-hero { padding: 3.8rem 1rem 4.6rem; }
  .application-hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .application-hero__lead { font-size: 1rem; }
  .application-trust { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); width: 100%; }
  .application-trust span { justify-content: center; padding: .65rem .55rem; border-radius: 10px; font-size: .7rem; }
  .application-notice { margin-top: -2rem; padding: 1.1rem; border-radius: 15px; }
  .application-notice__icon { width: 34px; height: 34px; }
  .application-shell { width: min(100% - 1rem, 1180px); padding: 4.5rem 0; gap: 2.5rem; }
  .application-shell__intro h2 { font-size: 2.55rem; }
  .lead-form { border-radius: 18px; }
  .lead-form__progress { position: sticky; top: 0; z-index: 5; padding: 1rem 1.1rem; }
  .lead-form__progress-top { display: flex; }
  .lead-form__steps { display: none; }
  .lead-form__body { padding: 1.3rem 1rem 1.5rem; }
  .form-step legend { margin-bottom: 1.5rem; }
  .form-step legend > strong { font-size: 1.85rem; }
  .field-grid,
  .choice-row,
  .interest-grid { grid-template-columns: 1fr; gap: 0; }
  .choice-row { gap: .55rem; }
  .interest-grid { gap: .55rem; }
  .field-grid .field { margin-top: 1.2rem; }
  .field--check { margin-top: .7rem !important; }
  .nomad-explainer { grid-template-columns: 1fr; padding: 1rem; }
  .nomad-explainer__card { width: min(100%, 230px); min-height: 104px; margin: 0 auto; }
  .field-grid--nomad .field + .field { margin-top: 1.2rem; }
  .lead-form__actions { position: sticky; bottom: 0; z-index: 4; margin-inline: -1rem; margin-bottom: -1.5rem; padding: 1rem; background: rgba(255,255,255,.96); box-shadow: 0 -10px 24px rgba(7,31,61,.08); }
  .form-button { flex: 1; }
  .lead-form__action-note { margin-top: 2.2rem; text-align: center; }
  .success-panel { margin: 3rem auto; border-radius: 20px; }
  .success-panel__actions { flex-direction: column; }
}

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