:root {
    --navy: #10264a;
    --navy-dark: #09172e;
    --blue: #1f4f92;
    --red: #e34838;
    --red-dark: #bd3026;
    --yellow: #f2c94c;
    --cream: #f1e7d4;
    --cream-light: #fbf7ee;
    --ink: #171a1d;
    --muted: #5f625f;
    --line: rgba(23, 26, 29, 0.2);
    --line-light: rgba(241, 231, 212, 0.2);
    --display: "Archivo Black", Impact, sans-serif;
    --serif: "Source Serif 4", Georgia, serif;
    --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shadow: 0 24px 70px rgba(16, 38, 74, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

body::selection {
    background: var(--yellow);
    color: var(--ink);
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    border-radius: 999px;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(100% - 3rem, 1220px);
    margin-inline: auto;
}

.topline {
    position: relative;
    z-index: 110;
    background: var(--red);
    color: white;
}

.topline-inner {
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: box-shadow 180ms ease;
}

.site-header.scrolled {
    box-shadow: 0 12px 30px rgba(9, 23, 46, 0.2);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    color: white;
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: -0.04em;
    line-height: 0.82;
    text-decoration: none;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.brand-mark {
    width: 2.6rem;
    height: 2.6rem;
    flex: 0 0 auto;
    transform: rotate(1deg);
}

.brand-wordmark {
    display: inline-grid;
}

.brand-labor {
    width: max-content;
    padding: 0.28rem 0.4rem 0.22rem;
    background: var(--red);
}

.brand-democrats {
    padding: 0.24rem 0.4rem 0.3rem;
    background: var(--cream-light);
    color: var(--navy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.8vw, 2rem);
}

.nav-links a,
.footer-links a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--yellow);
}

.nav-links .nav-cta {
    padding: 0.7rem 1rem;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 999px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
    background: white;
    color: var(--ink);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    cursor: pointer;
}

.menu-button span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 4px 0;
    background: white;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 8rem);
    overflow: hidden;
    background:
        linear-gradient(rgba(16, 38, 74, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 38, 74, 0.07) 1px, transparent 1px),
        var(--cream);
    background-size: 54px 54px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 34vw;
    height: 34vw;
    right: -11vw;
    bottom: -20vw;
    border: 7vw solid rgba(227, 72, 56, 0.08);
    border-radius: 50%;
}

.hero-stamp {
    position: absolute;
    left: -5vw;
    bottom: -9vw;
    width: min(38vw, 560px);
    height: auto;
    opacity: 0.035;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.eyebrow,
.section-label {
    margin: 0 0 1.4rem;
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.eyebrow span {
    width: 20px;
    height: 4px;
    display: inline-block;
    background: var(--red);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 400;
    text-transform: uppercase;
}

h1 {
    max-width: 850px;
    margin-bottom: 1.8rem;
    color: var(--navy);
    font-size: clamp(4rem, 7.4vw, 7.6rem);
    letter-spacing: -0.055em;
    line-height: 0.9;
}

h1 em {
    display: block;
    color: var(--red);
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.035em;
    text-transform: none;
}

.hero-lede {
    max-width: 760px;
    margin-bottom: 2.2rem;
    color: #3f4447;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--navy);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--navy);
    color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue);
}

.button-ghost {
    color: var(--navy);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: white;
}

.poster-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    overflow: hidden;
    background: var(--red);
    color: white;
    border: 5px solid var(--navy);
    box-shadow: 14px 14px 0 var(--yellow), var(--shadow);
    transform: rotate(1.4deg);
}

