/* =========================================================
   MOHSIN LABS — PRODUCTION STYLESHEET
========================================================= */

:root {
    --bg: #020617;
    --bg-deep: #030611;
    --text: #ffffff;
    --muted: rgba(224, 231, 249, 0.76);
    --cyan: #65ddff;
    --blue: #4e8fff;
    --violet: #8f68ff;
    --pink: #e66cff;

    --page-width: 1640px;
    --desktop-gutter: 56px;
    --tablet-gutter: 29px;
    --mobile-gutter: 17px;

    --ease-premium: cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   RESET
========================================================= */

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

html {
    width: 100%;
    min-height: 100%;

    margin: 0;
    padding: 0;

    scroll-behavior: smooth;

    overflow-x: clip;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--bg);

    overflow-x: clip;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

img {
    display: block;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

section[id] {
    scroll-margin-top: 18px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #70dfff;
    outline-offset: 3px;
}


/* =========================================================
   SHARED ENERGY LANGUAGE
========================================================= */

.research-divider {
    position: relative;
    z-index: 20;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #2f86ff 0%,
            #54ddff 23%,
            #7166ff 49%,
            #d35fff 77%,
            #56dfff 100%
        );

    box-shadow:
        0 0 8px rgba(64, 180, 255, 0.85),
        0 0 18px rgba(108, 82, 255, 0.55),
        0 0 30px rgba(217, 80, 255, 0.25);
}

.research-divider::before,
.research-divider::after {
    content: "";

    position: absolute;

    height: 25px;

    bottom: -11px;

    border-top: 2px solid;
    border-radius: 50%;

    pointer-events: none;
}

.research-divider::before {
    left: -4%;

    width: 30%;

    border-color:
        rgba(68, 211, 255, 0.72);
}

.research-divider::after {
    right: -5%;

    width: 36%;

    border-color:
        rgba(217, 85, 255, 0.78);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: clip;

    isolation: isolate;

    background: var(--bg);
}


/* =========================================================
   HERO — CINEMATIC WORLD
========================================================= */

.hero-visual {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -5;

    overflow: clip;

    background: var(--bg);

    transform: scale(1.06);
}

.hero-layer {
    position: absolute;

    pointer-events: none;

    will-change: transform;
}

.hero-world {
    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        url("images/hero/hero-world.png");

    background-repeat: no-repeat;

    background-position:
        center center;

    background-size: cover;

    transform:
        scale(1.05);

    filter:
        saturate(1.08)
        contrast(1.04);
}

.hero-nebula {
    width: 115%;

    max-width: none;

    left: -8%;
    top: -15%;

    opacity: 0.34;

    mix-blend-mode: screen;

    filter:
        saturate(1.2)
        blur(0.4px);
}

.hero-orbit {
    width: 74%;

    max-width: none;

    right: -5%;
    top: 1%;

    opacity: 0.38;

    mix-blend-mode: screen;

    filter:
        saturate(1.25)
        brightness(1.12);
}

.hero-light {
    position: absolute;

    width: 34vw;
    height: 34vw;

    min-width: 420px;
    min-height: 420px;

    border-radius: 50%;

    filter:
        blur(100px);

    pointer-events: none;
}

.hero-light--blue {
    right: 15%;
    top: 8%;

    background:
        rgba(38, 103, 255, 0.18);
}

.hero-light--violet {
    right: -8%;
    bottom: -15%;

    background:
        rgba(194, 62, 255, 0.20);
}


/* =========================================================
   HERO — READABILITY
========================================================= */

.hero-shade {
    position: absolute;

    inset: 0;

    z-index: -2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, 0.98) 0%,
            rgba(2, 6, 23, 0.91) 24%,
            rgba(2, 6, 23, 0.62) 43%,
            rgba(2, 6, 23, 0.18) 63%,
            rgba(2, 6, 23, 0.03) 100%
        ),
        linear-gradient(
            180deg,
            rgba(1, 4, 16, 0.28) 0%,
            transparent 32%,
            transparent 70%,
            rgba(1, 4, 16, 0.37) 100%
        );
}


/* =========================================================
   HERO — HEADER
========================================================= */

.hero-header {
    position: relative;

    z-index: 30;

    width:
        min(
            calc(100% - 112px),
            var(--page-width)
        );

    height: 84px;

    margin-inline: auto;

    display: flex;

    align-items: center;

    gap: 40px;
}

.hero-brand {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;
}

.hero-brand-logo {
    width: auto;
    height: 65px;

    object-fit: contain;
}


/* =========================================================
   HERO — NAVIGATION
========================================================= */

.hero-nav {
    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 31px;
}

.hero-nav a {
    position: relative;

    color:
        rgba(244, 246, 255, 0.88);

    font-size: 0.75rem;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.25s ease;
}

.hero-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -9px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #52e8ff,
            #a45bff
        );

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 0.25s ease;
}

.hero-nav a:hover {
    color: #ffffff;
}

.hero-nav a:hover::after {
    transform:
        scaleX(1);
}


/* =========================================================
   HERO — HEADER ACTIONS
========================================================= */

.hero-header-actions {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 17px;
}


/* =========================================================
   HERO — SEARCH / MENU BUTTON
========================================================= */

.hero-search {
    position: relative;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    padding: 0;

    border:
        1px solid
        rgba(147, 163, 255, 0.28);

    border-radius: 50%;

    background:
        rgba(7, 14, 44, 0.55);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-search:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(111, 202, 255, 0.62);

    background:
        rgba(17, 25, 64, 0.72);

    box-shadow:
        0 0 22px
        rgba(91, 92, 255, 0.18);
}

.hero-search::before {
    content: "";

    position: absolute;

    width: 13px;
    height: 13px;

    left: 12px;
    top: 11px;

    border:
        2px solid #ffffff;

    border-radius: 50%;
}

.hero-search::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 2px;

    left: 25px;
    top: 27px;

    border-radius: 99px;

    background: #ffffff;

    transform:
        rotate(45deg);
}

.hero-search > span {
    display: none;
}


/* =========================================================
   HERO — BUILD BUTTON
========================================================= */

.hero-build-button {
    min-height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    padding:
        0 21px;

    border:
        1px solid
        rgba(104, 204, 255, 0.70);

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            110deg,
            rgba(21, 164, 255, 0.12),
            rgba(144, 67, 255, 0.22)
        );

    box-shadow:
        inset 0 0 20px
        rgba(67, 133, 255, 0.10),

        0 0 20px
        rgba(93, 85, 255, 0.13);

    font-size: 0.78rem;
    font-weight: 600;

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

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

    border-color:
        rgba(135, 220, 255, 0.90);

    box-shadow:
        0 0 28px
        rgba(82, 106, 255, 0.25);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-menu {
    position: absolute;

    z-index: 80;

    top: 78px;
    right: 29px;

    width:
        min(
            310px,
            calc(100% - 58px)
        );

    padding: 10px;

    border:
        1px solid
        rgba(121, 151, 255, 0.25);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(13, 21, 53, 0.96),
            rgba(5, 10, 29, 0.96)
        );

    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, 0.42),

        0 0 34px
        rgba(91, 79, 255, 0.12);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);
}

.mobile-menu__nav {
    display: grid;

    gap: 4px;
}

.mobile-menu__nav a {
    min-height: 46px;

    display: flex;

    align-items: center;

    padding:
        0 15px;

    border-radius: 11px;

    color:
        rgba(239, 243, 255, 0.88);

    font-size: 0.82rem;
    font-weight: 600;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.mobile-menu__nav a:hover {
    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(69, 141, 255, 0.15),
            rgba(152, 79, 255, 0.13)
        );

    transform:
        translateX(3px);
}


