:root {
    color-scheme: dark;
    --ink: #f4f7fb;
    --muted: #9da8b8;
    --dim: #667184;
    --night: #05070a;
    --night-soft: #090d14;
    --line: rgba(255,255,255,.13);
    --line-strong: rgba(255,255,255,.24);
    --surface: rgba(10,16,27,.72);
    --surface-soft: rgba(255,255,255,.045);
    --signal: #2f6bff;
    --signal-bright: #66b9ff;
    --alert: #ff6b54;
    --safe: #79f7d4;
    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --font-display: "Onest", "Manrope", Inter, Arial, sans-serif;
    --font-body: "Manrope", Inter, Arial, sans-serif;
    --page-pad: clamp(22px, 3.1vw, 54px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--night);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.scene-stage {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgba(20,36,70,.26), transparent 34%),
        #05070a;
    pointer-events: none;
}
#signal-space {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.webgl-ready #signal-space { opacity: 1; }
.webgl-failed .scene-stage::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: min(56vw, 640px); aspect-ratio: .84;
    transform: translate(-50%,-50%);
    border: 1px solid rgba(102,185,255,.3);
    clip-path: polygon(50% 0, 94% 15%, 86% 69%, 50% 100%, 14% 69%, 6% 15%);
    box-shadow: inset 0 0 90px rgba(47,107,255,.12), 0 0 80px rgba(47,107,255,.1);
}
.scene-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 48%, transparent 0 38%, rgba(5,7,10,.28) 65%, rgba(5,7,10,.94) 100%);
}
.scene-grid {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 50%, #000 0 48%, transparent 82%);
}
.scene-noise {
    position: absolute;
    inset: -60%;
    opacity: .075;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
    animation: grain .18s steps(2) infinite;
}
@keyframes grain {
    0% { transform: translate3d(-1%, 1%, 0); }
    25% { transform: translate3d(2%, -1%, 0); }
    50% { transform: translate3d(-2%, 2%, 0); }
    75% { transform: translate3d(1%, -2%, 0); }
    100% { transform: translate3d(0, 1%, 0); }
}

