:root {
    --bg: #030813;
    --surface: #07111f;
    --panel: #091629;
    --text: #f4f7fb;
    --muted: #94a2b6;
    --line: rgba(138, 171, 218, .16);
    --blue: #168dff;
    --cyan: #19d6f4;
    --violet: #7554ff;
    --gradient: linear-gradient(110deg, var(--cyan), var(--blue) 48%, var(--violet));
    --max: 1240px;
    --display: "Space Grotesk", sans-serif;
    --body: "Manrope", sans-serif
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    line-height: 1.6;
    overflow-x: hidden
}

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

button, input, select, textarea {
    font: inherit
}

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

.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 100;
    background: #fff;
    color: #000;
    padding: 10px 16px;
    border-radius: 8px
}

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

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 80;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.cursor-glow {
    position: fixed;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 116, 255, .09), transparent 68%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0
}

.scroll-progress {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: 2px
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gradient);
    box-shadow: 0 0 12px var(--cyan)
}

.section {
    width: min(var(--max), calc(100% - 80px));
    margin: auto
}

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 4px
}

body.menu-open {
    overflow: hidden
}

.services, .projects, .manifesto, .process, .contact, .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px
}

/* Header */
.site-header {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--max), calc(100% - 52px));
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    transition: .35s
}

.site-header.scrolled {
    top: 12px;
    width: min(1180px, calc(100% - 24px));
    height: 68px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(3, 8, 19, .82);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .3)
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px
}

.brand img {
    width: 46px;
    height: 42px;
    object-fit: contain
}

.brand strong {
    font: 600 17px var(--display);
    letter-spacing: .3em
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 11px;
    color: #b8c5d7
}

.nav a {
    position: relative;
    transition: .25s
}

.nav>a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: var(--cyan);
    transition: .25s
}

.nav>a:hover, .nav>a.active {
    color: #fff
}

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

.nav-cta {
    padding: 11px 17px;
    border: 1px solid rgba(57, 149, 255, .5);
    border-radius: 9px;
    color: #fff;
    background: rgba(26, 93, 214, .13);
    box-shadow: inset 0 0 22px rgba(28, 126, 255, .05)
}

.nav-cta span {
    margin-left: 8px;
    color: var(--cyan)
}

.menu-toggle {
    display: none
}

/* Hero */
.hero {
    min-height: 850px;
    padding-top: 112px;
    display: grid;
    grid-template-columns: 54% 46%;
    align-items: center;
    position: relative
}

.hero canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.hero-copy {
    position: relative;
    z-index: 2
}

.eyebrow, .kicker {
    font-size: 10px;
    letter-spacing: .25em;
    font-weight: 700;
    color: #7f94b3
}

.eyebrow span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--cyan);
    vertical-align: middle;
    margin-right: 9px
}

.hero h1 {
    font: 600 clamp(58px, 6.5vw, 98px)/.95 var(--display);
    letter-spacing: -.055em
}

.hero h1 em, .section-intro h2 span, .contact h2 em, blockquote em, .footer-cta a {
    font-style: normal;
    background: var(--gradient);
    background-clip: text;
    color: transparent
}

.hero-lead {
    max-width: 600px;
    color: #a8b4c6;
    font-size: 16px;
    margin: 30px 0
}

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

.btn {
    min-height: 53px;
    padding: 0 22px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    font-size: 12px;
    font-weight: 700;
    transition: .25s
}

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

.btn-primary {
    background: var(--gradient);
    box-shadow: 0 14px 35px rgba(33, 98, 255, .2)
}

.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .025)
}

.hero-proof {
    display: flex;
    gap: 25px;
    margin-top: 43px;
    font-size: 8px;
    letter-spacing: .12em;
    color: #718098;
    text-transform: uppercase
}

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

.hero-proof span:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan)
}

.scroll-cue {
    position: absolute;
    left: 0;
    bottom: 23px;
    font-size: 9px;
    letter-spacing: .16em;
    color: #62728a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px
}

.scroll-cue span {
    width: 30px;
    height: 1px;
    background: #3e536d
}

.hero-art {
    --rx: 0deg;
    --ry: 0deg;
    height: 650px;
    position: relative;
    display: grid;
    place-items: center;
    perspective: 1000px;
    isolation: isolate
}