/* =========================================================
   HERO — CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 10;

    width:
        min(
            calc(100% - 112px),
            var(--page-width)
        );

    margin-inline: auto;

    padding-top:
        clamp(
            42px,
            7vh,
            68px
        );

    padding-bottom: 48px;
}

.hero-eyebrow {
    margin:
        0 0 17px;

    color: #80e6ff;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.28em;
}

.hero-title {
    max-width: 590px;

    margin: 0;

    font-size:
        clamp(
            3rem,
            4.6vw,
            5.15rem
        );

    line-height: 0.93;

    letter-spacing:
        -0.062em;

    font-weight: 760;

    text-shadow:
        0 3px 28px
        rgba(2, 6, 23, 0.45);
}

.hero-title > span {
    display: block;
}

.hero-title strong {
    font-weight: inherit;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #8ecaff 0%,
            #bb86ff 47%,
            #ef6dff 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;
}

.hero-description {
    max-width: 560px;

    margin:
        18px 0 0;

    color:
        rgba(229, 233, 249, 0.82);

    font-size: 0.84rem;

    line-height: 1.65;
}


/* =========================================================
   HERO — BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 22px;
}

.hero-button {
    min-height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:
        0 21px;

    border-radius: 11px;

    font-size: 0.78rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

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

.hero-button--primary {
    border: 0;

    color: #060817;

    background:
        linear-gradient(
            100deg,
            #e18aff 0%,
            #9d75ff 39%,
            #4be7ff 100%
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.60),

        0 0 26px
        rgba(153, 89, 255, 0.24);
}

.hero-button--secondary {
    color: #ffffff;

    border:
        1px solid
        rgba(129, 151, 255, 0.32);

    background:
        rgba(4, 10, 35, 0.57);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}


/* =========================================================
   HERO — PRODUCT SIGNALS
========================================================= */

.hero-metrics {
    display: flex;

    align-items: stretch;

    margin-top:
        clamp(
            34px,
            5.5vh,
            52px
        );
}

.hero-metric {
    min-width: 142px;

    padding-right: 25px;

    margin-right: 25px;

    border-right:
        1px solid
        rgba(205, 213, 255, 0.19);
}

.hero-metric:last-child {
    border-right: 0;
}

.hero-metric strong {
    display: block;

    margin-bottom: 5px;

    font-size: 1.38rem;

    line-height: 1;

    font-weight: 650;

    letter-spacing: -0.02em;

    font-variant-numeric:
        tabular-nums;
}

.hero-metric span {
    color:
        rgba(220, 225, 245, 0.76);

    font-size: 0.62rem;

    line-height: 1.35;
}


/* =========================================================
   HERO — SIDE MESSAGE
========================================================= */

.hero-side-message {
    position: absolute;

    z-index: 12;

    right: 4%;
    top: 18%;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color:
        rgba(173, 194, 255, 0.92);

    font-size: 0.56rem;
    font-weight: 650;

    letter-spacing: 0.28em;

    line-height: 1.15;
}

.hero-side-message::before,
.hero-side-message::after {
    content: "";

    width: 26px;
    height: 1px;

    background:
        rgba(160, 189, 255, 0.65);
}

.hero-side-message::before {
    margin:
        0 0 7px;
}

.hero-side-message::after {
    margin:
        8px 0 0;
}


/* =========================================================
   HERO — ENERGY DIVIDER
========================================================= */

.hero-energy-line {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #397cff,
            #6c5dff,
            #d05cff,
            #4ddcff,
            transparent
        );

    box-shadow:
        0 0 13px
        rgba(111, 86, 255, 0.70);

    opacity: 0.75;

    transform:
        scaleX(1.08);

    transform-origin:
        center;
}


/* =========================================================
   RESEARCH
========================================================= */

.research-section {
    position: relative;

    min-height: 620px;

    overflow: clip;

    isolation: isolate;

    background: var(--bg);
}


/* =========================================================
   RESEARCH — VISUAL
========================================================= */

.research-visual {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: -3;

    overflow: clip;

    pointer-events: none;
}

.research-visual__main {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position:
        center center;

    filter:
        saturate(1.08)
        contrast(1.05)
        brightness(0.88);

    transform:
        scale(1.06);

    will-change: transform;
}

.research-visual__glow {
    position: absolute;

    width: 620px;
    height: 620px;

    left: 48%;
    top: 48%;

    z-index: 2;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(74, 184, 255, 0.20) 0%,
            rgba(107, 79, 255, 0.15) 35%,
            rgba(212, 67, 255, 0.08) 55%,
            transparent 72%
        );

    filter:
        blur(60px);

    mix-blend-mode: screen;

    transform:
        translate(-50%, -50%);
}


/* =========================================================
   RESEARCH — OVERLAY
========================================================= */

.research-section::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, 0.96) 0%,
            rgba(2, 6, 23, 0.81) 22%,
            rgba(2, 6, 23, 0.20) 38%,
            rgba(2, 6, 23, 0.08) 55%,
            rgba(2, 6, 23, 0.45) 72%,
            rgba(2, 6, 23, 0.92) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 6, 23, 0.16) 0%,
            transparent 30%,
            transparent 70%,
            rgba(2, 6, 23, 0.32) 100%
        );
}


/* =========================================================
   RESEARCH — GRID
========================================================= */

.research-inner {
    width:
        min(
            calc(100% - 112px),
            var(--page-width)
        );

    min-height: 620px;

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(270px, 0.82fr)
        minmax(350px, 1.12fr)
        minmax(320px, 0.90fr)
        minmax(150px, 0.40fr);

    gap: 20px;

    align-items: center;
}

.research-copy {
    position: relative;

    z-index: 5;

    grid-column: 1;

    max-width: 390px;
}

.research-eyebrow {
    display: block;

    margin-bottom: 17px;

    color: #79e8ff;

    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.27em;

    text-transform: uppercase;
}

.research-copy h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.7rem,
            3.7vw,
            4.4rem
        );

    line-height: 0.96;

    letter-spacing:
        -0.055em;

    font-weight: 760;
}

.gradient-text {
    color: transparent;

    background:
        linear-gradient(
            105deg,
            #8bdcff 0%,
            #aa7cff 46%,
            #ef6cff 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;
}

.research-copy > p {
    max-width: 360px;

    margin:
        23px 0 0;

    color:
        rgba(228, 233, 249, 0.82);

    font-size: 0.87rem;

    line-height: 1.67;
}


/* =========================================================
   RESEARCH — CTA
========================================================= */

.research-btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    margin-top: 25px;

    padding:
        0 23px;

    border:
        1px solid
        rgba(170, 137, 255, 0.40);

    border-radius: 11px;

    color: #080918;

    background:
        linear-gradient(
            100deg,
            #df86ff 0%,
            #9c75ff 43%,
            #4de7ff 100%
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.55),

        0 0 28px
        rgba(128, 86, 255, 0.28);

    font-size: 0.78rem;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.research-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 0 35px
        rgba(111, 105, 255, 0.42);
}


/* =========================================================
   RESEARCH — FEATURE PANEL
========================================================= */

.research-panel {
    position: relative;

    z-index: 6;

    grid-column: 3;

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.research-card {
    min-height: 73px;

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr)
        31px;

    align-items: center;

    gap: 13px;

    padding:
        11px 12px;

    border:
        1px solid
        rgba(107, 146, 255, 0.35);

    border-radius: 11px;

    background:
        linear-gradient(
            115deg,
            rgba(21, 30, 73, 0.76),
            rgba(7, 14, 43, 0.78)
        );

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.05),

        0 12px 30px
        rgba(0, 0, 0, 0.20);

    transform-style:
        preserve-3d;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.research-card:hover {
    border-color:
        rgba(184, 102, 255, 0.68);

    box-shadow:
        0 0 25px
        rgba(103, 84, 255, 0.20);
}

.research-card__icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(178, 108, 255, 0.38);

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(221, 117, 255, 0.18),
            rgba(72, 111, 255, 0.12) 70%
        );

    box-shadow:
        0 0 15px
        rgba(138, 89, 255, 0.17);
}

.research-card__icon svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: #c87dff;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(
            0 0 5px
            rgba(169, 97, 255, 0.42)
        );
}

.research-card:nth-child(4)
.research-card__icon svg {
    stroke: #55dfff;
}

.research-card__content {
    min-width: 0;
}

.research-card__content h4 {
    margin:
        0 0 4px;

    color: #ffffff;

    font-size: 0.75rem;

    line-height: 1.2;

    font-weight: 700;
}

.research-card__content p {
    margin: 0;

    color:
        rgba(207, 215, 240, 0.70);

    font-size: 0.59rem;

    line-height: 1.42;
}

