:root {
    --bg: #05080c;
    --bg-deep: #020406;
    --panel: rgba(9, 14, 20, 0.78);
    --panel-solid: #0a0f15;

    --line: rgba(170, 210, 230, 0.13);
    --line-strong: rgba(170, 220, 240, 0.26);

    --text: #eff7fb;
    --muted: #8c9aa6;
    --dim: #56626d;

    --cyan: #52e7ff;
    --blue: #6297ff;
    --violet: #a46cff;
    --green: #4af4b4;

    --content: 1480px;

    --font-main:
        Inter,
        "SF Pro Display",
        "SF Pro Text",
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    --font-mono:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 70% 0%,
            rgba(61, 113, 155, 0.08),
            transparent 35%
        ),
        var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: -0.015em;
}

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

button {
    font: inherit;
}

::selection {
    background: var(--cyan);
    color: #001014;
}

.page-shell {
    min-height: 100vh;
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;

    height: 82px;

    display: grid;
    grid-template-columns: 300px 1fr 170px;
    align-items: center;

    padding: 0 42px;

    border-bottom: 1px solid var(--line);
    background: rgba(3, 7, 10, 0.78);
    backdrop-filter: blur(18px);
}

.identity {
    display: flex;
    align-items: center;
    gap: 13px;
    width: max-content;
}

.identity-mark {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.identity-q {
    position: relative;
    z-index: 2;
    font-size: 25px;
    font-weight: 300;
}

.identity-orbit {
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(93, 224, 255, 0.4);
    border-radius: 50%;
    transform: rotate(-22deg) scaleY(0.53);
}

.identity-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.identity-name strong {
    font-weight: 500;
    letter-spacing: 0.16em;
    font-size: 13px;
}

.identity-name small {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.15em;
}

.main-nav {
    justify-self: center;
    display: flex;
    gap: 34px;
}

.main-nav a {
    color: #9ba9b3;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}

.main-nav a:hover {
    color: var(--text);
    text-shadow: 0 0 18px rgba(82, 231, 255, 0.4);
}

.console-button {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #b9c6cf;
    background: transparent;
    border: 0;
    cursor: pointer;

    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.console-button i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 13px rgba(74, 244, 180, 0.7);
}

.hero {
    position: relative;

    min-height: 820px;
    height: min(930px, 100vh);

    display: flex;
    align-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--line);
}

#quantumField {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 12, 0.97) 0%,
            rgba(5, 8, 12, 0.88) 25%,
            rgba(5, 8, 12, 0.38) 58%,
            rgba(5, 8, 12, 0.18) 100%
        );
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.17;

    background-image:
        linear-gradient(
            rgba(132, 195, 220, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(132, 195, 220, 0.08) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            90deg,
            transparent 0%,
            black 50%,
            black 100%
        );
}

.hero-copy {
    position: relative;
    z-index: 3;

    width: min(840px, 62vw);

    margin-left:
        max(
            42px,
            calc((100vw - var(--content)) / 2)
        );

    margin-top: 70px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 24px;

    margin-bottom: 36px;

    color: #81909b;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.eyebrow-state {
    color: var(--green);
}

.hero h1 {
    margin: 0;

    max-width: 820px;

    font-size: clamp(66px, 6.4vw, 112px);
    line-height: 0.83;
    letter-spacing: -0.064em;
    font-weight: 260;
}

.hero h1 span {
    display: block;
}

.hero h2 {
    margin: 41px 0 0;

    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.13em;
}

.hero h2 span:nth-child(1) {
    color: var(--text);
}

.hero h2 span:nth-child(2) {
    color: var(--cyan);
}

.hero h2 span:nth-child(3) {
    color: #bd8cff;
}

.hero-intro {
    max-width: 520px;
    margin: 24px 0 0;

    color: #adb8c0;
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;

    margin-top: 39px;
}

