/* VoidRunners landing — cinematic, self-contained overrides for the legacy page styles. */

:root {
    --ink: #07090b;
    --ink-raised: #0d1114;
    --ink-soft: #14191d;
    --surface: #0b0f12;
    --surface-muted: #151b20;
    --white: #f4f6f7;
    --muted: #8b939b;
    --accent: #90d0de;
    --accent-bright: #cdf3fb;
    --violet: #a78bfa;
    --violet-bright: #c4b5fd;
    --signal: #c89438;
    --line: rgba(144, 208, 222, 0.18);
    --line-dark: rgba(144, 208, 222, 0.14);
    --font-ui: "Segoe UI", Arial, sans-serif;
    --font-display: "Bahnschrift Condensed", "Arial Narrow", Impact, sans-serif;
    --page-gutter: clamp(24px, 5vw, 80px);
    --content-width: 1440px;
}

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

html {
    width: 100%;
    max-width: none;
    background: var(--ink);
    scroll-behavior: smooth;
    scroll-padding-top: 74px;
}

body {
    width: 100%;
    max-width: none;
    min-height: 100%;
    display: block;
    overflow-x: hidden;
    padding: 0;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-ui);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body * {
    user-select: auto;
    -webkit-user-select: auto;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 5px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100svh;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72) contrast(1.08) brightness(0.9);
    pointer-events: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.84) 0%, rgba(7, 7, 7, 0.46) 42%, rgba(7, 7, 7, 0.08) 72%),
        linear-gradient(180deg, rgba(5, 7, 10, 0.38) 0%, transparent 31%, rgba(5, 7, 10, 0.18) 66%, rgba(5, 7, 10, 0.92) 100%),
        radial-gradient(circle at 75% 42%, rgba(102, 78, 170, 0.16), transparent 48%);
}

.atmosphere {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    background:
        repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255, 255, 255, 0.035) 4px),
        radial-gradient(circle at 71% 39%, transparent 0 14%, rgba(167, 139, 250, 0.13) 45%, transparent 72%);
    mix-blend-mode: screen;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 14px var(--page-gutter);
    background: rgba(7, 8, 8, 0.82);
    backdrop-filter: blur(14px) saturate(0.82);
    -webkit-backdrop-filter: blur(14px) saturate(0.82);
}

.site-nav::after {
    content: "";
    position: absolute;
    right: var(--page-gutter);
    bottom: 0;
    left: var(--page-gutter);
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0 72px, rgba(255, 255, 255, 0.22) 72px, transparent 68%);
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(144, 208, 222, 0.58);
    background: var(--ink-raised);
    box-shadow: inset 0 0 0 2px rgba(7, 9, 11, 0.72), 0 0 18px rgba(167, 139, 250, 0.12);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 48px);
}

.nav-links a {
    position: relative;
    padding: 10px 0;
    color: rgba(245, 244, 238, 0.72);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    transition: color 160ms ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-download {
    justify-self: end;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 11px 16px 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    color: var(--white);
    background: rgba(8, 9, 9, 0.34);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-download:hover {
    color: var(--ink);
    border-color: var(--accent);
    background: var(--accent);
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    min-width: 0;
}

.site-main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header {
    order: 1;
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 0;
    padding: 132px var(--page-gutter) clamp(132px, 16vh, 176px);
    text-align: left;
    isolation: isolate;
}

.header::before {
    content: "VR // PLAYTEST BUILD";
    position: absolute;
    top: 112px;
    right: var(--page-gutter);
    color: rgba(245, 244, 238, 0.5);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    writing-mode: vertical-rl;
}

.header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: -1;
    height: 180px;
    background: linear-gradient(180deg, transparent, var(--ink));
    pointer-events: none;
}

.badge-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 22px;
}

.early-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(144, 208, 222, 0.68);
    border-radius: 0;
    color: var(--white);
    background: rgba(12, 12, 12, 0.54);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    backdrop-filter: blur(9px);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 4px rgba(200, 148, 56, 0.13), 0 0 14px rgba(200, 148, 56, 0.5);
    animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
    50% {
        opacity: 0.55;
        transform: scale(0.8);
    }
}

