:root {
    --void: #07080d;
    --void-2: #0b0d13;
    --surface: #10131b;
    --surface-2: #151923;
    --paper: #eeede7;
    --paper-2: #e4e2db;
    --white: #f5f5f1;
    --text: #f0f1f3;
    --muted: #a0a5b1;
    --muted-dark: #565b65;
    --line: rgba(236, 238, 242, 0.15);
    --line-strong: rgba(236, 238, 242, 0.28);
    --ink: #0a0b10;
    --violet: #8b6cff;
    --violet-dark: #6247dc;
    --mint: #83f2d0;
    --silver: #c8cbd2;
    --danger: #ff7c66;
    --shell: 1320px;
    --pad: clamp(22px, 4vw, 64px);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "Barlow Condensed", "Arial Narrow", sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--void);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
textarea {
    font-family: var(--sans);
}

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

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

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

button {
    color: inherit;
}

::selection {
    background: var(--mint);
    color: var(--ink);
}

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

.shell {
    width: min(100%, var(--shell));
    margin-inline: auto;
    padding-inline: var(--pad);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 999;
    padding: 10px 16px;
    background: var(--mint);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' 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)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-meter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--violet), var(--mint));
    pointer-events: none;
}

/* Header */
.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: rgba(7, 8, 13, 0);
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.topbar.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(7, 8, 13, 0.94);
}

@supports (backdrop-filter: blur(16px)) {
    .topbar.is-scrolled {
        background: rgba(7, 8, 13, 0.82);
        backdrop-filter: blur(18px) saturate(130%);
    }
}

.topbar-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: clamp(172px, 15vw, 220px);
    height: auto;
}

.system-status {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.status-light {
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0 rgba(131, 242, 208, 0.55);
    animation: signal-pulse 2.6s ease-out infinite;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
}

.site-nav a {
    position: relative;
    display: inline-flex;
    gap: 7px;
    align-items: baseline;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--violet);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav a span {
    color: var(--violet);
    font-family: var(--mono);
    font-size: 9px;
}

.site-nav .nav-contact {
    height: 40px;
    padding: 0 15px;
    align-items: center;
    border: 1px solid var(--violet);
    border-radius: var(--radius-sm);
    background: var(--violet);
    color: var(--white);
    box-shadow: 0 8px 26px rgba(98, 71, 220, 0.22);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-nav .nav-contact::after {
    inset: 0;
    height: auto;
    z-index: -1;
    background: var(--mint);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact.is-active {
    border-color: var(--mint);
    color: var(--ink);
}

.site-nav .nav-contact i {
    font-style: normal;
    transition: transform 0.25s var(--ease-out);
}

.site-nav .nav-contact:hover i {
    transform: translate(2px, -2px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--surface);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

/* Shared controls */
.action {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 11px;
    overflow: hidden;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.2s var(--ease-out);
}

.action::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateX(-101%);
    background: var(--white);
    transition: transform 0.45s var(--ease-snap);
}

.action:hover::before {
    transform: translateX(0);
}

.action span,
.action i {
    position: relative;
    z-index: 1;
}

.action i {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-style: normal;
    font-size: 14px;
    transition: transform 0.3s var(--ease-out);
}

.action:hover i {
    transform: translate(3px, -3px);
}

.action-primary {
    min-width: 210px;
    background: var(--mint);
    color: var(--ink);
}

.action-primary i {
    background: rgba(7, 8, 13, 0.12);
}

.action-primary::before {
    background: var(--white);
}

.action-quiet {
    border-color: rgba(139, 108, 255, 0.72);
    background: rgba(139, 108, 255, 0.13);
    color: var(--white);
}

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

.action-quiet:hover {
    color: var(--white);
    border-color: var(--violet);
}

.action-light {
    min-width: 204px;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.075);
    color: var(--white);
}

.action-light:hover {
    border-color: var(--white);
    color: var(--ink);
}

.inline-link {
    position: relative;
    color: var(--silver);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.inline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: var(--violet);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.inline-link:hover::after {
    transform: scaleX(0.35);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    padding: clamp(132px, 13vh, 170px) 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--void);
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
}

.hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(139, 108, 255, 0.12) 50%, transparent 50.1%),
        linear-gradient(transparent 49.9%, rgba(139, 108, 255, 0.12) 50%, transparent 50.1%);
}

