@font-face {
  font-family: "Shahan Sans";
  src: url("/ShahanSans.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  color-scheme: dark;
  font-family: "Shahan Sans", "DejaVu Sans", Tahoma, Arial, sans-serif;
  --bg: #07111f;
  --bg-deep: #030a13;
  --surface: rgba(12, 26, 43, 0.78);
  --surface-strong: #0d1b2d;
  --surface-soft: #101f32;
  --ink: #f6f3ec;
  --muted: #8d9aaa;
  --border: rgba(172, 190, 211, 0.18);
  --border-strong: rgba(221, 182, 112, 0.55);
  --gold: #e3bd79;
  --gold-strong: #f0cb87;
  --gold-dark: #a67835;
  --green: #79d69b;
  --danger: #ef8f8f;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--bg); color: var(--ink); }
button, input { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible { outline: 2px solid var(--gold-strong); outline-offset: 3px; }

.app-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 20%, rgba(48, 74, 104, 0.18), transparent 26%),
    linear-gradient(145deg, #06101d 0%, #071421 55%, #030a13 100%);
  overflow-x: hidden;
}

.topbar {
  height: 88px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 12, 22, 0.78);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 20;
}

.brand { display: flex; align-items: center; gap: 14px; direction: ltr; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: #07111f; font: 800 25px/1 Arial, sans-serif;
  background: linear-gradient(145deg, #f2cf8b, #aa7833);
  clip-path: polygon(50% 0, 95% 20%, 86% 76%, 50% 100%, 14% 76%, 5% 20%);
}
.brand > span:last-child { display: grid; gap: 1px; }
.brand strong { color: var(--gold-strong); font: 700 17px/1.35 Arial, sans-serif; letter-spacing: 3px; }
.brand small { color: var(--muted); font: 400 12px/1.4 Arial, sans-serif; letter-spacing: .5px; }

.resume-action {
  border: 1px solid var(--border-strong); background: transparent; border-radius: var(--radius-sm);
  padding: 11px 16px; color: var(--gold-strong); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: background .2s ease, transform .2s ease;
}
.resume-action:hover { background: rgba(227, 189, 121, .08); transform: translateX(-2px); }
.resume-action:disabled { opacity: .35; cursor: default; transform: none; }

.discovery-layout {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(390px, .9fr);
  direction: rtl;
}

.conversation-canvas { padding: 34px clamp(28px, 5vw, 76px) 46px; border-left: 1px solid var(--border); }
.progress-wrap { max-width: 920px; margin: 0 auto 40px; }
.progress-meta { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 14px; margin-bottom: 13px; }
.progress-meta strong { color: var(--gold-strong); }
.progress-track { height: 3px; border-radius: 100px; background: rgba(137, 156, 178, .18); overflow: hidden; }
.progress-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-strong)); box-shadow: 0 0 18px rgba(227, 189, 121, .6); transition: width .45s cubic-bezier(.2,.8,.2,1); }

.hero-copy { max-width: 920px; margin: 0 auto 28px; }
.hero-copy h1 { margin: 0 0 12px; font-size: clamp(34px, 3.4vw, 54px); line-height: 1.55; letter-spacing: -.8px; font-weight: 800; }
.hero-copy p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.9; }

