:root {
    --bg: #070a0f;
    --text: #f7f8fa;
    --muted: #9099a5;
    --line: rgba(255,255,255,.12);

    --cyan: #20e6ff;
    --blue: #4775ff;
    --violet: #955cff;
    --pink: #ff4da3;
    --orange: #ff963f;
    --lime: #abff54;

    --mx: 50vw;
    --my: 30vh;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--text);
    background: var(--bg);

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

    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -10;

    background:
        linear-gradient(
            rgba(4,7,11,.73),
            rgba(4,7,11,.9)
        ),
        url("/bgg.jpg")
        center / cover no-repeat;
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -9;
    pointer-events: none;

    opacity: .16;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

a,
button {
    font: inherit;
}

a {
    color: inherit;
}

.shell {
    width: min(
        calc(100% - 48px),
        1440px
    );

    margin-inline: auto;
}

.pointer-glow {
    position: fixed;

    left: var(--mx);
    top: var(--my);

    width: 650px;
    height: 650px;

    z-index: -5;
    pointer-events: none;

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

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(32,230,255,.1),
            rgba(149,92,255,.07) 35%,
            transparent 70%
        );

    filter: blur(20px);
}


/* HEADER */

.header {
    position: fixed;
    inset: 0 0 auto;

    z-index: 100;

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

    background: rgba(5,8,12,.74);

    backdrop-filter:
        blur(24px)
        saturate(150%);
}

.header-inner {
    min-height: 72px;

    display: flex;
    align-items: center;

    gap: 34px;
}

.logo {
    width: 180px;

    display: flex;
}

.logo img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    margin-left: auto;

    display: flex;
    gap: 29px;
}

.desktop-nav a {
    color: rgba(255,255,255,.55);

    font-size: .7rem;
    font-weight: 650;

    text-decoration: none;

    transition: color .2s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;

    gap: 14px;
}

.language {
    display: flex;
    gap: 3px;
}

.language button {
    width: 30px;
    height: 30px;

    border: 0;
    border-radius: 50%;

    color: rgba(255,255,255,.35);
    background: transparent;

    font-size: .59rem;
    font-weight: 800;

    cursor: pointer;
}

.language button.active {
    color: #fff;

    background: rgba(255,255,255,.08);
}

.header-cta {
    min-height: 39px;

    padding: 0 16px;

    display: flex;
    align-items: center;

    gap: 18px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(32,230,255,.08),
            rgba(149,92,255,.08)
        );

    font-size: .67rem;
    font-weight: 700;

    text-decoration: none;
}

.header-cta i {
    color: var(--cyan);

    font-style: normal;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100svh;

    padding-top: 72px;

    overflow: hidden;

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

.hero-aurora {
    position: absolute;

    width: 1000px;
    height: 800px;

    right: -320px;
    top: -280px;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--cyan),
            var(--blue),
            var(--violet),
            var(--pink),
            var(--orange),
            var(--cyan)
        );

    opacity: .14;

    filter: blur(125px);

    animation:
        auroraRotate 18s linear infinite;
}

@keyframes auroraRotate {
    to {
        transform: rotate(360deg);
    }
}

.hero-grid {
    position: relative;

    min-height: calc(100svh - 72px);

    padding: 60px 0;

    display: grid;

    grid-template-columns:
        minmax(0,.92fr)
        minmax(480px,1.08fr);

    gap: 58px;

    align-items: center;
}

.kicker {
    margin-bottom: 24px;

    display: flex;
    align-items: center;

    gap: 10px;
}

.kicker span {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: var(--lime);

    box-shadow:
        0 0 0 5px rgba(171,255,84,.07),
        0 0 24px rgba(171,255,84,.5);
}

.kicker i {
    color: rgba(255,255,255,.44);

    font-family: monospace;
    font-size: .6rem;
    font-style: normal;

    letter-spacing: .12em;
}

.hero h1 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            3.8rem,
            6.4vw,
            6.6rem
        );

    line-height: .83;

    letter-spacing: -.07em;

    font-weight: 850;
}

