:root {
  color-scheme: light;
  --ink: #132c25;
  --muted: #65736d;
  --green-900: #0e4b3c;
  --green-800: #125846;
  --green-700: #1b735c;
  --green-100: #e7f2eb;
  --lime: #d9f7a8;
  --cream: #f5f3eb;
  --card: #fffefb;
  --line: #d7ddd8;
  --gold-100: #f4ecd7;
  --gold-500: #a87323;
  --danger: #a63d32;
  --shadow: 0 14px 34px rgba(20, 51, 41, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Segoe UI", Arial, sans-serif; }
button, input { font: inherit; }
button { color: inherit; }
.is-hidden { display: none !important; }

.hero { min-height: 290px; color: white; background: radial-gradient(circle at 75% 10%, rgba(217,247,168,.17), transparent 27%), linear-gradient(135deg, #0d493a, #145f4b); }
.hero__inner { max-width: 1180px; margin: 0 auto; padding: 48px 28px 104px; display: flex; align-items: center; gap: 20px; }
.brand-mark { width: 68px; height: 68px; flex: 0 0 68px; display: grid; place-items: center; border-radius: 20px 16px 20px 16px; background: var(--lime); color: var(--green-900); font: 800 21px/1 "Segoe UI", Arial, sans-serif; transform: rotate(-3deg); box-shadow: 0 10px 22px rgba(0,0,0,.13); }
.eyebrow { display: block; margin-bottom: 5px; color: var(--lime); font: 800 12px/1.3 "Manrope", sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { margin: 0; font: 700 clamp(30px, 4vw, 46px)/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
.hero p { max-width: 720px; margin: 10px 0 0; color: #e5f0eb; font-size: 16px; line-height: 1.5; }

.page-shell { max-width: 1180px; margin: 0 auto; padding: 0 28px 46px; }
.card { margin-top: 18px; padding: 30px; background: var(--card); border: 1px solid rgba(193,202,196,.75); border-radius: 24px; box-shadow: var(--shadow); }
.card--overlap { position: relative; margin-top: -72px; }
.section-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 26px; }
.step-number { width: 32px; height: 32px; display: grid; flex: 0 0 32px; place-items: center; background: var(--green-100); color: var(--green-800); border-radius: 10px; font: 800 13px "Manrope", sans-serif; }
.section-heading h2 { margin: 0; font: 600 20px/1.25 "Manrope", sans-serif; letter-spacing: -.02em; }
.section-kicker { margin: 0 0 2px; color: var(--green-700); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.text-button { margin-left: auto; padding: 7px 0; border: 0; background: transparent; color: var(--green-700); cursor: pointer; font-weight: 700; }
.text-button:hover { color: var(--green-900); text-decoration: underline; }

fieldset { min-width: 0; margin: 0 0 26px; padding: 0; border: 0; }
fieldset:last-child { margin-bottom: 0; }
legend { width: 100%; margin-bottom: 12px; padding: 0; font-weight: 700; }
.segmented { display: inline-flex; gap: 5px; padding: 5px; background: #eef1ed; border-radius: 14px; }
.segment { min-width: 186px; padding: 10px 18px; text-align: left; border: 0; border-radius: 10px; background: transparent; cursor: pointer; touch-action: manipulation; }
.segment > *, .choice-card > * { pointer-events: none; }
.segment span, .segment small { display: block; }
.segment span { font-weight: 800; }
.segment small { margin-top: 2px; color: var(--muted); font-size: 12px; }
.segment.is-selected { background: white; color: var(--green-800); box-shadow: 0 3px 10px rgba(28,61,49,.09); }
.mode-note { display: inline-block; margin: 0 0 0 13px; color: var(--muted); font-size: 13px; }

.choice-grid { display: grid; gap: 12px; }
.choice-grid--three { grid-template-columns: repeat(3, 1fr); }
.choice-grid--two { grid-template-columns: repeat(2, 1fr); }
.choice-card { min-height: 112px; padding: 17px; display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto 1fr; column-gap: 12px; text-align: left; border: 1px solid #cfd7d2; border-radius: 16px; background: white; cursor: pointer; touch-action: manipulation; transition: border .15s, background .15s, transform .15s; }
.choice-card:hover { border-color: #75a38f; transform: translateY(-1px); }
.choice-card.is-selected { border: 2px solid #278066; padding: 16px; background: #e8f2ec; }
.choice-icon { width: 32px; height: 32px; grid-row: 1 / 3; display: grid; place-items: center; border-radius: 10px; color: var(--green-700); background: var(--green-100); font-size: 11px; font-weight: 800; }
.choice-icon--pasture { font-size: 19px; }
.choice-card strong { align-self: end; font-size: 15px; }
.choice-card small { align-self: start; margin-top: 5px; color: var(--muted); line-height: 1.35; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 20px; }
.form-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.field { min-width: 0; display: block; }
.field > span:first-child { display: block; margin-bottom: 9px; font-weight: 700; }
.field > small { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.input-wrap { height: 52px; display: flex; align-items: center; border: 1px solid #cbd3ce; border-radius: 13px; background: white; transition: border .15s, box-shadow .15s; }
.input-wrap:focus-within { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(27,115,92,.1); }
.input-wrap input { width: 100%; min-width: 0; height: 100%; padding: 0 13px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 17px; font-weight: 700; }
.input-wrap b { flex: 0 0 auto; padding-right: 13px; color: #486159; font-size: 11px; white-space: nowrap; }
.calculated-strip { margin-top: 26px; padding: 17px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid #d6e1d8; border-radius: 15px; background: #eff5ed; }
.calculated-strip strong, .calculated-strip small { display: block; }
.calculated-strip small { margin-top: 4px; color: var(--muted); }
.calculated-strip output { color: var(--green-900); font: 800 17px "Manrope", sans-serif; white-space: nowrap; }

.technical-block { margin-top: 26px; padding-top: 26px; border-top: 1px dashed #c8d3cc; }
.subsection-title { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.subsection-title h3 { margin: 7px 0 0; font: 700 17px "Manrope", sans-serif; }
.subsection-title p { margin: 0; color: var(--muted); font-size: 13px; }
.technical-tag { display: inline-block; padding: 5px 8px; color: #5b471d; background: var(--gold-100); border-radius: 7px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inline-setting { margin-top: 20px; padding: 15px 17px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: 14px; }
.switch-line { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.switch-line input { position: absolute; opacity: 0; pointer-events: none; }
.switch { width: 42px; height: 24px; position: relative; flex: 0 0 42px; background: #bbc5bf; border-radius: 20px; transition: background .2s; }
.switch::after { content: ""; width: 18px; height: 18px; position: absolute; top: 3px; left: 3px; border-radius: 50%; background: white; box-shadow: 0 2px 5px rgba(0,0,0,.18); transition: transform .2s; }
.switch-line input:checked + .switch { background: var(--green-700); }
.switch-line input:checked + .switch::after { transform: translateX(18px); }
.switch-line strong, .switch-line small { display: block; }
.switch-line small { margin-top: 2px; color: var(--muted); }
.compact-field { height: 42px; width: 108px; display: flex; align-items: center; border: 1px solid #cbd3ce; border-radius: 11px; }
.compact-field input { width: 100%; min-width: 0; padding: 0 0 0 12px; border: 0; outline: 0; background: transparent; font-weight: 700; }
.compact-field b { padding-right: 10px; font-size: 12px; }
.compact-field.is-disabled { opacity: .45; background: #eef0ee; }

.info-callout { margin-top: 24px; padding: 15px 17px; display: flex; gap: 12px; border-left: 3px solid #8bc5ae; background: #f1f5f1; }
.info-callout > span { width: 20px; height: 20px; display: grid; flex: 0 0 20px; place-items: center; border-radius: 50%; color: white; background: var(--green-700); font: 700 12px serif; }
.info-callout p { margin: 0; color: #496158; font-size: 13px; line-height: 1.5; }
.info-callout strong { color: var(--ink); }

.card--review { border-color: #bfd9cc; }
.draft-status, .confirmed-badge { margin-left: auto; padding: 6px 9px; border-radius: 20px; color: var(--green-700); background: var(--green-100); font-size: 11px; font-weight: 800; }
.draft-status.has-changes { color: #7b5418; background: #faedcf; }
.review-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 22px; }
.review-item { padding-left: 15px; position: relative; color: #465a53; font-size: 14px; line-height: 1.45; }
.review-item::before { content: ""; width: 5px; height: 5px; position: absolute; top: 8px; left: 0; border-radius: 50%; background: var(--green-700); }
.equation-preview { margin: 22px 0; padding: 13px 15px; display: flex; align-items: center; gap: 13px; border-radius: 12px; color: #40564e; background: #f1f4f0; font-size: 12px; overflow: auto; }
.equation-preview > span { font-weight: 800; white-space: nowrap; }
.equation-preview code { color: var(--green-900); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; white-space: nowrap; }
.equation-preview a { margin-left: auto; color: var(--green-700); font-weight: 700; white-space: nowrap; }
.form-errors { margin-bottom: 15px; padding: 13px 16px; border: 1px solid #e0b6b0; border-radius: 12px; color: #7d3028; background: #fff0ee; font-size: 13px; }
.form-errors ul { margin: 0; padding-left: 18px; }
.primary-button { width: 100%; min-height: 54px; padding: 0 20px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 13px; color: white; background: var(--green-800); box-shadow: 0 8px 18px rgba(16,75,60,.18); cursor: pointer; font: 800 15px "Manrope", sans-serif; }
.primary-button:hover { background: var(--green-900); }
.primary-button span:last-child { font-size: 20px; }
.confirmation-note { margin: 9px 0 0; text-align: center; color: var(--muted); font-size: 11px; }

.results-card { border: 1px dashed #a8bdb3; box-shadow: none; }
.empty-results { min-height: 110px; display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--muted); }
.empty-results strong { color: var(--ink); }
.empty-results p { margin: 4px 0 0; }
.empty-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--green-700); background: var(--green-100); font-weight: 800; }
.result-hero { padding: 25px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 18px; color: white; background: linear-gradient(125deg, #104c3d, #17654f); }
.result-hero__label { display: block; margin-bottom: 4px; color: #cae6d8; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.result-hero h3 { margin: 0; font: 800 clamp(29px,5vw,46px)/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.result-hero p { max-width: 570px; margin: 8px 0 0; color: #e1eee8; line-height: 1.45; }
.theoretical-value { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.25); text-align: right; }
.theoretical-value span, .theoretical-value strong { display: block; }
.theoretical-value span { color: #cae6d8; font-size: 11px; }
.theoretical-value strong { margin-top: 3px; font-size: 17px; }
.metrics-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.metric { min-height: 108px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: white; }
.metric span, .metric strong, .metric small { display: block; }
.metric span { color: var(--muted); font-size: 12px; }
.metric strong { margin-top: 9px; font: 800 19px/1.15 "Manrope", sans-serif; }
.metric small { margin-top: 5px; color: #7b8782; font-size: 10px; line-height: 1.3; }
.metric--accent { background: #edf5ee; border-color: #d4e4d6; }
.result-columns { margin-top: 18px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.interpretation, .alerts-panel { padding: 20px; border: 1px solid var(--line); border-radius: 16px; }
.interpretation h3, .alerts-panel h3 { margin: 0 0 12px; font: 700 16px "Manrope", sans-serif; }
.interpretation p { margin: 0 0 10px; color: #4b6158; font-size: 13px; line-height: 1.55; }
.interpretation p:last-child { margin-bottom: 0; }
.alert-list { display: grid; gap: 8px; }
.alert { padding: 10px 11px; display: flex; gap: 9px; border-radius: 10px; color: #4d5e57; background: #f1f3f0; font-size: 12px; line-height: 1.4; }
.alert::before { content: "•"; font-weight: 800; }
.alert--warning { color: #72511b; background: #fbf1d9; }
.alert--danger { color: #87362e; background: #fdebea; }
.alert--info { color: #285a68; background: #e9f3f5; }
.confirmed-footnote { margin: 14px 2px 0; color: var(--muted); font-size: 11px; text-align: right; }

.responsible-use { margin-top: 18px; padding: 24px 26px; display: flex; gap: 16px; border: 1px solid #e0d1ab; border-radius: 21px; background: var(--gold-100); }
.responsible-use__icon { width: 38px; height: 38px; display: grid; flex: 0 0 38px; place-items: center; border-radius: 12px; color: #6f531f; background: #ead9ad; font-size: 22px; }
.responsible-use h2 { margin: 0 0 6px; font: 800 14px "Manrope", sans-serif; }
.responsible-use p { margin: 0; color: #665c49; font-size: 13px; line-height: 1.55; }
.eyebrow--dark { color: var(--green-700); }
.modules-card { overflow: hidden; }
.local-badge { margin-left: auto; padding: 6px 9px; border-radius: 20px; color: #596a63; background: #eef1ee; font-size: 10px; font-weight: 700; }
.module-tabs { padding: 5px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; border-radius: 14px; background: #eef1ed; }
.module-tab { min-height: 42px; border: 0; border-radius: 10px; background: transparent; cursor: pointer; font-weight: 800; }
.module-tab:hover { color: var(--green-700); }
.module-tab.is-selected { color: var(--green-800); background: white; box-shadow: 0 3px 10px rgba(28,61,49,.09); }
.module-tab span { min-width: 20px; height: 20px; margin-left: 5px; padding: 0 5px; display: inline-grid; place-items: center; border-radius: 10px; color: white; background: var(--green-700); font-size: 10px; }
.module-panel { padding: 26px 2px 2px; }
.module-intro { margin-bottom: 22px; display: flex; justify-content: space-between; gap: 26px; }
.module-intro h3 { margin: 0; font: 700 18px "Segoe UI", Arial, sans-serif; }
.module-intro p { max-width: 700px; margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.module-setting-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; align-items: center; }
.module-switch { min-height: 82px; padding: 15px 17px; border: 1px solid var(--line); border-radius: 14px; }
.module-switch--standalone { margin-bottom: 20px; }
.module-input.is-disabled, .economics-fields.is-disabled { opacity: .45; }
.form-grid--four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.scenario-save { min-width: 440px; }
.scenario-save > label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 700; }
.scenario-save > div { display: flex; }
.scenario-save input { width: 100%; min-width: 0; height: 44px; padding: 0 12px; border: 1px solid #cbd3ce; border-right: 0; border-radius: 11px 0 0 11px; outline: 0; }
.scenario-save input:focus { border-color: var(--green-700); }
.scenario-save button { flex: 0 0 auto; padding: 0 15px; border: 0; border-radius: 0 11px 11px 0; color: white; background: var(--green-800); cursor: pointer; font-weight: 800; }
.scenario-save button:hover { background: var(--green-900); }
.module-message { margin-bottom: 13px; padding: 10px 12px; border-radius: 10px; color: #285a68; background: #e9f3f5; font-size: 12px; }
.module-message.is-error { color: #87362e; background: #fdebea; }
.scenario-delete-bar { margin-bottom: 14px; padding: 13px 14px; display: flex; align-items: end; justify-content: space-between; gap: 18px; border: 1px solid #ead0cc; border-radius: 12px; background: #fff7f5; }
.scenario-delete-bar > label { color: #783a32; font-size: 12px; font-weight: 800; }
.scenario-delete-bar > div { min-width: 420px; display: flex; }
.scenario-delete-bar select { width: 100%; min-width: 0; height: 40px; padding: 0 10px; border: 1px solid #d7b9b4; border-right: 0; border-radius: 9px 0 0 9px; background: white; outline: 0; }
.scenario-delete-bar button { flex: 0 0 auto; padding: 0 13px; border: 0; border-radius: 0 9px 9px 0; color: white; background: #a64237; cursor: pointer; font-weight: 800; }
.scenario-delete-bar button:hover:not(:disabled) { background: #84332b; }
.scenario-delete-bar button:disabled { opacity: .45; cursor: not-allowed; }
.scenario-list { display: grid; gap: 10px; }
.scenario-empty { padding: 28px; text-align: center; border: 1px dashed #bdc9c2; border-radius: 14px; color: var(--muted); font-size: 13px; }
.scenario-row { padding: 14px 16px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 13px; }
.scenario-row__main { min-width: 0; flex: 1; }
.scenario-row__main strong, .scenario-row__main small { display: block; }
.scenario-row__main strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.scenario-row__main small { margin-top: 4px; color: var(--muted); }
.scenario-row__result { padding: 6px 9px; border-radius: 9px; color: var(--green-800); background: var(--green-100); font-size: 12px; font-weight: 800; white-space: nowrap; }
.row-button { padding: 7px 10px; border: 1px solid #bcc9c2; border-radius: 9px; background: white; cursor: pointer; font-size: 11px; font-weight: 700; }
.row-button:hover { border-color: var(--green-700); color: var(--green-700); }
.row-button--danger:hover { border-color: #b74a3e; color: #9b382e; }
.comparison-picker { margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.comparison-option { padding: 8px 11px; display: flex; align-items: center; gap: 7px; border: 1px solid #cbd3ce; border-radius: 10px; cursor: pointer; font-size: 12px; }
.comparison-option:has(input:checked) { border-color: var(--green-700); color: var(--green-800); background: var(--green-100); }
.comparison-output { overflow-x: auto; }
.comparison-table { width: 100%; min-width: 650px; border-collapse: separate; border-spacing: 0; font-size: 12px; }
.comparison-table th, .comparison-table td { padding: 10px 12px; border-right: 1px solid #e1e5e2; border-bottom: 1px solid #e1e5e2; text-align: right; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th { color: white; background: var(--green-800); }
.comparison-table thead th:first-child { border-radius: 10px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 10px 0 0; }
.comparison-table tbody tr:nth-child(even) td { background: #f4f6f3; }
.module-calculate { margin: 24px -2px -2px; padding: 18px; display: grid; grid-template-columns: 1fr minmax(300px, 430px); align-items: center; gap: 22px; border: 1px solid #c8ddd2; border-radius: 15px; background: #edf5ef; }
.module-calculate strong, .module-calculate small { display: block; }
.module-calculate small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.module-calculate .primary-button { min-height: 48px; }
.extension-results { margin-top: 18px; padding: 20px; border: 1px solid #d4e1d9; border-radius: 16px; background: #f1f6f1; }
.extension-results h3 { margin: 0 0 13px; font: 700 16px "Segoe UI", Arial, sans-serif; }
.extension-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.extension-metric { padding: 13px; border-radius: 12px; background: white; }
.extension-metric span, .extension-metric strong { display: block; }
.extension-metric span { color: var(--muted); font-size: 11px; }
.extension-metric strong { margin-top: 5px; font-size: 16px; }
footer { padding: 25px 10px 0; color: #738079; text-align: center; font-size: 11px; }
footer > p { margin: 0; }
.install-app-button { margin-top: 14px; padding: 9px 15px; border: 0; border-radius: 10px; color: white; background: var(--green-800); cursor: pointer; font-weight: 800; }
.install-app-button:hover { background: var(--green-900); }
.install-help { max-width: 680px; margin: 12px auto 0; }
.install-help summary { cursor: pointer; color: var(--green-800); font-weight: 800; }
.install-help p { margin: 8px 0 0; line-height: 1.55; }

@media (max-width: 850px) {
  .choice-grid--three, .form-grid--three, .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid--four, .extension-metrics { grid-template-columns: repeat(2,1fr); }
  .choice-grid--three .choice-card:last-child { grid-column: 1 / -1; }
  .mode-note { display: block; margin: 9px 0 0; }
  .result-columns { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { min-height: 250px; }
  .hero__inner { padding: 32px 18px 90px; align-items: flex-start; }
  .brand-mark { width: 52px; height: 52px; flex-basis: 52px; border-radius: 15px; font-size: 17px; }
  .hero p { font-size: 14px; }
  .page-shell { padding: 0 12px 32px; }
  .card { padding: 21px 17px; border-radius: 19px; }
  .card--overlap { margin-top: -58px; }
  .section-heading { align-items: flex-start; margin-bottom: 22px; }
  .section-heading h2 { font-size: 17px; }
  .text-button { position: absolute; top: 18px; right: 18px; font-size: 11px; }
  .segmented { width: 100%; }
  .segment { min-width: 0; width: 50%; padding: 9px 10px; }
  .choice-grid--three, .choice-grid--two, .form-grid, .form-grid--three, .metrics-grid, .review-summary { grid-template-columns: 1fr; }
  .choice-grid--three .choice-card:last-child { grid-column: auto; }
  .choice-card { min-height: 94px; }
  .calculated-strip { align-items: flex-start; flex-direction: column; gap: 10px; }
  .subsection-title { align-items: flex-start; flex-direction: column; gap: 7px; }
  .inline-setting { align-items: flex-start; flex-direction: column; }
  .equation-preview { align-items: flex-start; flex-direction: column; }
  .equation-preview a { margin-left: 0; }
  .result-hero { align-items: flex-start; flex-direction: column; }
  .theoretical-value { padding: 13px 0 0; border-top: 1px solid rgba(255,255,255,.25); border-left: 0; text-align: left; }
  .module-tabs { grid-template-columns: repeat(2,1fr); }
  .module-setting-grid { grid-template-columns: 1fr; }
  .module-intro, .module-intro--action { align-items: flex-start; flex-direction: column; }
  .scenario-save { min-width: 0; width: 100%; }
  .scenario-delete-bar { align-items: stretch; flex-direction: column; }
  .scenario-delete-bar > div { min-width: 0; width: 100%; }
  .scenario-row { align-items: flex-start; flex-wrap: wrap; }
  .scenario-row__main { flex-basis: calc(100% - 100px); }
  .module-calculate { grid-template-columns: 1fr; }
}

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