@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
    --background: #05080b;
    --background-soft: #090e13;
    --panel: #0b1117;
    --panel-light: #111922;
    --line: #26313b;
    --line-bright: #40505e;
    --text: #d7dde2;
    --muted: #7f8a94;
    --blue: #236ea4;
    --blue-bright: #4a9bd1;
    --red: #8a3434;
    --max-width: 1500px;
    --header-height: 70px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(35, 110, 164, 0.11), transparent 32%),
        var(--background);
    background-size: 42px 42px, 42px 42px, auto, auto;
    color: var(--text);
    font-family: "Rajdhani", sans-serif;
    line-height: 1.5;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    content: "";
    opacity: 0.22;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 4px
        );
    mix-blend-mode: soft-light;
}

body.splash-active {
    overflow: hidden;
}

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

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

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

/* SPLASH */

.splash {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(27, 67, 96, 0.22), transparent 40%),
        #030608;
    transition:
        opacity 700ms ease,
        visibility 700ms ease;
}

.splash::before,
.splash::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.splash::before {
    inset: 22px;
    border: 1px solid var(--line);
    clip-path: polygon(
        26px 0,
        calc(100% - 26px) 0,
        100% 26px,
        100% calc(100% - 26px),
        calc(100% - 26px) 100%,
        26px 100%,
        0 calc(100% - 26px),
        0 26px
    );
}

.splash::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0.35;
    animation: scan-line 1.5s linear infinite;
}

.splash.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.splash-frame {
    width: min(760px, calc(100% - 48px));
    text-align: center;
}

.splash-logo {
    width: 100%;
    filter:
        contrast(1.1)
        brightness(1.05)
        drop-shadow(0 18px 35px rgba(0, 0, 0, 0.75));
}

.splash-copy {
    margin: 6px 0 12px;
    color: var(--muted);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.splash-progress {
    width: min(280px, 70%);
    height: 4px;
    margin: 0 auto;
    overflow: hidden;
    background: #0c1218;
    border: 1px solid var(--line);
}

.splash-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--blue-bright);
    transform-origin: left;
    animation: load-bar 1.65s ease-out forwards;
}

/* HEADER */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(245px, 0.78fr) 1fr minmax(170px, 0.48fr);
    align-items: stretch;
    width: min(calc(100% - 28px), var(--max-width));
    min-height: 86px;
    margin: 10px auto 0;
    background: rgba(4, 7, 10, 0.95);
    border: 1px solid var(--line);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    clip-path: polygon(
        18px 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% 100%,
        0 100%,
        0 18px
    );
}

.topbar-spacer {
    min-width: 0;
    border-right: 1px solid var(--line);
}

.navigation {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.navigation a {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 110px;
    padding: 0 18px;
    color: #aab3ba;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        background 160ms ease;
}

.navigation a::after {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 10px;
    height: 1px;
    content: "";
    background: var(--blue-bright);
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.navigation a:hover,
.navigation a:focus-visible {
    color: #ffffff;
    background: rgba(35, 110, 164, 0.08);
}

.navigation a:hover::after,
.navigation a:focus-visible::after {
    transform: scaleX(1);
}

.topbar-mark-link {
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 8px 18px;
    border-left: 1px solid var(--line);
    overflow: hidden;
}

.topbar-mark-image {
    width: min(210px, 100%);
    max-height: 70px;
    object-fit: contain;
    filter:
        contrast(1.08)
        brightness(1.02)
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.55));
}

.menu-button {
    display: none;
}

/* SHARED FRAMES */

main {
    width: min(calc(100% - 28px), var(--max-width));
    margin: 0 auto;
}

.system-frame,
.section-shell {
    position: relative;
    background:
        linear-gradient(135deg, rgba(35, 110, 164, 0.045), transparent 28%),
        rgba(5, 9, 13, 0.78);
    border: 1px solid var(--line);
}

.system-frame {
    clip-path: polygon(
        18px 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% calc(100% - 18px),
        calc(100% - 18px) 100%,
        18px 100%,
        0 calc(100% - 18px),
        0 18px
    );
}

.frame-corner {
    position: absolute;
    width: 46px;
    height: 46px;
    opacity: 0.7;
    pointer-events: none;
}

.corner-top-left {
    top: 16px;
    left: 16px;
    border-top: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
}