.build-label {
    color: rgba(245, 244, 238, 0.62);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.header h1 {
    max-width: min(1120px, 86vw);
    margin: 0 0 30px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(76px, 13.5vw, 210px);
    font-stretch: condensed;
    font-weight: 900;
    line-height: 0.69;
    text-transform: uppercase;
    letter-spacing: -0.065em;
    text-shadow: 0 10px 54px rgba(0, 0, 0, 0.44);
}

.header h1 span {
    display: block;
}

.header h1 span:last-child {
    margin-left: 0.14em;
    color: transparent;
    -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(196, 181, 253, 0.9);
    text-shadow: none;
}

.header > p {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.25vw, 36px);
    font-weight: 750;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.015em;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.hero-subcopy {
    max-width: 590px;
    margin: 14px 0 0;
    color: rgba(245, 244, 238, 0.7);
    font-size: 13px;
    line-height: 1.65;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-cta {
    min-width: 196px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 0;
    color: var(--white);
    background: rgba(9, 10, 10, 0.54);
    box-shadow: none;
    text-decoration: none;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(12px);
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-cta.primary {
    color: var(--ink);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
    box-shadow: 0 18px 60px -24px rgba(167, 139, 250, 0.58);
}

.hero-cta:hover {
    transform: translateY(-3px);
    border-color: var(--violet);
    background: var(--violet-bright);
    color: var(--ink);
}

.hero-telemetry {
    position: absolute;
    right: var(--page-gutter);
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(245, 244, 238, 0.58);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.hero-telemetry b {
    color: var(--accent);
    font-weight: 800;
}

.scroll-cue {
    position: absolute;
    bottom: 52px;
    left: var(--page-gutter);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(245, 244, 238, 0.58);
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.scroll-cue i {
    width: 52px;
    height: 1px;
    display: block;
    overflow: hidden;
    background: rgba(245, 244, 238, 0.3);
}

.scroll-cue i::after {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: var(--accent);
    animation: scan 2.2s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { transform: translateX(-24px); }
    50% { transform: translateX(54px); }
}

.about-section {
    order: 2;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.45fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(58px, 8vw, 132px);
    row-gap: 26px;
    margin: 0;
    padding: clamp(110px, 13vw, 190px) max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
    color: var(--white);
    background:
        linear-gradient(105deg, rgba(167, 139, 250, 0.055), transparent 35%),
        var(--ink);
    scroll-margin-top: 0;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--page-gutter);
    left: var(--page-gutter);
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--line) 90px, transparent 72%);
}

.section-label {
    margin: 0;
    padding: 0;
    color: var(--accent);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.section-label.centered {
    text-align: left;
}

.feature-strip {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 0;
    overflow: visible;
    margin: 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.feature-strip div {
    position: relative;
    flex: 1;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 12px 24px 42px;
    border-bottom: 1px solid var(--line);
    background: transparent;
    backdrop-filter: none;
}

.feature-strip div::before {
    position: absolute;
    top: 28px;
    left: 0;
    color: rgba(245, 244, 238, 0.3);
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
}

.feature-strip div:nth-child(1)::before { content: "01"; }
.feature-strip div:nth-child(2)::before { content: "02"; }
.feature-strip div:nth-child(3)::before { content: "03"; }

.feature-strip strong {
    margin: 0 0 8px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.feature-strip span {
    max-width: 300px;
    color: rgba(245, 244, 238, 0.54);
    font-size: 12px;
    line-height: 1.55;
}

.about-section > .section-label {
    grid-column: 2;
    grid-row: 1;
}

.about-card {
    grid-column: 2;
    grid-row: 2;
    max-width: 900px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.about-card h2,
.download-intro h2,
.social-section h2,
.legal-intro h2 {
    margin: 0;
    color: inherit;
    font-family: var(--font-display);
    font-size: clamp(52px, 6.5vw, 104px);
    font-weight: 850;
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -0.035em;
}

.about-card > p {
    max-width: 820px;
    margin: 38px 0 0;
    color: rgba(245, 244, 238, 0.84);
    font-size: clamp(17px, 1.55vw, 24px);
    line-height: 1.55;
}

.about-card > .about-note {
    max-width: 700px;
    margin-top: 18px;
    color: rgba(245, 244, 238, 0.5);
    font-size: 13px;
    line-height: 1.65;
}

.about-card .tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
}

.about-card .tag {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: rgba(245, 244, 238, 0.62);
    background: transparent;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.section-divider {
    display: none;
}

.download-section {
    order: 3;
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(270px, 0.8fr) minmax(440px, 1.2fr);
    column-gap: clamp(64px, 9vw, 150px);
    row-gap: 14px;
    padding: clamp(110px, 13vw, 190px) max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(144, 208, 222, 0.045), transparent 42%),
        radial-gradient(circle at 4% 100%, rgba(167, 139, 250, 0.11), transparent 36%),
        var(--surface);
    scroll-margin-top: 0;
}

.download-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: var(--page-gutter);
    left: var(--page-gutter);
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--line) 90px, transparent 72%);
}

.download-intro {
    grid-column: 1;
    grid-row: 1 / span 5;
    align-self: start;
    position: sticky;
    top: 116px;
}

.download-intro .section-label,
.download-section > .dl-group > .section-label {
    color: var(--accent);
}

.download-intro h2 {
    margin-top: 26px;
    color: var(--white);
}

.download-intro > p {
    max-width: 390px;
    margin: 30px 0 0;
    color: rgba(244, 246, 247, 0.58);
    font-size: 14px;
    line-height: 1.7;
}

.dl-group {
    grid-column: 2;
    margin: 0 0 10px;
}

.download-section > .dl-group > .section-label {
    margin: 0 0 12px;
}

.dl-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.dl-item {
    min-height: 126px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr auto;
    align-items: start;
    gap: 12px 14px;
    padding: 20px;
    border: 1px solid var(--line-dark);
    color: var(--white);
    background: var(--ink-raised);
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
    transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

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

.dl-item.featured {
    border: 1px solid var(--accent-bright);
    color: var(--ink);
    background: var(--accent-bright);
}

.dl-item:hover,
.dl-item.featured:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-4px);
}

.dl-icon {
    grid-column: 1;
    grid-row: 1;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
}

.dl-item.featured .dl-icon {
    border-color: rgba(9, 10, 10, 0.18);
    background: rgba(9, 10, 10, 0.12);
    box-shadow: none;
}

.dl-icon svg,
.dl-item.featured .dl-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.dl-info {
    grid-column: 1 / span 2;
    grid-row: 2;
    min-width: 0;
}

.dl-name {
    color: inherit;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.dl-desc {
    margin-top: 4px;
    color: currentColor;
    font-size: 10px;
    opacity: 0.58;
}

.dl-badge {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    padding: 4px 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    color: currentColor;
    background: transparent;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.08em;
}

.dl-item.featured .dl-badge {
    border-color: rgba(9, 10, 10, 0.2);
    color: var(--ink);
    background: transparent;
}

.dl-arrow {
    display: none;
}

.platform-section {
    grid-column: 2;
    margin: 0;
}

.platform-toggle {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid var(--line-dark);
    border-radius: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: none;
    backdrop-filter: none;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
    list-style: none;
}

.platform-toggle::-webkit-details-marker,
.privacy-toggle::-webkit-details-marker {
    display: none;
}

.platform-toggle:hover {
    color: var(--white);
    border-color: var(--accent);
    background: rgba(144, 208, 222, 0.065);
}

.platform-copy {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.platform-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--accent);
    background: transparent;
}

.platform-icon,
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon svg,
.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.platform-title {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.platform-desc {
    display: block;
    margin-top: 2px;
    color: rgba(244, 246, 247, 0.5);
    font-size: 10px;
}

.platform-toggle .chevron {
    color: var(--accent);
    font-size: 10px;
}

details[open] .platform-toggle .chevron,
details[open] .privacy-toggle .chevron {
    transform: rotate(90deg);
}

.platform-section .command-card {
    margin: 8px 0 0;
}

.command-card {
    padding: 18px;
    border: 0;
    border-radius: 0;
    color: var(--white);
    background: var(--ink-raised);
    box-shadow: none;
    backdrop-filter: none;
}

.command-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.command-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 740;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.command-desc,
.command-note {
    color: rgba(245, 244, 238, 0.52);
    font-size: 10px;
    line-height: 1.6;
}

.command-copy {
    min-width: 86px;
    padding: 9px 12px;
    border: 1px solid rgba(144, 208, 222, 0.72);
    border-radius: 0;
    color: var(--white);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.command-copy:hover {
    color: var(--ink);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
}

.command-copy.copied {
    color: var(--ink);
    border-color: var(--accent-bright);
    background: var(--accent-bright);
}

.command-pre {
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    color: var(--white);
    background: #080909;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    user-select: text;
}

.command-note {
    margin-top: 12px;
}

.download-footnote {
    grid-column: 2;
    margin: 12px 0 0;
    color: rgba(244, 246, 247, 0.4);
    font-size: 10px;
    line-height: 1.6;
}

.social-section {
    order: 4;
    width: 100%;
    margin: 0;
    padding: clamp(100px, 12vw, 170px) max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.14), transparent 35%),
        var(--ink-raised);
    scroll-margin-top: 0;
}

.social-section .section-label {
    margin: 0;
}

.social-section h2 {
    margin-top: 25px;
}

.social-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(52px, 6vw, 84px);
    border: 1px solid var(--line);
    background: var(--line);
}

