:root {
    --ink: #0b0b0b;
    --paper: #f3eee8;
    --white: #fff;
    --brand: #d83b1f;
    --brand-dark: #a52c17;
    --muted: #a7a29c;
    --line-dark: rgba(255, 255, 255, 0.16);
    --line-light: rgba(11, 11, 11, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 72px);
    border-bottom: 1px solid transparent;
    transition: height 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
    height: 70px;
    background: rgba(11, 11, 11, 0.92);
    border-color: var(--line-dark);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--brand);
    transform: skewX(-8deg);
}

.brand-mark i {
    transform: skewX(8deg);
}

.brand-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav > a,
.nav-auth > a,
.nav-auth .logout-link {
    position: relative;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-auth .btn-nav-auth {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.nav-auth .auth-user-area {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
}

.nav-auth .auth-user-name {
    font-size: 12px;
    font-weight: 700;
}

.nav-auth .mode-switch-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 4px 2px;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
}

.nav-auth .mode-switch-link::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 2px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-auth .mode-switch-link:hover::after,
.nav-auth .mode-switch-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-auth .mode-switch-link:focus-visible { outline: 2px solid transparent; }

.menu-toggle {
    display: none;
}

.hero-home {
    --ant-floor-height: clamp(112px, 15vh, 166px);
    position: relative;
    min-height: clamp(760px, 100svh, 1040px);
    display: grid;
    align-items: center;
    padding: 130px clamp(24px, 7vw, 120px) 110px;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 73% 45%, rgba(216, 59, 31, 0.14), transparent 31%),
        linear-gradient(115deg, #070707 0 54%, #111 54% 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: clamp(72px, 8vw, 130px) clamp(72px, 8vw, 130px);
    mask-image: linear-gradient(to right, transparent 8%, black 46%, black 100%);
    opacity: 0.28;
}

.hero-ant-floor {
    --ant-floor-ground: 24px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: var(--ant-floor-height);
    overflow: hidden;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.hero-ant-floor::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: var(--ant-floor-ground);
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0 3%, rgba(216, 59, 31, 0.34) 18%, rgba(243, 238, 232, 0.22) 52%, rgba(216, 59, 31, 0.3) 84%, transparent 97%);
    box-shadow: 0 9px 26px rgba(216, 59, 31, 0.18);
}

.hero-ant-floor::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: var(--ant-floor-ground);
    background: linear-gradient(180deg, rgba(216, 59, 31, 0.04), rgba(216, 59, 31, 0.13));
    border-top: 1px solid rgba(255, 255, 255, 0.025);
}

.hero-ant-floor-scene {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.hero-ant-floor-hint {
    position: absolute;
    top: 7px;
    right: clamp(24px, 4vw, 72px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(243, 238, 232, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 180ms ease, opacity 300ms ease;
}

.hero-ant-floor-hint::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--brand);
}

.hero-ant-floor:has(.ragdoll-ant.is-grabbed) .hero-ant-floor-hint {
    color: rgba(243, 238, 232, 0.9);
}

.hero-ant-floor.has-interacted:not(.has-active-ant) .hero-ant-floor-hint {
    opacity: 0;
}

.ragdoll-ant {
    pointer-events: visiblePainted;
    cursor: grab;
    touch-action: none;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.6));
}

.ragdoll-ant.is-grabbed {
    cursor: grabbing;
    filter: drop-shadow(0 0 8px rgba(216, 59, 31, 0.68));
}

.ragdoll-ant-profile,
.ragdoll-ant-segment {
    pointer-events: none;
}

.ragdoll-ant-profile {
    shape-rendering: geometricPrecision;
}

.ragdoll-ant-cargo {
    fill: var(--brand);
    stroke: #f3eee8;
    stroke-width: 1.2;
    vector-effect: non-scaling-stroke;
}

.ragdoll-ant-hitbox {
    fill: transparent;
    stroke: none;
    pointer-events: all;
}

.ragdoll-ant-shadow {
    fill: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-ant {
    position: absolute;
    left: 52%;
    top: 50%;
    z-index: -1;
    width: min(58vw, 900px);
    transform: translateY(-50%) rotate(-7deg);
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.7));
}

.hero-ant img {
    display: block;
    width: 100%;
    opacity: 0.78;
}

.hero-copy {
    width: min(760px, 62vw);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    color: #d7d2cd;
    font-size: 12.7px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 42px;
    height: 2px;
    background: var(--brand);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(68px, 8.4vw, 148px);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.82;
    text-transform: uppercase;
}

.hero-copy h1 em {
    color: transparent;
    display: block;
    font-size: 1.2em;
    font-style: normal;
    letter-spacing: -0.075em;
    line-height: 0.88;
    -webkit-text-stroke: 2px var(--white);
}

.hero-summary {
    max-width: 580px;
    margin: 32px 0 0;
    color: #d0ccc8;
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
}

.action:focus-visible,
.category-item:focus-visible,
.route-copy a:focus-visible,
.categories-intro > a:focus-visible,
.scroll-cue:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.footer-nav a:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 5px;
}