.hero-sweep {
    position: absolute;
    inset: 0 auto 0 -16%;
    width: 16%;
    pointer-events: none;
    border-right: 1px solid rgba(131, 242, 208, 0.16);
    background: linear-gradient(90deg, transparent, rgba(131, 242, 208, 0.025));
    animation: hero-sweep 11s linear infinite;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    align-items: center;
    gap: clamp(48px, 7vw, 108px);
    padding-bottom: clamp(80px, 11vh, 130px);
}

.hero-copy {
    min-width: 0;
    padding-top: 18px;
}

.overline,
.section-kicker {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow-code,
.section-kicker span {
    color: var(--mint);
}

.overline::after {
    content: "";
    width: 58px;
    height: 1px;
    background: var(--line-strong);
}

.hero-title {
    margin: clamp(30px, 5vh, 54px) 0 34px;
    color: var(--white);
    font-size: clamp(58px, 7.2vw, 112px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.88;
}

.title-line {
    display: block;
    overflow: hidden;
    padding: 0.08em 0.04em 0.12em 0;
    margin-bottom: -0.09em;
}

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

.mobile-break {
    display: inline;
}

.title-accent {
    color: var(--violet);
    font-weight: 400;
}

.hero-lead {
    max-width: 610px;
    margin: 0 0 36px;
    color: var(--muted);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.55;
}

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

.hero-facts {
    margin: clamp(62px, 8vh, 92px) 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.hero-facts div {
    padding: 18px 18px 0 0;
}

.hero-facts div + div {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.hero-facts dt,
.hero-facts dd {
    margin: 0;
    font-family: var(--mono);
    text-transform: uppercase;
}

.hero-facts dt {
    margin-bottom: 7px;
    color: var(--violet);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.hero-facts dd {
    color: var(--silver);
    font-size: 10px;
    letter-spacing: 0.05em;
}

/* Hero orbit instrument */
.orbit-console {
    --orbit-x: 0deg;
    --orbit-y: 0deg;
    --light-x: 50%;
    --light-y: 50%;
    position: relative;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(circle at var(--light-x) var(--light-y), rgba(139, 108, 255, 0.11), transparent 34%),
        var(--void-2);
    transform: perspective(1100px) rotateY(var(--orbit-x)) rotateX(var(--orbit-y));
    transform-style: preserve-3d;
    transition: transform 0.45s var(--ease-out), background 0.3s ease;
}

.orbit-console::before,
.orbit-console::after {
    content: none;
    position: absolute;
    z-index: 3;
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.orbit-console::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--mint);
    border-left: 2px solid var(--mint);
}

.orbit-console::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--violet);
    border-bottom: 2px solid var(--violet);
}

.console-bar,
.console-footer {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 14px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.console-bar {
    border-bottom: 1px solid var(--line);
}

.console-time {
    color: var(--mint);
    font-variant-numeric: tabular-nums;
}

.console-footer {
    border-top: 1px solid var(--line);
}

.console-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.console-footer .status-light {
    width: 5px;
    height: 5px;
    flex-basis: 5px;
}

.orbit-stage {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    transform: translateZ(16px);
}

.orbit-stage::before {
    content: "";
    position: absolute;
    inset: 9%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.orbit-axis {
    position: absolute;
    background: var(--line);
}

.orbit-axis-x {
    top: 50%;
    left: 7%;
    right: 7%;
    height: 1px;
}

.orbit-axis-y {
    top: 7%;
    bottom: 7%;
    left: 50%;
    width: 1px;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(200, 203, 210, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
    content: none;
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid var(--violet);
    background: var(--void-2);
    transform: rotate(45deg);
}

.orbit-ring::before {
    top: 10%;
    left: 11%;
}

.orbit-ring::after {
    right: 8%;
    bottom: 14%;
    border-color: var(--mint);
}

.orbit-ring-outer {
    width: 79%;
    height: 79%;
    border-style: dashed;
    animation: orbit-spin 48s linear infinite;
}

.orbit-ring-mid {
    width: 59%;
    height: 59%;
    border-color: rgba(139, 108, 255, 0.34);
    animation: orbit-spin-reverse 34s linear infinite;
}

.orbit-ring-inner {
    width: 37%;
    height: 37%;
    border-color: rgba(131, 242, 208, 0.25);
}

.product-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    border-radius: 50%;
    pointer-events: none;
    transform-origin: center;
}

.product-orbit-picky {
    width: 74%;
    height: 74%;
    animation: product-orbit-clockwise 28s linear -6s infinite;
}

.product-orbit-bore {
    width: 54%;
    height: 54%;
    animation: product-orbit-counter 23s linear -11s infinite;
}

.product-satellite {
    position: absolute;
    top: -24px;
    left: 50%;
    width: 48px;
    height: 48px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 14px;
    background: rgba(7, 8, 13, 0.92);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
    pointer-events: auto;
    transform: translateX(-50%);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-orbit-picky .product-satellite {
    animation: satellite-upright-counter 28s linear -6s infinite;
}

.product-orbit-bore .product-satellite {
    animation: satellite-upright-clockwise 23s linear -11s infinite;
}

.product-satellite img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.product-satellite span {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    padding: 5px 8px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    opacity: 0;
    background: rgba(7, 8, 13, 0.94);
    color: var(--white);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translate(-50%, 4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-satellite:hover,
.product-satellite:focus-visible {
    border-color: var(--mint);
    box-shadow: 0 12px 34px rgba(131, 242, 208, 0.18);
}

.product-satellite:hover span,
.product-satellite:focus-visible span {
    opacity: 1;
    transform: translate(-50%, 0);
}

.product-orbit:has(.product-satellite:hover),
.product-orbit:has(.product-satellite:focus-visible),
.product-orbit:has(.product-satellite:hover) .product-satellite,
.product-orbit:has(.product-satellite:focus-visible) .product-satellite {
    animation-play-state: paused;
}

.brand-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 43%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) translateZ(38px);
}

.brand-mark {
    width: 100%;
    height: auto;
    transform: translateX(-5.5%);
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.48));
}

.orbit-label,
.coordinate {
    position: absolute;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 7px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.label-one { top: 13%; left: 17%; }
.label-two { top: 20%; right: 11%; }
.label-three { right: 17%; bottom: 15%; }
.coordinate-x { left: 5%; bottom: 5%; }
.coordinate-y { right: 5%; top: 5%; }

.hero-rail {
    position: relative;
    z-index: 3;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.8vw, 44px);
    padding: 0 var(--pad);
    overflow: hidden;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.hero-rail i {
    width: 4px;
    height: 4px;
    background: var(--violet);
    transform: rotate(45deg);
}

/* Proof strip */
.proof-strip {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

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

.proof-item {
    min-height: 146px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    column-gap: 20px;
    padding: 24px 32px 24px 0;
}

.proof-item + .proof-item {
    padding-left: 32px;
    border-left: 1px solid var(--line);
}

.proof-index {
    grid-row: 1 / 3;
    align-self: start;
    color: var(--violet);
    font-family: var(--mono);
    font-size: 10px;
}

.proof-item strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.proof-item small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* Section headers */
.section-dark {
    background: var(--void);
    color: var(--text);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: end;
    gap: 60px;
    margin-bottom: 76px;
}

.section-intro h2,
.about-heading h2,
.contact-copy h2 {
    margin: 20px 0 0;
    color: var(--white);
    font-size: clamp(46px, 6vw, 86px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.section-intro > p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.section-intro-dark h2 {
    color: var(--ink);
}

.section-intro-dark > p {
    color: var(--muted-dark);
}

/* Work */
.work {
    padding: clamp(110px, 12vw, 176px) 0;
}

.project {
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    min-height: 660px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--void-2);
    scroll-margin-top: 104px;
}

.project + .project {
    margin-top: 34px;
}

.project-bore {
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
}

.project-bore .project-copy {
    grid-column: 2;
    grid-row: 1;
    border-left: 1px solid var(--line);
    border-right: 0;
}

.project-bore .project-visual {
    grid-column: 1;
    grid-row: 1;
}

.project-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 5vw, 72px);
    border-right: 1px solid var(--line);
}

.project-topline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(44px, 7vw, 88px);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.live-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--mint);
}

.live-label i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
}

.project-copy h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.project-tagline {
    margin: 16px 0 26px;
    color: var(--violet);
    font-size: 18px;
    font-weight: 500;
}

.project-description {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.project-stack {
    margin: 30px 0 36px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.project-stack li {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--silver);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.project-rating {
    margin: 17px 0 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.project-rating span {
    color: var(--mint);
}

.project-visual {
    --depth-x: 0px;
    --depth-y: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    min-width: 0;
    min-height: 660px;
    display: grid;
    place-items: center;
    overflow: hidden;
    perspective: 1000px;
    background: #090b10;
}

.visual-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: translate(calc(var(--depth-x) * -0.25), calc(var(--depth-y) * -0.25));
    transition: transform 0.4s var(--ease-out);
}

.visual-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 108, 255, 0.035), transparent);
    animation: visual-scan 8s linear infinite;
}