.hero h1 span {
    display: block;
}

.outline {
    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.48);
}

.rainbow {
    padding-bottom: .07em;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--blue),
            var(--violet),
            var(--pink),
            var(--orange)
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 610px;

    margin: 33px 0 0;

    color: #a3abb5;

    font-size: .96rem;
    line-height: 1.72;
}

.hero-buttons {
    margin-top: 28px;

    display: flex;
    gap: 9px;
}

.button {
    min-height: 48px;

    padding: 0 18px;

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

    gap: 22px;

    border-radius: 999px;

    font-size: .69rem;
    font-weight: 740;

    text-decoration: none;
}

.button i {
    font-style: normal;
}

.primary {
    min-width: 170px;

    color: #061017;

    background:
        linear-gradient(
            105deg,
            #dffcff,
            #69eaff 42%,
            #ae9cff
        );

    box-shadow:
        0 16px 55px rgba(32,230,255,.14);
}

.ghost {
    border: 1px solid var(--line);

    color: rgba(255,255,255,.62);

    background: rgba(255,255,255,.025);
}

.hero-data {
    margin-top: 43px;

    display: flex;

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

.hero-data div {
    min-width: 135px;

    padding: 15px 25px 0 0;

    display: flex;
    flex-direction: column;
}

.hero-data strong {
    color: #fff;

    font-size: 1.3rem;
    letter-spacing: -.04em;
}

.hero-data span {
    margin-top: 4px;

    color: rgba(255,255,255,.3);

    font-size: .56rem;
}

.hero-art {
    position: relative;

    min-width: 0;
}

.hero-art img {
    display: block;

    width: 100%;

    border-radius: 30px;

    box-shadow:
        0 45px 130px rgba(0,0,0,.4);
}

.visual-border {
    position: absolute;

    inset: -1px;

    z-index: 2;
    pointer-events: none;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 31px;
}

.visual-badge {
    position: absolute;
    z-index: 5;

    padding: 8px 10px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;

    color: rgba(255,255,255,.75);

    background: rgba(5,8,12,.72);

    backdrop-filter: blur(15px);

    font-family: monospace;
    font-size: .52rem;

    letter-spacing: .1em;
}

.badge-one {
    top: 8%;
    left: -2%;
}

.badge-two {
    top: 20%;
    right: -2%;
}

.badge-three {
    bottom: 10%;
    left: 8%;
}


/* COLOR BAND */

.colour-band {
    height: 55px;

    overflow: hidden;

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

    background:
        linear-gradient(
            90deg,
            rgba(32,230,255,.08),
            rgba(71,117,255,.08),
            rgba(149,92,255,.09),
            rgba(255,77,163,.08),
            rgba(255,150,63,.08)
        );
}

.colour-track {
    width: max-content;
    height: 100%;

    display: flex;
    align-items: center;

    gap: 23px;

    animation:
        marquee 48s linear infinite;
}

.colour-track span {
    color: rgba(255,255,255,.5);

    font-size: .61rem;
    font-weight: 700;

    letter-spacing: .09em;
    text-transform: uppercase;
}

.colour-track i {
    color: var(--pink);

    font-style: normal;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


/* INTRO */

.intro {
    padding: 110px 0;

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

.intro-grid {
    display: grid;

    grid-template-columns:
        .28fr
        1.12fr
        .6fr;

    align-items: end;

    gap: 55px;
}

.section-code {
    color: rgba(255,255,255,.28);

    font-family: monospace;
    font-size: .57rem;

    letter-spacing: .11em;
}

.intro h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            2.7rem,
            4.6vw,
            4.8rem
        );

    line-height: .93;

    letter-spacing: -.055em;
}

.intro h2 span {
    display: block;
}

.intro-colour {
    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--violet),
            var(--pink),
            var(--orange)
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.intro p {
    margin: 0;

    color: var(--muted);

    font-size: .83rem;
    line-height: 1.72;
}


/* AREAS */

.areas {
    padding: 110px 0;

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

.areas-heading {
    margin-bottom: 70px;

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

    gap: 30px;
}

.areas-heading > span {
    color: rgba(255,255,255,.28);

    font-family: monospace;
    font-size: .57rem;
}

.areas-heading h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            2.7rem,
            5vw,
            5.2rem
        );

    letter-spacing: -.055em;
}

