/* ACME Instal — demo build
   Palette: bone paper / graphite ink / verdigris signal
   Type: Archivo (display + body) + IBM Plex Mono (data, labels, prices) */

:root {
    --bone: #f4f1ea;
    --bone-2: #eae5d9;
    --bone-3: #e0dace;
    --ink: #15181c;
    --ink-2: #22272d;
    --ink-soft: #575e66;
    --ink-faint: #8a9098;
    --line: #d9d3c5;
    --line-dark: #2f353c;
    --verd: #0a6353;
    --verd-lite: #0d8770;
    --verd-wash: #e3ece8;
    --ember: #a83d1a;
    --white: #fff;
    --maxw: 1280px;
    --pad: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bone);
    color: var(--ink);
    font-family: 'Archivo', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

svg {
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

@media(max-width:64rem) {
    :root {
        --pad: 32px;
    }
}

@media(max-width:52rem) {
    :root {
        --pad: 22px;
    }
}

@media(max-width:22.5rem) {
    :root {
        --pad: 16px;
    }
}

section {
    padding: 104px 0;
}

@media(max-width:64rem) {
    section {
        padding: 76px 0;
    }
}

@media(max-width:52rem) {
    section {
        padding: 56px 0;
    }
}

/* ---------- type ---------- */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -.032em;
    line-height: 1.02;
}

h1 {
    font-size: clamp(2.6rem, 6.2vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    letter-spacing: -.022em;
    line-height: 1.15;
}

h4 {
    font-size: 1.02rem;
    letter-spacing: -.012em;
    line-height: 1.3;
}

p {
    max-width: 66ch;
}

.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.5;
    color: var(--ink-2);
    letter-spacing: -.011em;
}

.dim {
    color: var(--ink-soft);
}

.tight {
    max-width: 46ch;
}

.label {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--verd);
    display: block;
}

.label-dim {
    color: var(--ink-faint);
}

.label-on-dark {
    color: #7fd9c4;
}

.num {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-variant-numeric: tabular-nums;
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--bone);
    border: 1px solid var(--ink);
    transition: background .16s, color .16s, border-color .16s;
}

.btn:hover {
    background: var(--verd);
    border-color: var(--verd);
    color: #fff;
}

.btn-verd {
    background: var(--verd);
    border-color: var(--verd);
    color: #fff;
}

.btn-verd:hover {
    background: var(--verd-lite);
    border-color: var(--verd-lite);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--bone);
    border-color: var(--ink);
}

.btn-on-dark {
    background: transparent;
    color: var(--bone);
    border-color: #3d444c;
}

.btn-on-dark:hover {
    background: var(--bone);
    color: var(--ink);
    border-color: var(--bone);
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media(max-width:22.5rem) {
    .btn {
        padding: 12px 16px;
        font-size: .7rem;
        letter-spacing: .05em;
    }
}

/* ---------- header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(244, 241, 234, .88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px var(--pad);
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-weight: 700;
    font-size: 1.22rem;
    letter-spacing: -.03em;
}

.brand b {
    font-weight: 700;
}

.brand span {
    color: var(--verd);
}

.brand small {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .6rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

@media(max-width:60rem) {
    .brand small {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .73rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--ink-soft);
    transition: color .15s;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a.on {
    color: var(--ink);
    border-bottom-color: var(--verd);
}

@media(max-width:68rem) {
    .nav-links {
        gap: 15px;
        font-size: .68rem;
    }
}

@media(max-width:52rem) {

    .nav-links,
    .nav .btn {
        display: none;
    }
}

.burger {
    display: none;
    width: 42px;
    height: 38px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger i {
    display: block;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .2s, opacity .2s;
}

.burger.open i:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.burger.open i:nth-child(2) {
    opacity: 0;
}

.burger.open i:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

@media(max-width:52rem) {
    .burger {
        display: flex;
    }
}

.drawer {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--bone);
}

.drawer.open {
    display: block;
}

.drawer nav {
    display: flex;
    flex-direction: column;
    padding: 8px var(--pad) 20px;
}

.drawer nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .82rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer nav a span {
    color: var(--ink-faint);
    font-size: .7rem;
}

.drawer .actions {
    margin-top: 18px;
}

@media(min-width:52.0625rem) {
    .drawer {
        display: none !important;
    }
}

/* ---------- hero ---------- */
.hero {
    padding: 88px 0 88px;
}

@media(max-width:52rem) {
    .hero {
        padding: 48px 0 48px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: end;
}

@media(max-width:64rem) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }
}

.hero h1 {
    margin: 22px 0 0;
}

.hero-side {
    padding-bottom: 8px;
}

.hero-side p {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.5;
    color: var(--ink-2);
    letter-spacing: -.01em;
}