.logo-core {
    position: relative;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    transform: rotateX(var(--rx)) rotateY(var(--ry));
    transition: transform .25s ease-out;
    z-index: 4;
    filter: drop-shadow(0 28px 60px rgba(5, 83, 201, .3));
    animation: logoFloat 6s ease-in-out infinite
}

.logo-core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    mask-image: radial-gradient(circle, #000 66%, transparent 72%)
}

.logo-halo {
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(20, 164, 255, .32), inset 0 0 40px rgba(33, 96, 255, .18);
    z-index: 2
}

.orbit {
    position: absolute;
    border: 1px solid rgba(67, 139, 255, .2);
    border-radius: 50%;
    z-index: 2;
    animation: orbitSpin 18s linear infinite
}

.orbit:before, .orbit:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan)
}

.orbit:before {
    width: 7px;
    height: 7px;
    left: -4px;
    top: 50%
}

.orbit:after {
    width: 4px;
    height: 4px;
    right: 11%;
    top: 12%;
    background: #956dff;
    box-shadow: 0 0 12px #956dff
}

.orbit-a {
    width: 455px;
    height: 455px;
    transform: rotateX(68deg) rotateZ(10deg)
}

.orbit-b {
    width: 540px;
    height: 540px;
    animation-duration: 27s;
    animation-direction: reverse
}

.orbit-c {
    width: 610px;
    height: 350px;
    transform: rotate(18deg);
    animation-duration: 34s;
    border-style: dashed;
    opacity: .55
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(35px);
    opacity: .42;
    mix-blend-mode: screen;
    animation: auroraPulse 7s ease-in-out infinite
}

.aurora-one {
    width: 350px;
    height: 350px;
    background: #0637c9;
    left: 10%;
    top: 18%
}

.aurora-two {
    width: 300px;
    height: 300px;
    background: #5727c4;
    right: 6%;
    bottom: 15%;
    animation-delay: -3s
}

.beam {
    position: absolute;
    height: 1px;
    width: 80%;
    background: linear-gradient(90deg, transparent, rgba(34, 171, 255, .7), transparent);
    box-shadow: 0 0 18px rgba(34, 171, 255, .6);
    z-index: 1
}

.beam-one {
    transform: rotate(-18deg);
    animation: beamSweep 6s ease-in-out infinite
}

.beam-two {
    transform: rotate(28deg);
    animation: beamSweep 8s ease-in-out infinite reverse
}

.stage-caption {
    position: absolute;
    bottom: 42px;
    font-size: 8px;
    letter-spacing: .35em;
    color: #59708f
}

.hero-art:after {
    content: "";
    position: absolute;
    inset: 15%;
    background: radial-gradient(circle, rgba(22, 128, 255, .12), transparent 62%);
    z-index: -1
}

/* Expertise */
.expertise {
    border-block: 1px solid var(--line);
    background: linear-gradient(90deg, #050b15, #071426 50%, #050b15)
}

.expertise-inner {
    width: min(var(--max), calc(100% - 80px));
    min-height: 142px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 1fr);
    align-items: stretch
}

.expertise-inner>p {
    align-self: center;
    font: 500 15px/1.35 var(--display);
    color: #7e8da2
}

.expertise-inner>p strong {
    color: #fff;
    font-weight: 500
}

.expertise article {
    padding: 30px 20px;
    border-left: 1px solid var(--line);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: .25s
}

.expertise article:hover {
    background: rgba(25, 112, 255, .07)
}

.expertise article>span {
    font-size: 8px;
    color: #3a80cf;
    padding-top: 4px
}

.expertise article div {
    display: grid
}

.expertise article b {
    font: 500 17px var(--display)
}

.expertise article small {
    font-size: 9px;
    color: #738198;
    margin-top: 5px
}

/* Sections and services */
.services, .projects, .process {
    padding: 135px 0
}

.section-intro {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 70px
}

.section-intro h2 {
    font: 600 clamp(40px, 5vw, 68px)/1.02 var(--display);
    letter-spacing: -.045em;
    margin-top: 16px
}

.section-intro>p {
    color: var(--muted);
    font-size: 14px;
    max-width: 450px
}

.service-list {
    border-top: 1px solid var(--line)
}

.service-row {
    display: grid;
    grid-template-columns: 40px 70px 1.3fr .8fr;
    gap: 28px;
    align-items: center;
    padding: 36px 10px;
    border-bottom: 1px solid var(--line);
    transition: .3s
}

.service-row:hover {
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(17, 86, 192, .08), transparent)
}