.area-row {
    min-height: 580px;

    margin-bottom: 75px;

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    align-items: center;

    gap: 65px;
}

.area-reverse {
    grid-template-columns:
        .85fr
        1.15fr;
}

.area-reverse .area-image {
    order: 2;
}

.area-image {
    position: relative;
}

.area-image::before {
    content: "";

    position: absolute;

    width: 70%;
    height: 70%;

    left: 15%;
    top: 15%;

    z-index: -1;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .2;
}

.accent-cyan .area-image::before {
    background: var(--cyan);
}

.accent-violet .area-image::before {
    background: var(--violet);
}

.accent-orange .area-image::before {
    background: var(--orange);
}

.accent-pink .area-image::before {
    background: var(--pink);
}

.area-image img {
    display: block;

    width: 100%;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 27px;

    box-shadow:
        0 35px 100px rgba(0,0,0,.3);
}

.area-copy {
    max-width: 540px;
}

.area-no {
    margin-bottom: 22px;

    color: rgba(255,255,255,.28);

    font-family: monospace;
    font-size: .58rem;
}

.area-copy h3 {
    margin: 0;

    color: #fff;

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

    line-height: .96;

    letter-spacing: -.05em;
}

.area-copy > p {
    margin: 22px 0 35px;

    color: #8d96a1;

    font-size: .83rem;
    line-height: 1.7;
}

.area-links {
    border-top: 1px solid var(--line);
}

.area-links a {
    min-height: 48px;

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

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

    color: rgba(255,255,255,.57);

    font-size: .67rem;
    font-weight: 650;

    text-decoration: none;

    transition:
        color .2s ease,
        padding .2s ease;
}

.area-links a:hover {
    padding-left: 9px;

    color: #fff;
}

.area-links i {
    color: rgba(255,255,255,.25);

    font-style: normal;
}


/* NETWORK */

.network {
    position: relative;

    overflow: hidden;

    padding: 110px 0;

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

    background: rgba(4,7,11,.42);
}

.network-glow {
    position: absolute;

    width: 900px;
    height: 500px;

    left: 45%;
    top: 20%;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--violet),
            var(--pink)
        );

    opacity: .08;

    filter: blur(120px);
}

.network-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        .67fr
        1.33fr;

    align-items: center;

    gap: 70px;
}

.network-copy h2 {
    margin: 20px 0 25px;

    color: #fff;

    font-size:
        clamp(
            2.8rem,
            4.6vw,
            4.8rem
        );

    line-height: .93;

    letter-spacing: -.055em;
}

.network-copy p {
    max-width: 430px;

    margin: 0;

    color: #8b949f;

    font-size: .83rem;
    line-height: 1.7;
}

.network-art img {
    display: block;

    width: 100%;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;

    box-shadow:
        0 40px 110px rgba(0,0,0,.28);
}


/* ENGINE */

.engine-section {
    padding: 110px 0;

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

.engine-head {
    margin-bottom: 45px;

    display: grid;

    grid-template-columns:
        1fr
        .55fr;

    gap: 60px;

    align-items: end;
}

.engine-head span {
    color: rgba(255,255,255,.27);

    font-family: monospace;
    font-size: .56rem;
}

.engine-head h2 {
    margin: 16px 0 0;

    color: #fff;

    font-size:
        clamp(
            2.7rem,
            4.7vw,
            4.9rem
        );

    line-height: .95;

    letter-spacing: -.05em;
}

.engine-head > p {
    margin: 0;

    color: #89929d;

    font-size: .82rem;
    line-height: 1.7;
}

.project-engine {
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(149,92,255,.1),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(32,230,255,.08),
            transparent 30%
        ),
        rgba(7,10,15,.75);

    backdrop-filter: blur(22px);
}