.research-card__arrow {
    width: 29px;
    height: 29px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(124, 153, 255, 0.32);

    border-radius: 50%;

    color: #e7ebff;

    background:
        rgba(16, 27, 66, 0.58);

    font-size: 0.75rem;
}


/* =========================================================
   RESEARCH — QUOTE
========================================================= */

.research-quote {
    position: relative;

    z-index: 6;

    grid-column: 4;

    width: 100%;

    max-width: 155px;

    min-width: 0;

    margin: 0;

    padding:
        8px 5px 8px 18px;

    border-left:
        1px solid
        rgba(136, 156, 230, 0.18);
}

.research-quote__line {
    display: block;

    width: 25px;
    height: 2px;

    margin-bottom: 18px;

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            #4fe5ff,
            #dd65ff
        );

    box-shadow:
        0 0 9px
        rgba(120, 116, 255, 0.48);
}

.research-quote p {
    margin: 0;

    color:
        rgba(247, 248, 255, 0.96);

    font-size: 0.80rem;

    line-height: 1.48;

    font-weight: 500;
}

.research-quote cite {
    display: block;

    margin-top: 14px;

    color:
        rgba(186, 195, 222, 0.64);

    font-size: 0.59rem;

    font-style: normal;
}


/* =========================================================
   INNOVATION PATHWAYS
========================================================= */

.pathways-section {
    --pathways-x: 0px;
    --pathways-y: 0px;

    position: relative;

    min-height: 340px;

    padding:
        42px 0 54px;

    overflow: clip;

    isolation: isolate;

    background: #040817;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.04);
}

.pathways-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(4, 7, 23, 0.96) 0%,
            rgba(4, 7, 23, 0.90) 18%,
            rgba(4, 7, 23, 0.64) 32%,
            rgba(4, 7, 23, 0.26) 48%,
            rgba(4, 7, 23, 0.08) 64%,
            rgba(4, 7, 23, 0.02) 100%
        ),
        url("images/pathways/pathways-background.png");

    background-repeat: no-repeat;

    background-position:
        center center;

    background-size: cover;

    transform:
        scale(1.01);

    will-change:
        transform;

    animation:
        pathways-breathe
        10s
        ease-in-out
        infinite alternate;
}

.pathways-background::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(84, 136, 255, 0.08),
            transparent 34%
        ),

        radial-gradient(
            circle at 78% 42%,
            rgba(214, 102, 255, 0.10),
            transparent 26%
        );
}

.pathways-section::before {
    content: "";

    position: absolute;

    z-index: 1;

    width: 520px;
    height: 520px;

    right: 18%;
    top: 50%;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(73, 181, 255, 0.13) 0%,
            rgba(111, 81, 255, 0.10) 36%,
            rgba(221, 75, 255, 0.06) 52%,
            transparent 72%
        );

    filter:
        blur(48px);

    mix-blend-mode: screen;

    animation:
        pathways-cosmic-pulse
        5.5s
        ease-in-out
        infinite alternate;
}

.pathways-section::after {
    content: "";

    position: absolute;

    z-index: 1;

    top: -35%;
    left: -30%;

    width: 42%;
    height: 170%;

    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(73, 199, 255, 0) 22%,
            rgba(73, 199, 255, 0.13) 43%,
            rgba(184, 93, 255, 0.18) 52%,
            rgba(255, 91, 215, 0.08) 60%,
            transparent 75%
        );

    filter:
        blur(18px);

    transform:
        skewX(-18deg);

    mix-blend-mode:
        screen;

    animation:
        pathways-energy-sweep
        8s
        cubic-bezier(.45, 0, .55, 1)
        infinite;
}

.pathways-inner {
    position: relative;

    z-index: 3;

    width:
        min(
            100%,
            1440px
        );

    margin:
        0 auto;

    padding:
        0
        clamp(
            28px,
            4vw,
            56px
        );
}

.pathways-copy {
    position: relative;

    z-index: 3;

    min-height: 250px;

    max-width: 355px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
}

.pathways-eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    color: #7be3ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.26em;

    text-transform: uppercase;
}

.pathways-title {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2rem,
            3.2vw,
            3.55rem
        );

    line-height: 0.96;

    font-weight: 800;

    letter-spacing:
        -0.04em;
}

.pathways-title span {
    display: block;
}

.pathways-title strong {
    font-weight: 800;

    color: transparent;

    background:
        linear-gradient(
            135deg,
            #7ec8ff 0%,
            #b986ff 50%,
            #ff67d4 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;
}

.pathways-description {
    max-width: 330px;

    margin:
        20px 0 0;

    color:
        rgba(223, 233, 255, 0.76);

    font-size: 18px;

    line-height: 1.72;
}

.pathways-button {
    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 26px;

    padding:
        0 22px;

    border:
        1px solid
        rgba(114, 170, 255, 0.36);

    border-radius: 16px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            #1987ff 0%,
            #6b54ff 58%,
            #8b4dff 100%
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.18),

        0 10px 30px
        rgba(48, 105, 255, 0.20),

        0 0 24px
        rgba(165, 96, 255, 0.18);

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

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

    filter:
        brightness(1.05);

    box-shadow:
        0 14px 34px
        rgba(48, 105, 255, 0.24),

        0 0 28px
        rgba(182, 96, 255, 0.22);
}

.pathways-divider {
    position: absolute;

    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    height: 14px;

    pointer-events: none;
}

.pathways-divider span {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 0;

    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #67dcff 0%,
            #4b9eff 18%,
            #7b82ff 42%,
            #bc70ff 68%,
            #ff69d5 86%,
            #78e2ff 100%
        );

    box-shadow:
        0 0 10px
        rgba(98, 170, 255, 0.55),

        0 0 18px
        rgba(205, 103, 255, 0.28),

        0 0 30px
        rgba(95, 176, 255, 0.24);
}

.pathways-divider::before {
    content: "";

    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 3px;

    height: 18px;

    background:
        linear-gradient(
            90deg,
            rgba(103, 220, 255, 0.10),
            rgba(107, 84, 255, 0.14),
            rgba(255, 105, 213, 0.10)
        );

    filter:
        blur(10px);
}


/* =========================================================
   PATHWAYS — MOTION
========================================================= */

@keyframes pathways-breathe {

    from {
        transform:
            scale(1.01)
            translate3d(
                var(--pathways-x),
                var(--pathways-y),
                0
            );
    }

    to {
        transform:
            scale(1.045)
            translate3d(
                var(--pathways-x),
                var(--pathways-y),
                0
            );
    }

}

@keyframes pathways-energy-sweep {

    0% {
        left: -45%;
        opacity: 0;
    }

    18% {
        opacity: 0.72;
    }

    55% {
        opacity: 0.95;
    }

    82% {
        opacity: 0.55;
    }

    100% {
        left: 115%;
        opacity: 0;
    }

}

@keyframes pathways-cosmic-pulse {

    from {
        opacity: 0.55;

        transform:
            translateY(-50%)
            scale(0.90);
    }

    to {
        opacity: 1;

        transform:
            translateY(-50%)
            scale(1.12);
    }

}


/* =========================================================
   PRODUCTS
========================================================= */

.experiments-section {
    position: relative;

    width: 100%;

    padding:
        48px 0 62px;

    overflow: clip;

    isolation: isolate;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(93, 73, 204, 0.11),
            transparent 35%
        ),

        radial-gradient(
            circle at 18% 85%,
            rgba(34, 137, 220, 0.08),
            transparent 28%
        ),

        #020617;
}

.experiments-section::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        );

    background-size:
        54px 54px;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 30%,
            black 75%,
            transparent
        );
}

.experiments-inner {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 112px),
            var(--page-width)
        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(250px, 0.72fr)
        minmax(0, 2.35fr);

    gap: 42px;

    align-items: center;
}

.experiments-copy {
    max-width: 330px;
}

.experiments-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #79e6ff;

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.27em;

    text-transform: uppercase;
}

.experiments-title {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.15rem,
            2.9vw,
            3.45rem
        );

    line-height: 0.97;

    letter-spacing:
        -0.05em;

    font-weight: 760;
}

.experiments-title > span {
    display: block;
}

