:root {
    --black: #000000;
    --near: #060606;
    --panel: #0b0b0b;
    --line: rgba(255, 255, 255, 0.14);
    --line-soft: rgba(255, 255, 255, 0.07);
    --white: #ffffff;
    --grey: #9a9a9a;
    --grey-dim: #5f5f5f;

    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --display: 'Anton', 'Arial Black', Impact, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --gut: clamp(20px, 5vw, 80px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--mono);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

::selection {
    background: var(--white);
    color: var(--black);
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

a { cursor: pointer; }

.loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--black);
    display: grid;
    place-items: center;
    transition: transform 0.9s var(--ease), opacity 0.5s ease 0.4s;
}

.loader.done {
    transform: translateY(-101%);
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    width: min(520px, 78vw);
    text-align: left;
}

.loader-label {
    font-size: 10px;
    letter-spacing: 0.4em;
    color: var(--grey-dim);
}

.loader-count {
    font-family: var(--display);
    font-size: clamp(70px, 16vw, 170px);
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin: 10px 0 18px;
}

.loader-bar {
    height: 2px;
    background: var(--line);
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--white);
}

.bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    display: block;
}

.bg-scan {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.022) 0px,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px,
            transparent 4px);
}

.bg-grain {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.13;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.05), transparent 55%),
        radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(0, 0, 0, 0.75) 85%);
}

.rail {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 44px;
    z-index: 40;
    display: grid;
    place-items: center;
    pointer-events: none;
    border-inline: 1px solid var(--line-soft);
}

.rail-left { left: 0; border-left: 0; }
.rail-right { right: 0; border-right: 0; }

.rail-text {
    writing-mode: vertical-rl;
    font-size: 9.5px;
    letter-spacing: 0.42em;
    color: var(--grey-dim);
    white-space: nowrap;
}

.rail-left .rail-text { transform: rotate(180deg); }

.header {
    position: fixed;
    top: 0;
    left: 44px;
    right: 44px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px clamp(16px, 3vw, 34px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
    background: #040404;
    border-bottom-color: var(--line-soft);
    padding-block: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-family: var(--display);
    font-size: 15px;
    letter-spacing: 0.02em;
    background: var(--white);
    color: var(--black);
    padding: 4px 7px 2px;
    line-height: 1;
}

.logo-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
}

.nav {
    display: flex;
    gap: clamp(14px, 2.4vw, 34px);
}

.nav-link {
    position: relative;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--grey);
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.nav-link i {
    font-style: normal;
    font-size: 8.5px;
    color: var(--grey-dim);
    margin-right: 6px;
    vertical-align: super;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover i,
.nav-link.active i {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: 0.24em;
    color: var(--grey);
    border: 1px solid var(--line);
    padding: 6px 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: blip 1.6s infinite;
}

@keyframes blip {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(0.7); }
}

.menu-btn {
    display: none;
    width: 34px;
    height: 34px;
    position: relative;
}

.menu-btn span {
    position: absolute;
    left: 5px;
    right: 5px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.35s var(--ease), opacity 0.2s ease;
}

.menu-btn span:nth-child(1) { top: 13px; }
.menu-btn span:nth-child(2) { top: 20px; }

.menu-btn.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

main {
    padding-inline: 44px;
}

.section {
    max-width: 1360px;
    margin-inline: auto;
    padding: clamp(90px, 13vw, 190px) var(--gut);
    border-bottom: 1px solid var(--line-soft);
}

.hero {
    min-height: 100svh;
    max-width: 1360px;
    margin-inline: auto;
    padding: 130px var(--gut) 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(24px, 4vw, 46px);
}