.engine-tabs {
    display: grid;

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

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

.engine-tab {
    min-height: 61px;

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

    color: rgba(255,255,255,.38);
    background: transparent;

    font-family: monospace;
    font-size: .56rem;

    cursor: pointer;
}

.engine-tab:last-child {
    border-right: 0;
}

.engine-tab.active {
    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(32,230,255,.08),
            rgba(149,92,255,.08),
            rgba(255,77,163,.05)
        );
}

.engine-content {
    min-height: 380px;

    padding: 35px;

    display: grid;

    grid-template-columns:
        .7fr
        1fr;

    gap: 50px;

    align-items: center;
}

.engine-result > span {
    color: rgba(255,255,255,.27);

    font-family: monospace;
    font-size: .53rem;
}

.engine-result h3 {
    margin: 20px 0 15px;

    color: #fff;

    font-size:
        clamp(
            2rem,
            3.6vw,
            3.7rem
        );

    letter-spacing: -.05em;
}

.engine-result p {
    max-width: 430px;

    margin: 0;

    color: #89929c;

    font-size: .8rem;
    line-height: 1.7;
}

.engine-modules {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.engine-modules span {
    padding: 8px 11px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;

    color: rgba(255,255,255,.6);

    background:
        linear-gradient(
            90deg,
            rgba(32,230,255,.035),
            rgba(149,92,255,.035)
        );

    font-family: monospace;
    font-size: .52rem;
}

.engine-pipeline {
    grid-column: span 2;

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto;

    align-items: center;

    gap: 11px;
}

.engine-pipeline div {
    width: 75px;
    height: 75px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    background: rgba(255,255,255,.025);
}

.engine-pipeline i {
    color: var(--cyan);

    font-family: monospace;
    font-size: .49rem;
    font-style: normal;
}

.engine-pipeline strong {
    margin-top: 5px;

    color: rgba(255,255,255,.72);

    font-family: monospace;
    font-size: .49rem;
}

.engine-pipeline > span {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--violet),
            var(--pink)
        );

    opacity: .35;
}


/* MANIFESTO */

.manifesto {
    padding: 110px 0;

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

.manifesto p {
    max-width: 1240px;

    margin: 45px 0 0;

    color: rgba(255,255,255,.68);

    font-size:
        clamp(
            2.2rem,
            4.4vw,
            4.8rem
        );

    line-height: 1.03;

    letter-spacing: -.045em;
}

.manifesto p span,
.manifesto p strong {
    display: inline;
}

.manifesto strong {
    font-weight: inherit;
}

.c1 {
    color: var(--orange);
}

.c2 {
    color: var(--cyan);
}

.c3 {
    color: var(--pink);
}


/* PROCESS */

.process {
    padding: 110px 0;

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

    background: rgba(4,7,11,.4);
}

.process-head {
    margin-bottom: 45px;
}

.process-head span {
    color: rgba(255,255,255,.28);

    font-family: monospace;
    font-size: .56rem;
}

.process-head h2 {
    margin: 17px 0 0;

    color: #fff;

    font-size:
        clamp(
            2.8rem,
            4.7vw,
            4.8rem
        );

    letter-spacing: -.055em;
}

.process-grid {
    display: grid;

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

    gap: 10px;
}

.process-card {
    min-height: 290px;

    padding: 26px;

    display: flex;
    flex-direction: column;

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

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.012)
        );

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.process-card:nth-child(1) {
    background:
        linear-gradient(
            145deg,
            rgba(32,230,255,.08),
            rgba(255,255,255,.012)
        );
}

.process-card:nth-child(2) {
    background:
        linear-gradient(
            145deg,
            rgba(71,117,255,.08),
            rgba(255,255,255,.012)
        );
}

