:root {
    --navy-950: #071b24;
    --navy-900: #0e2730;
    --navy-800: #123841;
    --ocean-700: #08766e;
    --ocean-600: #07958a;
    --ocean-500: #10b7a9;
    --mint-200: #bdebe4;
    --mint-100: #def7f3;
    --mint-50: #f1fbf9;
    --sand-100: #f7f4ed;
    --sand-50: #fdfbf7;
    --amber-500: #dd8b2f;
    --text: #122a31;
    --muted: #587079;
    --line: #d9e6e3;
    --white: #fff;
    --shadow-soft: 0 18px 55px rgba(7, 27, 36, .08);
    --shadow-card: 0 8px 30px rgba(7, 27, 36, .06);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1200px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--sand-50);
    font-family: "Inter", "Segoe UI", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open > .announcement,
body.menu-open > main,
body.menu-open > .site-footer {
    visibility: hidden;
}

body.menu-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4 {
    margin: 0;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.announcement {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

.announcement .container {
    min-height: 40px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.announcement strong {
    color: var(--mint-200);
    font-weight: 600;
}

.top-link {
    color: var(--white);
    white-space: nowrap;
}

.site-header {
    height: 78px;
    position: sticky;
    top: 0;
    z-index: 101;
    background: rgba(253, 251, 247, .9);
    border-bottom: 1px solid rgba(217, 230, 227, .7);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: none;
}

.brand-mark {
    width: 43px;
    height: 43px;
    position: relative;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--ocean-700), var(--ocean-500));
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    width: 27px;
    height: 27px;
    position: absolute;
    right: -5px;
    bottom: -6px;
    border-radius: 50% 50% 0 50%;
    background: var(--white);
    opacity: .93;
}

.brand-mark::after {
    content: "";
    width: 9px;
    height: 14px;
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 9px 9px 9px 0;
    transform: rotate(38deg);
    background: rgba(255, 255, 255, .9);
}

.brand-word {
    display: block;
    color: var(--navy-950);
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -.055em;
    line-height: 1;
}

.brand-caption {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    font-weight: 550;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ocean-700);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.language:hover {
    color: var(--ocean-700);
    border-color: var(--ocean-500);
}

.button {
    min-height: 48px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

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

.button-primary {
    color: var(--white);
    background: var(--ocean-700);
    box-shadow: 0 12px 24px rgba(8, 118, 110, .18);
}

.button-primary:hover {
    background: var(--ocean-600);
    box-shadow: 0 18px 32px rgba(8, 118, 110, .25);
}

.button-outline {
    color: var(--navy-900);
    border: 1px solid var(--line);
    background: var(--white);
}

.button-outline:hover {
    border-color: var(--ocean-500);
}

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

.mobile-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
    width: 19px;
    height: 2px;
    display: block;
    position: relative;
    background: var(--navy-900);
    transition: .25s;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-toggle span::before {
    top: -6px;
}

.mobile-toggle span::after {
    top: 6px;
}

.mobile-nav {
    display: none;
}

.hero {
    padding: clamp(54px, 7vw, 92px) 0 clamp(62px, 8vw, 104px);
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    width: 680px;
    height: 680px;
    position: absolute;
    z-index: -1;
    right: -250px;
    top: -270px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--mint-100), rgba(222, 247, 243, 0) 68%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: clamp(40px, 7vw, 92px);
}

.eyebrow {
    margin-bottom: 19px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ocean-700);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--ocean-500);
}

.hero h1 {
    max-width: 670px;
    color: var(--navy-950);
    font-size: clamp(44px, 5.7vw, 70px);
    font-weight: 720;
    line-height: 1.05;
    letter-spacing: -.07em;
}

.hero h1 span {
    color: var(--ocean-700);
}

.hero-copy {
    max-width: 550px;
    margin: 24px 0 36px;
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.trust-row {
    display: flex;
    gap: clamp(22px, 4vw, 38px);
    margin-top: clamp(38px, 5vw, 58px);
}

.trust-number {
    display: block;
    color: var(--navy-950);
    font-size: clamp(27px, 3vw, 34px);
    font-weight: 680;
    letter-spacing: -.05em;
}

.trust-label {
    color: var(--muted);
    font-size: 12px;
}

.visual {
    min-height: 590px;
    position: relative;
}

.product-feature {
    width: min(440px, 100%);
    margin-left: auto;
    padding: 18px;
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.feature-image {
    aspect-ratio: 1 / .74;
    overflow: hidden;
    border-radius: 22px;
}

.product-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.feature-meta {
    padding: 18px 6px 6px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
}

.feature-meta small {
    display: block;
    color: var(--ocean-700);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .12em;
}

.feature-meta h2 {
    margin-top: 5px;
    color: var(--navy-950);
    font-size: 19px;
    line-height: 1.3;
}

.pill {
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--ocean-700);
    background: var(--mint-50);
    font-size: 11px;
    font-weight: 650;
    white-space: nowrap;
}

.float-card {
    padding: 16px 18px;
    position: absolute;
    border-radius: 17px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-card);
}