.service-number {
    font: 500 10px var(--display);
    color: #55667d
}

.service-icon {
    width: 54px;
    height: 54px;
    border: 1px solid var(--line);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #42a9ff;
    font: 500 20px var(--display)
}

.service-row h3 {
    font: 500 23px var(--display);
    margin-bottom: 5px
}

.service-row p, .service-row li {
    color: #8492a5;
    font-size: 12px
}

.service-row ul {
    list-style: none;
    display: grid;
    gap: 5px
}

.service-row li:before {
    content: "↗";
    color: var(--cyan);
    margin-right: 9px
}

/* Projects */
.projects {
    border-top: 1px solid var(--line)
}

.project-stack {
    display: grid;
    gap: 32px
}

.project-card {
    display: grid;
    grid-template-columns: 34% 66%;
    background: #07111f;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: .35s
}

.project-card:hover {
    border-color: rgba(56, 142, 255, .35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .2)
}

.project-copy {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--line)
}

.project-index, .case-status, .project-copy>div>p:first-child {
    font-size: 8px;
    letter-spacing: .18em;
    color: #708098
}

.project-copy h3 {
    font: 600 43px var(--display);
    letter-spacing: -.04em;
    margin: 10px 0 16px
}

.project-desc {
    color: #95a2b4;
    font-size: 13px
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px
}

.tags span {
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 7px 10px;
    font-size: 8px;
    color: #91a6c0
}

.case-status {
    color: #37a9ff
}

.project-shot {
    position: relative;
    background: radial-gradient(circle at 50% 10%, #12233a, #070e18 65%);
    overflow: hidden;
    padding: 34px 24px 24px;
    display: flex;
    flex-direction: column
}

.project-shot:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(39, 124, 255, .14) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(#000, transparent 70%)
}

.shot-bar {
    position: relative;
    height: 34px;
    border-radius: 12px 12px 0 0;
    background: #101a27;
    border: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px
}

.shot-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #496078
}

.shot-bar span {
    margin-left: 10px;
    color: #64758c;
    font-size: 7px;
    letter-spacing: .15em
}

.shot-bar b {
    margin-left: auto;
    font-size: 7px;
    letter-spacing: .12em;
    color: #3f9eff;
    font-weight: 600
}

.project-shot img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: contain;
    object-position: top;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .4);
    transition: transform .6s cubic-bezier(.2, .7, .2, 1)
}

.project-card:hover .project-shot img {
    transform: translateY(-4px) scale(1.008)
}

.shot-warm {
    background: radial-gradient(circle at 50% 10%, #574c42, #17130f 67%)
}

.shot-warm .shot-bar {
    background: #24211e
}

/* Manifesto */
.manifesto {
    min-height: 720px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: .75fr 1.5fr;
    gap: 65px;
    align-items: center;
    position: relative
}

.brand-universe {
    position: relative;
    height: 470px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-right: 1px solid var(--line)
}

.brand-universe:after {
    content: "";
    position: absolute;
    inset: 5%;
    background: radial-gradient(circle, rgba(18, 110, 255, .18), transparent 63%)
}

.brand-universe img {
    position: relative;
    z-index: 3;
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    mask-image: radial-gradient(circle, #000 64%, transparent 72%);
    filter: drop-shadow(0 20px 40px rgba(19, 101, 229, .3));
    animation: logoFloat 7s ease-in-out infinite
}

.brand-universe>span {
    position: absolute;
    bottom: 30px;
    font-size: 7px;
    letter-spacing: .3em;
    color: #405574
}

.universe-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(54, 121, 215, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(54, 121, 215, .08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle, #000, transparent 70%)
}

.universe-ring {
    position: absolute;
    border: 1px solid rgba(52, 131, 255, .22);
    border-radius: 50%;
    animation: orbitSpin 22s linear infinite
}

.universe-ring:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    top: 50%;
    left: -3px
}

.ring-one {
    width: 330px;
    height: 330px
}

.ring-two {
    width: 410px;
    height: 220px;
    transform: rotate(30deg);
    animation-direction: reverse
}

.manifesto blockquote {
    font: 500 clamp(36px, 4.3vw, 62px)/1.08 var(--display);
    letter-spacing: -.04em;
    margin: 22px 0 28px
}

.manifesto-copy>p:last-child {
    max-width: 620px;
    color: #919fb2;
    font-size: 14px
}

.principles {
    position: absolute;
    bottom: 45px;
    right: 0;
    width: 62%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line)
}

.principles div {
    padding: 18px 0;
    display: flex;
    gap: 12px
}

.principles span {
    font-size: 8px;
    color: #456384
}

.principles b {
    font-size: 10px;
    letter-spacing: .05em
}

/* Process */
.process {
    border-top: 1px solid var(--line)
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative
}

.process-track:before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 43px;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), var(--violet))
}