.social-link {
    position: relative;
    min-width: 0;
    min-height: 138px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 22px;
    border: 0;
    border-radius: 0;
    color: var(--white);
    background: var(--ink-raised);
    box-shadow: none;
    backdrop-filter: none;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease;
}

.social-link::after {
    content: "↗";
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(245, 244, 238, 0.4);
    font-size: 16px;
    transition: transform 180ms ease, color 180ms ease;
}

.social-link:hover {
    color: var(--ink);
    border-color: transparent;
    background: var(--violet-bright);
    transform: none;
}

.social-link:hover::after {
    color: var(--ink);
    transform: translate(3px, -3px);
}

.social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: currentColor;
    background: transparent;
}

.social-link:hover .social-icon {
    color: var(--ink);
    background: transparent;
    border-color: rgba(9, 10, 10, 0.22);
}

.social-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-title {
    display: block;
    color: currentColor;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.social-handle {
    display: block;
    margin-top: 4px;
    color: currentColor;
    font-size: 9px;
    opacity: 0.52;
}

.legal-intro {
    order: 5;
    width: 100%;
    padding: clamp(96px, 11vw, 150px) max(var(--page-gutter), calc((100vw - var(--content-width)) / 2)) 44px;
    color: var(--white);
    background: var(--ink);
}

.legal-intro h2 {
    margin-top: 25px;
    font-size: clamp(46px, 5.5vw, 82px);
}

.privacy-section {
    order: 6;
    width: 100%;
    margin: 0;
    padding: 0 max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
    border-top: 1px solid var(--line);
    background: var(--ink);
    scroll-margin-top: 12px;
}

.privacy-toggle {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    color: rgba(245, 244, 238, 0.72);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 720;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 160ms ease;
    list-style: none;
}

.privacy-toggle:hover {
    color: var(--accent);
}

.privacy-toggle .chevron {
    order: 2;
    color: var(--accent);
    font-size: 9px;
}

.privacy-body {
    max-width: 980px;
    margin: 0 0 26px;
    padding: clamp(24px, 4vw, 50px);
    border: 1px solid var(--line);
    border-radius: 0;
    color: rgba(245, 244, 238, 0.7);
    background: var(--ink-raised);
    box-shadow: none;
    backdrop-filter: none;
    font-size: 12px;
    line-height: 1.75;
}

.privacy-body h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.privacy-body h3 {
    margin: 26px 0 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 750;
}

.privacy-body p {
    margin-bottom: 12px;
}

.privacy-body a {
    color: var(--violet-bright);
    text-decoration: none;
}

.privacy-body a:hover {
    text-decoration: underline;
}

.privacy-body ul {
    margin: 8px 0 14px 20px;
}

.publisher-card {
    order: 7;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 18px;
    margin: 0;
    padding: 58px max(var(--page-gutter), calc((100vw - var(--content-width)) / 2)) clamp(80px, 10vw, 130px);
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    color: var(--white);
    background: var(--ink);
    box-shadow: none;
    backdrop-filter: none;
}

.publisher-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(167, 139, 250, 0.68);
    border-radius: 0;
    color: var(--accent);
    background: transparent;
    font-family: var(--font-display);
    font-size: 15px;
    transform: skewX(-7deg);
}