.corner-top-right {
    top: 16px;
    right: 16px;
    border-top: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
}

.corner-bottom-left {
    bottom: 16px;
    left: 16px;
    border-bottom: 1px solid var(--blue);
    border-left: 1px solid var(--blue);
}

.corner-bottom-right {
    right: 16px;
    bottom: 16px;
    border-right: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
}

/* HERO */

.hero {
    min-height: calc(100vh - var(--header-height) - 30px);
    display: grid;
    place-items: center;
    margin-top: 8px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(4, 7, 10, 0.72), transparent 35%, transparent 65%, rgba(4, 7, 10, 0.72)),
        radial-gradient(circle at 50% 32%, rgba(47, 89, 123, 0.18), transparent 36%),
        #05090d;
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(112deg, transparent 0 34%, rgba(255, 255, 255, 0.025) 34.2% 34.5%, transparent 34.7%),
        repeating-linear-gradient(
            90deg,
            transparent 0 124px,
            rgba(255, 255, 255, 0.018) 125px,
            transparent 126px
        );
    pointer-events: none;
}

.hero-center {
    position: relative;
    z-index: 2;
    width: min(920px, 78vw);
    padding: 65px 0 80px;
    text-align: center;
}

.hero-logo {
    width: 100%;
    filter:
        contrast(1.12)
        brightness(1.04)
        drop-shadow(0 30px 45px rgba(0, 0, 0, 0.72));
}

.hero-disciplines {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: -10px 0 0;
    color: #919ca5;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(0.78rem, 1.2vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-disciplines span {
    width: 5px;
    height: 5px;
    background: var(--blue);
    transform: rotate(45deg);
}

.coordinate-readout {
    position: absolute;
    top: 38px;
    left: 38px;
    display: flex;
    flex-direction: column;
    color: #53616d;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.coordinate-readout span::first-letter {
    color: var(--blue-bright);
}

.system-status {
    position: absolute;
    top: 50%;
    right: 42px;
    display: grid;
    gap: 16px;
    transform: translateY(-50%);
}

.system-status div {
    display: grid;
    grid-template-columns: 42px 70px;
    gap: 12px;
    color: #6d7780;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.system-status strong {
    color: var(--blue-bright);
    font-weight: 500;
}

.system-status div:nth-child(2) strong {
    color: #626d76;
}

.system-status strong::before {
    content: "|";
    margin-right: 10px;
    color: var(--line-bright);
}

.systems-online {
    position: absolute;
    left: 50%;
    bottom: -1px;
    z-index: 3;
    min-width: 260px;
    padding: 8px 42px;
    color: var(--blue-bright);
    background: #071018;
    border: 1px solid var(--line);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
    clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 100%, 0 100%);
}

/* MISSION */

.mission {
    display: block;
    min-height: 270px;
    margin-top: 12px;
}

.mission-copy {
    max-width: 1080px;
    padding: 48px 54px;
}