.wheel-schematic,
.bore-schematic {
    position: absolute;
    width: min(82%, 590px);
    color: var(--silver);
    transform: translate(var(--depth-x), var(--depth-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 0.45s var(--ease-out);
}

.schematic-static,
.bore-schematic g {
    stroke: rgba(200, 203, 210, 0.22);
    stroke-width: 1;
}

.wheel-rotor {
    stroke: rgba(139, 108, 255, 0.48);
    stroke-width: 1.4;
    transform-origin: 300px 300px;
    animation: wheel-turn 36s linear infinite;
}

.wheel-marker {
    fill: var(--mint);
    opacity: 0.85;
}

.bore-depth {
    stroke: rgba(139, 108, 255, 0.46);
    stroke-width: 1.3;
    transform-origin: 300px 300px;
    animation: bore-breathe 6s ease-in-out infinite;
}

.bore-frame {
    stroke: rgba(200, 203, 210, 0.22);
}

.visual-icon {
    position: relative;
    z-index: 3;
    transform:
        translate(calc(var(--depth-x) * 0.65), calc(var(--depth-y) * 0.65))
        rotateX(var(--tilt-x))
        rotateY(var(--tilt-y))
        translateZ(48px);
    transform-style: preserve-3d;
    transition: transform 0.45s var(--ease-out);
}

.visual-icon::after {
    content: "";
    position: absolute;
    inset: 16%;
    z-index: -1;
    background: rgba(139, 108, 255, 0.25);
    filter: blur(40px);
}

.visual-icon img {
    width: clamp(130px, 14vw, 190px);
    aspect-ratio: 1;
    border-radius: 22%;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.58);
}

.visual-note,
.visual-corner {
    position: absolute;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.note-top { top: 25px; left: 28px; }
.note-bottom { right: 28px; bottom: 25px; }

.visual-corner {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--violet);
}

.corner-a { right: 26px; top: 24px; }
.corner-b { left: 26px; bottom: 24px; }

.work-tail {
    min-height: 110px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 2px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.work-tail > span:first-child {
    color: var(--violet);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.work-tail p {
    margin: 0;
    color: var(--silver);
    font-size: 15px;
}

.tail-signal {
    display: flex;
    gap: 5px;
}

.tail-signal i {
    width: 4px;
    height: 18px;
    background: var(--line-strong);
    animation: equalize 1.2s ease-in-out infinite alternate;
}

.tail-signal i:nth-child(2) { animation-delay: -0.3s; }
.tail-signal i:nth-child(3) { animation-delay: -0.7s; }
.tail-signal i:nth-child(4) { animation-delay: -0.5s; }

/* Process */
.section-paper {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 12vw, 176px) 0;
    background: var(--paper);
    color: var(--ink);
}

.paper-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(10, 11, 16, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 11, 16, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
}

.section-paper .shell {
    position: relative;
}

.section-paper .section-kicker {
    color: var(--muted-dark);
}

.section-paper .section-kicker span {
    color: var(--violet-dark);
}

.process-board {
    position: relative;
    margin-top: 84px;
    border-top: 1px solid rgba(10, 11, 16, 0.24);
}

.process-line {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    overflow: hidden;
}

.process-line span {
    display: block;
    width: 22%;
    height: 100%;
    background: var(--violet-dark);
    animation: process-track 7s ease-in-out infinite;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 190px;
    gap: clamp(24px, 5vw, 76px);
    align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid rgba(10, 11, 16, 0.18);
}

.process-step::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(139, 108, 255, 0.055);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s var(--ease-out);
}

.process-step:hover::after {
    transform: scaleY(1);
}

.process-number {
    color: var(--violet-dark);
    font-family: var(--mono);
    font-size: 11px;
}

.process-label {
    margin: 0 0 13px;
    color: var(--muted-dark);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-step h3 {
    max-width: 650px;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.process-step div > p:last-child {
    max-width: 650px;
    margin: 0;
    color: var(--muted-dark);
    font-size: 16px;
}

.process-step code {
    justify-self: end;
    padding-top: 28px;
    color: var(--violet-dark);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.09em;
}

/* About */
.about {
    padding: clamp(110px, 12vw, 176px) 0;
    border-bottom: 1px solid var(--line);
}

.about-heading {
    margin-bottom: clamp(70px, 10vw, 128px);
}

.about-heading h2 em {
    color: var(--violet);
    font-style: normal;
    font-weight: 400;
}

.about-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
}

.about-statement {
    position: sticky;
    top: 130px;
}

.about-statement p {
    margin: 0;
    color: var(--muted);
}

.about-statement .statement-lead {
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(23px, 2.6vw, 34px);
    letter-spacing: -0.025em;
    line-height: 1.32;
}

.capability-console {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--void-2);
}

.manifest-head,
.manifest-foot {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.manifest-head {
    border-bottom: 1px solid var(--line);
}

.capability-console ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.capability-console li {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(150px, 0.7fr) minmax(210px, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 94px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.capability-console li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--violet);
    transform: translateX(-101%);
    transition: transform 0.45s var(--ease-snap);
}

.capability-console li:hover::before {
    transform: translateX(0);
}

.capability-console li > * {
    position: relative;
    z-index: 1;
}

.capability-console li > span {
    color: var(--violet);
    font-family: var(--mono);
    font-size: 9px;
    transition: color 0.3s ease;
}

.capability-console li strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 500;
}

.capability-console li code {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.capability-console li:hover > span,
.capability-console li:hover code {
    color: var(--white);
}

.manifest-foot b {
    color: var(--mint);
    font-weight: 500;
}

/* Contact */
.contact {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 11vw, 156px) 0;
    background: var(--violet-dark);
    color: var(--white);
}

.contact-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: clamp(70px, 10vw, 150px);
    align-items: center;
}