.hero-actions a {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    padding: 0 18px;

    border: 1px solid var(--line-strong);

    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;

    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.action-primary {
    color: var(--cyan);
    border-color: rgba(82, 231, 255, 0.45) !important;
    background: rgba(34, 153, 190, 0.05);
}

.action-primary:hover {
    background: rgba(82, 231, 255, 0.1);
}

.action-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.domain-line {
    margin-top: 52px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    color: #5f6b74;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.domain-line i {
    color: #2b343b;
    font-style: normal;
}

.hero-instrument {
    position: absolute;
    z-index: 4;

    right:
        max(
            42px,
            calc((100vw - var(--content)) / 2)
        );

    bottom: 80px;

    width: 265px;

    padding: 17px;

    border: 1px solid var(--line);
    background: rgba(5, 10, 14, 0.56);
    backdrop-filter: blur(10px);
}

.instrument-label {
    color: #71808b;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.14em;
}

.instrument-crosshair {
    position: relative;

    width: 48px;
    height: 48px;

    margin: 18px 0;

    border: 1px solid rgba(82, 231, 255, 0.25);
    border-radius: 50%;
}

.instrument-crosshair::before,
.instrument-crosshair::after {
    content: "";
    position: absolute;
    background: var(--cyan);
}

.instrument-crosshair::before {
    width: 4px;
    height: 4px;
    left: 21px;
    top: 21px;
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan);
}

.instrument-crosshair i:first-child {
    position: absolute;
    height: 1px;
    width: 72px;
    top: 23px;
    left: -12px;
    background: rgba(82, 231, 255, 0.16);
}

.instrument-crosshair i:last-child {
    position: absolute;
    width: 1px;
    height: 72px;
    left: 23px;
    top: -12px;
    background: rgba(82, 231, 255, 0.16);
}

.hero-instrument dl {
    margin: 0;
}

.hero-instrument dl div {
    display: flex;
    justify-content: space-between;

    padding: 7px 0;

    border-top: 1px solid var(--line);

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
}

.hero-instrument dt {
    color: #65727d;
}

.hero-instrument dd {
    margin: 0;
    color: #b5c2cb;
}

.status-strip {
    min-height: 72px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-bottom: 1px solid var(--line);
    background: #060a0e;
}

.status-strip > div {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 18px;

    border-right: 1px solid var(--line);

    font-family: var(--font-mono);
}

.status-strip small {
    color: #58656e;
    font-size: 8px;
    letter-spacing: 0.13em;
}

.status-strip strong {
    color: #9aacb8;
    font-size: 8px;
    letter-spacing: 0.12em;
}

.status-strip > div:first-child strong,
.status-strip > div:nth-child(2) strong,
.status-strip > div:nth-child(3) strong {
    color: var(--green);
}

.status-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 9px rgba(74, 244, 180, 0.6);
}

.section {
    max-width: var(--content);

    margin: 0 auto;

    padding: 135px 42px;

    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.7fr);
    gap: 70px;

    align-items: end;

    margin-bottom: 72px;
}