.float-card.top {
    left: 0;
    top: 78px;
}

.float-card.bottom {
    right: -22px;
    bottom: 96px;
}

.float-card strong {
    display: block;
    color: var(--navy-950);
    font-size: 15px;
}

.float-card span {
    color: var(--muted);
    font-size: 12px;
}

.proof-strip {
    padding: 22px 0;
    color: rgba(255, 255, 255, .77);
    background: var(--navy-900);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.proof-heading {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.proof-item {
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding-left: 26px;
    font-size: 13px;
}

.proof-item strong {
    display: block;
    color: var(--white);
    font-size: 18px;
}

.section {
    padding: clamp(68px, 8vw, 104px) 0;
}

.section.alt {
    background: var(--white);
}

.section-head {
    max-width: 690px;
    margin-bottom: clamp(32px, 5vw, 50px);
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .eyebrow::before {
    display: none;
}

.section h2 {
    color: var(--navy-950);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 690;
    letter-spacing: -.055em;
    line-height: 1.12;
}

.section-desc {
    margin-top: 17px;
    color: var(--muted);
    font-size: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category {
    min-height: 208px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 32px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--ocean-700);
    background: var(--mint-100);
    font-size: 22px;
}

.category h3 {
    margin-bottom: 8px;
    font-size: 19px;
    letter-spacing: -.03em;
}

.category p {
    color: var(--muted);
    font-size: 13px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--white);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / .78;
    background: var(--mint-50);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.product-tag {
    padding: 6px 10px;
    position: absolute;
    top: 13px;
    left: 13px;
    border-radius: 999px;
    color: var(--ocean-700);
    background: rgba(255, 255, 255, .92);
    font-size: 11px;
    font-weight: 700;
}

.product-body {
    padding: 20px 19px 21px;
}

.product-body h3 {
    min-height: 49px;
    margin-bottom: 12px;
    font-size: 17px;
    letter-spacing: -.025em;
    line-height: 1.4;
}

.product-body p {
    min-height: 42px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
}

.text-link {
    color: var(--ocean-700);
    font-size: 13px;
    font-weight: 650;
}

.text-link::after {
    content: "  ->";
}

.section-footer {
    margin-top: 37px;
    text-align: center;
}

.sourcing {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .75);
}

.sourcing .section-head h2,
.sourcing h3 {
    color: var(--white);
}

.sourcing .eyebrow {
    color: var(--mint-200);
}

.sourcing .eyebrow::before {
    background: var(--mint-200);
}

.sourcing .section-desc {
    color: rgba(255, 255, 255, .68);
}

.sourcing-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: clamp(36px, 7vw, 86px);
}

.steps {
    display: grid;
    gap: 12px;
}

.step {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 17px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .035);
}

.step-num {
    color: var(--mint-200);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
}

.step h3 {
    margin-bottom: 6px;
    font-size: 17px;
}

.step p {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.capability {
    padding: 26px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .06);
}

.capability strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 16px;
}

.capability p {
    font-size: 13px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: clamp(40px, 8vw, 92px);
    align-items: center;
}

.about-card {
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--radius-xl);
    color: var(--white);
    background: var(--ocean-700);
}

.about-card h3 {
    margin-bottom: 18px;
    font-size: clamp(25px, 3vw, 31px);
    letter-spacing: -.04em;
}

.about-card p {
    color: rgba(255, 255, 255, .75);
}

.stat-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stat {
    padding: 17px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .1);
}

.stat strong {
    display: block;
    font-size: 27px;
}

.stat small {
    color: rgba(255, 255, 255, .65);
}

.quality-list {
    display: grid;
    gap: 22px;
}

.quality-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
}

.check {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ocean-700);
    background: var(--mint-100);
    font-weight: 700;
}

.quality-item h3 {
    margin: 2px 0 6px;
    font-size: 18px;
}

.quality-item p {
    color: var(--muted);
    font-size: 14px;
}