.section-code {
    margin: 0 0 10px;
    color: var(--blue-bright);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.mission-copy h1,
.section-heading h2,
.contact h2 {
    margin: 0;
    color: #bcc4ca;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    line-height: 0.93;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #4d555a;
}

.mission-copy h1 {
    font-size: clamp(2.9rem, 5.3vw, 5.4rem);
}

.mission-copy > p:not(.section-code):not(.capability-line) {
    max-width: 720px;
    margin: 22px 0 18px;
    color: #969fa6;
    font-size: 1.02rem;
}

.capability-line {
    margin: 0;
    color: var(--blue-bright);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.capability-line span {
    margin: 0 10px;
    color: var(--line-bright);
}


/* SECTIONS */

.section-shell {
    margin-top: 12px;
    padding: 42px 30px 34px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.55fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading h2,
.contact h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

/* PROJECTS */

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

.project-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    background:
        radial-gradient(circle at 60% 35%, rgba(35, 110, 164, 0.09), transparent 38%),
        #080d12;
    border: 1px solid var(--line-bright);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.project-card::after {
    position: absolute;
    right: 9px;
    bottom: 9px;
    width: 12px;
    height: 12px;
    content: "+";
    color: var(--blue-bright);
    font-size: 1.3rem;
    line-height: 0.5;
}

.project-card:hover {
    border-color: var(--blue);
    background:
        radial-gradient(circle at 60% 35%, rgba(35, 110, 164, 0.16), transparent 40%),
        #0a1118;
    transform: translateY(-5px);
}

.card-number {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 3;
    color: var(--blue-bright);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.project-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding: 42px 16px 18px;
    background: linear-gradient(transparent, rgba(4, 7, 10, 0.96) 46%);
}

.project-content h3 {
    margin: 0;
    color: #b8c0c6;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.project-content p {
    margin: 2px 0 8px;
    color: #8d979e;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-content span {
    color: var(--blue-bright);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.k34-image {
    position: absolute;
    top: 18px;
    right: 18px;
    bottom: 62px;
    left: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 80px);
    object-fit: contain;
    object-position: center bottom;
    filter:
        contrast(1.08)
        brightness(0.94)
        saturate(0.96)
        drop-shadow(0 18px 18px rgba(0, 0, 0, 0.78))
        drop-shadow(0 0 18px rgba(37, 112, 164, 0.13));
    transform: none;
}

.project-graphic {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 72%;
    height: 155px;
    transform: translateX(-50%);
}

.console-screen {
    position: absolute;
    top: 4px;
    left: 8%;
    width: 84%;
    height: 95px;
    background:
        linear-gradient(rgba(35, 110, 164, 0.18), rgba(35, 110, 164, 0.04)),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(74, 155, 209, 0.08) 19px);
    border: 4px solid #1b252e;
    box-shadow:
        0 0 0 1px #35424d,
        0 18px 34px rgba(0, 0, 0, 0.55);
    transform: perspective(500px) rotateX(-6deg);
}

.console-screen::after {
    position: absolute;
    inset: 14px;
    content: "";
    border: 1px solid rgba(74, 155, 209, 0.35);
}

.console-base {
    position: absolute;
    right: 8%;
    bottom: 8px;
    left: 8%;
    height: 48px;
    background: #111820;
    border: 1px solid #34414b;
    clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.gateway-graphic {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    background: #0b1116;
    border: 1px solid #34414b;
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.5);
}

.gateway-graphic i {
    flex: 1;
    position: relative;
    background:
        repeating-linear-gradient(
            0deg,
            #101820 0 7px,
            #24313b 8px,
            #101820 9px
        );
    border: 1px solid #202c35;
}

.gateway-graphic i::after {
    position: absolute;
    top: 12px;
    right: 3px;
    bottom: 12px;
    width: 2px;
    content: "";
    background: var(--blue);
    box-shadow: 0 0 10px var(--blue);
}

.archive-graphic {
    top: 36px;
    width: 80%;
    height: 168px;
}

.archive-tray {
    position: absolute;
    right: 5%;
    bottom: 11px;
    left: 23%;
    height: 58px;
    background:
        linear-gradient(180deg, #111922 0%, #090e13 62%, #05080b 100%);
    border: 1px solid #26333d;
    box-shadow:
        0 18px 28px rgba(0, 0, 0, 0.48),
        inset 0 1px rgba(87, 112, 130, 0.06);
    transform: perspective(520px) rotateX(13deg) skewX(-4deg);
    clip-path: polygon(7% 0, 100% 0, 94% 100%, 0 100%);
}

.archive-tray::before {
    position: absolute;
    right: 14%;
    bottom: 14px;
    left: 18%;
    height: 7px;
    content: "";
    background: #020508;
    border: 1px solid #1c2730;
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.9);
}

.archive-tray::after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 3px;
    height: 10px;
    content: "";
    background: #2a78aa;
    box-shadow:
        0 0 7px rgba(59, 145, 200, 0.48),
        -7px 0 0 rgba(37, 62, 79, 0.68);
}

.archive-disc {
    position: absolute;
    top: 0;
    left: 45%;
    width: 132px;
    height: 132px;
    border: 2px solid #2c3c48;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at center,
            #05080b 0 10px,
            #344651 11px 13px,
            #081016 14px 19px,
            transparent 20px
        ),
        repeating-radial-gradient(
            circle at center,
            transparent 0 9px,
            rgba(53, 78, 96, 0.22) 10px,
            transparent 11px 17px
        ),
        conic-gradient(
            from 220deg,
            transparent 0 55%,
            rgba(38, 95, 132, 0.08) 56%,
            rgba(56, 139, 193, 0.42) 59%,
            rgba(33, 83, 116, 0.12) 63%,
            transparent 67% 100%
        ),
        #091017;
    box-shadow:
        0 18px 27px rgba(0, 0, 0, 0.56),
        inset 0 0 0 1px rgba(83, 106, 123, 0.08);
    transform: translateX(-50%) rotate(-12deg);
}