.question-panel { max-width: 920px; margin: 0 auto; animation: rise .36s ease both; }
.history-line { border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); padding: 13px 0; color: #aab4c2; font-size: 14px; }
.question-copy { margin: 30px 0 20px; }
.question-copy h2 { margin: 0 0 7px; color: var(--gold-strong); font-size: clamp(23px, 2vw, 31px); line-height: 1.6; }
.question-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.answer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.answer-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.answer-option {
  min-height: 100px; border: 1px solid rgba(163, 179, 199, .32); background: rgba(9, 20, 34, .58);
  border-radius: var(--radius-md); padding: 18px 14px; cursor: pointer; position: relative;
  display: flex; justify-content: center; align-items: center; text-align: center; color: #e8ebef; font-size: 16px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.answer-option:hover { border-color: rgba(227, 189, 121, .55); transform: translateY(-2px); }
.answer-option.selected { border-color: var(--gold-strong); color: var(--gold-strong); background: linear-gradient(145deg, rgba(227,189,121,.16), rgba(255,255,255,.04)); box-shadow: inset 0 0 0 1px rgba(227,189,121,.25), 0 12px 35px rgba(0,0,0,.18); }
.selected-check { position: absolute; top: 10px; right: 10px; width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-strong); color: #07111f; }
.selected-check svg { width: 15px; }
.answer-option.custom { display: grid; align-content: center; gap: 8px; }
.answer-option.custom input { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--border); color: var(--gold-strong); text-align: center; font-size: 14px; padding: 4px; }
.answer-option.custom input::placeholder { color: #667487; }
.answer-option.intent-input { grid-column: 1 / -1; min-height: 116px; padding: 24px; }
.answer-option.intent-input input { border: 0; font-size: clamp(18px, 2vw, 24px); text-align: right; color: #f0d39a; padding: 15px 18px; border-radius: 13px; background: rgba(255,255,255,.035); }
.alternative-toggle { margin: 18px 0 0; display: flex; align-items: center; gap: 10px; cursor: pointer; color: #b7c0cd; font-size: 14px; }
.alternative-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-ui { width: 23px; height: 23px; border: 1px solid var(--border-strong); border-radius: 7px; display: grid; place-items: center; color: #07111f; background: transparent; }
.alternative-toggle input:checked + .checkbox-ui { background: var(--gold-strong); }
.checkbox-ui svg { width: 15px; }

.primary-action {
  width: 100%; min-height: 66px; border: 0; border-radius: var(--radius-sm); padding: 0 24px;
  margin-top: 20px; background: linear-gradient(115deg, #f0ce8b, #c5934d); color: #07111f;
  font-weight: 800; font-size: 18px; display: flex; justify-content: center; align-items: center; gap: 16px;
  cursor: pointer; box-shadow: 0 12px 35px rgba(161, 112, 45, .18); transition: transform .2s ease, filter .2s ease;
}
.primary-action:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.06); }
.primary-action:disabled { opacity: .38; cursor: not-allowed; box-shadow: none; }

.vehicle-stage {
  direction: rtl; padding: 44px 22px 38px; position: relative; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, rgba(5,12,21,.25), rgba(3,9,16,.76)); overflow: hidden;
}
.vehicle-stage::before, .vehicle-stage::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(transparent, rgba(227,189,121,.6), transparent); opacity: .5; }
.vehicle-stage::before { left: 10%; } .vehicle-stage::after { left: 14%; }
.vehicle-glow { position: absolute; width: 420px; height: 230px; top: 18%; left: 50%; transform: translateX(-50%); background: rgba(227,189,121,.08); filter: blur(70px); border-radius: 50%; }
.vehicle-stage > img { position: relative; z-index: 1; width: min(112%, 720px); max-height: 340px; object-fit: contain; align-self: center; filter: drop-shadow(0 40px 38px rgba(0,0,0,.45)); }
.decision-core { position: relative; z-index: 1; width: min(100%, 470px); height: 280px; margin: 0 auto 20px; display: grid; place-items: center; isolation: isolate; }
.core-center { width: 88px; height: 88px; border-radius: 28px; display: grid; place-items: center; color: #07111f; font: 900 38px/1 Inter, sans-serif; background: linear-gradient(145deg, #f4d99f, #b9803c); box-shadow: 0 0 0 9px rgba(227,189,121,.06), 0 0 70px rgba(227,189,121,.24); }
.core-orbit { position: absolute; border: 1px solid rgba(227,189,121,.25); border-radius: 50%; animation: spin 18s linear infinite; }
.orbit-one { width: 210px; height: 210px; border-style: dashed; }
.orbit-two { width: 310px; height: 170px; animation-direction: reverse; animation-duration: 24s; }
.core-node { position: absolute; min-width: 92px; padding: 8px 12px; border: 1px solid rgba(163,179,199,.26); border-radius: 999px; background: rgba(7,18,31,.86); color: #c7d0dc; text-align: center; font-size: 11px; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.node-one { top: 24px; right: 40px; }
.node-two { top: 72px; left: 20px; }
.node-three { bottom: 38px; right: 16px; }
.node-four { bottom: 20px; left: 58px; }

.deal-passport { position: relative; z-index: 2; width: min(100%, 540px); align-self: center; border: 1px solid var(--border-strong); border-radius: var(--radius-md); background: rgba(5, 15, 26, .82); backdrop-filter: blur(16px); box-shadow: var(--shadow); overflow: hidden; }
.passport-title { min-height: 68px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--border); }
.passport-title > div { display: grid; gap: 2px; }
.passport-title strong { color: var(--gold-strong); font-size: 15px; direction: ltr; text-align: right; }
.passport-title small { color: var(--muted); font-size: 11px; }
.passport-signal { width: 18px; height: 18px; border: 2px solid var(--gold); border-radius: 50%; position: relative; box-shadow: 0 0 14px rgba(227,189,121,.35); }
.passport-signal::after { content: ""; position: absolute; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; top: 4px; left: 4px; }
.passport-row { min-height: 53px; display: grid; grid-template-columns: 30px 86px 1fr 24px; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
.passport-row strong { color: #dce2e9; font-size: 13px; font-weight: 500; }
.passport-label { color: var(--muted); }
.passport-icon { color: #607087; display: grid; place-items: center; }
.passport-icon.ready { color: var(--gold); }
.passport-icon svg, .row-check svg { width: 17px; }
.row-check { color: var(--green); display: grid; place-items: center; }
.passport-status { display: flex; align-items: center; gap: 12px; padding: 16px; background: rgba(227,189,121,.06); }
.passport-status > div { display: grid; gap: 2px; }
.passport-status strong { color: var(--gold-strong); font-size: 13px; }
.passport-status small { color: var(--muted); font-size: 11px; }
.source-spinner { width: 24px; height: 24px; border: 2px dotted var(--gold); border-radius: 50%; animation: spin 1.8s linear infinite; }

.trust-rail { min-height: 62px; display: flex; justify-content: center; gap: min(14vw, 180px); align-items: center; border-top: 1px solid var(--border); background: rgba(3,9,16,.82); color: #aab5c3; font-size: 13px; padding: 12px 24px; }
.trust-rail span { display: flex; align-items: center; gap: 10px; }
.trust-rail svg { color: var(--gold); width: 19px; }

.loading-state { min-height: calc(100vh - 150px); display: grid; align-content: center; justify-items: center; text-align: center; padding: 40px; }
.analysis-orbit { width: 78px; height: 78px; border: 1px solid var(--border-strong); border-top-color: var(--gold-strong); border-radius: 50%; animation: spin 1.2s linear infinite; box-shadow: 0 0 45px rgba(227,189,121,.12); }
.loading-state h1 { margin: 28px 0 8px; font-size: 30px; }
.loading-state p { color: var(--muted); }
.error-state .primary-action { width: min(360px, 100%); position: static; }

.results-layout { min-height: calc(100vh - 150px); padding: 34px clamp(24px, 4vw, 62px) 42px; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 26px; direction: rtl; }
.results-main { min-width: 0; }
.result-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 8px; }
.result-spark { color: var(--gold-strong); padding-top: 8px; }
.result-spark svg { width: 27px; height: 27px; }
.result-heading h1 { margin: 0 0 7px; font-size: clamp(30px, 3vw, 44px); line-height: 1.5; }
.result-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.decision-mode { color: var(--gold); font-size: 12px; margin: 12px 42px 20px 0; }
.deals-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.deal-card { min-width: 0; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(10,22,37,.67); padding: 14px; cursor: pointer; text-align: right; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.deal-card:hover { transform: translateY(-3px); border-color: rgba(227,189,121,.4); }
.deal-card.selected { border-color: var(--gold-strong); box-shadow: inset 0 0 0 1px rgba(227,189,121,.18), 0 20px 45px rgba(0,0,0,.18); background: linear-gradient(160deg, rgba(227,189,121,.08), rgba(10,22,37,.72)); }
.deal-card-top { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12px; }
.deal-card-top strong { color: var(--gold-strong); border: 1px solid var(--border-strong); width: 34px; height: 30px; display: grid; place-items: center; border-radius: 9px; }
.deal-card.selected .deal-card-top span { color: #07111f; background: var(--gold-strong); padding: 5px 10px; border-radius: 8px; font-weight: 700; }
.deal-card img { width: 100%; height: 132px; object-fit: contain; margin: 5px 0 2px; filter: drop-shadow(0 18px 22px rgba(0,0,0,.35)); }
.deal-card img.real-inventory-image { object-fit: cover; border-radius: 12px; filter: none; }
.real-photo-badge { color: var(--gold-strong); font-size: 11px; margin: 4px 0 0; }
.deal-card h3 { margin: 7px 0 14px; min-height: 54px; font-size: 17px; line-height: 1.6; }
.deal-numbers { display: grid; gap: 8px; padding: 12px 0; border-top: 1px solid var(--border); color: #d5dce4; font-size: 13px; }
.deal-safety { display: flex; gap: 7px; align-items: center; color: var(--green); font-size: 12px; margin: 4px 0 14px; }
.deal-safety svg { width: 17px; }
.deal-select { margin-top: auto; min-height: 42px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--border); color: #c1cad5; font-size: 13px; }
.deal-card.selected .deal-select { background: var(--gold-strong); color: #07111f; border-color: transparent; font-weight: 800; }
.why-panel { margin-top: 16px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(9,20,34,.58); padding: 19px 22px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; }
.why-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 15px; color: var(--gold); }
.why-panel h2 { margin: 0 0 10px; color: var(--gold-strong); font-size: 18px; }
.why-panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; color: #c2cbd6; font-size: 13px; }
.why-panel li { display: flex; align-items: center; gap: 7px; }
.why-panel li svg { width: 16px; color: var(--gold); }
.result-actions { display: grid; grid-template-columns: .7fr 1.3fr; gap: 12px; }
.result-actions .primary-action { margin-top: 14px; min-height: 58px; font-size: 16px; }
.secondary-action { min-height: 58px; margin-top: 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: transparent; color: #c4cdd8; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; }
.secondary-action:hover { border-color: var(--border-strong); color: var(--gold-strong); }
.price-lock { text-align: center; color: var(--muted); font-size: 12px; }
.results-side { display: flex; flex-direction: column; gap: 14px; }
.result-passport { width: 100%; position: sticky; top: 18px; }
.handoff-preview { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; background: rgba(9,20,34,.55); display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.handoff-preview > svg { color: var(--gold); }
.handoff-preview strong { font-size: 14px; }
.handoff-preview p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(0,5,11,.76); backdrop-filter: blur(14px); display: grid; place-items: center; padding: 22px; }
.handoff-modal { width: min(560px, 100%); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); background: #0b1828; box-shadow: 0 40px 110px rgba(0,0,0,.62); padding: 30px; position: relative; animation: rise .25s ease both; }
.modal-close { position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; font-size: 24px; color: var(--muted); }
.modal-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; color: var(--gold); background: rgba(227,189,121,.08); border: 1px solid var(--border-strong); }
.handoff-modal h2 { font-size: 25px; margin: 17px 0 7px; }
.handoff-modal > p { color: var(--muted); line-height: 1.9; margin: 0; font-size: 14px; }
.brief-preview { margin: 18px 0; padding: 13px; border-radius: 12px; background: rgba(255,255,255,.035); color: #b9c2ce; line-height: 1.9; font-size: 12px; }
.phone-field { display: grid; gap: 7px; color: #c4cdd7; font-size: 13px; }
.phone-field input { width: 100%; height: 52px; border: 1px solid var(--border); border-radius: 12px; background: rgba(4,11,20,.62); color: var(--ink); padding: 0 15px; font-size: 16px; }
.phone-field input:focus { outline: 2px solid rgba(227,189,121,.35); border-color: var(--gold); }
.consent-field { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; color: #b9c2ce; font-size: 12px; line-height: 1.8; cursor: pointer; }
.consent-field input { position: absolute; opacity: 0; pointer-events: none; }
.consent-field input:checked + .checkbox-ui { background: var(--gold-strong); }
.lead-status { min-height: 22px; margin: 8px 0 -6px !important; color: var(--gold-strong) !important; font-size: 12px !important; }
.handoff-modal .primary-action { min-height: 56px; font-size: 15px; }
.handoff-modal > small { display: block; margin-top: 10px; text-align: center; color: var(--muted); font-size: 11px; }

@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

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

@media (max-width: 1120px) {
  .discovery-layout { grid-template-columns: minmax(0, 1.4fr) minmax(330px, .8fr); }
  .hero-copy h1 { font-size: 39px; }
  .answer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .answer-option { min-height: 82px; }
  .results-layout { grid-template-columns: 1fr; }
  .results-side { display: grid; grid-template-columns: 1fr 1fr; }
  .result-passport { position: static; }
}

@media (max-width: 760px) {
  .topbar { height: 70px; padding: 0 18px; }
  .brand-mark { width: 37px; height: 37px; font-size: 21px; }
  .brand strong { font-size: 13px; letter-spacing: 2px; }
  .brand small { display: none; }
  .resume-action { display: flex; padding: 8px 11px; font-size: 11px; gap: 5px; }
  .resume-action svg { width: 15px; }
  .discovery-layout { min-height: auto; display: flex; flex-direction: column; }
  .conversation-canvas { order: 2; padding: 20px 18px 20px; border-left: 0; }
  .vehicle-stage { order: 1; min-height: 150px; padding: 6px 18px 0; justify-content: flex-end; border-bottom: 1px solid var(--border); }
  .vehicle-stage::before, .vehicle-stage::after, .vehicle-glow { display: none; }
  .vehicle-stage > img { width: 115%; height: 150px; object-fit: cover; object-position: 50% 42%; opacity: .92; mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 85%, transparent 100%); }
  .vehicle-stage .deal-passport { display: none; }
  .progress-wrap { margin-bottom: 22px; }
  .progress-meta { font-size: 12px; }
  .hero-copy { margin-bottom: 21px; }
  .hero-copy h1 { font-size: clamp(29px, 8vw, 36px); line-height: 1.55; }
  .hero-copy p { font-size: 14px; line-height: 1.8; }
  .history-line { display: none; }
  .question-copy { margin: 15px 0; }
  .question-copy h2 { font-size: 23px; }
  .question-copy p { font-size: 12px; }
  .answer-grid, .answer-grid.three { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .answer-option { min-height: 78px; border-radius: 15px; padding: 12px 8px; font-size: 14px; }
  .answer-option.intent-input { min-height: 92px; padding: 10px; }
  .answer-option.intent-input input { font-size: 16px; padding: 13px; }
  .selected-check { width: 21px; height: 21px; top: 7px; right: 7px; }
  .alternative-toggle { align-items: flex-start; line-height: 1.8; font-size: 12px; }
  .primary-action { position: sticky; bottom: 10px; z-index: 12; min-height: 59px; margin-top: 15px; font-size: 16px; }
  .trust-rail { min-height: 52px; font-size: 11px; gap: 18px; flex-wrap: wrap; }
  .trust-rail span:nth-child(2) { display: none; }
  .results-layout { padding: 22px 16px 30px; }
  .result-heading h1 { font-size: 30px; }
  .result-heading p { font-size: 13px; }
  .deals-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; direction: rtl; }
  .deal-card { flex: 0 0 84%; scroll-snap-align: start; }
  .deal-card img { height: 145px; }
  .why-panel { grid-template-columns: 1fr; }
  .why-icon { display: none; }
  .why-panel ul { display: grid; }
  .result-actions { grid-template-columns: 1fr; }
  .result-actions .secondary-action { order: 2; margin-top: 0; }
  .result-actions .primary-action { position: static; }
  .results-side { display: flex; }
  .handoff-preview { order: -1; }
  .handoff-modal { padding: 24px 18px; }
}

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