.contact {
    background: var(--sand-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: .83fr 1fr;
    gap: clamp(36px, 7vw, 76px);
}

.contact-info h2 {
    margin-bottom: 17px;
}

.contact-info > p {
    margin-bottom: 34px;
    color: var(--muted);
}

.details {
    display: grid;
    gap: 20px;
}

.detail-label {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.detail-value {
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 550;
}

.inquiry {
    padding: clamp(24px, 4vw, 38px);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.inquiry h3 {
    margin-bottom: 7px;
    font-size: 25px;
    letter-spacing: -.035em;
}

.inquiry-intro {
    margin-bottom: 27px;
    color: var(--muted);
    font-size: 14px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.field {
    margin-bottom: 15px;
}

.field label {
    margin-bottom: 7px;
    display: block;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--text);
    background: var(--white);
    outline: none;
}

.field textarea {
    min-height: 114px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--ocean-500);
    box-shadow: 0 0 0 3px rgba(16, 183, 169, .12);
}

.form-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    padding: 55px 0 25px;
    color: rgba(255, 255, 255, .64);
    background: var(--navy-950);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: 42px;
    margin-bottom: 46px;
}

.site-footer .brand-word {
    color: var(--white);
}

.site-footer .brand-caption {
    color: rgba(255, 255, 255, .45);
}

.footer-about {
    max-width: 320px;
    margin-top: 20px;
}

.footer-heading {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.footer-links {
    display: grid;
    gap: 11px;
}

.footer-links a:hover {
    color: var(--mint-200);
}

.copyright {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.page-hero {
    padding: clamp(52px, 7vw, 82px) 0;
    background: var(--mint-50);
}

.page-hero h1 {
    max-width: 730px;
    font-size: clamp(37px, 5vw, 57px);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: 1.08;
}

.page-hero p {
    max-width: 630px;
    margin-top: 19px;
    color: var(--muted);
    font-size: 17px;
}

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

.products-full .product-body h3 {
    min-height: 0;
}

.products-full .product-img {
    aspect-ratio: 1 / 1;
}

.products-full .product-img img {
    object-position: center;
}

.cta-panel {
    padding: clamp(34px, 6vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: var(--radius-xl);
    color: var(--white);
    background: var(--ocean-700);
}

.cta-panel h2 {
    color: var(--white);
    font-size: clamp(27px, 4vw, 38px);
}

.cta-panel p {
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
}

.legal {
    max-width: 760px;
}

.legal h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 5vw, 52px);
    letter-spacing: -.05em;
}

.legal h2 {
    margin: 38px 0 12px;
    font-size: 23px;
    letter-spacing: -.03em;
}

.legal p,
.legal li {
    color: var(--muted);
}

.legal ul {
    padding-left: 20px;
}

.success-panel {
    max-width: 680px;
    margin: 78px auto;
    padding: clamp(40px, 7vw, 72px);
    border-radius: var(--radius-xl);
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.success-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ocean-700);
    background: var(--mint-100);
    font-size: 29px;
}

.success-panel h1 {
    font-size: clamp(29px, 5vw, 42px);
    letter-spacing: -.045em;
}

.success-panel p {
    margin: 13px 0 29px;
    color: var(--muted);
}

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

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

@media (max-width: 1050px) {
    .nav-links,
    .nav-actions .button {
        display: none;
    }

    .nav-wrap {
        justify-content: space-between;
    }

    .nav-actions {
        margin-left: auto;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        padding: 100px 24px 34px;
        position: fixed;
        inset: 0;
        z-index: 100;
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        display: grid;
        align-content: start;
        gap: 7px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-card);
        transition: .22s var(--ease);
    }

    .mobile-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav a {
        padding: 13px 9px;
        border-bottom: 1px solid var(--line);
        font-weight: 550;
    }

    .mobile-nav .button {
        margin-top: 13px;
        color: var(--white);
    }

    .hero-grid,
    .sourcing-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .visual {
        min-height: auto;
    }

    .product-feature {
        margin: 0 auto;
    }

    .float-card.top {
        left: max(0px, calc(50% - 260px));
    }

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

    .proof-heading {
        grid-column: 1 / -1;
    }

    .proof-item:nth-last-child(1),
    .proof-item:nth-last-child(3) {
        border-left: 0;
        padding-left: 0;
    }

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

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

@media (max-width: 680px) {
    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .announcement .container {
        padding: 9px 0;
        min-height: 0;
        gap: 9px;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header {
        height: 70px;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
    }

    .brand-word {
        font-size: 20px;
    }

    .language {
        padding: 8px 10px;
    }

    .hero {
        padding-top: 44px;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 48px);
    }

    .hero-buttons .button {
        width: 100%;
    }

    .trust-row {
        justify-content: space-between;
        gap: 11px;
    }

    .trust-number {
        font-size: 26px;
    }

    .float-card {
        display: none;
    }

    .proof-grid,
    .category-grid,
    .product-grid,
    .products-full .product-grid,
    .capabilities,
    .stat-grid,
    .field-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .proof-item,
    .proof-item:nth-last-child(1),
    .proof-item:nth-last-child(3) {
        border-left: 0;
        padding: 0;
    }

    .category {
        min-height: 0;
    }

    .category-icon {
        margin-bottom: 21px;
    }

    .product-body h3,
    .product-body p {
        min-height: 0;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright {
        flex-direction: column;
    }
}

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

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