.experiments-title strong {
    font-weight: inherit;

    color: transparent;

    background:
        linear-gradient(
            105deg,
            #7cd8ff,
            #ad79ff 48%,
            #ef69d7
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;
}

.experiments-description {
    max-width: 305px;

    margin:
        19px 0 0;

    color:
        rgba(224, 231, 249, 0.76);

    font-size: 0.79rem;

    line-height: 1.62;
}

.experiments-button {
    width: fit-content;

    min-height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 22px;

    padding:
        0 21px;

    border:
        1px solid
        rgba(91, 187, 255, 0.48);

    border-radius: 10px;

    color: #ffffff;

    background:
        linear-gradient(
            110deg,
            rgba(14, 117, 221, 0.76),
            rgba(100, 57, 212, 0.80)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.13),

        0 0 24px
        rgba(91, 93, 255, 0.20);

    font-size: 0.70rem;
    font-weight: 650;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

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

    box-shadow:
        0 0 31px
        rgba(101, 90, 255, 0.34);
}


/* =========================================================
   PRODUCTS — GRID
========================================================= */

.products-grid {
    min-width: 0;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 18px;
}

.lab-product-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(105, 144, 255, 0.29);

    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(12, 22, 54, 0.96),
            rgba(5, 11, 31, 0.98)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.05),

        0 18px 45px
        rgba(0, 0, 0, 0.24);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.lab-product-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(153, 111, 255, 0.63);

    box-shadow:
        0 24px 52px
        rgba(0, 0, 0, 0.30),

        0 0 30px
        rgba(97, 79, 255, 0.16);
}


/* =========================================================
   PRODUCTS — VISUAL
========================================================= */

.lab-product-card__visual {
    position: relative;

    height: 190px;

    overflow: hidden;

    border-bottom:
        1px solid
        rgba(114, 146, 255, 0.17);
}

.lab-product-card__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center center;

    filter:
        saturate(1.02)
        contrast(1.03)
        brightness(0.84);

    transform:
        scale(1.015);

    transition:
        transform 0.45s
        var(--ease-premium),

        filter 0.35s ease;
}

.lab-product-card--engine
.lab-product-card__image {
    object-position:
        center 46%;
}

.lab-product-card--calculator
.lab-product-card__image {
    object-position:
        center 44%;
}

.lab-product-card__visual::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(3, 8, 25, 0.02) 0%,
            rgba(3, 8, 25, 0.05) 50%,
            rgba(3, 8, 25, 0.32) 100%
        );
}

.lab-product-card__visual::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: -55%;
    left: -45%;

    width: 42%;
    height: 210%;

    pointer-events: none;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.10),
            transparent
        );

    transform:
        rotate(11deg);

    opacity: 0;

    transition:
        left 0.7s ease,
        opacity 0.25s ease;
}

.lab-product-card:hover
.lab-product-card__visual::before {
    left: 115%;

    opacity: 0.65;
}

.lab-product-card:hover
.lab-product-card__image {
    transform:
        scale(1.045);

    filter:
        saturate(1.08)
        contrast(1.04)
        brightness(0.92);
}

.lab-product-card__number,
.lab-product-card__status {
    position: absolute;

    z-index: 3;
}

.lab-product-card__number {
    top: 15px;
    left: 16px;

    color:
        rgba(188, 207, 255, 0.58);

    font-size: 0.58rem;
    font-weight: 700;

    letter-spacing: 0.13em;
}

.lab-product-card__status {
    top: 14px;
    right: 15px;

    min-height: 23px;

    display: inline-flex;

    align-items: center;

    padding:
        0 9px;

    border:
        1px solid
        rgba(79, 225, 180, 0.42);

    border-radius: 999px;

    color: #74f0c4;

    background:
        rgba(17, 102, 82, 0.16);

    font-size: 0.50rem;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.lab-product-card__status::before {
    content: "";

    width: 5px;
    height: 5px;

    margin-right: 6px;

    border-radius: 50%;

    background: #68efbe;

    box-shadow:
        0 0 9px
        rgba(87, 239, 189, 0.72);
}


/* =========================================================
   PRODUCTS — BODY
========================================================= */

.lab-product-card__body {
    padding:
        17px 18px 16px;
}

.lab-product-card__top {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        35px;

    gap: 12px;

    align-items: start;
}

.lab-product-card__category {
    display: block;

    margin-bottom: 7px;

    color: #6fe2ff;

    font-size: 0.48rem;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.lab-product-card__top h3 {
    margin: 0;

    color: #ffffff;

    font-size: 1rem;

    line-height: 1.18;

    font-weight: 700;
}

.lab-product-card__arrow {
    position: relative;

    z-index: 20;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(117, 149, 255, 0.32);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(28, 39, 91, 0.65);

    font-size: 0.83rem;

    cursor: pointer;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.lab-product-card:hover
.lab-product-card__arrow {
    transform:
        translateX(3px);

    border-color:
        rgba(166, 102, 255, 0.63);

    background:
        rgba(87, 52, 159, 0.46);
}

.lab-product-card__description {
    max-width: 480px;

    margin:
        15px 0 0;

    color:
        rgba(213, 222, 245, 0.70);

    font-size: 0.66rem;

    line-height: 1.58;
}

.lab-product-card__footer {
    margin-top: 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    flex-wrap: wrap;
}

.lab-product-card__tags {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}

.lab-product-card__tags span {
    min-height: 22px;

    display: inline-flex;

    align-items: center;

    padding:
        0 8px;

    border:
        1px solid
        rgba(117, 148, 255, 0.27);

    border-radius: 999px;

    color:
        rgba(220, 228, 249, 0.78);

    background:
        rgba(18, 28, 67, 0.60);

    font-size: 0.50rem;
}

.lab-product-card__link {
    min-height: 30px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #87dfff;

    font-size: 0.60rem;
    font-weight: 650;

    white-space: nowrap;

    transition:
        gap 0.22s ease,
        color 0.22s ease;
}

.lab-product-card__link:hover {
    gap: 11px;

    color: #cb8dff;
}


/* =========================================================
   PRODUCTS — DIVIDER
========================================================= */

.experiments-divider {
    position: absolute;

    z-index: 10;

    left: 0;
    right: 0;
    bottom: 0;

    height: 18px;

    overflow: hidden;

    pointer-events: none;
}

.experiments-divider > span {
    position: absolute;

    left: -3%;
    right: -3%;
    bottom: 1px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #3b94ff 10%,
            #54dfff 28%,
            #7866ff 52%,
            #d35cff 79%,
            #57dcff 92%,
            transparent
        );

    box-shadow:
        0 0 8px
        rgba(68, 181, 255, 0.82),

        0 0 18px
        rgba(110, 83, 255, 0.52),

        0 0 28px
        rgba(216, 78, 255, 0.24);
}


/* =========================================================
   FUTURE CTA
========================================================= */

.future-section {
    --future-x: 0px;
    --future-y: 0px;

    position: relative;

    width: 100%;
    min-height: 360px;

    overflow: clip;

    isolation: isolate;

    background: var(--bg);
}

.future-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, 0.96) 0%,
            rgba(2, 6, 23, 0.86) 20%,
            rgba(2, 6, 23, 0.50) 35%,
            rgba(2, 6, 23, 0.14) 54%,
            rgba(2, 6, 23, 0.02) 100%
        ),

        url("images/future/future-cta-background.png");

    background-size: cover;

    background-position:
        center center;

    background-repeat:
        no-repeat;

    transform:
        scale(1.015);

    will-change:
        transform;

    animation:
        future-background-breathe
        11s
        ease-in-out
        infinite alternate;
}

.future-section::before {
    content: "";

    position: absolute;

    z-index: 1;

    width: 560px;
    height: 560px;

    right: 8%;
    top: 48%;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(77, 193, 255, 0.16) 0%,
            rgba(117, 82, 255, 0.13) 30%,
            rgba(218, 75, 255, 0.08) 48%,
            transparent 72%
        );

    filter:
        blur(55px);

    mix-blend-mode:
        screen;

    animation:
        future-cosmic-pulse
        5.5s
        ease-in-out
        infinite alternate;
}