/* dark schematic panel sitting inside the hero */
.hero-figure {
    margin: 44px 0 0;
    background: var(--ink);
    padding: 30px 28px 22px;
}

.hero-figure figcaption {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line-dark);
    color: #767e87;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.6;
}

@media(max-width:52rem) {
    .hero-figure {
        margin-top: 30px;
        padding: 18px 14px 14px;
    }
}

.ratingbar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--verd);
}

.rating-n {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-weight: 600;
    font-size: 1.05rem;
}

.rating-t {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .74rem;
    color: var(--ink-soft);
    letter-spacing: .03em;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.pill b {
    color: var(--verd);
    font-weight: 600;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--verd);
    flex: none;
}

/* ---------- bands ---------- */
.band {
    background: var(--ink);
    color: var(--bone);
}

.band h1,
.band h2,
.band h3,
.band h4 {
    color: var(--white);
}

.band .dim {
    color: #9aa2ab;
}

.band .lede {
    color: #c9cfd6;
}

.band hr,
.band .rule li {
    border-color: var(--line-dark);
}

.band-wash {
    background: var(--verd-wash);
}

.band-2 {
    background: var(--bone-2);
}

/* ---------- section heads ---------- */
.sec-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 52px;
}

@media(max-width:64rem) {
    .sec-head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 36px;
    }
}

.sec-head .label {
    margin-bottom: 14px;
}

/* ---------- hairline rule list ---------- */
.rule {
    list-style: none;
    border-top: 1px solid var(--line);
}

.rule li {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 24px;
    align-items: baseline;
}

@media(max-width:52rem) {
    .rule li {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px 0;
    }
}