.section-index {
    display: block;

    margin-bottom: 24px;

    color: #5f6e78;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.section-heading h2 {
    margin: 0;

    max-width: 890px;

    font-size: clamp(42px, 4.1vw, 72px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 300;
}

.section-heading h2 em {
    display: block;

    color: #84909a;

    font-style: normal;
    font-weight: 250;
}

.section-heading > p {
    margin: 0 0 3px;

    color: #88959f;
    line-height: 1.8;
    font-size: 15px;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.domain-card {
    min-height: 360px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background:
        linear-gradient(
            145deg,
            rgba(19, 31, 42, 0.2),
            rgba(4, 8, 11, 0.1)
        );

    transition:
        background 220ms ease,
        border-color 220ms ease;
}

.domain-card:hover {
    background:
        linear-gradient(
            145deg,
            rgba(27, 55, 69, 0.34),
            rgba(4, 8, 11, 0.1)
        );

    border-color: rgba(82, 231, 255, 0.22);
}

.card-code {
    color: #57636d;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.14em;
}

.domain-symbol {
    margin-top: 46px;

    color: #83dff4;

    font-size: 34px;
    font-weight: 200;
}

.domain-card h3 {
    max-width: 310px;

    margin: 24px 0 13px;

    font-size: 22px;
    font-weight: 400;
}

.domain-card p {
    max-width: 310px;

    margin: 0;

    color: #7c8992;

    font-size: 14px;
    line-height: 1.75;
}

.domain-card a {
    margin-top: auto;

    padding-top: 32px;

    color: #71818c;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.domain-card a span {
    color: var(--cyan);
}

.lab-section {
    background:
        radial-gradient(
            circle at 55% 55%,
            rgba(59, 61, 132, 0.08),
            transparent 38%
        );
}

.lab-layout {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    gap: 15px;
}

.lab-primary,
.lab-small {
    border: 1px solid var(--line);
    background: rgba(6, 11, 16, 0.54);
}

.lab-primary {
    min-height: 620px;
}

.lab-topline {
    min-height: 54px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 22px;

    border-bottom: 1px solid var(--line);

    color: #697781;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.14em;
}

.live-state {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--green);
}

.live-state i {
    width: 5px;
    height: 5px;

    border-radius: 50%;
    background: var(--green);

    box-shadow: 0 0 9px var(--green);
}

.lab-visual {
    position: relative;

    min-height: 320px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-bottom: 1px solid var(--line);

    background:
        radial-gradient(
            circle,
            rgba(58, 140, 170, 0.08),
            transparent 45%
        ),
        repeating-radial-gradient(
            circle,
            transparent 0 48px,
            rgba(105, 176, 205, 0.08) 49px 50px
        );
}

.lab-radar {
    position: relative;

    width: 240px;
    height: 240px;

    border: 1px solid rgba(82, 231, 255, 0.16);
    border-radius: 50%;
}

.lab-radar span {
    position: absolute;

    border: 1px solid rgba(82, 231, 255, 0.11);
    border-radius: 50%;
}

.lab-radar span:nth-child(1) {
    inset: 30px;
}

.lab-radar span:nth-child(2) {
    inset: 60px;
}

.lab-radar span:nth-child(3) {
    width: 1px;
    height: 280px;
    top: -20px;
    left: 119px;
    border: 0;
    border-left: 1px solid rgba(82, 231, 255, 0.13);
}

.lab-radar span:nth-child(4) {
    width: 280px;
    height: 1px;
    top: 119px;
    left: -20px;
    border: 0;
    border-top: 1px solid rgba(82, 231, 255, 0.13);
}

.lab-radar i {
    position: absolute;

    width: 6px;
    height: 6px;

    top: 92px;
    left: 157px;

    border-radius: 50%;

    background: var(--violet);

    box-shadow:
        0 0 15px var(--violet),
        -77px 58px 0 -1px var(--cyan),
        -77px 58px 14px 0 rgba(82, 231, 255, 0.7),
        -105px -22px 0 -1px var(--blue);
}

.lab-copy {
    padding: 30px;
}

.lab-category {
    color: var(--cyan);

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.lab-copy h3 {
    margin: 15px 0;

    font-size: 30px;
    font-weight: 350;
}

.lab-copy > p {
    max-width: 620px;

    color: #818e97;
    line-height: 1.7;
}

.lab-copy dl {
    display: flex;
    gap: 50px;

    margin: 30px 0 0;
}

.lab-copy dl div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lab-copy dt {
    color: #59656e;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.lab-copy dd {
    margin: 0;

    color: #b4c4ce;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.lab-stack {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.lab-small {
    min-height: 190px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    transition: border-color 180ms ease;
}

.lab-small:hover {
    border-color: rgba(164, 108, 255, 0.34);
}

.lab-small > span,
.lab-small small {
    color: #5c6871;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.lab-small h3 {
    max-width: 330px;

    margin: 25px 0 9px;

    font-size: 17px;
    line-height: 1.25;
    font-weight: 400;
}

.lab-small p {
    margin: 0;

    color: #75818a;

    font-size: 13px;
    line-height: 1.6;
}

.lab-small small {
    margin-top: auto;
}

.system-panel {
    display: grid;
    grid-template-columns: 1.8fr 0.7fr;

    min-height: 520px;

    border: 1px solid var(--line);
}

.system-map {
    position: relative;

    min-height: 520px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(85, 150, 170, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(85, 150, 170, 0.055) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.system-map svg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.system-map path {
    fill: none;
    stroke: rgba(82, 231, 255, 0.2);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.node {
    position: absolute;
    z-index: 2;

    min-width: 135px;

    padding: 13px;

    border: 1px solid rgba(82, 231, 255, 0.16);
    background: rgba(5, 10, 14, 0.83);

    font-family: var(--font-mono);
}

.node-a {
    left: 11%;
    top: 41%;
}

.node-b {
    left: 67%;
    top: 29%;
}

.node-c {
    left: 75%;
    top: 65%;
}

.node i {
    display: inline-block;

    width: 5px;
    height: 5px;

    margin-right: 8px;

    border-radius: 50%;
    background: var(--cyan);

    box-shadow: 0 0 10px var(--cyan);
}

.node strong {
    font-size: 8px;
    letter-spacing: 0.12em;
}

.node small {
    display: block;

    margin: 6px 0 0 17px;

    color: #5e6b74;

    font-size: 7px;
    letter-spacing: 0.1em;
}

.system-readout {
    padding: 30px;

    border-left: 1px solid var(--line);

    background: rgba(4, 8, 11, 0.6);
}

.system-readout > span {
    color: #66737d;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.13em;
}

.system-readout dl {
    margin: 45px 0;
}

.system-readout dl div {
    display: flex;
    justify-content: space-between;

    padding: 17px 0;

    border-top: 1px solid var(--line);

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
}

.system-readout dt {
    color: #64717a;
}

.system-readout dd {
    margin: 0;
    color: #a5b3bc;
}

.system-readout dd.online {
    color: var(--green);
}

.system-readout > small {
    color: #5d6a73;
    line-height: 1.7;
}

.company-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;

    min-height: 360px;

    border: 1px solid var(--line);

    background:
        linear-gradient(
            115deg,
            rgba(34, 55, 67, 0.17),
            rgba(4, 8, 11, 0.08)
        );
}

.company-id {
    padding: 42px;

    border-right: 1px solid var(--line);
}

.company-id small {
    color: #5d6a74;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.company-id strong {
    display: block;

    margin-top: 58px;

    font-size: clamp(42px, 4vw, 68px);
    font-weight: 250;
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.company-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;
}

.company-copy > span {
    color: var(--violet);

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.company-copy p {
    max-width: 580px;

    margin: 26px 0;

    color: #88959e;
    line-height: 1.8;
}

.company-copy a {
    width: max-content;

    margin-top: 20px;

    padding-bottom: 7px;

    border-bottom: 1px solid rgba(82, 231, 255, 0.3);

    color: #b5c3cc;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.company-copy a span {
    color: var(--cyan);
}

.about-section {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 90px;

    align-items: center;
}

.about-statement blockquote {
    margin: 0;

    font-size: clamp(48px, 5vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 260;
}

.about-statement em {
    display: block;

    color: var(--cyan);

    font-style: normal;
    font-weight: 260;
}

.about-copy {
    color: #87949d;

    font-size: 15px;
    line-height: 1.9;
}

.research-chain {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin: 34px 0;

    color: #71818b;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
}

.research-chain i {
    color: var(--cyan);
    font-style: normal;
}

.contact-section {
    max-width: var(--content);
    min-height: 520px;

    margin: 0 auto;

    padding: 120px 42px;

    border:
        1px solid var(--line);

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(96, 67, 183, 0.11),
            transparent 35%
        );
}

.contact-section > span {
    color: #5d6973;

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.13em;
}

.contact-section h2 {
    margin: 40px 0 25px;

    font-size: clamp(52px, 6vw, 94px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-weight: 250;
}

.contact-section h2 em {
    display: block;

    color: var(--violet);

    font-style: normal;
}

.contact-section p {
    max-width: 580px;

    color: #84919a;

    line-height: 1.8;
}

.contact-section > a {
    width: max-content;

    display: flex;
    align-items: center;
    gap: 34px;

    margin-top: 34px;

    padding: 14px 16px;

    border: 1px solid rgba(82, 231, 255, 0.35);

    color: var(--cyan);

    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.site-footer {
    max-width: var(--content);

    min-height: 130px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;

    padding: 0 42px;

    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.site-footer > div:first-child {
    display: flex;
    flex-direction: column;
}

.site-footer strong {
    font-weight: 500;
    letter-spacing: 0.14em;
}

.site-footer span,
.site-footer small {
    color: #5b6871;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
}

.site-footer > div:nth-child(2) {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.site-footer small {
    justify-self: end;
}

.research-console {
    position: fixed;
    top: 95px;
    right: 22px;
    z-index: 100;

    width: 370px;

    border: 1px solid var(--line-strong);

    background: rgba(5, 9, 13, 0.96);
    backdrop-filter: blur(20px);

    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

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

.console-head {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;

    border-bottom: 1px solid var(--line);

    color: #70808a;

    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.console-head button {
    color: #71808a;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.console-state {
    padding: 12px;
}

.console-mode {
    width: 100%;

    display: grid;
    grid-template-columns: 30px 80px 1fr;
    align-items: center;

    padding: 13px 12px;

    color: #68747d;
    text-align: left;

    border: 1px solid transparent;
    background: transparent;

    cursor: pointer;
}

.console-mode:hover,
.console-mode.active {
    color: #c5d2da;
    border-color: var(--line);
    background: rgba(82, 231, 255, 0.035);
}

.console-mode span,
.console-mode strong,
.console-mode small {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.1em;
}

.console-mode.active strong {
    color: var(--cyan);
}

.console-mode small {
    color: #5c6871;
}

.console-readout {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 17px;

    border-top: 1px solid var(--line);

    font-family: var(--font-mono);
}

.console-readout small,
.console-readout span {
    color: #56636c;
    font-size: 7px;
    letter-spacing: 0.1em;
}

.console-readout strong {
    color: var(--green);
    font-size: 8px;
    letter-spacing: 0.12em;
}

body[data-console-mode="LAB"] {
    --cyan: #a46cff;
    --blue: #8d7cff;
}

body[data-console-mode="SYSTEM"] {
    --cyan: #4af4b4;
    --blue: #52e7ff;
}

@media (max-width: 1100px) {

    .site-header {
        grid-template-columns: 1fr auto;
        padding: 0 24px;
    }

    .main-nav {
        display: none;
    }

    .hero-copy {
        width: calc(100% - 48px);
        margin-left: 24px;
    }

    .hero-instrument {
        display: none;
    }

    .section {
        padding:
            100px
            24px;
    }

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

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

    .lab-layout {
        grid-template-columns: 1fr;
    }

    .system-panel {
        grid-template-columns: 1fr;
    }

    .system-readout {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 700px) {

    .site-header {
        height: 68px;
    }

    .identity-name small {
        display: none;
    }

    .console-button span {
        display: none;
    }

    .hero {
        min-height: 720px;
        height: auto;
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 78px);
    }

    .hero h2 {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .hero-intro {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: min(100%, 280px);
    }

    .domain-line {
        line-height: 1.9;
    }

    .status-strip {
        grid-template-columns: 1fr 1fr;
    }

    .status-strip > div:nth-child(n+5) {
        display: none;
    }

    .section {
        padding:
            80px
            20px;
    }

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

    .domain-card {
        min-height: 310px;
    }

    .lab-copy dl {
        flex-direction: column;
        gap: 18px;
    }

    .system-map {
        min-height: 400px;
    }

    .node {
        transform: scale(0.8);
        transform-origin: center;
    }

    .company-card {
        grid-template-columns: 1fr;
    }

    .company-id {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .company-copy {
        padding: 35px;
    }

    .contact-section {
        padding:
            80px
            20px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 25px;

        padding:
            40px
            20px;
    }

    .site-footer > div:nth-child(2) {
        justify-content: flex-start;
    }

    .site-footer small {
        justify-self: start;
    }

    .research-console {
        left: 10px;
        right: 10px;
        width: auto;
    }

}

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

    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }

}