.future-section::after {
    content: "";

    position: absolute;

    z-index: 1;

    top: -45%;
    left: -35%;

    width: 36%;
    height: 190%;

    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(76, 204, 255, 0) 25%,
            rgba(76, 204, 255, 0.11) 42%,
            rgba(178, 91, 255, 0.17) 51%,
            rgba(255, 91, 214, 0.08) 60%,
            transparent 76%
        );

    filter:
        blur(20px);

    transform:
        skewX(-18deg);

    mix-blend-mode:
        screen;

    animation:
        future-energy-sweep
        9s
        cubic-bezier(.45, 0, .55, 1)
        infinite;
}

.future-inner {
    position: relative;

    z-index: 3;

    width:
        min(
            calc(100% - 112px),
            var(--page-width)
        );

    min-height: 360px;

    margin-inline: auto;

    display: flex;

    align-items: center;
}

.future-copy {
    max-width: 475px;
}

.future-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #79e6ff;

    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.27em;

    text-transform: uppercase;
}

.future-title {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.55rem,
            4vw,
            4.35rem
        );

    line-height: 0.96;

    letter-spacing:
        -0.055em;

    font-weight: 770;
}

.future-title span {
    display: block;
}

.future-title strong {
    font-weight: inherit;

    color: transparent;

    background:
        linear-gradient(
            105deg,
            #8bd8ff 0%,
            #b07cff 48%,
            #ef6ed7 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;
}

.future-description {
    max-width: 435px;

    margin:
        17px 0 0;

    color:
        rgba(225, 232, 248, 0.80);

    font-size: 0.84rem;

    line-height: 1.58;
}

.future-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 22px;

    flex-wrap: wrap;
}

.future-button {
    min-height: 45px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:
        0 21px;

    border-radius: 10px;

    font-size: 0.70rem;

    font-weight: 680;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.future-button--primary {
    color: #07101f;

    border:
        1px solid
        rgba(122, 206, 255, 0.48);

    background:
        linear-gradient(
            100deg,
            #e18aff 0%,
            #9f79ff 44%,
            #4fe4ff 100%
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.48),

        0 0 26px
        rgba(111, 92, 255, 0.26);
}

.future-button--secondary {
    color:
        rgba(244, 247, 255, 0.94);

    border:
        1px solid
        rgba(118, 145, 255, 0.32);

    background:
        rgba(11, 20, 48, 0.58);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}

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

.future-button--primary:hover {
    box-shadow:
        0 0 34px
        rgba(103, 105, 255, 0.38);
}

.future-button--secondary:hover {
    border-color:
        rgba(176, 108, 255, 0.55);

    background:
        rgba(30, 29, 75, 0.68);
}

.future-divider {
    position: absolute;

    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    height: 18px;

    overflow: hidden;

    pointer-events: none;
}

.future-divider > span {
    position: absolute;

    left: -3%;
    right: -3%;
    bottom: 1px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #3c95ff 10%,
            #53ddff 28%,
            #7867ff 52%,
            #d45cff 79%,
            #55ddff 92%,
            transparent
        );

    box-shadow:
        0 0 8px
        rgba(68, 181, 255, 0.82),

        0 0 18px
        rgba(110, 83, 255, 0.52),

        0 0 28px
        rgba(216, 78, 255, 0.24);
}


/* =========================================================
   FUTURE — MOTION
========================================================= */

@keyframes future-background-breathe {

    from {
        transform:
            scale(1.015)
            translate3d(
                var(--future-x),
                var(--future-y),
                0
            );
    }

    to {
        transform:
            scale(1.055)
            translate3d(
                var(--future-x),
                var(--future-y),
                0
            );
    }

}

@keyframes future-cosmic-pulse {

    from {
        opacity: 0.45;

        transform:
            translateY(-50%)
            scale(0.88);
    }

    to {
        opacity: 1;

        transform:
            translateY(-50%)
            scale(1.13);
    }

}

@keyframes future-energy-sweep {

    0% {
        left: -40%;
        opacity: 0;
    }

    18% {
        opacity: 0.60;
    }

    52% {
        opacity: 0.95;
    }

    82% {
        opacity: 0.45;
    }

    100% {
        left: 115%;
        opacity: 0;
    }

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    position: relative;

    width: 100%;

    padding:
        76px 0 82px;

    overflow: clip;

    background:
        radial-gradient(
            circle at 18% 42%,
            rgba(44, 88, 205, 0.14),
            transparent 34%
        ),

        radial-gradient(
            circle at 82% 48%,
            rgba(127, 61, 224, 0.11),
            transparent 32%
        ),

        linear-gradient(
            180deg,
            #050814 0%,
            #050711 100%
        );
}

.contact-section::before {
    content: "";

    position: absolute;

    inset: -20%;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 58% 42%,
            rgba(70, 128, 255, 0.12),
            transparent 27%
        ),

        radial-gradient(
            circle at 78% 65%,
            rgba(159, 72, 255, 0.08),
            transparent 23%
        );

    filter:
        blur(22px);

    animation:
        contact-atmosphere
        8s
        ease-in-out
        infinite alternate;
}

.contact-section::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(68, 150, 255, 0.80) 35%,
            rgba(170, 77, 255, 0.80) 65%,
            transparent 100%
        );

    box-shadow:
        0 0 18px
        rgba(74, 129, 255, 0.40);
}

.contact-inner {
    position: relative;

    z-index: 2;

    width:
        min(
            1180px,
            calc(100% - 48px)
        );

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 76px;

    align-items: center;
}


/* =========================================================
   CONTACT — COPY
========================================================= */

.contact-copy {
    max-width: 470px;
}

.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #78b8ff;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.contact-eyebrow::before {
    content: "";

    width: 26px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #59a9ff,
            #ae68ff
        );

    box-shadow:
        0 0 10px
        rgba(87, 163, 255, 0.65);
}

.contact-title {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            2.8rem,
            4.1vw,
            4.35rem
        );

    line-height: 0.97;

    letter-spacing:
        -0.045em;
}

.contact-title__accent {
    color: transparent;

    background:
        linear-gradient(
            90deg,
            #6fb8ff 0%,
            #9a7cff 48%,
            #e56dff 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

    text-shadow:
        0 0 24px
        rgba(132, 103, 255, 0.18);
}

.contact-description {
    max-width: 455px;

    margin:
        20px 0 0;

    color:
        rgba(217, 226, 255, 0.66);

    font-size: 0.97rem;

    line-height: 1.70;
}

.contact-direct {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 26px;
}

.contact-direct span {
    color:
        rgba(190, 206, 255, 0.42);

    font-size: 0.69rem;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.contact-direct a {
    width: fit-content;

    color: #80bdff;

    font-size: 0.92rem;
    font-weight: 600;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.contact-direct a:hover {
    color: #ffffff;

    text-shadow:
        0 0 15px
        rgba(89, 166, 255, 0.50);
}


/* =========================================================
   CONTACT — FORM
========================================================= */

.contact-form {
    position: relative;

    width: 100%;
    max-width: 535px;

    justify-self: end;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid
        rgba(122, 150, 242, 0.16);

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 28, 52, 0.82),
            rgba(9, 14, 29, 0.82)
        );

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.35),

        0 0 45px
        rgba(58, 94, 220, 0.05),

        inset 0 1px 0
        rgba(255, 255, 255, 0.04);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.contact-form::before {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    top: -150px;
    left: -110px;

    border-radius: 50%;

    pointer-events: none;

    background:
        radial-gradient(
            circle,
            rgba(79, 158, 255, 0.17),
            rgba(111, 83, 255, 0.06) 45%,
            transparent 72%
        );

    filter:
        blur(8px);

    animation:
        contact-form-glow
        8s
        ease-in-out
        infinite alternate;
}

.contact-form:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(116, 162, 255, 0.27);

    box-shadow:
        0 32px 88px
        rgba(0, 0, 0, 0.42),

        0 0 48px
        rgba(73, 116, 255, 0.08),

        inset 0 1px 0
        rgba(255, 255, 255, 0.055);
}

.contact-form > * {
    position: relative;

    z-index: 2;
}

.contact-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 15px;

    margin-bottom: 15px;
}

.contact-field {
    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 15px;
}