.contact .section-kicker {
    color: rgba(255, 255, 255, 0.68);
}

.contact .section-kicker span {
    color: var(--mint);
}

.contact-copy h2 {
    max-width: 720px;
    margin-bottom: 30px;
    font-size: clamp(52px, 6.8vw, 98px);
}

.contact-copy > p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.contact-email {
    display: inline-flex;
    gap: 12px;
    margin-top: 46px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-family: var(--mono);
    font-size: clamp(13px, 1.4vw, 17px);
}

.contact-email i {
    font-style: normal;
    transition: transform 0.25s var(--ease-out);
}

.contact-email:hover i {
    transform: translate(3px, -3px);
}

.contact-terminal {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--void);
    box-shadow: 0 28px 80px rgba(7, 8, 13, 0.34);
}

.terminal-head {
    min-height: 50px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--silver);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.1em;
}

.terminal-dots {
    display: flex;
    gap: 5px;
}

.terminal-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line-strong);
}

.terminal-dots i:first-child { background: var(--mint); }
.terminal-dots i:last-child { background: var(--violet); }

.topic-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.topic {
    min-height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--silver);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.topic:hover {
    color: var(--white);
    border-color: var(--violet);
    background: rgba(139, 108, 255, 0.18);
}

.topic[aria-pressed="true"] {
    background: var(--violet);
    color: var(--white);
}