.process-track article {
    position: relative;
    padding-right: 40px
}

.process-track span {
    font: 500 9px var(--display);
    color: #54708f
}

.process-track i {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #07101e;
    border: 3px solid var(--blue);
    box-shadow: 0 0 15px #137dfa;
    margin: 27px 0 32px;
    position: relative;
    z-index: 2
}

.process-track article:last-child i {
    border-color: var(--violet);
    box-shadow: 0 0 15px var(--violet)
}

.process-track h3 {
    font: 500 17px var(--display);
    margin-bottom: 9px
}

.process-track p {
    font-size: 11px;
    color: #7f8ea4;
    max-width: 220px
}

/* Contact form */
.contact {
    min-height: 1040px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 85px;
    align-items: center;
    text-align: left;
    padding-block: 120px;
    position: relative
}

.contact:before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: -20%;
    top: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 85, 190, .15), transparent 65%);
    pointer-events: none
}

.contact-intro {
    align-self: center;
    position: relative
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 27px;
    padding: 8px 12px;
    border: 1px solid rgba(38, 203, 151, .22);
    border-radius: 100px;
    background: rgba(18, 102, 75, .08);
    color: #7dd6b3;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.availability i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #54e4ac;
    box-shadow: 0 0 10px #54e4ac;
    animation: statusPulse 2s ease-in-out infinite
}

.contact h2 {
    font: 600 clamp(50px, 5.5vw, 78px)/.96 var(--display);
    letter-spacing: -.055em;
    margin: 20px 0 25px
}

.contact-intro>p:not(.kicker) {
    max-width: 460px;
    color: #93a1b5;
    font-size: 13px
}

.contact-points {
    display: flex;
    gap: 18px;
    margin-top: 30px
}

.contact-points span {
    font-size: 8px;
    color: #718199;
    display: flex;
    gap: 6px
}

.contact-points b {
    color: #358ede
}

.contact-direct {
    display: grid;
    gap: 5px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    max-width: 440px
}

.contact-direct span {
    font-size: 9px;
    color: #64748a
}

.contact-direct a {
    font: 500 15px var(--display);
    color: #45a7ff
}

.project-form {
    position: relative;
    padding: 34px 38px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(10, 27, 51, .96), rgba(5, 13, 27, .96));
    box-shadow: 0 35px 100px rgba(0, 0, 0, .3)
}

.project-form:before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(36, 181, 255, .35), transparent 32%, transparent 68%, rgba(117, 84, 255, .3));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none
}

.form-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 17px;
    margin-bottom: 23px;
    font-size: 8px;
    letter-spacing: .18em;
    color: #6f819b
}

.form-head b {
    color: #399dff
}

.project-form fieldset {
    border: 0
}

.project-form legend {
    font: 600 11px var(--display);
    color: #c9d6e7;
    letter-spacing: .06em;
    margin-bottom: 14px
}

.project-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 17px
}

.project-form label>span {
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #7f90a8
}

.project-form input, .project-form select, .project-form textarea {
    width: 100%;
    border: 1px solid rgba(137, 170, 217, .2);
    border-radius: 9px;
    background: #050d1a;
    color: #eaf2ff;
    padding: 12px 14px;
    outline: 0;
    font: 500 12px var(--body);
    transition: .2s
}

.project-form textarea {
    resize: vertical
}

.project-form input:focus, .project-form select:focus, .project-form textarea:focus {
    border-color: #299fff;
    box-shadow: 0 0 0 3px rgba(31, 136, 255, .1)
}

.project-form ::placeholder {
    color: #526077
}