.meta-block {
    flex: 1 1 150px;
    padding: 12px 16px;
    border-right: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-block:last-child { border-right: 0; }

.meta-key {
    font-size: 9px;
    letter-spacing: 0.34em;
    color: var(--grey-dim);
}

.meta-val {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(58px, 15.5vw, 235px);
    line-height: 0.82;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
    transform: translateY(105%);
    animation: riseUp 1.1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) .word { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.27s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.39s; }
.hero-title .line:nth-child(3) .hero-slash { animation-delay: 0.39s; }

@keyframes riseUp {
    to { transform: translateY(0); }
}

.word.solid { color: var(--white); }

.word.hollow {
    color: transparent;
    -webkit-text-stroke: 1.6px var(--white);
    transition: color 0.5s var(--ease);
}

.word.hollow:hover { color: var(--white); }

.line-mixed {
    display: flex !important;
    align-items: baseline;
    flex-wrap: nowrap;
}

.hero-slash {
    display: inline-block;
    color: var(--grey-dim);
    transform: translateY(105%);
    animation: riseUp 1.1s var(--ease) forwards;
    padding-inline: 0.06em;
}

.hero-foot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(24px, 4vw, 60px);
    align-items: end;
    margin-top: clamp(28px, 4vw, 52px);
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.hero-desc {
    max-width: 56ch;
    color: var(--grey);
    font-size: clamp(12.5px, 1.05vw, 14px);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.24em;
    border: 1px solid var(--white);
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(101%);
    transition: transform 0.45s var(--ease);
    z-index: -1;
}

.btn-fill {
    background: var(--white);
    color: var(--black);
}

.btn-fill::before {
    background: var(--black);
}

.btn-fill:hover { color: var(--white); }

.btn-ghost { color: var(--white); }

.btn-ghost:hover { color: var(--black); }

.btn:hover::before { transform: translateY(0); }

.scroll-hint {
    position: absolute;
    bottom: 26px;
    right: var(--gut);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    letter-spacing: 0.36em;
    color: var(--grey-dim);
}

.scroll-hint i {
    display: block;
    width: 46px;
    height: 1px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}

.scroll-hint i::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    animation: sweep 1.8s var(--ease) infinite;
}

@keyframes sweep {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}

.marquee {
    border-block: 1px solid var(--line);
    background: var(--white);
    color: var(--black);
    overflow: hidden;
    padding: 11px 0;
    margin-inline: -44px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: slide 34s linear infinite;
}

.marquee-track span {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding-right: 22px;
    display: flex;
    align-items: center;
}

.marquee-track b {
    font-size: 9px;
    padding-inline: 20px;
    opacity: 0.5;
    position: relative;
    top: -2px;
}

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

.sec-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 6px 22px;
    margin-bottom: clamp(38px, 6vw, 78px);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.sec-num {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--grey-dim);
    padding-bottom: 6px;
}

.sec-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(42px, 8.5vw, 118px);
    line-height: 0.85;
    letter-spacing: -0.015em;
}

.sec-title .ch {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.7s var(--ease), opacity 0.6s ease;
}

.sec-title.in .ch {
    transform: translateY(0);
    opacity: 1;
}

.sec-tag {
    grid-column: 2;
    font-size: 9.5px;
    letter-spacing: 0.32em;
    color: var(--grey-dim);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s ease, transform 0.9s var(--ease);
}

[data-reveal].in {
    opacity: 1;
    transform: none;
}

.index-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: clamp(30px, 6vw, 90px);
}

.index-col p {
    color: var(--grey);
    font-size: 13.5px;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 62ch;
}

.index-col p.lead {
    color: var(--white);
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.65;
    border-left: 2px solid var(--white);
    padding-left: 20px;
}

.index-col-side {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.counter {
    border-top: 1px solid var(--line);
    padding: 20px 0 16px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 10px;
    transition: padding-left 0.4s var(--ease), background 0.4s ease;
}

.counter:last-child { border-bottom: 1px solid var(--line); }

.counter:hover {
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.counter-num,
.counter-plus {
    font-family: var(--display);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 0.9;
}

.counter-plus { color: var(--grey-dim); }

.counter-label {
    flex-basis: 100%;
    font-size: 9.5px;
    letter-spacing: 0.3em;
    color: var(--grey-dim);
    margin-top: 6px;
}

.feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 4vw, 60px);
    border: 1px solid var(--line);
    padding: clamp(24px, 4vw, 56px);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), transparent 55%);
}

.feature-tag {
    position: absolute;
    top: -1px;
    left: -1px;
    background: var(--white);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    padding: 6px 14px;
}

.feature-media {
    display: grid;
    place-items: center;
    border: 1px solid var(--line-soft);
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 9px);
    pointer-events: none;
}