.publisher-info .pub-name {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.publisher-info .pub-role {
    max-width: 900px;
    margin-top: 6px;
    color: rgba(245, 244, 238, 0.48);
    font-size: 10px;
    line-height: 1.65;
}

.publisher-info a,
.pub-links a {
    color: var(--violet-bright);
    text-decoration: none;
}

.pub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 28px var(--page-gutter) 36px;
    border-top: 1px solid var(--line);
    color: rgba(245, 244, 238, 0.4);
    background: #060707;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    line-height: 1.7;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer p + p {
    margin-top: 5px;
}

.site-footer a {
    color: rgba(245, 244, 238, 0.7);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .site-nav {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .header h1 {
        font-size: clamp(76px, 16vw, 168px);
    }

    .hero-telemetry {
        gap: 14px;
    }

    .about-section {
        grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
        column-gap: 48px;
    }

    .download-section {
        grid-template-columns: minmax(230px, 0.68fr) minmax(410px, 1.32fr);
        column-gap: 48px;
    }
}

@media (max-width: 820px) {
    :root {
        --page-gutter: 24px;
    }

    .site-nav {
        min-height: 66px;
        padding-block: 12px;
    }

    .site-nav::after {
        right: 24px;
        left: 24px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .header {
        min-height: 900px;
        padding-top: 118px;
        padding-bottom: 128px;
    }

    .header::before {
        display: none;
    }

    .header h1 {
        max-width: none;
        font-size: clamp(72px, 18vw, 142px);
    }

    .hero-telemetry {
        display: none;
    }

    .about-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 42px;
        padding-block: 110px;
    }

    .feature-strip {
        grid-column: 1;
        grid-row: 3;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-strip div {
        min-height: 164px;
        padding: 44px 16px 20px 0;
    }

    .about-section > .section-label {
        grid-column: 1;
        grid-row: 1;
    }

    .about-card {
        grid-column: 1;
        grid-row: 2;
    }

    .download-section {
        grid-template-columns: 1fr;
        row-gap: 14px;
        padding-block: 110px;
    }

    .download-intro {
        grid-column: 1;
        grid-row: auto;
        position: static;
        margin-bottom: 44px;
    }

    .dl-group,
    .platform-section,
    .download-footnote {
        grid-column: 1;
    }

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

@media (max-width: 540px) {
    :root {
        --page-gutter: 18px;
    }

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

    .site-background {
        object-position: 68% center;
    }

    body::before {
        background:
            linear-gradient(90deg, rgba(6, 6, 6, 0.8), rgba(6, 6, 6, 0.26) 76%),
            linear-gradient(180deg, rgba(5, 5, 5, 0.34), transparent 24%, rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.94) 100%);
    }

    .site-nav {
        min-height: 62px;
        padding: 10px 18px;
    }

    .site-nav::after {
        right: 18px;
        left: 18px;
    }

    .brand-name {
        display: none;
    }

    .nav-download {
        min-height: 38px;
        gap: 10px;
        padding: 9px 12px;
        font-size: 9px;
    }

    .header {
        min-height: 100svh;
        padding: 104px 18px 104px;
    }

    .badge-row {
        gap: 8px;
        margin-bottom: 18px;
    }

    .build-label {
        display: none;
    }

    .header h1 {
        margin-bottom: 25px;
        font-size: clamp(64px, 22vw, 106px);
        line-height: 0.71;
    }

    .header h1 span:last-child {
        margin-left: 0.06em;
    }

    .header > p {
        max-width: 370px;
        font-size: clamp(20px, 7vw, 28px);
    }

    .hero-subcopy {
        max-width: 370px;
        font-size: 11px;
    }

    .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .hero-cta {
        width: 100%;
        min-width: 0;
        min-height: 50px;
    }

    .scroll-cue {
        bottom: 30px;
        left: 18px;
    }

    .about-section,
    .download-section,
    .social-section {
        padding-block: 88px;
    }

    .about-card h2,
    .download-intro h2,
    .social-section h2,
    .legal-intro h2 {
        font-size: clamp(44px, 14vw, 66px);
    }

    .about-card > p {
        margin-top: 28px;
        font-size: 16px;
    }

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

    .feature-strip div {
        min-height: 118px;
        padding: 42px 8px 20px 42px;
    }

    .dl-list {
        grid-template-columns: 1fr;
    }

    .dl-item {
        min-height: 112px;
    }

    .platform-copy {
        align-items: flex-start;
    }

    .platform-desc {
        max-width: 250px;
        white-space: normal;
        line-height: 1.45;
    }

    .command-head {
        align-items: stretch;
        flex-direction: column;
    }

    .command-copy {
        width: 100%;
    }

    .social-row {
        grid-template-columns: 1fr;
    }

    .social-link {
        min-height: 104px;
    }

    .legal-intro {
        padding: 88px 18px 36px;
    }

    .privacy-section {
        width: 100%;
        padding-inline: 18px;
    }

    .privacy-toggle {
        min-height: 66px;
        font-size: 14px;
    }

    .privacy-body {
        padding: 22px 18px;
    }

    .publisher-card {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 48px 18px 76px;
    }

    .site-footer {
        padding: 24px 18px 30px;
    }
}

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

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