.archive-disc::before {
    position: absolute;
    inset: 12px;
    content: "";
    border: 1px solid rgba(55, 78, 94, 0.54);
    border-radius: 50%;
    background:
        linear-gradient(
            126deg,
            transparent 0 43%,
            rgba(57, 139, 193, 0.24) 44% 46%,
            transparent 47% 100%
        );
}

.archive-disc::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 17px;
    content: "";
    background: #05080b;
    border: 3px solid #344651;
    border-radius: 50%;
    box-shadow:
        0 0 0 3px #0a1117,
        inset 0 0 3px #000000;
    transform: translate(-50%, -50%);
}

.disc-label {
    display: none;
}

/* CAPABILITIES */

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

.capability-grid article {
    position: relative;
    min-height: 230px;
    padding: 36px 30px;
    background: rgba(9, 14, 19, 0.72);
}

.capability-grid article + article {
    border-left: 1px solid var(--line);
}

.capability-grid span {
    color: var(--blue-bright);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.capability-grid h3 {
    margin: 45px 0 10px;
    color: #bbc3c9;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

/* CONTACT + FOOTER */

.contact {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact > p:not(.section-code) {
    max-width: 620px;
    color: var(--muted);
}

.contact > a {
    margin-top: 14px;
    padding-bottom: 4px;
    color: var(--blue-bright);
    border-bottom: 1px solid var(--blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer {
    display: flex;
    justify-content: space-between;
    width: min(calc(100% - 28px), var(--max-width));
    margin: 12px auto 0;
    padding: 24px 12px 34px;
    color: #626d76;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ANIMATIONS */

@keyframes load-bar {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes scan-line {
    from {
        transform: translateY(-180px);
    }

    to {
        transform: translateY(180px);
    }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
    .topbar {
        grid-template-columns: minmax(220px, 0.7fr) 1fr minmax(140px, 0.35fr);
    }

    .navigation a {
        min-width: 88px;
        padding: 0 10px;
    }

    .topbar-mark-image {
        width: min(165px, 100%);
    }

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

@media (max-width: 760px) {
    :root {
        --header-height: 62px;
    }

    .topbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 94px;
        min-height: 72px;
    }

    .topbar-spacer {
        min-height: 70px;
        border-right: 1px solid var(--line);
    }

    .topbar-mark-link {
        padding: 5px 10px;
        border-left: 0;
    }

    .topbar-mark-image {
        width: 100%;
        max-height: 58px;
    }

    .menu-button {
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 2;
        display: block;
        width: 94px;
        height: 44px;
        color: #aeb7bd;
        background: rgba(5, 8, 11, 0.98);
        border: 1px solid var(--line);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 0.82rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .navigation {
        position: absolute;
        top: calc(100% + 44px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(5, 8, 11, 0.98);
        border: 1px solid var(--line);
    }

    .navigation.is-open {
        display: flex;
    }

    .navigation a {
        min-height: 52px;
        justify-content: start;
        padding: 0 20px;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        min-height: 720px;
    }

    .hero-center {
        width: min(94vw, 720px);
    }

    .hero-disciplines {
        gap: 9px;
        padding: 0 28px;
        letter-spacing: 0.14em;
    }

    .coordinate-readout {
        top: 24px;
        left: 24px;
    }

    .system-status {
        top: auto;
        right: 24px;
        bottom: 54px;
        transform: none;
    }

    .mission-copy {
        padding: 36px 26px;
    }

    .section-shell {
        padding: 38px 18px 22px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .project-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .capability-grid article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .footer {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .topbar {
        grid-template-columns: minmax(0, 1fr) 82px;
    }

    .topbar-spacer {
        min-height: 62px;
    }

    .topbar-mark-image {
        max-height: 50px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-center {
        padding-bottom: 115px;
    }

    .hero-disciplines {
        flex-direction: column;
    }

    .hero-disciplines span {
        display: none;
    }

    .coordinate-readout {
        font-size: 0.58rem;
    }

    .systems-online {
        min-width: 210px;
    }

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

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

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}