.contact-row
.contact-field {
    margin-bottom: 0;
}

.contact-field label {
    color:
        rgba(220, 229, 255, 0.71);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.055em;
}

.contact-field input,
.contact-field textarea {
    width: 100%;

    padding:
        12px 14px;

    outline: none;

    border:
        1px solid
        rgba(126, 152, 230, 0.13);

    border-radius: 11px;

    color: #ffffff;

    background:
        rgba(4, 9, 22, 0.75);

    font-size: 0.90rem;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.contact-field textarea {
    min-height: 94px;

    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color:
        rgba(190, 203, 240, 0.30);
}

.contact-field input:hover,
.contact-field textarea:hover {
    border-color:
        rgba(118, 158, 255, 0.25);
}

.contact-field input:focus,
.contact-field textarea:focus {
    transform:
        translateY(-1px);

    border-color:
        rgba(91, 168, 255, 0.68);

    background:
        rgba(6, 12, 28, 0.94);

    box-shadow:
        0 0 0 3px
        rgba(74, 136, 255, 0.07),

        0 0 20px
        rgba(72, 132, 255, 0.06);
}


/* =========================================================
   CONTACT — SUBMIT
========================================================= */

.contact-submit {
    position: relative;

    width: 100%;

    min-height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 2px;

    padding:
        13px 20px;

    overflow: hidden;

    border:
        1px solid
        rgba(145, 190, 255, 0.25);

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            105deg,
            #1682ef 0%,
            #5362f6 52%,
            #8049e9 100%
        );

    box-shadow:
        0 11px 30px
        rgba(48, 86, 219, 0.26);

    font-size: 0.88rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease,
        opacity 0.25s ease;
}

.contact-submit::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: -45%;

    width: 35%;

    transform:
        skewX(-22deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );

    transition:
        left 0.65s ease;
}

.contact-submit:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.07);

    box-shadow:
        0 15px 38px
        rgba(51, 96, 231, 0.36);
}

.contact-submit:hover::before {
    left: 120%;
}

.contact-submit__arrow {
    transition:
        transform 0.25s ease;
}

.contact-submit:hover
.contact-submit__arrow {
    transform:
        translateX(4px);
}

.contact-submit:disabled {
    cursor: wait;

    opacity: 0.72;

    transform: none;

    filter: none;
}


/* =========================================================
   CONTACT — STATUS
========================================================= */

.contact-form-status {
    min-height: 22px;

    margin:
        12px 0 0;

    text-align: center;

    font-size: 0.82rem;
    font-weight: 600;

    line-height: 1.5;

    opacity: 0;

    transform:
        translateY(5px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.contact-form-status--success {
    color: #7ee7b8;

    opacity: 1;

    transform:
        translateY(0);

    text-shadow:
        0 0 14px
        rgba(71, 220, 157, 0.18);
}

.contact-form-status--error {
    color: #ff8f9f;

    opacity: 1;

    transform:
        translateY(0);

    text-shadow:
        0 0 14px
        rgba(255, 90, 116, 0.15);
}


/* =========================================================
   CONTACT — MOTION
========================================================= */

@keyframes contact-atmosphere {

    from {
        opacity: 0.65;

        transform:
            translate3d(-1%, 0, 0)
            scale(1);
    }

    to {
        opacity: 1;

        transform:
            translate3d(1.5%, -1%, 0)
            scale(1.05);
    }

}

@keyframes contact-form-glow {

    from {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    to {
        transform:
            translate3d(360px, 190px, 0)
            scale(1.2);
    }

}


/* =========================================================
   FOOTER
========================================================= */

.labs-footer {
    position: relative;

    width: 100%;

    padding:
        24px 0 26px;

    overflow: clip;

    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 26, 0.98),
            rgba(2, 7, 21, 1)
        );

    border-top:
        1px solid
        rgba(91, 153, 255, 0.18);
}

.labs-footer::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4b9dff 18%,
            #6e7bff 50%,
            #c55cff 82%,
            transparent
        );

    box-shadow:
        0 0 12px
        rgba(91, 126, 255, 0.28);
}

.labs-footer__inner {
    width:
        min(
            calc(100% - 96px),
            var(--page-width)
        );

    margin-inline:
        auto;

    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        minmax(410px, 1.7fr)
        auto
        minmax(150px, 0.70fr);

    align-items: center;

    gap: 28px;
}

.labs-footer__brand {
    min-width: 155px;

    display: flex;

    align-items: center;
}

.labs-footer__logo {
    width: 155px;
    height: auto;

    max-width: none;

    object-fit: contain;
}

.labs-footer__nav {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap:
        9px 22px;
}

.labs-footer__nav a {
    position: relative;

    min-height: 32px;

    display: inline-flex;

    align-items: center;

    color:
        rgba(229, 235, 252, 0.76);

    font-size: 0.58rem;

    font-weight: 550;

    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.labs-footer__nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 2px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #58dfff,
            #b86dff
        );

    transition:
        right 0.24s ease;
}

.labs-footer__nav a:hover {
    color: #ffffff;

    transform:
        translateY(-1px);
}

.labs-footer__nav a:hover::after {
    right: 0;
}

.labs-footer__socials {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}

.labs-footer__socials a {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(118, 149, 255, 0.13);

    border-radius: 9px;

    color:
        rgba(237, 241, 255, 0.78);

    background:
        rgba(14, 23, 54, 0.34);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        background 0.22s ease;
}

.labs-footer__socials a:hover {
    transform:
        translateY(-2px);

    color: #ffffff;

    border-color:
        rgba(149, 100, 255, 0.48);

    background:
        rgba(42, 35, 92, 0.46);
}

.labs-footer__socials svg {
    width: 15px;
    height: 15px;

    fill: currentColor;
}

.labs-footer__message {
    margin: 0;

    justify-self: end;

    color:
        rgba(205, 216, 245, 0.72);

    font-size: 0.58rem;

    line-height: 1.45;

    text-align: left;
}


/* =========================================================
   SITE SEARCH
========================================================= */

.site-search {
    width:
        min(
            620px,
            calc(100% - 36px)
        );

    max-height:
        min(
            680px,
            calc(100vh - 50px)
        );

    margin: auto;

    padding: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(127, 156, 255, 0.26);

    border-radius: 22px;

    color: #ffffff;

    background:
        transparent;

    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.62),

        0 0 60px
        rgba(83, 82, 255, 0.12);
}

.site-search::backdrop {
    background:
        rgba(1, 4, 15, 0.78);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}

.site-search__panel {
    max-height:
        min(
            680px,
            calc(100vh - 50px)
        );

    padding: 25px;

    overflow-x: hidden;
    overflow-y: auto;

    overscroll-behavior: contain;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(116, 137, 255, 0.34)
        transparent;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 24, 57, 0.98),
            rgba(5, 10, 27, 0.99)
        );
}

.site-search__panel::-webkit-scrollbar {
    width: 5px;
}

.site-search__panel::-webkit-scrollbar-track {
    background: transparent;
}

.site-search__panel::-webkit-scrollbar-thumb {
    border-radius: 999px;

    background:
        rgba(116, 137, 255, 0.34);
}

