:root {
    --ink: #111827;
    --ink-soft: #374151;
    --muted: #667085;
    --line: #d9e0e7;
    --paper: #ffffff;
    --paper-alt: #f4f7f8;
    --teal: #007f79;
    --teal-dark: #075e5a;
    --orange: #ed6b2d;
    --blue: #1769aa;
    --green: #18875d;
    --red: #c83d4b;
    --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
    --shell: min(1180px, calc(100% - 40px));
    --radius: 6px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

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

:focus-visible {
    outline: 3px solid rgba(237, 107, 45, 0.5);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
}

.skip-link:focus {
    top: 12px;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding: 104px 0;
}

.section-compact {
    padding: 72px 0;
}

.section-alt {
    background: var(--paper-alt);
    border-block: 1px solid var(--line);
}

.section-dark {
    color: var(--paper);
    background: #151a20;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 78px;
    color: var(--paper);
    background: rgba(14, 20, 26, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
body:not([data-page="home"]) .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.07);
}

.header-inner {
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 225px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    color: var(--paper);
    background: var(--orange);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 850;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 16px;
}

.brand-copy small {
    margin-top: 4px;
    color: currentColor;
    font-size: 11px;
    opacity: 0.7;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 700;
}

.primary-nav > a:not(.button) {
    position: relative;
    padding: 28px 0 24px;
}

.primary-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 17px;
    height: 2px;
    background: var(--orange);
    transition: right 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after {
    right: 0;
}

.button {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--paper);
    background: var(--teal);
    border: 1px solid var(--teal);
    border-radius: var(--radius);
    font-weight: 780;
    cursor: pointer;
    transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--teal-dark);
    border-color: var(--teal-dark);
}

.button svg,
.icon-button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.button-small {
    min-height: 42px;
    padding-inline: 16px;
}

.button-outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--ink);
}

.button-outline:hover {
    color: var(--paper);
    background: var(--ink);
    border-color: var(--ink);
}

.button-light {
    color: var(--ink);
    background: var(--paper);
    border-color: var(--paper);
}

.button-light:hover {
    color: var(--paper);
    background: transparent;
}

.button-ghost {
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--paper);
}

.icon-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

.hero {
    min-height: 92svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--paper);
    background-image: url('../img/hero-software-studio.webp');
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(6, 13, 18, 0.5);
}

.hero-content {
    width: var(--shell);
    margin-inline: auto;
    padding: 170px 0 104px;
}

.hero-copy {
    max-width: 700px;
}

.hero h1,
.page-hero h1 {
    margin: 18px 0 22px;
    max-width: 900px;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.hero-actions,
.page-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    margin-top: 62px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-proof svg {
    width: 17px;
    color: #75d5c8;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.eyebrow.light {
    color: #a3e6dc;
}

.section-heading {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 40px;
}

.section-heading h2,
.story-copy h2,
.footer-cta h2,
.form-intro h2 {
    margin: 12px 0 0;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.08;
}

.section-heading p,
.story-copy p,
.form-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.proof-strip {
    position: relative;
    z-index: 4;
    margin-top: -32px;
}

.proof-strip-inner {
    width: var(--shell);
    min-height: 84px;
    margin-inline: auto;
    padding: 18px 26px;
    display: grid;
    grid-template-columns: auto repeat(4, 1fr);
    align-items: center;
    gap: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.proof-strip strong {
    font-size: 13px;
}

.proof-strip span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    text-align: center;
}

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

.product-card {
    position: relative;
    min-height: 365px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--product-accent) 50%, var(--line));
    box-shadow: var(--shadow);
}

.product-card.red { --product-accent: var(--red); }
.product-card.blue { --product-accent: var(--blue); }
.product-card.orange { --product-accent: var(--orange); }
.product-card.green { --product-accent: var(--green); }

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--product-accent);
    background: color-mix(in srgb, var(--product-accent) 10%, white);
    border: 1px solid color-mix(in srgb, var(--product-accent) 25%, white);
    border-radius: var(--radius);
}