.contact-terminal label {
    display: block;
    margin: 20px 20px 8px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-terminal textarea {
    width: calc(100% - 40px);
    min-height: 170px;
    margin: 0 20px;
    padding: 15px;
    resize: vertical;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    outline: 0;
    background: var(--void-2);
    color: var(--white);
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.65;
    transition: border-color 0.2s ease;
}

.contact-terminal textarea:focus {
    border-color: var(--mint);
}

.contact-terminal textarea::placeholder {
    color: #686d78;
}

.terminal-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
}

.action-terminal {
    min-width: 200px;
    background: var(--mint);
    color: var(--ink);
}

.terminal-actions small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    background: #05060a;
}

.footer-inner {
    min-height: 170px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 48px;
}

.footer-brand img {
    width: 190px;
}

.footer-brand span {
    display: block;
    margin-top: 11px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a,
.footer-inner > p {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--mint);
}

/* Reveal system */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.8s var(--ease-out) var(--reveal-delay, 0ms),
        transform 0.9s var(--ease-out) var(--reveal-delay, 0ms);
}

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

.js .title-line > span {
    transform: translateY(118%);
    transition: transform 1s var(--ease-snap) var(--reveal-delay, 0ms);
}

.js .title-line.is-visible > span {
    transform: translateY(0);
}