.process-card:nth-child(3) {
    background:
        linear-gradient(
            145deg,
            rgba(149,92,255,.09),
            rgba(255,255,255,.012)
        );
}

.process-card:nth-child(4) {
    background:
        linear-gradient(
            145deg,
            rgba(255,77,163,.08),
            rgba(255,255,255,.012)
        );
}

.process-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,255,255,.24);
}

.process-card i {
    color: rgba(255,255,255,.27);

    font-family: monospace;
    font-size: .55rem;
    font-style: normal;
}

.process-card strong {
    margin-top: auto;

    color: #fff;

    font-size: 1.5rem;
}

.process-card p {
    margin: 10px 0 0;

    color: #7f8893;

    font-size: .75rem;
}


/* CONTACT */

.contact {
    padding: 110px 0 130px;
}

.contact-panel {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    padding: 42px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 29px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.01)
        ),
        rgba(7,10,15,.78);

    backdrop-filter: blur(25px);
}

.contact-colour {
    position: absolute;

    width: 800px;
    height: 700px;

    right: -300px;
    bottom: -400px;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--cyan),
            var(--blue),
            var(--violet),
            var(--pink),
            var(--orange),
            var(--cyan)
        );

    opacity: .23;

    filter: blur(75px);

    animation:
        auroraRotate 15s linear infinite;
}

.contact-panel > span {
    position: relative;

    color: rgba(255,255,255,.29);

    font-family: monospace;
    font-size: .56rem;
}

.contact-grid {
    position: relative;

    min-height: 350px;

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    align-items: end;

    gap: 70px;
}

.contact-grid h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            3.5rem,
            6.8vw,
            7rem
        );

    line-height: .82;

    letter-spacing: -.07em;
}

.contact-grid p {
    max-width: 390px;

    margin: 0 0 24px;

    color: #89929d;

    font-size: .82rem;
    line-height: 1.7;
}

.contact-button {
    min-height: 62px;

    padding: 0 22px;

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

    border-radius: 999px;

    color: #061017;

    background:
        linear-gradient(
            100deg,
            var(--cyan),
            #8aa9ff,
            #bd8cff,
            #ff75b4
        );

    font-size: .77rem;
    font-weight: 750;

    text-decoration: none;

    box-shadow:
        0 20px 70px rgba(149,92,255,.19);
}

.contact-button i {
    font-style: normal;
}


/* FOOTER */

.footer {
    background: rgba(4,6,9,.82);
}

.footer-main {
    min-height: 210px;

    padding: 45px 0;

    display: flex;
    justify-content: space-between;

    gap: 60px;
}

.footer-main img {
    width: min(230px,60vw);
}

.footer-main p {
    color: rgba(255,255,255,.27);

    font-size: .58rem;
}

.footer-links {
    max-width: 440px;

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

    gap: 8px 50px;
}

.footer-links a {
    padding: 8px 0;

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

    color: rgba(255,255,255,.48);

    font-size: .63rem;

    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 51px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        auto;

    align-items: center;

    gap: 35px;

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

    color: rgba(255,255,255,.22);

    font-size: .53rem;
}

.internal-link {
    color: rgba(255,255,255,.1);

    font-size: 8px;

    text-decoration: none;
}

.internal-link:hover {
    color: rgba(255,255,255,.5);
}


/* REVEAL */

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity .75s cubic-bezier(.22,.7,.2,1),
        transform .75s cubic-bezier(.22,.7,.2,1);
}

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