.project-form option {
    background: #081323
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.form-submit {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 9px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(33, 98, 255, .2);
    transition: .25s
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(33, 98, 255, .28)
}

.form-submit i {
    font-style: normal;
    font-size: 18px
}

.form-note {
    text-align: center;
    font-size: 8px;
    color: #5f7088;
    margin-top: 12px
}

.project-form fieldset+fieldset {
    margin-top: 8px;
    padding-top: 22px;
    border-top: 1px solid var(--line)
}

.form-status {
    min-height: 20px;
    margin-top: 10px;
    text-align: center;
    color: #7dd6b3;
    font-size: 10px
}

.form-submit[aria-busy=true] {
    cursor: progress;
    opacity: .8
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #050b15, #02060d);
    padding: 0 max(40px, calc((100% - var(--max))/2)) 28px
}

.footer-cta {
    min-height: 210px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px
}

.footer-cta p {
    font: 500 17px var(--display);
    color: #8796aa
}

.footer-cta a {
    font: 600 clamp(30px, 4.2vw, 60px)/1 var(--display);
    letter-spacing: -.04em;
    display: flex;
    gap: 25px
}

.footer-cta a span {
    color: #4ea1ff;
    font-size: .65em
}

.footer-main {
    display: grid;
    grid-template-columns: 1.7fr .8fr 1fr 1.1fr;
    align-items: start;
    gap: 48px;
    padding: 44px 0 36px
}

.footer-brand .brand img {
    width: 54px;
    height: 49px
}

.footer-brand p {
    color: #748398;
    font-size: 11px;
    max-width: 320px;
    margin-top: 13px
}

.footer-main nav, .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.footer-main b, .footer-contact>b {
    font-size: 8px;
    letter-spacing: .18em;
    color: #4b89d4;
    margin-bottom: 5px
}

.footer-main nav a, .footer-contact a, .footer-contact span {
    font-size: 10px;
    color: #8391a5;
    transition: .2s
}

.footer-main a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: #526077;
    font-size: 8px;
    letter-spacing: .06em
}

.footer-main .social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px
}

.social-link {
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #93a6c0;
    background: rgba(255, 255, 255, .025);
    font-size: 9px;
    transition: transform .25s, border-color .25s, color .25s, background .25s
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(55, 166, 255, .55);
    color: #fff;
    background: rgba(25, 111, 255, .09)
}

.social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex: 0 0 auto
}

.social-link rect, .social-link circle:not(.social-dot) {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.social-link .social-dot {
    fill: currentColor;
    stroke: none
}

/* Error page */
.error-page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 70% 30%, rgba(25, 114, 255, .16), transparent 35%), var(--bg)
}

.error-shell {
    width: min(760px, calc(100% - 40px));
    padding: 70px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 14, 28, .82);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .35)
}

.error-shell .brand {
    margin-bottom: 90px
}

.error-shell h1 {
    font: 600 clamp(48px, 8vw, 88px)/.96 var(--display);
    letter-spacing: -.055em;
    margin: 20px 0 24px
}

.error-shell h1 em {
    font-style: normal;
    background: var(--gradient);
    background-clip: text;
    color: transparent
}

.error-shell>p:not(.kicker) {
    max-width: 520px;
    color: var(--muted);
    margin-bottom: 30px
}

.error-shell .btn {
    width: max-content
}

.reveal {
    opacity: 1;
    transform: none
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1)
}

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

@keyframes orbitSpin {
    to {
        rotate: 360deg
    }
}

@keyframes logoFloat {
    50% {
        transform: translateY(-13px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg))
    }
}

@keyframes auroraPulse {
    50% {
        transform: scale(1.18) translate(12px, -8px);
        opacity: .65
    }
}

@keyframes beamSweep {
    0%, 100% {
        opacity: .12;
        translate: 0 -70px
    }

    50% {
        opacity: .7;
        translate: 0 80px
    }
}

@keyframes statusPulse {
    50% {
        opacity: .4;
        transform: scale(.75)
    }
}