.masthead {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 0 var(--page-pad);
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.is-scrolled .masthead {
    background: rgba(5,7,10,.73);
    border-color: var(--line);
    backdrop-filter: blur(18px) saturate(130%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
    position: relative;
    width: 38px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
}
.brand-mark::before,
.brand-mark i {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 0, 94% 15%, 86% 69%, 50% 100%, 14% 69%, 6% 15%);
}
.brand-mark::before { background: linear-gradient(145deg, var(--signal-bright), var(--signal)); }
.brand-mark i { inset: 3px; background: var(--night); }
.brand-mark b { position: relative; z-index: 1; font-weight: 800; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 16px; line-height: 1.05; letter-spacing: -.03em; }
.brand-copy small { color: var(--muted); font-size: 8px; letter-spacing: .16em; }
.topnav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.topnav a {
    position: relative;
    color: #c3cbd6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.topnav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: -8px;
    height: 1px;
    background: var(--signal-bright);
    transition: right .25s ease;
}
.topnav a:hover::after, .topnav a:focus-visible::after { right: 0; }
.header-contact {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.header-contact i {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    font-style: normal;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.header-contact:hover i { background: var(--signal); border-color: var(--signal); transform: rotate(45deg); }

.telemetry {
    position: fixed;
    right: var(--page-pad);
    bottom: 30px;
    z-index: 30;
    display: grid;
    gap: 12px;
    text-align: right;
    mix-blend-mode: screen;
    transition: opacity .3s ease, transform .3s ease;
}
.in-request .telemetry { opacity: 0; transform: translateY(12px); }
.telemetry div { display: grid; }
.telemetry strong {
    font-family: var(--font-display);
    font-size: 27px;
    line-height: .85;
    font-variant-numeric: tabular-nums;
}
.telemetry span { margin-top: 5px; color: var(--dim); font-size: 8px; letter-spacing: .22em; }

main { position: relative; z-index: 2; }
.scene-panel {
    position: relative;
    min-height: 118vh;
    display: flex;
    align-items: center;
    padding: 120px var(--page-pad) 80px;
}
.scene-panel::before {
    content: "";
    position: absolute;
    left: var(--page-pad);
    right: var(--page-pad);
    top: 50%;
    border-top: 1px solid rgba(255,255,255,.045);
    pointer-events: none;
}
.scene-panel--right { justify-content: flex-end; text-align: right; }
.scene-panel--center { justify-content: center; text-align: center; min-height: 128vh; }
.scene-copy {
    position: relative;
    z-index: 3;
    width: min(49vw, 690px);
    opacity: .14;
    transform: translate3d(0, 70px, 0);
    filter: blur(7px);
    transition: opacity .75s ease, transform .85s cubic-bezier(.16,1,.3,1), filter .75s ease;
}
.scene-panel:first-child .scene-copy { width: min(61vw, 800px); }
.scene-panel--right .scene-copy { transform: translate3d(70px, 0, 0); }
.scene-panel--left .scene-copy { transform: translate3d(-70px, 0, 0); }
.scene-panel--center .scene-copy { width: min(850px, 88vw); }
.scene-panel.is-active .scene-copy {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0);
}
.scene-index {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color: var(--signal-bright);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}
.scene-index::before { content: ""; width: 34px; border-top: 1px solid currentColor; }
.scene-panel--right .scene-index { flex-direction: row-reverse; }
.scene-panel h1,
.scene-panel h2,
.request-section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: .94;
    text-transform: none;
    text-wrap: balance;
}
.scene-panel h1 { font-size: clamp(58px, 6.6vw, 112px); }
.scene-panel h2 { font-size: clamp(52px, 5.8vw, 98px); }
.scene-panel h1 em,
.scene-panel h2 em,
.request-section h2 em { color: var(--signal); font-style: normal; }
.scene-copy > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: #c2cad5;
    font-size: clamp(14px, 1.22vw, 18px);
    line-height: 1.75;
    text-wrap: pretty;
}
.scene-panel--right .scene-copy > p { margin-left: auto; }
.scene-panel--center .scene-copy > p { margin-left: auto; margin-right: auto; }
.scene-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: #fff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    letter-spacing: .035em;
    text-transform: none;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
    background: var(--signal);
    border-color: var(--signal);
    box-shadow: 0 0 34px rgba(47,107,255,.2);
}
.button-primary:hover { background: #427aff; box-shadow: 0 0 44px rgba(47,107,255,.38); }
.button-large { min-height: 58px; margin-top: 36px; padding: 0 34px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; }
.text-link span { color: var(--signal-bright); font-size: 18px; }
.scroll-cue {
    position: absolute;
    left: var(--page-pad);
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dim);
    font-size: 8px;
    letter-spacing: .22em;
}
.scroll-cue i { position: relative; width: 22px; height: 38px; border: 1px solid #596271; border-radius: 14px; }
.scroll-cue i::after {
    content: "";
    position: absolute;
    left: 50%; top: 7px;
    width: 2px; height: 7px;
    margin-left: -1px;
    background: var(--signal-bright);
    animation: wheel 1.7s ease infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }

.signal-tags {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}
.signal-tags li {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: rgba(5,7,10,.55);
    color: #dce5f0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}
.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 34px;
    border: 0;
    background: transparent;
}
.metric-row div {
    display: grid;
    gap: 9px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    backdrop-filter: blur(16px);
}
.metric-row strong { color: var(--alert); font-family: var(--font-display); font-size: 16px; }
.metric-row span { color: #b6c0ce; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.comparison-line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 34px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.comparison-line i { width: 52px; border-top: 1px solid var(--line-strong); }
.comparison-line strong { color: var(--safe); }
.launch-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 820px;
    margin: 38px auto 0;
    gap: 10px;
    border: 0;
}
.launch-facts div {
    display: grid;
    gap: 8px;
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    backdrop-filter: blur(14px);
}
.launch-facts div + div { border-left: 1px solid var(--line); }
.launch-facts small { color: var(--dim); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.launch-facts strong { font-family: var(--font-display); font-size: 21px; letter-spacing: -.02em; }

.request-section {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: clamp(50px, 7vw, 120px);
    align-items: center;
    min-height: 108vh;
    padding: 140px var(--page-pad);
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 12% 20%, rgba(47,107,255,.16), transparent 30%),
        linear-gradient(180deg, rgba(5,7,10,.88), #05070a 24%);
    backdrop-filter: blur(4px);
}
.request-intro { max-width: 720px; }
.request-section h2 { font-size: clamp(54px, 6vw, 104px); }
.request-intro > p { max-width: 650px; margin: 28px 0 0; color: #b9c3d0; font-size: 16px; line-height: 1.75; }
.contact-lines { display: grid; gap: 10px; margin-top: 36px; border-top: 0; }
.contact-lines a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}
.contact-lines span { color: var(--dim); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.contact-lines strong { font-family: var(--font-display); font-size: 18px; letter-spacing: .02em; }
.request-shell {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: rgba(10,14,22,.88);
    box-shadow: 0 28px 90px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(22px);
}
.form-head {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line);
    color: var(--dim);
    font-size: 8px;
    letter-spacing: .18em;
}
.form-head i { flex: 1; border-top: 1px solid var(--line); }
.form-head b { display: flex; align-items: center; gap: 7px; color: var(--safe); font-weight: 700; }
.form-head b::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
#leadshield-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 24px; }
.bot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.field { display: grid; gap: 9px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: #8f9bab; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field input,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    background: rgba(3,5,8,.66);
    color: #fff;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.field input { min-height: 51px; padding: 0 14px; }
.field textarea { min-height: 112px; padding: 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #586273; }
.field input:focus, .field textarea:focus { border-color: var(--signal-bright); background: rgba(8,13,24,.9); box-shadow: 0 0 0 3px rgba(47,107,255,.1); }
.form-consent-shell { display: grid; gap: 7px; }
.consent-check { display: flex; align-items: flex-start; gap: 10px; color: #8995a6; font-size: 10px; line-height: 1.55; }
.consent-check input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: var(--signal); }
.consent-check a { color: #b9c8dc; text-decoration: underline; text-underline-offset: 3px; }
.consent-error { min-height: 14px; color: #ff8372; font-size: 10px; }
.button-submit { grid-column: 1 / -1; width: 100%; border: 0; }
.button-submit span { margin-left: auto; font-size: 18px; }
.form-status { grid-column: 1 / -1; min-height: 18px; color: var(--safe); font-size: 11px; }

.not-found {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px var(--page-pad) 90px;
}
.not-found > div { width: min(700px, 88vw); }
.not-found h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(68px, 9vw, 150px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .86;
    text-transform: uppercase;
}
.not-found p:not(.scene-index) { max-width: 560px; margin: 26px 0 30px; color: #b7c1cf; line-height: 1.7; }
.not-found .button { width: max-content; }

.site-footer {
    position: relative;
    z-index: 7;
    display: grid;
    grid-template-columns: .8fr 1.3fr .9fr;
    gap: 54px;
    padding: 64px var(--page-pad);
    border-top: 1px solid var(--line);
    background: #030507;
}
.footer-brand { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 6px 12px; }
.footer-brand .brand-mark { grid-row: 1 / 3; }
.footer-brand strong { font-size: 17px; }
.footer-brand p, .footer-meta p { margin: 0; color: var(--dim); font-size: 9px; line-height: 1.55; }
.site-footer nav { display: flex; flex-wrap: wrap; align-content: flex-start; gap: 9px 18px; }
.site-footer nav a, .footer-settings-button {
    padding: 0;
    border: 0;
    background: none;
    color: #8f9bac;
    font-size: 9px;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
}
.site-footer nav a:hover, .footer-settings-button:hover { color: #fff; }
.footer-meta { display: grid; align-content: start; gap: 12px; }
.footer-meta span { color: var(--signal-bright); font-family: var(--font-display); font-size: 11px; letter-spacing: .15em; }

body.legal-modal-open { overflow: hidden; }
.legal-banner {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: end center;
    padding: 18px max(18px, var(--page-pad)) max(18px, env(safe-area-inset-bottom));
    background: rgba(2, 4, 8, .58);
}
.legal-banner[hidden] { display: none !important; }
.legal-banner__panel {
    width: min(1040px, 100%);
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
    overflow: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: #0b111c;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .52);
}
.legal-banner__copy { display: grid; gap: 8px; min-width: 0; }
.legal-banner__eyebrow {
    margin: 0;
    color: var(--signal-bright);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.legal-banner__title { color: var(--ink); font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); line-height: 1.2; }
.legal-banner__lead, .legal-banner__status { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.legal-banner__copy a { color: var(--signal-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.legal-banner__actions .button { width: auto; min-height: 44px; }
.legal-banner__link {
    min-height: 44px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    color: var(--signal-bright);
    cursor: pointer;
}

@media (max-width: 980px) {
    .masthead { grid-template-columns: 1fr auto; }
    .topnav { display: none; }
    .scene-copy { width: min(70vw, 650px); }
    .request-section { grid-template-columns: 1fr; }
    .request-intro { max-width: 760px; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    :root { --page-pad: 20px; }
    .masthead { height: 68px; gap: 12px; }
    .brand-copy small { display: none; }
    .brand-mark { width: 32px; height: 36px; }
    .header-contact span { display: none; }
    .header-contact i { width: 36px; height: 36px; }
    .telemetry { right: 16px; bottom: 18px; gap: 8px; }
    .telemetry strong { font-size: 19px; }
    .scene-panel { min-height: 112vh; padding-top: 100px; padding-bottom: 100px; align-items: flex-start; }
    .scene-panel--right { text-align: left; justify-content: flex-start; }
    .scene-panel--center { align-items: center; }
    .scene-panel::before { display: none; }
    .scene-copy, .scene-panel--center .scene-copy, .scene-panel:first-child .scene-copy { width: 100%; }
    .scene-panel--right .scene-copy { transform: translate3d(-46px, 0, 0); }
    .scene-panel h1 { font-size: clamp(48px, 14.2vw, 66px); }
    .scene-panel h2 { font-size: clamp(44px, 13.2vw, 62px); }
    .scene-copy > p { max-width: 92%; margin-top: 22px; font-size: 13px; line-height: 1.65; }
    .scene-panel--right .scene-copy > p { margin-left: 0; }
    .scene-index { margin-bottom: 17px; font-size: 9px; }
    .scene-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
    .button { min-height: 48px; width: 100%; }
    .scroll-cue span { display: none; }
    .signal-tags { justify-content: flex-start; }
    .metric-row { grid-template-columns: 1fr; }
    .metric-row div { grid-template-columns: auto 1fr; align-items: center; }
    .comparison-line { justify-content: flex-start; flex-wrap: wrap; }
    .comparison-line i { width: 18px; }
    .launch-facts { grid-template-columns: 1fr; }
    .launch-facts div + div { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
    .request-section { min-height: auto; padding-top: 110px; padding-bottom: 90px; gap: 48px; }
    .request-section h2 { font-size: clamp(44px, 13vw, 62px); }
    .request-intro > p { font-size: 13px; }
    .contact-lines a { flex-direction: column; gap: 7px; }
    #leadshield-form { grid-template-columns: 1fr; padding: 18px; }
    .field-wide, .button-submit, .form-status { grid-column: 1; }
    .site-footer { grid-template-columns: 1fr; gap: 32px; padding-top: 46px; padding-bottom: 46px; }
    .footer-meta { grid-column: 1; }
    .scene-grid { background-size: 44px 44px; }
}

@supports (min-height: 100svh) {
    @media (max-width: 700px) {
        .scene-panel { min-height: 112svh; }
    }
}

@media (max-width: 700px) {
    .scene-noise { display: none; }
    .is-scrolled .masthead { background: rgba(5, 7, 10, .96); backdrop-filter: none; }
    .scene-copy { filter: none; }
    .request-shell { background: rgba(10, 16, 27, .96); backdrop-filter: none; }
    .field input, .field textarea { font-size: 16px; }
    .header-contact, .footer-settings-button { min-height: 44px; }
    .scene-panel h1 { font-size: clamp(44px, 13.5vw, 66px); overflow-wrap: anywhere; }
    .scene-panel h2, .request-section h2 { font-size: clamp(40px, 12.4vw, 62px); overflow-wrap: anywhere; }
    .scene-copy > p, .request-intro > p { max-width: 100%; font-size: 14px; }
    .legal-banner { padding: 10px 10px max(10px, env(safe-area-inset-bottom)); }
    .legal-banner__panel {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }
    .legal-banner__actions { display: grid; grid-template-columns: 1fr; justify-content: stretch; }
    .legal-banner__actions .button, .legal-banner__link { width: 100%; }
}

@media (max-width: 700px), (prefers-reduced-motion: reduce) {
    .scene-copy { filter: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .scene-copy { opacity: 1; filter: none; transform: none !important; }
    .scene-noise { display: none; }
}