.feature-logo {
    width: 100%;
    max-width: 260px;
    filter: grayscale(1) contrast(1.15) brightness(1.1);
    transition: transform 0.6s var(--ease), filter 0.5s ease;
}

.feature:hover .feature-logo {
    transform: scale(1.05);
    filter: grayscale(1) contrast(1.35) brightness(1.25);
}

.feature-title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(34px, 5.4vw, 74px);
    line-height: 0.86;
    letter-spacing: -0.01em;
}

.feature-sub {
    font-size: 9.5px;
    letter-spacing: 0.3em;
    color: var(--grey-dim);
    margin: 14px 0 18px;
}

.feature-desc {
    color: var(--grey);
    font-size: 13.5px;
    line-height: 1.85;
    max-width: 58ch;
}

.feature-list {
    list-style: none;
    margin: 24px 0 28px;
    border-top: 1px solid var(--line-soft);
}

.feature-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 12.5px;
    color: var(--grey);
    transition: color 0.3s ease, padding-left 0.35s var(--ease);
}

.feature-list li:hover {
    color: var(--white);
    padding-left: 8px;
}

.feature-list li span {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--grey-dim);
}

.sub-head {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.36em;
    color: var(--grey-dim);
    margin: clamp(50px, 7vw, 90px) 0 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

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

.row {
    position: relative;
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
}

.row:last-child { border-bottom: 0; }

.row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.55s var(--ease);
    z-index: 0;
}

.row:hover::before { transform: translateY(0); }

.row.open::before { transform: translateY(0); }

.row-head {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: clamp(14px, 3vw, 40px);
    padding: clamp(20px, 3vw, 34px) clamp(4px, 1.4vw, 18px);
    text-align: left;
    transition: color 0.4s var(--ease), padding-left 0.5s var(--ease);
}

.row:hover .row-head,
.row.open .row-head {
    color: var(--black);
    padding-left: clamp(12px, 2.2vw, 30px);
}

.row-num {
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--grey-dim);
    transition: color 0.4s ease;
}

.row:hover .row-num,
.row.open .row-num { color: rgba(0, 0, 0, 0.45); }

.row-name {
    font-family: var(--display);
    font-size: clamp(26px, 4.6vw, 62px);
    line-height: 0.9;
    letter-spacing: -0.01em;
}

.row-role {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.26em;
    color: var(--grey);
    border: 1px solid var(--line);
    padding: 6px 12px;
    white-space: nowrap;
    transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.row:hover .row-role,
.row.open .row-role {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.row-plus {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.row-plus::before,
.row-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.45s var(--ease);
}

.row-plus::after { transform: rotate(90deg); }

.row.open .row-plus::after { transform: rotate(0deg); }

.row-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s var(--ease);
}

.row.open .row-body { grid-template-rows: 1fr; }

.row-inner {
    overflow: hidden;
    color: var(--black);
}

.row.open .row-inner {
    padding: 0 clamp(12px, 2.2vw, 30px) clamp(24px, 3vw, 40px);
}

.row-inner > p {
    max-width: 78ch;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.72);
    margin-bottom: 20px;
}

.row-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 0 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.row-points li {
    font-size: 12.5px;
    padding: 9px 0 9px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    color: rgba(0, 0, 0, 0.82);
}

.row-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 9px;
    height: 1.5px;
    background: var(--black);
}

.row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 22px;
}

.row-tags span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    color: rgba(0, 0, 0, 0.8);
}

.stack-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: clamp(30px, 5vw, 70px);
}

.stack-legend {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.32em;
    color: var(--grey-dim);
    margin-bottom: 12px;
}

.meters {
    list-style: none;
    border-top: 1px solid var(--line);
}

.meters li {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.35s ease, padding-inline 0.4s var(--ease);
}

.meters li:hover {
    background: rgba(255, 255, 255, 0.035);
    padding-inline: 10px;
}

.m-name {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.m-track {
    position: relative;
    height: 10px;
    background-image: repeating-linear-gradient(to right, var(--line) 0 1px, transparent 1px 7px);
}

.m-track::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-image: repeating-linear-gradient(to right, var(--white) 0 1px, transparent 1px 7px);
    transition: width 1.4s var(--ease);
}