.poster-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: -120px;
    border: 58px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.poster-kicker {
    position: relative;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.poster-headline {
    position: relative;
    margin: auto 0 1.5rem;
    font-family: var(--display);
    font-size: clamp(3rem, 5.2vw, 5.2rem);
    letter-spacing: -0.055em;
    line-height: 0.91;
    text-transform: uppercase;
}

.poster-card > p:not(.poster-headline) {
    position: relative;
    max-width: 390px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.poster-seal {
    width: 118px;
    height: 118px;
    display: grid;
    place-content: center;
    align-self: flex-end;
    background: var(--yellow);
    color: var(--navy);
    border: 3px solid var(--navy);
    border-radius: 50%;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-8deg);
}

.poster-seal span {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.poster-seal strong {
    font-family: var(--display);
    font-size: 1.2rem;
}

.solidarity-band {
    padding: 1rem 0;
    background: var(--navy);
    color: white;
    border-block: 5px solid var(--yellow);
}

.band-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.band-row span[aria-hidden] {
    color: var(--yellow);
}

.section {
    padding: clamp(6rem, 10vw, 10rem) 0;
}

.mission {
    background: var(--cream-light);
}

.mission-grid,
.standards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: clamp(4rem, 10vw, 9rem);
}

.mission h2,
.section-heading h2,
.standards h2,
.contact h2 {
    margin: 0;
    font-size: clamp(3rem, 5.5vw, 5.6rem);
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.mission h2 {
    font-kerning: normal;
    letter-spacing: -0.025em;
    word-spacing: 0.08em;
}

.mission-copy .lead {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    font-weight: 600;
    line-height: 1.35;
}

.mission-copy > p:not(.lead) {
    color: var(--muted);
}

.pull-quote {
    position: relative;
    margin-top: 3rem;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    background: var(--yellow);
    border-left: 7px solid var(--red);
}

.pull-quote > span {
    position: absolute;
    left: 0.8rem;
    top: -0.15rem;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 4.5rem;
}

.pull-quote p {
    margin: 0;
    color: var(--navy);
    font-weight: 700;
}

.agenda {
    background: var(--cream);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.55fr);
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}

.section-heading > p {
    color: var(--muted);
}

.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--navy);
    border-left: 2px solid var(--navy);
}

.agenda-card {
    min-height: 350px;
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.4rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(255, 255, 255, 0.24);
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transition: background 180ms ease;
}

.agenda-card:hover {
    background: var(--cream-light);
}

.agenda-number {
    color: var(--red);
    font-family: var(--display);
    font-size: 1.4rem;
}

.agenda-card h3 {
    margin: 0 0 1rem;
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.agenda-card p {
    color: #484b4d;
}

.agenda-card div > span {
    display: block;
    margin-top: 2.5rem;
    color: var(--blue);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.standards {
    padding: clamp(6rem, 10vw, 10rem) 0;
    background: var(--navy);
    color: white;
}

.section-label.light {
    color: var(--yellow);
}

.standards-copy > p:last-child {
    max-width: 650px;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.68);
}

.standards-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-light);
}

.standards-list li {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: 1rem;
    padding: 1.45rem 0;
    border-bottom: 1px solid var(--line-light);
}

.standards-list > li > span {
    color: var(--yellow);
    font-family: var(--display);
}

.standards-list h3 {
    margin: 0 0 0.35rem;
    font-family: var(--serif);
    font-size: 1.65rem;
}

.standards-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.contact {
    background: var(--red);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 9rem;
}

.contact .section-label {
    color: var(--yellow);
}

.contact h2 {
    max-width: 9ch;
    color: white;
}

.contact-copy > p:not(.section-label) {
    max-width: 630px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.contact-promises {
    display: grid;
    gap: 0;
    margin: 2.4rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-promises li {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.84rem;
    font-weight: 700;
}

.contact-promises span {
    color: var(--yellow);
    font-family: var(--display);
}

.form-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 3.3rem);
    background: var(--cream-light);
    color: var(--ink);
    border: 5px solid var(--navy);
    box-shadow: 14px 14px 0 var(--navy);
}

.form-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    pointer-events: none;
    border: 1px solid rgba(16, 38, 74, 0.18);
}

.form-card-heading,
.form-card form {
    position: relative;
}