.rule .k {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.rule .v {
    color: var(--ink-2);
}

.band .rule .v {
    color: #9aa2ab;
}

.band .rule .k {
    color: #767e87;
}

.rule .n {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-weight: 600;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* ---------- cards ---------- */
.grid {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.g2 {
    grid-template-columns: repeat(2, 1fr);
}

.g3 {
    grid-template-columns: repeat(3, 1fr);
}

.g4 {
    grid-template-columns: repeat(4, 1fr);
}

@media(max-width:64rem) {

    .g3,
    .g4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:38rem) {

    .g2,
    .g3,
    .g4 {
        grid-template-columns: 1fr;
    }
}

.cell {
    background: var(--bone);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cell.on-dark {
    background: var(--ink);
}

.cell .idx {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .14em;
    color: var(--verd);
}

.cell p {
    font-size: .94rem;
    color: var(--ink-soft);
}

.band .cell p {
    color: #9aa2ab;
}

a.cell {
    transition: background .16s;
}

a.cell:hover {
    background: var(--white);
}

.band a.cell:hover {
    background: var(--ink-2);
}

.cell .go {
    margin-top: auto;
    padding-top: 14px;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--verd);
}

/* ---------- price tables ---------- */
/* light surfaces nested inside a dark band must reclaim their text colour,
   otherwise they inherit .band's bone and render pale-on-white.
   headings and .cell p need naming explicitly — .band h3 and .band .cell p
   are separate rules that otherwise still win */
.band .tbl-wrap,
.band .tier,
.band .cell,
.band .pill {
    color: var(--ink);
}

.band .cell h3,
.band .cell h4,
.band .tier h3,
.band .tier h4,
.band .tbl-wrap caption {
    color: var(--ink);
}

.band .cell p {
    color: var(--ink-soft);
}

.band .cell .idx {
    color: var(--verd);
}

/* the two surfaces inside a band that are meant to stay dark */
.band .tier.best,
.band .cell.on-dark {
    color: var(--bone);
}

.band .tier.best h3,
.band .tier.best h4,
.band .cell.on-dark h3,
.band .cell.on-dark h4 {
    color: #fff;
}

.band .cell.on-dark p {
    color: #9aa2ab;
}

/* grid and flex children default to min-width:auto, which lets a wide table
   push the whole page sideways instead of scrolling inside its own wrapper */
.two>*,
.hero-grid>*,
.sec-head>*,
.grid>*,
.price-layout>* {
    min-width: 0;
}

.tbl-wrap {
    border: 1px solid var(--line);
    background: var(--white);
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .94rem;
}

caption {
    text-align: left;
    padding: 20px 22px 4px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -.02em;
}

thead th {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: left;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--bone-2);
}

thead th.r {
    text-align: right;
}

tbody td {
    padding: 13px 22px;
    border-bottom: 1px solid var(--bone-3);
    vertical-align: top;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody tr:hover td {
    background: var(--bone);
}

td.r {
    text-align: right;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-weight: 600;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

td.u {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .76rem;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

/* a price in a column that isn't the last one — same weight as td.r,
   never the faint unit styling */
td.p {
    text-align: right;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-weight: 600;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

tbody tr.grp td {
    background: var(--bone-2);
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--verd);
    padding: 11px 22px;
    font-weight: 500;
}

tbody tr.grp:hover td {
    background: var(--bone-2);
}

.tbl-note {
    padding: 16px 22px;
    border-top: 1px solid var(--line);
    font-size: .85rem;
    color: var(--ink-soft);
    background: var(--bone);
}

@media(max-width:52rem) {

    thead th,
    tbody td,
    tbody tr.grp td {
        padding-left: 16px;
        padding-right: 16px;
    }

    table {
        font-size: .88rem;
    }

    caption,
    .tbl-note {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media(max-width:30rem) {

    thead th,
    tbody td,
    tbody tr.grp td {
        padding-left: 12px;
        padding-right: 12px;
    }

    table {
        font-size: .84rem;
    }

    caption {
        padding-left: 12px;
        padding-right: 12px;
        font-size: .98rem;
    }

    .tbl-note {
        padding-left: 12px;
        padding-right: 12px;
        font-size: .8rem;
    }

    td.u {
        font-size: .7rem;
        letter-spacing: .03em;
    }

    thead th {
        letter-spacing: .08em;
    }
}

/* ---------- tiers ---------- */
.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

@media(max-width:52rem) {
    .tiers {
        grid-template-columns: 1fr;
    }
}

.tier {
    background: var(--white);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tier.best {
    background: var(--ink);
    color: var(--bone);
}

.tier.best h3,
.tier.best .price {
    color: #fff;
}

.tier.best .label {
    color: #7fd9c4;
}

.tier.best li {
    color: #c9cfd6;
    border-color: var(--line-dark);
}

.tier .price {
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: 2.1rem;
    font-weight: 600;
    letter-spacing: -.03em;
}

.tier .price sub {
    font-size: .8rem;
    font-weight: 400;
    color: var(--ink-faint);
    letter-spacing: .08em;
    vertical-align: baseline;
}

.tier ul {
    list-style: none;
    font-size: .9rem;
    color: var(--ink-soft);
}

.tier li {
    padding: 9px 0;
    border-bottom: 1px solid var(--bone-3);
}

.tier li:last-child {
    border-bottom: 0;
}

/* ---------- quote / review ---------- */
.quote {
    border-left: 2px solid var(--verd);
    padding: 4px 0 4px 24px;
}

.quote p {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.45;
    letter-spacing: -.015em;
}

.quote cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ---------- media ---------- */
.shots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media(max-width:52rem) {
    .shots {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media(max-width:30rem) {
    .shots {
        grid-template-columns: 1fr;
    }
}

.shot {
    margin: 0;
}

.shot .frame {
    overflow: hidden;
    background: var(--bone-2);
    border: 1px solid var(--line);
    aspect-ratio: 3/4;
}

.band .shot .frame {
    border-color: var(--line-dark);
    background: var(--ink-2);
}

.shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shot.wide .frame {
    aspect-ratio: 16/9;
}

.shot.pano .frame {
    aspect-ratio: 21/9;
}

.shot figcaption {
    margin-top: 9px;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-faint);
    line-height: 1.5;
}

.band .shot figcaption {
    color: #767e87;
}

figure {
    margin: 0;
}

figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: var(--bone-2);
}

figcaption {
    margin-top: 10px;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .7rem;
    letter-spacing: .06em;
    color: var(--ink-faint);
    text-transform: uppercase;
}

/* ---------- footer ---------- */
footer {
    background: var(--ink);
    color: #9aa2ab;
    padding: 72px 0 130px;
    font-size: .9rem;
}

@media(min-width:52.0625rem) {
    footer {
        padding-bottom: 64px;
    }
}

footer h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: .72rem;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.f-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

@media(max-width:64rem) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media(max-width:38rem) {
    .f-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

footer a:hover {
    color: #fff;
}

.f-bot {
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .68rem;
    letter-spacing: .05em;
    color: #6d757e;
}

.demo-note {
    color: #c9821f;
}

/* ---------- sticky mobile call bar ---------- */
.callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    display: none;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-dark);
}

.callbar a {
    padding: 15px 8px;
    text-align: center;
    font-family: 'IBM Plex Mono', ui-monospace, monospace;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.callbar .c1 {
    background: var(--ink);
    color: var(--bone);
}

.callbar .c2 {
    background: var(--verd);
    color: #fff;
}

@media(max-width:52rem) {
    .callbar {
        display: grid;
    }
}

/* ---------- misc ---------- */
.hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 0;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

@media(max-width:64rem) {
    .two {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.mt-s {
    margin-top: 14px;
}

.mt-m {
    margin-top: 28px;
}

.mt-l {
    margin-top: 48px;
}

.center {
    text-align: center;
}

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