.meters li.in .m-track::after { width: var(--w); }

.m-val {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    color: var(--grey-dim);
    min-width: 34px;
    text-align: right;
}

.meters li.in .m-val { color: var(--white); }

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: clamp(36px, 5vw, 60px);
}

.chips span {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    border: 1px solid var(--line);
    padding: 8px 14px;
    color: var(--grey);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.chips span:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.contact-lead {
    font-size: clamp(15px, 2vw, 24px);
    line-height: 1.6;
    max-width: 46ch;
    margin-bottom: clamp(34px, 5vw, 60px);
    color: var(--white);
}

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

.c-item {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(140px, 0.5fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: clamp(20px, 2.8vw, 32px) clamp(4px, 1.4vw, 16px);
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    overflow: hidden;
    transition: padding-left 0.5s var(--ease), color 0.4s ease;
}

.c-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateX(-101%);
    transition: transform 0.55s var(--ease);
    z-index: 0;
}

.c-item:hover::before { transform: translateX(0); }

.c-item:hover {
    color: var(--black);
    padding-left: clamp(14px, 2.4vw, 32px);
}

.c-item > * {
    position: relative;
    z-index: 1;
}

.c-key {
    font-size: 9.5px;
    letter-spacing: 0.3em;
    color: var(--grey-dim);
    transition: color 0.4s ease;
}

.c-item:hover .c-key { color: rgba(0, 0, 0, 0.5); }

.c-val {
    font-family: var(--display);
    font-size: clamp(20px, 3.2vw, 40px);
    line-height: 1;
    letter-spacing: 0.005em;
}

.c-arrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.footer {
    padding-inline: 44px;
    overflow: hidden;
}

.footer-big {
    font-family: var(--display);
    font-size: clamp(60px, 19vw, 300px);
    line-height: 0.78;
    letter-spacing: -0.03em;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
    padding: clamp(40px, 6vw, 90px) 0 clamp(16px, 2vw, 30px);
    user-select: none;
    white-space: nowrap;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding: 20px clamp(8px, 2vw, 24px) 30px;
    font-size: 9.5px;
    letter-spacing: 0.26em;
    color: var(--grey-dim);
}

.footer-top {
    color: var(--grey);
    transition: color 0.3s ease;
}

.footer-top:hover { color: var(--white); }

@media (max-width: 1024px) {
    .index-grid { grid-template-columns: 1fr; }
    .feature { grid-template-columns: 1fr; }
    .hero-foot { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 860px) {
    .rail { display: none; }
    .bg-grain { display: none; }

    .header { left: 0; right: 0; }
    main, .footer { padding-inline: 0; }
    .marquee { margin-inline: 0; }

    .menu-btn { display: block; }
    .header-status { display: none; }

    .nav {
        position: fixed;
        inset: 0;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        padding: 0 var(--gut);
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.7s var(--ease);
    }

    .nav.open { clip-path: inset(0 0 0 0); }

    .nav-link {
        font-family: var(--display);
        font-size: clamp(34px, 11vw, 62px);
        letter-spacing: 0;
        color: var(--white);
        padding: 10px 0;
    }

    .nav-link i {
        font-size: 11px;
        vertical-align: top;
        margin-right: 14px;
    }

    .row-head {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            "num  name plus"
            ".    role role";
        row-gap: 10px;
        align-items: center;
    }

    .row-num { grid-area: num; align-self: start; padding-top: 6px; }
    .row-name { grid-area: name; }
    .row-plus { grid-area: plus; }

    .row-role {
        grid-area: role;
        justify-self: start;
    }

    .c-item {
        grid-template-columns: 1fr auto;
        row-gap: 6px;
    }

    .c-key { grid-column: 1 / 3; }
}

@media (max-width: 520px) {
    .hero-title { font-size: clamp(46px, 17vw, 90px); }
    .word.hollow { -webkit-text-stroke-width: 1px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .meters li {
        grid-template-columns: 1fr auto;
        row-gap: 8px;
    }
    .m-track { grid-column: 1 / 3; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-title .word, .hero-slash { transform: none; }
}