.site-search__top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.site-search__eyebrow {
    display: block;

    margin-bottom: 7px;

    color: #72ddff;

    font-size: 0.60rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.site-search__top h2 {
    margin: 0;

    font-size: 1.45rem;

    letter-spacing:
        -0.035em;
}

.site-search__close {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;

    place-items: center;

    padding: 0;

    border:
        1px solid
        rgba(121, 150, 255, 0.22);

    border-radius: 50%;

    color:
        rgba(240, 244, 255, 0.84);

    background:
        rgba(14, 22, 54, 0.50);

    font-size: 1.3rem;

    cursor: pointer;
}

.site-search__label {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

.site-search__input {
    width: 100%;
    min-height: 50px;

    padding:
        0 16px;

    outline: none;

    border:
        1px solid
        rgba(119, 151, 255, 0.18);

    border-radius: 12px;

    color: #ffffff;

    background:
        rgba(3, 8, 23, 0.78);

    font-size: 0.90rem;

    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.site-search__input:focus {
    border-color:
        rgba(87, 184, 255, 0.65);

    box-shadow:
        0 0 0 3px
        rgba(84, 136, 255, 0.08);
}

.site-search__input::placeholder {
    color:
        rgba(194, 205, 236, 0.36);
}

.site-search__results {
    display: grid;

    gap: 7px;

    margin-top: 14px;
}

.site-search__item {
    min-height: 59px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 4px;

    padding:
        10px 14px;

    border:
        1px solid
        transparent;

    border-radius: 11px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.site-search__item:hover {
    transform:
        translateX(3px);

    border-color:
        rgba(109, 147, 255, 0.18);

    background:
        linear-gradient(
            90deg,
            rgba(50, 112, 255, 0.11),
            rgba(137, 71, 255, 0.09)
        );
}

.site-search__item span {
    font-size: 0.82rem;

    font-weight: 700;
}

.site-search__item small {
    color:
        rgba(201, 211, 240, 0.60);

    font-size: 0.68rem;

    line-height: 1.4;
}

.site-search__empty {
    margin:
        18px 0 0;

    color:
        rgba(204, 214, 241, 0.60);

    font-size: 0.78rem;

    text-align: center;
}


/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP
========================================================= */

@media (max-width: 1320px) {

    .research-inner {
        width:
            min(
                calc(100% - 58px),
                1540px
            );

        grid-template-columns:
            minmax(250px, 0.82fr)
            minmax(300px, 1.08fr)
            minmax(290px, 0.92fr)
            minmax(130px, 0.40fr);

        gap: 16px;
    }

    .research-quote {
        max-width: 138px;
    }

    .research-quote p {
        font-size: 0.75rem;
    }

}


/* =========================================================
   RESPONSIVE — TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1050px) {

    .hero-header {
        width:
            calc(
                100% - 58px
            );

        height: 78px;
    }

    .hero-brand-logo {
        height: 51px;
    }

    .hero-nav {
        display: none;
    }


    /* Search button becomes menu */

    .hero-search::before,
    .hero-search::after,
    .hero-search > span {
        position: absolute;

        left: 50%;

        width: 17px;
        height: 1.5px;

        border: 0;

        border-radius: 99px;

        background: #ffffff;
    }

    .hero-search::before {
        top:
            calc(50% - 6px);

        transform:
            translateX(-50%);
    }

    .hero-search > span {
        display: block;

        top: 50%;

        transform:
            translate(-50%, -50%);
    }

    .hero-search::after {
        top:
            calc(50% + 5px);

        transform:
            translateX(-50%);
    }

    .mobile-menu {
        right: 29px;
    }


    /* Hero */

    .hero-content {
        width:
            calc(
                100% - 58px
            );

        padding-top: 70px;
    }

    .hero-title {
        max-width: 570px;
    }

    .hero-side-message {
        display: none;
    }

    .hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(2, 6, 23, 0.96) 0%,
                rgba(2, 6, 23, 0.83) 45%,
                rgba(2, 6, 23, 0.22) 82%
            ),
            linear-gradient(
                180deg,
                rgba(2, 6, 23, 0.12),
                rgba(2, 6, 23, 0.25)
            );
    }


    /* Research */

    .research-section {
        padding:
            85px 0;
    }

    .research-inner {
        width:
            calc(
                100% - 58px
            );

        min-height: auto;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap:
            42px 28px;
    }

    .research-copy {
        grid-column: 1;
    }

    .research-panel {
        grid-column: 2;
    }

    .research-quote {
        grid-column:
            1 / -1;

        max-width: 390px;

        padding-left: 0;

        border-left: 0;
    }

    .research-quote p {
        max-width: 350px;

        font-size: 0.87rem;
    }


    /* Pathways */

    .pathways-section {
        min-height: 320px;

        padding:
            36px 0 50px;
    }

    .pathways-background {
        background-position:
            62% center;
    }

    .pathways-copy {
        min-height: 235px;

        max-width: 320px;
    }

    .pathways-description {
        max-width: 300px;

        font-size: 16px;
    }


    /* Products */

    .experiments-inner {
        width:
            calc(
                100% - 58px
            );

        grid-template-columns:
            235px
            minmax(0, 1fr);

        gap: 28px;
    }

    .lab-product-card__visual {
        height: 175px;
    }


    /* Future */

    .future-inner {
        width:
            calc(
                100% - 58px
            );
    }


    /* Footer */

    .labs-footer__inner {
        width:
            calc(
                100% - 58px
            );

        grid-template-columns:
            minmax(180px, 1fr)
            minmax(340px, 1.6fr)
            auto
            minmax(130px, 0.6fr);

        gap: 20px;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .experiments-section {
        padding:
            68px 0 74px;
    }

    .experiments-inner {
        width:
            calc(
                100% - 42px
            );

        display: block;
    }

    .experiments-copy {
        max-width: 520px;

        margin-bottom: 38px;
    }

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


    .future-section {
        min-height: 460px;
    }

    .future-inner {
        width:
            calc(
                100% - 42px
            );

        min-height: 460px;
    }

    .future-background {
        background-position:
            64% center;
    }

    .future-copy {
        max-width: 410px;
    }


    .contact-section {
        padding:
            70px 0 76px;
    }

    .contact-inner {
        grid-template-columns:
            1fr;

        gap: 42px;
    }

    .contact-copy {
        max-width: 620px;
    }

    .contact-form {
        max-width: 620px;

        justify-self: start;
    }


    .labs-footer {
        padding:
            30px 0;
    }

    .labs-footer__inner {
        width:
            calc(
                100% - 42px
            );

        grid-template-columns:
            1fr
            auto;

        grid-template-areas:
            "brand socials"
            "nav nav"
            "message message";

        gap:
            18px 20px;
    }

    .labs-footer__brand {
        grid-area: brand;
    }

    .labs-footer__nav {
        grid-area: nav;

        justify-content:
            flex-start;
    }

    .labs-footer__socials {
        grid-area: socials;
    }

    .labs-footer__message {
        grid-area: message;

        justify-self:
            start;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {

    .hero {
        min-height: 900px;
    }

    .hero-header {
        width:
            calc(
                100% - 34px
            );

        height: 70px;

        gap: 10px;
    }

    .hero-brand-logo {
        height: 35px;
    }

    .hero-header-actions {
        gap: 9px;
    }

    .hero-search {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .hero-build-button {
        min-height: 40px;

        gap: 8px;

        padding:
            0 13px;

        border-radius: 10px;

        font-size: 0.68rem;
    }

    .mobile-menu {
        top: 67px;
        right: 17px;

        width:
            min(
                300px,
                calc(100% - 34px)
            );
    }

    .hero-content {
        width:
            calc(
                100% - 34px
            );

        padding-top: 58px;
        padding-bottom: 42px;
    }

    .hero-eyebrow {
        margin-bottom: 14px;

        font-size: 0.58rem;

        letter-spacing: 0.24em;
    }

    .hero-title {
        max-width: 100%;

        font-size:
            clamp(
                2.95rem,
                13.6vw,
                4.35rem
            );

        line-height: 0.92;
    }

    .hero-description {
        max-width: 430px;

        margin-top: 17px;

        font-size: 0.82rem;
    }

    .hero-buttons {
        max-width: 310px;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }

    .hero-button {
        width: 100%;

        min-height: 47px;
    }

    .hero-metrics {
        max-width: 420px;

        display: grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            27px 18px;

        margin-top: 38px;
    }

    .hero-metric {
        min-width: 0;

        margin: 0;

        padding: 0;

        border: 0;
    }

    .hero-metric strong {
        font-size: 1.28rem;
    }

    .hero-metric span {
        font-size: 0.59rem;
    }

    .hero-world {
        background-position:
            64% center;
    }

    .hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(2, 6, 23, 0.76) 0%,
                rgba(2, 6, 23, 0.70) 53%,
                rgba(2, 6, 23, 0.38) 100%
            ),

            linear-gradient(
                90deg,
                rgba(2, 6, 23, 0.90),
                rgba(2, 6, 23, 0.14)
            );
    }

    .hero-nebula {
        opacity: 0.24;
    }

    .hero-orbit {
        width: 100%;

        right: -24%;

        opacity: 0.26;
    }


    /* Research */

    .research-section {
        min-height: 0;

        padding:
            70px 0 76px;
    }

    .research-inner {
        width:
            calc(
                100% - 34px
            );

        display: block;
    }

    .research-copy {
        max-width: 500px;
    }

    .research-copy h2 {
        font-size:
            clamp(
                2.75rem,
                12.5vw,
                3.95rem
            );
    }

    .research-copy > p {
        max-width: 330px;

        font-size: 0.84rem;
    }

    .research-btn {
        min-height: 47px;

        font-size: 0.75rem;
    }

    .research-panel {
        margin-top: 260px;
    }

    .research-card {
        min-height: 70px;
    }

    .research-card__content h4 {
        font-size: 0.76rem;
    }

    .research-card__content p {
        font-size: 0.63rem;

        line-height: 1.45;
    }

    .research-quote {
        max-width: 350px;

        margin-top: 30px;

        padding: 0;

        border: 0;
    }

    .research-quote__line {
        margin-bottom: 12px;
    }

    .research-quote p {
        max-width: 330px;

        font-size: 0.80rem;

        line-height: 1.58;
    }

    .research-quote cite {
        margin-top: 9px;

        font-size: 0.62rem;
    }

    .research-visual__main {
        object-position:
            58% center;
    }


    /* Pathways */

    .pathways-section {
        min-height: 500px;

        padding:
            32px 0 46px;
    }

    .pathways-background {
        background-image:
            linear-gradient(
                180deg,
                rgba(4, 7, 23, 0.98) 0%,
                rgba(4, 7, 23, 0.86) 39%,
                rgba(4, 7, 23, 0.38) 58%,
                rgba(4, 7, 23, 0.08) 100%
            ),
            url("images/pathways/pathways-background.png");

        background-size:
            100% 100%,
            100% auto;

        background-position:
            center,
            center 78%;

        background-repeat:
            no-repeat;
    }

    .pathways-section::before {
        right: -30%;

        width: 360px;
        height: 360px;
    }

    .pathways-inner {
        padding:
            0 22px;
    }

    .pathways-copy {
        min-height: 310px;

        max-width: 275px;

        justify-content:
            flex-start;
    }

    .pathways-eyebrow {
        margin-bottom: 13px;

        font-size: 9px;

        letter-spacing: 0.22em;
    }

    .pathways-title {
        font-size:
            clamp(
                1.9rem,
                8vw,
                3rem
            );

        line-height: 0.98;
    }

    .pathways-description {
        max-width: 260px;

        margin-top: 14px;

        font-size: 14px;

        line-height: 1.58;
    }

    .pathways-button {
        min-height: 47px;

        margin-top: 18px;

        padding:
            0 18px;

        border-radius: 12px;

        font-size: 12px;
    }

    .pathways-divider span,
    .pathways-divider::before {
        left: 14px;
        right: 14px;
    }


    /* Products */

    .experiments-section {
        padding:
            58px 0 66px;
    }

    .experiments-inner {
        width:
            calc(
                100% - 34px
            );
    }

    .experiments-copy {
        margin-bottom: 30px;
    }

    .experiments-title {
        font-size:
            clamp(
                2.35rem,
                10.7vw,
                3.35rem
            );
    }

    .experiments-description {
        max-width: 315px;

        font-size: 0.78rem;
    }


    /* Future */

    .future-section {
        min-height: 520px;
    }

    .future-inner {
        width:
            calc(
                100% - 34px
            );

        min-height: 520px;

        align-items:
            flex-start;

        padding-top: 60px;
    }

    .future-background {
        background-position:
            68% center;
    }

    .future-copy {
        max-width: 330px;
    }

    .future-title {
        font-size:
            clamp(
                2.55rem,
                11.7vw,
                3.85rem
            );
    }

    .future-description {
        max-width: 320px;

        font-size: 0.81rem;
    }

    .future-actions {
        max-width: 245px;

        flex-direction: column;

        align-items: stretch;

        gap: 9px;
    }

    .future-button {
        width: 100%;

        min-height: 45px;
    }


    /* Contact */

    .contact-section {
        padding:
            62px 0 68px;
    }

    .contact-inner {
        width:
            calc(
                100% - 32px
            );

        gap: 34px;
    }

    .contact-title {
        font-size:
            clamp(
                2.42rem,
                11.7vw,
                3.4rem
            );
    }

    .contact-description {
        font-size: 0.91rem;

        line-height: 1.68;
    }

    .contact-direct {
        margin-top: 22px;
    }

    .contact-row {
        grid-template-columns:
            1fr;

        gap: 15px;
    }

    .contact-form {
        max-width: none;

        padding:
            21px 18px;

        border-radius: 18px;

        transform: none !important;
    }

    .contact-field input,
    .contact-field textarea {
        /*
           Prevents automatic input zoom
           on mobile browsers.
        */
        font-size: 16px;
    }

    .contact-field textarea {
        min-height: 110px;
    }


    /* Footer */

    .labs-footer {
        padding:
            28px 0 30px;
    }

    .labs-footer__inner {
        width:
            calc(
                100% - 34px
            );

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 17px;
    }

    .labs-footer__logo {
        width: 135px;
    }

    .labs-footer__brand {
        min-width: 135px;
    }

    .labs-footer__nav {
        width: 100%;

        justify-content: flex-start;

        gap:
            3px 10px;
    }

    .labs-footer__nav a {
        min-height: 38px;

        padding:
            0 5px;

        font-size: 0.62rem;
    }

    .labs-footer__socials {
        justify-content: flex-start;

        gap: 8px;
    }

    .labs-footer__socials a {
        width: 40px;
        height: 40px;
    }

    .labs-footer__message {
        font-size: 0.61rem;

        line-height: 1.55;
    }


    /* Search */

    .site-search {
        width:
            calc(
                100% - 28px
            );
    }

    .site-search__panel {
        padding:
            20px 17px;
    }

    .site-search__input {
        font-size: 16px;
    }

}


/* =========================================================
   RESPONSIVE — PRODUCT STACK
========================================================= */

@media (max-width: 650px) {

    .products-grid {
        grid-template-columns:
            1fr;

        gap: 16px;
    }

    .lab-product-card__visual {
        height: 210px;
    }

    .lab-product-card:hover {
        transform: none;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .hero {
        min-height: 910px;
    }

    .hero-brand-logo {
        height: 31px;
    }

    .hero-build-button {
        padding:
            0 11px;

        font-size: 0.64rem;
    }

    .hero-build-button span {
        display: none;
    }

    .hero-title {
        font-size:
            clamp(
                2.65rem,
                13.7vw,
                3.55rem
            );
    }

    .hero-description {
        font-size: 0.76rem;

        line-height: 1.58;
    }

    .hero-metrics {
        gap:
            24px 14px;
    }

    .research-copy h2 {
        font-size:
            clamp(
                2.45rem,
                12.2vw,
                3.2rem
            );
    }

    .research-panel {
        margin-top: 245px;
    }

    .research-card {
        grid-template-columns:
            38px
            minmax(0, 1fr)
            27px;

        gap: 10px;

        padding: 10px;
    }

    .research-card__icon {
        width: 35px;
        height: 35px;
    }

    .research-card__arrow {
        width: 27px;
        height: 27px;
    }

    .pathways-section {
        min-height: 480px;
    }

    .pathways-copy {
        min-height: 285px;
    }

    .experiments-button {
        min-height: 43px;
    }

    .lab-product-card__body {
        padding:
            15px;
    }

    .lab-product-card__visual {
        height: 190px;
    }

    .future-section,
    .future-inner {
        min-height: 500px;
    }

    .future-inner {
        padding-top: 54px;
    }

    .contact-form {
        padding:
            18px 15px;
    }

}


/* =========================================================
   POINTER DEVICES
========================================================= */

@media (hover: none) {

    .hero-button:hover,
    .hero-build-button:hover,
    .research-btn:hover,
    .pathways-button:hover,
    .lab-product-card:hover,
    .future-button:hover,
    .contact-form:hover,
    .contact-submit:hover,
    .labs-footer__nav a:hover,
    .labs-footer__socials a:hover {
        transform: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation:
            none !important;

        transition:
            none !important;
    }

}