@media(max-width:1050px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 1180px;
        padding-top: 160px
    }

    .hero-art {
        height: 570px
    }

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

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

    .project-copy {
        min-height: 340px;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .manifesto {
        grid-template-columns: 1fr;
        padding: 100px 0
    }

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

    .principles {
        position: static;
        width: 100%;
        grid-column: 1
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .contact-intro>p:not(.kicker) {
        max-width: 650px
    }

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

    .footer-contact {
        grid-column: 2/4
    }

    .nav {
        gap: 18px
    }

    .service-row {
        grid-template-columns: 35px 55px 1fr
    }

    .service-row ul {
        display: none
    }

    .expertise-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .expertise-inner>p {
        grid-column: 1/-1;
        padding: 25px 20px;
        border-bottom: 1px solid var(--line)
    }

    .expertise article:nth-of-type(odd) {
        border-left: 0
    }
}

@media(max-width:700px) {
    .cursor-glow {
        display: none
    }

    .section {
        width: calc(100% - 34px)
    }

    .site-header {
        width: calc(100% - 30px);
        height: 70px
    }

    .site-header.scrolled {
        width: calc(100% - 18px)
    }

    .brand img {
        width: 42px;
        height: 38px
    }

    .brand strong {
        font-size: 14px
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #071221;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px
    }

    .menu-toggle span {
        width: 18px;
        height: 1px;
        background: #fff;
        transition: .25s
    }

    .menu-toggle[aria-expanded=true] span:first-child {
        transform: translateY(3.5px) rotate(45deg)
    }

    .menu-toggle[aria-expanded=true] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg)
    }

    .nav {
        position: fixed;
        top: 78px;
        left: 8px;
        right: 8px;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(3, 8, 19, .97);
        border: 1px solid var(--line);
        border-radius: 14px;
        backdrop-filter: blur(18px)
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 10px
    }

    .nav>a:not(.nav-cta):after {
        display: none
    }

    .hero {
        min-height: 1040px;
        padding-top: 132px;
        display: block
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 70px)
    }

    .hero-lead {
        font-size: 14px
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-proof {
        gap: 12px;
        flex-wrap: wrap
    }

    .hero-art {
        height: 440px
    }

    .logo-core {
        width: 280px;
        height: 280px;
        animation: none
    }

    .orbit-a {
        width: 310px;
        height: 310px
    }

    .orbit-b {
        width: 370px;
        height: 370px
    }

    .orbit-c {
        width: 390px;
        height: 240px
    }

    .stage-caption {
        bottom: 17px;
        letter-spacing: .2em
    }

    .scroll-cue {
        display: none
    }

    .expertise-inner {
        width: calc(100% - 34px);
        grid-template-columns: 1fr
    }

    .expertise article, .expertise article:nth-of-type(odd) {
        border-left: 0;
        border-bottom: 1px solid var(--line);
        padding: 21px 4px
    }

    .expertise-inner>p {
        padding-inline: 4px
    }

    .services, .projects, .process {
        padding: 90px 0
    }

    .section-intro {
        margin-bottom: 45px
    }

    .section-intro h2 {
        font-size: 42px
    }

    .service-row {
        grid-template-columns: 35px 48px 1fr;
        padding: 25px 0;
        gap: 10px
    }

    .service-icon {
        width: 42px;
        height: 42px
    }

    .service-row h3 {
        font-size: 18px
    }

    .service-row p {
        font-size: 11px
    }

    .project-copy {
        padding: 28px 23px
    }

    .project-copy h3 {
        font-size: 36px
    }

    .project-shot {
        padding: 20px 9px
    }

    .shot-bar b {
        display: none
    }

    .brand-universe {
        height: 390px
    }

    .brand-universe img {
        width: 220px;
        height: 220px
    }

    .manifesto {
        min-height: auto
    }

    .manifesto blockquote {
        font-size: 39px
    }

    .principles {
        grid-template-columns: 1fr
    }

    .process-track {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .process-track:before {
        left: 7px;
        top: 20px;
        bottom: 20px;
        width: 1px;
        height: auto
    }

    .process-track article {
        padding: 0 0 0 42px
    }

    .process-track i {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0
    }

    .contact {
        min-height: auto;
        padding-block: 90px
    }

    .contact h2 {
        font-size: 48px
    }

    .contact-points {
        flex-direction: column;
        gap: 6px
    }

    .project-form {
        padding: 25px 18px
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .footer {
        padding-inline: 17px
    }

    .footer-cta {
        min-height: 240px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 18px
    }

    .footer-cta a {
        font-size: 38px
    }

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

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-contact {
        grid-column: 1/-1
    }

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

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

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

    .cursor-glow, #hero-canvas {
        display: none
    }

    .logo-core {
        transform: none !important
    }
}

@media(max-width:700px) {
    .hero-art, .contact {
        overflow: hidden
    }
}

@media(max-width:700px) {
    .error-shell {
        padding: 38px 24px
    }

    .error-shell .brand {
        margin-bottom: 65px
    }

    .social-link {
        padding-inline: 10px
    }

    .social-link span {
        font-size: 8px
    }
}