.action {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 26px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.action i {
    transition: transform 200ms ease;
}

.action:hover i,
.action:focus-visible i {
    transform: translateX(5px);
}

.action-primary {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: var(--white);
}

.action-primary:hover,
.action-primary:focus-visible {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

.action-ghost {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.action-ghost:hover,
.action-ghost:focus-visible {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.hero-index {
    position: absolute;
    right: clamp(24px, 4vw, 72px);
    bottom: calc(var(--ant-floor-height) + 16px);
    z-index: 3;
    display: flex;
    gap: clamp(24px, 4vw, 64px);
}

.hero-index div {
    display: flex;
    align-items: center;
}

.hero-index span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11.55px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-index span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.scroll-cue {
    position: absolute;
    left: clamp(24px, 4vw, 72px);
    bottom: calc(var(--ant-floor-height) + 16px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue i {
    color: var(--white);
    animation: scroll-cue 1.5s ease-in-out infinite;
}

.manifesto {
    min-height: clamp(440px, 48vh, 620px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px clamp(24px, 7vw, 120px);
    background: var(--brand);
    color: var(--white);
}

.manifesto p,
.manifesto h2 {
    margin: 0;
    font-size: clamp(48px, 7.2vw, 124px);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.92;
    text-transform: uppercase;
}

.manifesto p {
    color: transparent;
    font-size: clamp(50.4px, 7.56vw, 130.2px);
    letter-spacing: -0.065em;
    text-shadow: none;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.routes-section {
    padding: 130px clamp(24px, 6vw, 100px);
    background: var(--paper);
    color: var(--ink);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    align-items: end;
    margin-bottom: 70px;
}

.section-heading .eyebrow {
    margin-bottom: 8px;
}

.eyebrow-dark {
    color: #55504b;
}

.section-heading h2,
.process-section > header h2 {
    margin: 0;
    font-size: clamp(48px, 6.3vw, 106px);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.9;
    text-transform: uppercase;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: clamp(560px, 52vw, 620px);
}

.route-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 4vw, 64px);
    overflow: hidden;
    isolation: isolate;
}

.route-card::after {
    content: "";
    position: absolute;
    right: -18%;
    top: 12%;
    z-index: -1;
    width: 68%;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.18;
    transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.route-card:hover::after {
    transform: scale(1.16);
}

.route-client {
    background: var(--ink);
    color: var(--white);
}

.route-pro {
    background: var(--brand);
    color: var(--white);
}

.route-icon {
    align-self: flex-end;
    margin: auto 4% auto 0;
    font-size: clamp(82px, 10vw, 170px);
    opacity: 0.92;
    transform: rotate(-7deg);
}

.route-copy p {
    margin: 0 0 12px;
    font-size: 12.7px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.route-copy h3 {
    max-width: 620px;
    margin: 0 0 34px;
    font-size: clamp(30px, 3.4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.route-copy a,
.categories-intro > a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid currentColor;
    padding: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.route-copy a i,
.categories-intro > a i,
.category-item b {
    transition: transform 220ms cubic-bezier(.2, .7, .2, 1);
}

.route-copy a:hover i,
.route-copy a:focus-visible i,
.categories-intro > a:hover i,
.categories-intro > a:focus-visible i,
.category-item:hover b,
.category-item:focus-visible b {
    transform: translate(4px, -4px);
}

.categories-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) 1.6fr;
    background: var(--ink);
}

.categories-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px clamp(24px, 5vw, 84px);
    border-right: 1px solid var(--line-dark);
}

.categories-intro h2 {
    margin: 0 0 48px;
    font-size: clamp(50px, 5.3vw, 92px);
    letter-spacing: -0.06em;
    line-height: 0.92;
    text-transform: uppercase;
}

.categories-intro > a {
    align-self: flex-start;
}

.category-list {
    display: flex;
    flex-direction: column;
}

.category-item {
    min-height: 150px;
    display: grid;
    grid-template-columns: 54px 1fr minmax(140px, 0.7fr) 24px;
    align-items: center;
    gap: 18px;
    padding: 24px clamp(24px, 4vw, 64px);
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    text-decoration: none;
    transition: color 220ms ease, background 220ms ease;
}

.category-item:hover,
.category-item:focus-visible {
    background: var(--brand);
}

.category-item small {
    color: var(--muted);
    font-size: 11.55px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-item:hover small {
    color: rgba(255, 255, 255, 0.72);
}

.category-item > i {
    font-size: 24px;
}

.category-item strong {
    font-size: clamp(25px, 3vw, 46px);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.category-item b {
    font-size: 23px;
}

.process-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) 1.45fr;
    gap: clamp(60px, 9vw, 150px);
    padding: 140px clamp(24px, 7vw, 120px);
    background: var(--paper);
    color: var(--ink);
}

.process-section > header {
    position: sticky;
    top: 120px;
    align-self: start;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    padding: 42px 0;
    border-top: 1px solid var(--line-light);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line-light);
}

.process-list h3 {
    margin: 0 0 12px;
    font-size: clamp(24px, 2.6vw, 42px);
    letter-spacing: -0.04em;
}

.process-list p {
    max-width: 560px;
    margin: 0;
    color: #59544f;
    font-size: 16px;
    line-height: 1.6;
}

.final-cta {
    position: relative;
    min-height: clamp(720px, 86vh, 960px);
    display: flex;
    align-items: center;
    padding: 110px clamp(24px, 7vw, 120px);
    overflow: hidden;
    isolation: isolate;
    background: var(--brand);
}

.final-cta h2 {
    margin: 0 0 44px;
    font-size: clamp(70px, 10vw, 172px);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.82;
    text-transform: uppercase;
}

.action-light {
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--ink);
}

.final-ant {
    position: absolute;
    right: -8%;
    bottom: -10%;
    z-index: -1;
    width: min(64vw, 940px);
    filter: grayscale(1) brightness(0);
    opacity: 0.15;
    transform: rotate(-12deg);
}

.final-ant img {
    width: 100%;
}

.site-footer {
    min-height: 180px;
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 30px;
    padding: 40px clamp(24px, 4vw, 72px);
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
}

.site-footer p,
.site-footer > span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 2vw, 28px);
}

.footer-nav a {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

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

[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@keyframes scroll-cue {
    50% { transform: translateY(6px); }
}

@media (max-width: 980px) {
    .site-header {
        height: 72px;
        padding-inline: 20px;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0 10px 10px;
        border: 0;
        background: transparent;
        color: var(--white);
        font: inherit;
        cursor: pointer;
    }

    .menu-toggle-label {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .menu-toggle-icon,
    .menu-toggle-icon::before {
        width: 26px;
        height: 2px;
        display: block;
        background: currentColor;
        transition: transform 220ms ease;
    }

    .menu-toggle-icon::before {
        content: "";
        transform: translateY(-7px);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: rotate(-90deg);
    }

    .main-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 90px 30px;
        background: var(--ink);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 300ms cubic-bezier(.2,.7,.2,1), visibility 300ms;
    }

    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav > a,
    .nav-auth > a {
        font-size: clamp(25px, 7vw, 42px);
        letter-spacing: -0.03em;
        text-transform: none;
    }

    .nav-auth .btn-nav-auth {
        min-height: 0;
        padding: 0;
        border: 0;
    }

    .hero-home {
        --ant-floor-height: 124px;
        min-height: 900px;
        padding: 120px 24px 160px;
        align-items: end;
        background: linear-gradient(165deg, #070707 0 65%, #151515 65% 100%);
    }

    .hero-copy {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(56px, 14vw, 100px);
    }

    .hero-ant {
        left: 20%;
        top: 17%;
        width: 110vw;
        opacity: 0.58;
    }

    .hero-index {
        right: 24px;
        left: 24px;
        bottom: calc(var(--ant-floor-height) + 14px);
        justify-content: space-between;
        gap: 10px;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading,
    .process-section {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 25px;
    }

    .route-grid {
        min-height: 0;
    }

    .route-card {
        min-height: 580px;
    }

    .categories-section {
        grid-template-columns: 1fr;
    }

    .categories-intro {
        min-height: 520px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

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

    .brand-footer {
        grid-column: 1;
        grid-row: 1;
    }

    .site-footer p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .footer-nav {
        grid-column: 2;
        grid-row: 1;
    }

    .site-footer > span {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }

    .process-section > header {
        position: static;
    }
}

@media (max-width: 680px) {
    .brand-name {
        font-size: 15px;
    }

    .hero-home {
        --ant-floor-height: 104px;
        min-height: 820px;
    }

    .hero-ant-floor {
        --ant-floor-ground: 20px;
    }

    .hero-ant-floor-hint {
        top: 8px;
        right: 20px;
        gap: 6px;
        font-size: 8px;
        letter-spacing: 0.12em;
    }

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

    .action {
        width: 100%;
    }

    .hero-index span {
        font-size: 9.24px;
    }

    .manifesto {
        min-height: 500px;
    }

    .routes-section,
    .process-section {
        padding-block: 90px;
    }

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

    .route-card {
        min-height: 540px;
    }

    .route-icon {
        font-size: 100px;
    }

    .category-item {
        min-height: 120px;
        grid-template-columns: 34px 1fr 20px;
        gap: 10px;
        padding-inline: 20px;
    }

    .category-item small {
        display: none;
    }

    .category-item > i {
        font-size: 18px;
    }

    .category-item strong {
        font-size: 23px;
    }

    .process-section {
        gap: 60px;
    }

    .final-cta {
        min-height: 720px;
        align-items: flex-end;
    }

    .final-ant {
        top: 8%;
        right: -35%;
        bottom: auto;
        width: 130vw;
    }

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
        padding-block: 60px;
    }

    .brand-footer,
    .site-footer p,
    .footer-nav {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .site-footer > span {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
    .hero-ant-floor-hint {
        display: none;
    }

    .ragdoll-ant {
        cursor: default;
    }
}