.parallax-visual {
    transition:
        transform .2s ease-out;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .desktop-nav {
        display: none;
    }

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

        padding-top: 80px;
    }

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

    .hero-art {
        width: min(100%,900px);

        margin-left: auto;
    }

    .intro-grid {
        grid-template-columns:
            .25fr
            1fr;
    }

    .intro p {
        grid-column: 2;
    }

    .area-row,
    .area-reverse {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .area-reverse .area-image {
        order: 0;
    }

    .area-copy {
        max-width: 800px;
    }

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

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

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


@media (max-width: 760px) {

    .shell {
        width: min(
            calc(100% - 30px),
            1440px
        );
    }

    .header-inner {
        min-height: 66px;
    }

    .logo {
        width: 145px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 66px;
    }

    .hero-grid {
        min-height: auto;

        padding: 55px 0;
    }

    .hero h1 {
        font-size:
            clamp(
                3.15rem,
                14.5vw,
                5rem
            );
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .button {
        width: min(100%,310px);
    }

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

    .hero-data div {
        min-width: 0;
    }

    .visual-badge {
        display: none;
    }

    .intro,
    .areas,
    .network,
    .engine-section,
    .manifesto,
    .process,
    .contact {
        padding-top: 80px;
        padding-bottom: 80px;
    }

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

        gap: 25px;
    }

    .intro p {
        grid-column: auto;
    }

    .areas-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .area-row {
        margin-bottom: 65px;
    }

    .engine-head {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .engine-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .engine-pipeline {
        grid-column: auto;
    }

    .contact-grid {
        min-height: 420px;

        grid-template-columns: 1fr;

        align-content: space-between;

        gap: 50px;

        padding-top: 60px;
    }

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


@media (max-width: 540px) {

    .language {
        display: none;
    }

    .hero h1 {
        font-size:
            clamp(
                2.9rem,
                16vw,
                4.4rem
            );
    }

    .hero-data strong {
        font-size: 1rem;
    }

    .hero-data span {
        font-size: .48rem;
    }

    .intro h2,
    .areas-heading h2,
    .network-copy h2,
    .engine-head h2,
    .process-head h2 {
        font-size:
            clamp(
                2.4rem,
                11vw,
                3.5rem
            );
    }

    .area-copy h3 {
        font-size:
            clamp(
                2.2rem,
                11vw,
                3.4rem
            );
    }

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

    .engine-tab:nth-child(2) {
        border-right: 0;
    }

    .engine-tab:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .engine-pipeline {
        display: none;
    }

    .manifesto p {
        font-size:
            clamp(
                2rem,
                10vw,
                3rem
            );
    }

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

    .process-card {
        min-height: 230px;
    }

    .contact-panel {
        padding: 27px;
    }

    .contact-grid h2 {
        font-size:
            clamp(
                3rem,
                14vw,
                4.7rem
            );
    }

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

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

    .footer-bottom span:nth-child(2) {
        display: none;
    }
}


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

    html {
        scroll-behavior: auto;
    }

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

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

    .pointer-glow {
        display: none;
    }
}

/* =========================================================
   FINAL-V4-EXTENSIONS
   ========================================================= */

html {
    scroll-padding-top: 92px;
}

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

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    z-index: 1000;

    transform: scaleX(0);
    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--blue),
            var(--violet),
            var(--pink),
            var(--orange)
        );

    box-shadow:
        0 0 20px rgba(149,92,255,.4);

    pointer-events: none;
}


.hero-art,
.area-image,
.network-art {
    isolation: isolate;
}

.hero-art::before,
.area-image::after,
.network-art::after {
    content: "";

    position: absolute;
    inset: 8%;

    z-index: -1;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            rgba(32,230,255,.2),
            rgba(71,117,255,.08),
            rgba(149,92,255,.15),
            rgba(255,77,163,.12),
            rgba(255,150,63,.14)
        );

    filter: blur(55px);

    opacity: .5;

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.hero-art:hover::before,
.area-image:hover::after,
.network-art:hover::after {
    opacity: .75;
    transform: scale(1.05);
}

.hero-art img,
.area-image img,
.network-art img {
    transition:
        filter .35s ease,
        box-shadow .35s ease;
}

.hero-art:hover img,
.area-image:hover img,
.network-art:hover img {
    filter:
        saturate(1.15)
        contrast(1.03);

    box-shadow:
        0 50px 145px rgba(0,0,0,.44);
}


/* CAPABILITY MOSAIC */