.product-icon svg {
    width: 24px;
    height: 24px;
}

.product-label {
    color: var(--product-accent);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 42px 0 12px;
    font-size: 34px;
    line-height: 1.05;
}

.product-card p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.product-link {
    margin-top: auto;
    padding-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--product-accent);
    font-weight: 800;
}

.product-link svg {
    width: 18px;
    transition: transform 160ms ease;
}

.product-card:hover .product-link svg {
    transform: translateX(4px);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.capability {
    min-height: 255px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.capability > svg {
    width: 28px;
    height: 28px;
    color: var(--orange);
}

.capability h3 {
    margin: 28px 0 10px;
    font-size: 22px;
}

.capability p {
    margin: 0;
    color: var(--muted);
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 80px;
}

.story-media {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #192128;
}

.story-media img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: contain;
    padding: 30px;
    background: #e8eef1;
}

.story-media figcaption {
    position: absolute;
    inset: auto 18px 18px;
    padding: 17px 19px;
    color: var(--paper);
    background: rgba(17, 24, 39, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    font-size: 13px;
}

.metric-row {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.metric {
    padding: 24px 16px 24px 0;
}

.metric + .metric {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}

.metric strong {
    display: block;
    font-size: 28px;
}

.metric span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.page-hero {
    padding: 168px 0 92px;
    color: var(--paper);
    background: #182129;
}

.page-hero h1 {
    max-width: 950px;
    font-size: clamp(48px, 7vw, 86px);
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
}

.page-hero-product {
    padding-bottom: 70px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 70px;
}

.product-window {
    padding: 12px;
    color: var(--ink);
    background: #e7edf0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.window-bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.window-bar i {
    width: 8px;
    height: 8px;
    display: block;
    background: #9aa5ae;
    border-radius: 50%;
}

.window-body {
    min-height: 360px;
    padding: 20px;
    overflow: hidden;
    background: var(--paper);
    border-radius: 3px;
}

.window-body-image {
    display: grid;
    place-items: center;
    padding: 0;
    background: #f3f6f7;
}

.product-preview-image {
    width: 100%;
    height: 360px;
    object-fit: contain;
    object-position: center;
    background: #f3f6f7;
}

.ui-header {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ui-header strong {
    font-size: 14px;
}

.ui-pill {
    padding: 6px 9px;
    color: var(--teal);
    background: #e6f5f2;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

.ui-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ui-metric {
    padding: 14px;
    background: var(--paper-alt);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.ui-metric small {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.ui-metric b {
    display: block;
    margin-top: 7px;
    font-size: 18px;
}

.ui-chart {
    height: 96px;
    margin: 14px 0;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    padding: 12px;
    background: #f8fafb;
    border: 1px solid var(--line);
}

.ui-chart span {
    flex: 1;
    min-height: 16%;
    background: var(--teal);
    opacity: 0.82;
}

.ui-table {
    display: grid;
    gap: 6px;
}

.ui-row {
    min-height: 29px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: center;
    gap: 8px;
    padding: 0 9px;
    background: #f3f6f7;
    border: 1px solid #e3e8eb;
    font-size: 9px;
}

.feature-list,
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.feature-list li {
    min-height: 104px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 730;
}

.feature-list svg,
.check-list svg {
    width: 20px;
    flex: 0 0 20px;
    color: var(--teal);
}

.outcome-band {
    padding: 64px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    color: var(--paper);
    background: #171d23;
    border-radius: var(--radius);
}

.outcome-band h2 {
    margin: 10px 0 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
}

.check-list {
    display: grid;
    gap: 16px;
}

.check-list li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 17px;
    font-weight: 700;
}

.service-steps {
    counter-reset: steps;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-step {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-step::before {
    counter-increment: steps;
    content: "0" counter(steps);
    color: var(--orange);
    font-size: 12px;
    font-weight: 850;
}

.service-step h3 {
    margin: 56px 0 12px;
    font-size: 22px;
}

.service-step p {
    margin: 0;
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
    gap: 80px;
}

.contact-details {
    margin-top: 38px;
    display: grid;
    gap: 18px;
}

.contact-detail {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-top: 1px solid var(--line);
}

.contact-detail svg {
    width: 22px;
    color: var(--teal);
}

.contact-detail strong,
.contact-detail span {
    display: block;
}

.contact-detail span {
    margin-top: 3px;
    color: var(--muted);
}

.inquiry-form {
    padding: 34px;
    background: var(--paper-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

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

.field {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 13px;
    font-weight: 760;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid #bcc7d0;
    border-radius: 4px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    outline: 3px solid rgba(0, 127, 121, 0.12);
}

.form-status {
    display: none;
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.form-status.show {
    display: block;
}

.form-status.success {
    color: #125b42;
    background: #e8f6ef;
    border-color: #8fd0b3;
}

.form-status.error {
    color: #8a2632;
    background: #fff0f1;
    border-color: #e5a1a8;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #10151a;
}

.footer-cta {
    padding: 76px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--paper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta h2 {
    max-width: 720px;
}

.footer-main {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 0.8fr);
    gap: 48px;
}

.brand-footer {
    color: var(--paper);
}

.footer-brand p {
    max-width: 350px;
    margin: 22px 0 0;
}

.footer-main h3 {
    margin: 0 0 18px;
    color: var(--paper);
    font-size: 13px;
    text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) a,
.footer-main > div:not(.footer-brand) p {
    margin: 0 0 11px;
    display: block;
    font-size: 14px;
}

.footer-main a:hover,
.footer-bottom a:hover {
    color: var(--paper);
}

.footer-bottom {
    padding: 20px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
    :root {
        --shell: min(100% - 32px, 760px);
    }

    .menu-toggle {
        display: inline-grid;
    }

    .primary-nav {
        position: fixed;
        inset: 78px 0 auto;
        max-height: calc(100svh - 78px);
        padding: 24px 16px 30px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        color: var(--ink);
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav > a:not(.button) {
        padding: 15px 4px;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .primary-nav .button {
        margin-top: 18px;
    }

    .section-heading,
    .story-layout,
    .product-hero-grid,
    .outcome-band,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .story-layout,
    .product-hero-grid,
    .contact-layout {
        gap: 44px;
    }

    .section-heading {
        align-items: start;
        gap: 18px;
    }

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

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

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

    .footer-main > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --shell: calc(100% - 28px);
    }

    .section {
        padding: 74px 0;
    }

    .brand {
        min-width: 0;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 90svh;
        background-position: 63% center;
    }

    .hero::before {
        background: rgba(6, 13, 18, 0.66);
    }

    .hero-content {
        padding: 138px 0 74px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(42px, 15vw, 64px);
    }

    .hero p,
    .page-hero p {
        font-size: 17px;
    }

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

    .hero-actions .button,
    .page-actions .button {
        width: 100%;
    }

    .hero-proof {
        margin-top: 42px;
        display: grid;
        gap: 10px;
    }

    .proof-strip {
        margin-top: -20px;
    }

    .proof-strip-inner {
        padding: 22px;
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-strip strong {
        grid-column: 1 / -1;
        text-align: center;
    }

    .product-grid,
    .capability-grid,
    .feature-list,
    .service-steps,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 330px;
        padding: 26px;
    }

    .product-card h3 {
        margin-top: 34px;
        font-size: 30px;
    }

    .story-media,
    .story-media img {
        min-height: 420px;
    }

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

    .metric,
    .metric + .metric {
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .page-hero {
        padding: 132px 0 72px;
    }

    .product-hero-grid {
        gap: 36px;
    }

    .product-window {
        padding: 8px;
    }

    .window-body {
        min-height: 310px;
        padding: 13px;
    }

    .ui-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .ui-metric:last-child {
        grid-column: 1 / -1;
    }

    .outcome-band {
        padding: 34px 24px;
        gap: 30px;
    }

    .contact-layout {
        gap: 38px;
    }

    .inquiry-form {
        padding: 22px;
    }

    .footer-cta {
        padding: 58px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .footer-brand,
    .footer-main > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@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;
    }

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