.form-kicker {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.form-card h3 {
    margin: 0.85rem 0 0.3rem;
    color: var(--navy);
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.form-card-heading p {
    margin: 0 0 2rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.form-card form,
.form-card label:not(.check-row) {
    display: grid;
    gap: 0.45rem;
}

.form-card form {
    gap: 1.15rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-card label > span {
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.form-card label strong {
    color: var(--red-dark);
}

.form-card label em {
    color: var(--muted);
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    min-height: 49px;
    padding: 0.78rem 0.9rem;
    background: white;
    color: var(--ink);
    border: 2px solid rgba(16, 38, 74, 0.35);
    border-radius: 0;
    font: inherit;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-card textarea {
    min-height: 130px;
    resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(31, 79, 146, 0.15);
    outline: none;
}

.form-card input[aria-invalid="true"],
.form-card select[aria-invalid="true"],
.form-card textarea[aria-invalid="true"] {
    border-color: var(--red-dark);
}

.check-row {
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    gap: 0.75rem;
    align-items: start;
    cursor: pointer;
}

.check-row input {
    width: 1.15rem;
    min-height: 1.15rem;
    height: 1.15rem;
    margin: 0.2rem 0 0;
    accent-color: var(--red);
}

.check-row span {
    color: var(--ink) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.45;
    text-transform: none !important;
}

.form-privacy,
.form-status {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    justify-content: space-between;
    background: var(--navy);
    color: white;
    border: 0;
    cursor: pointer;
}

.form-submit:hover,
.form-submit:focus-visible {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.form-submit[disabled] {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.form-status {
    min-height: 1.1rem;
    color: var(--navy);
    font-weight: 700;
}

.form-status.is-error {
    color: var(--red-dark);
}

.form-status.is-success {
    color: #176039;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.thanks-page {
    min-height: 100vh;
    background:
        linear-gradient(rgba(9, 23, 46, 0.88), rgba(9, 23, 46, 0.88)),
        repeating-linear-gradient(135deg, var(--navy) 0, var(--navy) 22px, var(--blue) 22px, var(--blue) 44px);
}

.thanks-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    width: min(100% - 2rem, 860px);
    margin: 0 auto;
    padding: 3rem 0;
}

.thanks-card {
    padding: clamp(2rem, 7vw, 5rem);
    background: var(--cream-light);
    border: 5px solid var(--yellow);
    box-shadow: 14px 14px 0 var(--red);
}

.thanks-mark {
    width: 4.25rem;
    height: 4.25rem;
    margin-bottom: 1.5rem;
}

.thanks-card h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--navy);
    font-size: clamp(3rem, 9vw, 6.5rem);
}

.thanks-card > p:not(.section-label) {
    max-width: 580px;
    margin: 1.5rem 0 2rem;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.site-footer {
    padding: 5rem 0 3rem;
    background: var(--navy-dark);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.75fr 0.55fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.brand.inverse .brand-democrats {
    background: white;
}

.footer-brand > p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.footer-links {
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--yellow);
}

.pac-disclaimer {
    padding: 1rem 1.2rem;
    background: white;
    color: var(--ink);
    border: 3px solid white;
    outline: 2px solid var(--ink);
    outline-offset: -6px;
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.footer-legal p,
.footer-legal > span {
    display: block;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.7rem;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 100ms !important;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

@media (max-width: 980px) {
    .hero-grid,
    .mission-grid,
    .standards-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .poster-card {
        max-width: 680px;
    }

    .contact-copy {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-legal {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 2rem, 1220px);
    }

    .topline-inner span:last-child {
        display: none;
    }

    .nav-shell {
        min-height: 70px;
    }

    .menu-button {
        display: block;
    }

    .menu-button[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-button[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 20px 40px rgba(9, 23, 46, 0.24);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-links .nav-cta {
        margin-top: 0.75rem;
        text-align: center;
    }

    h1 {
        font-size: clamp(3.65rem, 17vw, 6rem);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .poster-card {
        min-height: 470px;
        margin-right: 0.5rem;
        box-shadow: 9px 9px 0 var(--yellow), var(--shadow);
    }

    .band-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .band-row span[aria-hidden] {
        display: none;
    }

    .section-heading,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .agenda-card {
        min-height: 330px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-legal {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .topline-inner {
        font-size: 0.58rem;
    }

    .agenda-card {
        grid-template-columns: 2.2rem 1fr;
        gap: 0.8rem;
    }

    .poster-headline {
        font-size: 3.15rem;
    }

    .form-card {
        padding: 1.5rem 1.15rem;
        box-shadow: 8px 8px 0 var(--navy);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