.capability-mosaic {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

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

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(32,230,255,.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255,77,163,.055),
            transparent 30%
        ),
        rgba(4,7,11,.32);
}

.mosaic-head {
    margin-bottom: 48px;

    display: grid;

    grid-template-columns:
        1fr .55fr;

    align-items: end;

    gap: 60px;
}

.mosaic-head span {
    color: rgba(255,255,255,.28);

    font-family: monospace;
    font-size: .56rem;

    letter-spacing: .1em;
}

.mosaic-head h2 {
    margin: 15px 0 0;

    color: #fff;

    font-size:
        clamp(
            2.7rem,
            4.8vw,
            5rem
        );

    line-height: .93;

    letter-spacing: -.055em;
}

.mosaic-head > p {
    margin: 0;

    color: #89929d;

    font-size: .82rem;
    line-height: 1.72;
}

.mosaic-grid {
    display: grid;

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

    gap: 9px;
}

.mosaic-card {
    position: relative;

    min-height: 230px;

    overflow: hidden;

    padding: 20px;

    display: flex;
    flex-direction: column;

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

    border-radius: 19px;

    color: inherit;

    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.01)
        ),
        rgba(6,9,14,.68);

    backdrop-filter: blur(18px);

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

.mosaic-card::before {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    top: -125px;
    right: -105px;

    border-radius: 50%;

    opacity: .16;

    filter: blur(40px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.mosaic-cyan::before {
    background: var(--cyan);
}

.mosaic-blue::before {
    background: var(--blue);
}

.mosaic-violet::before {
    background: var(--violet);
}

.mosaic-pink::before {
    background: var(--pink);
}

.mosaic-orange::before {
    background: var(--orange);
}

.mosaic-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(255,255,255,.23);

    box-shadow:
        0 28px 80px rgba(0,0,0,.24);
}

.mosaic-number {
    color: rgba(255,255,255,.25);

    font-family: monospace;
    font-size: .52rem;
}

.mosaic-card > div {
    position: relative;

    margin-top: auto;
}

.mosaic-card h3 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 1.1rem;

    line-height: 1.08;

    letter-spacing: -.025em;
}

.mosaic-card p {
    margin: 0;

    color: #78818c;

    font-size: .66rem;
    line-height: 1.55;
}

.mosaic-card > i {
    position: absolute;

    right: 18px;
    top: 17px;

    color: rgba(255,255,255,.25);

    font-style: normal;
}


/* ACCESSIBILITY */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid var(--cyan);

    outline-offset: 4px;
}


/* MOBILE DOCK */

.mobile-dock {
    display: none;
}


@media (max-width:1100px) {

    body {
        padding-bottom: 68px;
    }

    .mobile-dock {
        position: fixed;

        left: 14px;
        right: 14px;
        bottom: 12px;

        z-index: 150;

        min-height: 55px;

        padding: 6px;

        display: grid;

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

        gap: 4px;

        border:
            1px solid rgba(255,255,255,.14);

        border-radius: 18px;

        background:
            rgba(6,9,14,.88);

        box-shadow:
            0 20px 60px rgba(0,0,0,.4);

        backdrop-filter:
            blur(25px)
            saturate(150%);
    }

    .mobile-dock a {
        min-height: 43px;

        padding: 5px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        border-radius: 12px;

        color:
            rgba(255,255,255,.55);

        text-decoration: none;
    }

    .mobile-dock span {
        color:
            rgba(255,255,255,.25);

        font-family: monospace;
        font-size: .43rem;
    }

    .mobile-dock b {
        margin-top: 2px;

        font-size: .54rem;
        font-weight: 680;
    }

    .mosaic-grid {
        grid-template-columns:
            repeat(3,1fr);
    }
}


@media (max-width:760px) {

    .capability-mosaic {
        padding: 80px 0;
    }

    .mosaic-head {
        grid-template-columns: 1fr;

        gap: 20px;
    }

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


@media (max-width:460px) {

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

    .mosaic-card {
        min-height: 175px;
    }
}