/* Motion */
@keyframes signal-pulse {
    0% { box-shadow: 0 0 0 0 rgba(131, 242, 208, 0.5); }
    70% { box-shadow: 0 0 0 7px rgba(131, 242, 208, 0); }
    100% { box-shadow: 0 0 0 0 rgba(131, 242, 208, 0); }
}

@keyframes hero-sweep {
    from { transform: translateX(0); }
    to { transform: translateX(725%); }
}

@keyframes orbit-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes product-orbit-clockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes product-orbit-counter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes satellite-upright-counter {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(-360deg); }
}

@keyframes satellite-upright-clockwise {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes visual-scan {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@keyframes wheel-turn {
    to { transform: rotate(360deg); }
}

@keyframes bore-breathe {
    0%, 100% { transform: scale(1); opacity: 0.68; }
    50% { transform: scale(0.91); opacity: 1; }
}

@keyframes equalize {
    from { transform: scaleY(0.35); background: var(--line-strong); }
    to { transform: scaleY(1); background: var(--violet); }
}

@keyframes process-track {
    0% { transform: translateX(-105%); }
    45%, 55% { transform: translateX(180%); }
    100% { transform: translateX(470%); }
}

/* Tablet */
@media (max-width: 1100px) {
    .system-status {
        display: none;
    }

    .topbar-inner {
        grid-template-columns: 1fr auto;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 72px;
    }

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

    .hero-title {
        font-size: clamp(68px, 10vw, 106px);
    }

    .orbit-console {
        width: min(100%, 680px);
        justify-self: center;
    }

    .project,
    .project-bore {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .project-copy {
        padding: 38px;
    }

    .project-copy h3 {
        font-size: clamp(40px, 5vw, 60px);
    }

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

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

    .contact-terminal {
        max-width: 760px;
    }
}

/* Mobile navigation + layout */
@media (max-width: 760px) {
    :root {
        --pad: 20px;
    }

    body {
        font-size: 16px;
    }

    .topbar-inner {
        min-height: 72px;
    }

    .brand img {
        width: 160px;
    }

    .menu-button {
        position: relative;
        z-index: 102;
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 100px 28px 40px;
        visibility: hidden;
        opacity: 0;
        background: var(--void);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
    }

    .site-nav a {
        min-height: 72px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--line);
        color: var(--white);
        font-size: 28px;
        letter-spacing: -0.03em;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a span {
        order: 2;
        font-size: 10px;
    }

    .site-nav .nav-contact {
        height: 72px;
        padding: 0;
        border: 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--sans);
        font-size: 28px;
        letter-spacing: -0.03em;
        text-transform: none;
    }

    .menu-open {
        overflow: hidden;
    }

    .hero {
        padding-top: 112px;
    }

    .hero-grid {
        background-size: 48px 48px;
    }

    .hero-layout {
        gap: 58px;
        padding-bottom: 64px;
    }

    .overline {
        gap: 10px;
        font-size: 8px;
    }

    .overline::after {
        display: none;
    }

    .hero-title {
        margin-top: 30px;
        font-size: clamp(47px, 13.2vw, 62px);
        line-height: 0.92;
    }

    .mobile-break {
        display: block;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .action {
        width: 100%;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .hero-facts div {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-facts div + div {
        padding-left: 0;
        border-left: 0;
    }

    .hero-facts dt {
        margin: 0;
    }

    .orbit-console {
        width: 100%;
    }

    .product-satellite {
        top: -20px;
        width: 40px;
        height: 40px;
        padding: 2px;
        border-radius: 12px;
    }

    .product-satellite img {
        border-radius: 9px;
    }

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

    .hero-rail {
        justify-content: flex-start;
        overflow: hidden;
        padding-left: 20px;
    }

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

    .proof-item {
        min-height: 112px;
        padding: 22px 0;
    }

    .proof-item + .proof-item {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .section-intro h2,
    .about-heading h2 {
        font-size: clamp(42px, 13vw, 64px);
    }

    .section-intro > p {
        font-size: 16px;
    }

    .work {
        padding: 90px 0;
    }

    .project,
    .project-bore {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .project-copy,
    .project-bore .project-copy {
        grid-column: 1;
        grid-row: 1;
        padding: 32px 24px 38px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .project-visual,
    .project-bore .project-visual {
        grid-column: 1;
        grid-row: 2;
        min-height: 430px;
    }

    .project-topline {
        margin-bottom: 52px;
    }

    .project-copy h3 {
        font-size: 48px;
    }

    .project-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .project-actions .inline-link {
        width: max-content;
        margin-top: 5px;
    }

    .visual-icon img {
        width: 132px;
    }

    .note-top { top: 18px; left: 18px; }
    .note-bottom { right: 18px; bottom: 18px; }
    .corner-a { right: 18px; top: 18px; }
    .corner-b { left: 18px; bottom: 18px; }

    .work-tail {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 22px 0;
    }

    .work-tail p {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .section-paper {
        padding: 90px 0;
    }

    .process-board {
        margin-top: 54px;
    }

    .process-step {
        grid-template-columns: 42px 1fr;
        gap: 18px;
        padding: 34px 0;
    }

    .process-step code {
        display: none;
    }

    .about {
        padding: 90px 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .about-statement {
        position: static;
    }

    .capability-console li {
        grid-template-columns: 30px 1fr;
        gap: 12px;
        min-height: 94px;
    }

    .capability-console li code {
        grid-column: 2;
    }

    .contact {
        padding: 90px 0;
    }

    .contact-layout {
        gap: 58px;
    }

    .contact-copy h2 {
        font-size: clamp(46px, 14vw, 68px);
    }

    .contact-terminal {
        box-shadow: 0 20px 54px rgba(7, 8, 13, 0.3);
    }

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

    .terminal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 48px;
    }

    .footer-links {
        gap: 16px 22px;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: clamp(45px, 12.8vw, 50px);
    }

    .console-footer span:last-child {
        display: none;
    }

    .project-copy {
        padding-inline: 20px;
    }
}

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

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

    .js .reveal,
    .js .title-line > span {
        opacity: 1;
        transform: none;
    }
}
