:root {
    --ink: #090909;
    --ink-soft: #151515;
    --paper: #f0eee6;
    --paper-bright: #f9f8f3;
    --signal: #fff200;
    --white: #fff;
    --line-dark: rgba(9, 9, 9, .16);
    --line-light: rgba(255, 255, 255, .18);
    --muted: #77776f;
    --header-h: 82px;
    --shell: min(1480px, calc(100vw - 48px));
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-snap: cubic-bezier(.77, 0, .18, 1);
    --font-display: "Sora", "Arial Black", sans-serif;
    --font-body: "Manrope", Arial, sans-serif;
    --font-mono: "DM Mono", monospace;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
select,
input {
    font: inherit;
}

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

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--signal);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

:focus-visible {
    outline: 3px solid var(--signal);
    outline-offset: 4px;
}

.scroll-meter {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.scroll-meter span {
    display: block;
    width: var(--scroll-progress, 0%);
    height: 100%;
    background: var(--signal);
    box-shadow: 0 0 18px rgba(255, 242, 0, .7);
}

.site-shell {
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
}

.utility-bar {
    width: var(--shell);
    height: 38px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.utility-bar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.utility-bar strong {
    color: var(--white);
    font-weight: 500;
}

.utility-bar a {
    transition: color .2s ease;
}

.utility-bar a:hover {
    color: var(--signal);
}

.status-dot,
.console-live i {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: #72ff8e;
    box-shadow: 0 0 0 4px rgba(114, 255, 142, .12);
    animation: statusPulse 2.2s ease-in-out infinite;
}

@keyframes statusPulse {
    50% { opacity: .45; box-shadow: 0 0 0 7px rgba(114, 255, 142, 0); }
}

.site-header {
    position: relative;
    z-index: 2;
    width: var(--shell);
    height: var(--header-h);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(18px, 2.5vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    transition: background .35s ease, width .35s var(--ease-out), padding .35s var(--ease-out), transform .35s var(--ease-out);
}

.site-header.is-stuck {
    position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    height: 70px;
    padding: 0 max(24px, calc((100vw - 1480px) / 2));
    background: rgba(9, 9, 9, .86);
    border-color: rgba(255, 255, 255, .12);
    backdrop-filter: blur(22px) saturate(1.3);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.brand-mark {
    position: relative;
    width: 31px;
    height: 31px;
    display: block;
    background: var(--signal);
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
    content: "";
    position: absolute;
    display: block;
    background: var(--ink);
    transform: skewX(-18deg);
}

.brand-mark::before {
    width: 6px;
    height: 23px;
    left: 7px;
    top: 4px;
}

.brand-mark::after {
    width: 6px;
    height: 23px;
    left: 18px;
    top: 4px;
}

.brand-mark i:first-child {
    width: 17px;
    height: 5px;
    left: 7px;
    top: 4px;
}

.brand-mark i:last-child {
    width: 17px;
    height: 5px;
    left: 7px;
    bottom: 4px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: 1;
}

.brand-name span {
    color: var(--signal);
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.35vw, 25px);
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.desktop-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-group {
    position: static;
}

.nav-group > a {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-group > a > span {
    color: var(--signal);
}

.mega-menu {
    position: absolute;
    z-index: 12;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(245px, .72fr) 2fr;
    color: var(--white);
    background: #101010;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .22s ease, transform .35s var(--ease-out), visibility .22s;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__intro {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
    background: var(--signal);
}

.mega-menu__intro span,
.mega-menu__intro a,
.mega-menu__links a span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.mega-menu__intro strong {
    margin: 30px 0;
    font-family: var(--font-display);
    font-size: clamp(27px, 2.3vw, 42px);
    letter-spacing: -.065em;
    line-height: .98;
}

.mega-menu__intro a {
    width: max-content;
    font-weight: 600;
}

.mega-menu__intro a::after,
.mega-menu__links a::after {
    display: none;
}

.mega-menu__links {
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu__links a {
    min-height: 53px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
    transition: background .2s ease;
}

.mega-menu__links a:nth-last-child(-n+2) {
    border-bottom: 0;
}

.mega-menu__links a:hover,
.mega-menu__links a:focus-visible {
    background: rgba(255, 255, 255, .06);
}

.mega-menu__links a span,
.mega-menu__links a i {
    color: var(--signal);
}

.mega-menu__links a i {
    font-style: normal;
}

.button {
    position: relative;
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid transparent;
    background: none;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    transition: transform .35s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease;
}

.button span {
    font-size: 17px;
    transition: transform .35s var(--ease-out);
}

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

.button:hover span {
    transform: translate(3px, -3px);
}

.button--signal {
    background: var(--signal);
    color: var(--ink);
}

.button--signal:hover {
    background: var(--white);
}

.button--ink {
    background: var(--ink);
    color: var(--white);
}

.button--ink:hover {
    background: #252525;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .48);
    backdrop-filter: blur(10px);
}

.button--ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button--full {
    width: 100%;
}

.header-cta {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .4);
}

.header-cta:hover {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.menu-toggle i {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease;
}

.menu-toggle i:last-child {
    transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-child {
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 120px 24px 36px;
    display: grid;
    align-content: center;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-24px);
    transition: opacity .35s ease, visibility .35s ease, transform .5s var(--ease-out);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav nav {
    border-top: 1px solid var(--line-light);
}

.mobile-nav nav a {
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--font-display);
    font-size: clamp(24px, 8vw, 38px);
    font-weight: 700;
    letter-spacing: -.05em;
}

.mobile-nav nav span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--signal);
}

.mobile-nav > p {
    max-width: 430px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .55);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    height: max(780px, 100svh);
    min-height: 780px;
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
    isolation: isolate;
}

.hero::after {
    content: none;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--ink);
    transition: opacity .85s ease, visibility .85s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .83) 39%, rgba(5, 5, 5, .24) 70%, rgba(5, 5, 5, .48) 100%);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 45%, rgba(0, 0, 0, .82));
}

.hero-slide--light::before {
    background: linear-gradient(90deg, rgba(239, 237, 229, .98) 0%, rgba(239, 237, 229, .92) 43%, rgba(239, 237, 229, .12) 72%);
    filter: saturate(.65) contrast(1.05);
}

.hero-slide--light::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 42%, rgba(0, 0, 0, .66));
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slide.is-active::before {
    transform: none;
}

.hero-slide__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    filter: saturate(.82) contrast(1.06);
    transition: transform 7s ease-out, filter 1s ease;
    pointer-events: none;
}

.hero-slide.is-active .hero-slide__visual { transform: scale(1); }

.hero-slide__media-placeholder {
    position: absolute;
    inset: 0;
    z-index: 4;
    padding: clamp(135px, 12vw, 210px) var(--page-x) 170px 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background:
        linear-gradient(90deg, rgba(8,8,8,.96), rgba(8,8,8,.72) 48%, rgba(23,23,23,.88)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 64px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 64px);
    color: var(--white);
    pointer-events: none;
}
.hero-slide__media-placeholder::before { content: "+"; margin-bottom: 20px; color: var(--signal); font-family: var(--font-mono); font-size: 54px; line-height: 1; }
.hero-slide__media-placeholder span,
.hero-slide__media-placeholder small { max-width: 520px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .07em; overflow-wrap: anywhere; }
.hero-slide__media-placeholder span { color: var(--signal); }
.hero-slide__media-placeholder strong { margin: 8px 0 12px; font-family: var(--font-display); font-size: clamp(25px, 3vw, 46px); }
.hero-slide--media-missing.hero-slide--light { color: var(--white); }
.hero-slide--media-missing.hero-slide--light .eyebrow,
.hero-slide--media-missing.hero-slide--light .hero-copy { color: rgba(255,255,255,.74); }
.hero-slide--media-missing.hero-slide--light .hero-content .hero-title em { color: var(--signal); text-decoration: none; }
.hero-slide--media-missing.hero-slide--light .button--ghost { color: var(--white); border-color: rgba(255,255,255,.48); }

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-slide--light {
    color: var(--ink);
}

.hero-slide--light .hero-grid {
    background-image: linear-gradient(rgba(0, 0, 0, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .13) 1px, transparent 1px);
}

.hero-content {
    position: relative;
    z-index: 5;
    width: var(--shell);
    height: 100%;
    margin: 0 auto;
    padding: clamp(190px, 22vh, 250px) 0 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    padding: 6px 8px;
    background: var(--signal);
    color: var(--ink);
}

.eyebrow--dark {
    color: rgba(9, 9, 9, .56);
}

.eyebrow--signal {
    color: rgba(9, 9, 9, .62);
}

.eyebrow--signal > span {
    background: var(--ink);
    color: var(--signal);
}

.hero-slide--light .eyebrow {
    color: rgba(9, 9, 9, .62);
}

.hero-content .hero-title,
.section-heading h2,
.journey-heading h2,
.coverage-copy h2,
.quote-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(54px, 6.6vw, 108px);
    font-weight: 700;
    letter-spacing: -.075em;
    line-height: .92;
}

.hero-content .hero-title {
    max-width: 1020px;
}

.hero-content .hero-title em,
.section-heading h2 em,
.journey-heading h2 em,
.coverage-copy h2 em,
.quote-copy h2 em {
    color: var(--signal);
    font-style: normal;
}

.hero-slide--light .hero-content .hero-title em {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--signal);
    text-decoration-thickness: .12em;
    text-underline-offset: .08em;
}

.hero-copy {
    max-width: 630px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.65;
}

.hero-slide--light .hero-copy {
    color: rgba(9, 9, 9, .72);
}

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

.hero-slide--light .button--ghost {
    color: var(--ink);
    border-color: rgba(9, 9, 9, .42);
}

.hero-slide--light .button--ghost:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.hero-content > * {
    opacity: 0;
    transform: translateY(34px);
}

.hero-slide.is-active .hero-content > * {
    animation: heroReveal .85s var(--ease-out) forwards;
}

.hero-slide.is-active .hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-slide.is-active .hero-content > :nth-child(4) { animation-delay: .24s; }

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    top: 154px;
    z-index: 6;
    width: 250px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(9, 9, 9, .2);
    backdrop-filter: blur(18px);
    color: var(--white);
    opacity: 0;
    transform: translateX(20px);
}

.hero-slide.is-active .hero-tag {
    animation: tagReveal .7s var(--ease-out) .55s forwards;
}

@keyframes tagReveal {
    to { opacity: 1; transform: translateX(0); }
}

.hero-tag span,
.hero-tag strong {
    display: block;
}

.hero-tag span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .58);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-tag strong {
    font-size: 12px;
}

.hero-console {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    bottom: 126px;
    z-index: 25;
    width: min(340px, 27vw);
    background: rgba(9, 9, 9, .8);
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--white);
    backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.hero-console__head,
.hero-console__foot {
    min-height: 38px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.hero-console__head {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.console-live {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #72ff8e;
}

.console-live i {
    width: 5px;
    height: 5px;
}

.hero-console__body {
    padding: 8px 14px;
}

.hero-console__body > div {
    padding: 9px 0;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.hero-console__body > div:last-child {
    border: 0;
}

.hero-console__body > div > span,
.hero-console__body em {
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    color: var(--signal);
}

.hero-console__body p {
    margin: 0;
    line-height: 1.25;
}

.hero-console__body strong,
.hero-console__body small {
    display: block;
}

.hero-console__body strong {
    font-size: 11px;
}

.hero-console__body small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .5);
    font-family: var(--font-mono);
    font-size: 10px;
}

.hero-console__foot {
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .54);
}

.hero-console__foot i {
    position: relative;
    flex: 1;
    height: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, .13);
}

.hero-console__foot i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--signal);
    transform: translateX(-100%);
    animation: consoleScan 2.8s ease-in-out infinite;
}

@keyframes consoleScan {
    60%, 100% { transform: translateX(100%); }
}

.hero-controls {
    position: absolute;
    left: max(24px, calc((100vw - 1480px) / 2));
    bottom: 108px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
}

.round-control,
.fleet-nav button {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: rgba(9, 9, 9, .24);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}

.round-control:hover,
.fleet-nav button:hover {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
    transform: scale(1.07);
}

.hero-tabs {
    height: 45px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .38);
    background: rgba(9, 9, 9, .24);
    backdrop-filter: blur(10px);
}

.hero-tab {
    width: 42px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, .58);
    cursor: pointer;
}

.hero-tab span {
    font-family: var(--font-mono);
    font-size: 10px;
}

.hero-tab i {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .25);
}

.hero-tab i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--signal);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-tab.is-active {
    color: var(--white);
}

.hero-tab.is-active i::after {
    transform: scaleX(1);
}

@keyframes tabProgress {
    to { transform: scaleX(1); }
}

.hero-facts {
    position: absolute;
    inset: auto 0 0;
    z-index: 30;
    min-height: 92px;
    padding: 0 max(24px, calc((100vw - 1480px) / 2));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .22);
    background: rgba(9, 9, 9, .62);
    color: var(--white);
    backdrop-filter: blur(16px);
}

.hero-facts > div {
    padding: 19px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.hero-facts > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-facts span {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .48);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.hero-facts strong {
    font-size: 13px;
}

.signal-strip {
    height: 46px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--signal);
    color: var(--ink);
}

.signal-strip__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.signal-strip span {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.signal-strip i {
    font-style: normal;
}

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

/* Shared sections */
.section {
    position: relative;
    padding: clamp(92px, 10vw, 160px) max(24px, calc((100vw - 1480px) / 2));
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .34;
    pointer-events: none;
    background-image: radial-gradient(rgba(9, 9, 9, .12) .7px, transparent .7px);
    background-size: 9px 9px;
    mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

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

.section--dark,
.section--ink {
    background: var(--ink);
    color: var(--white);
}

.section--dark::before,
.section--ink::before {
    background-image: radial-gradient(rgba(255, 255, 255, .12) .7px, transparent .7px);
}

.section--ink {
    background: #121212;
}

.section--signal {
    background: var(--signal);
    color: var(--ink);
}

.section-index {
    position: absolute;
    right: max(24px, calc((100vw - 1480px) / 2));
    top: 28px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    opacity: .48;
}

.section-heading--split {
    margin-bottom: clamp(48px, 7vw, 96px);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    align-items: end;
    gap: 8vw;
}

.section-heading h2,
.journey-heading h2,
.coverage-copy h2,
.quote-copy h2 {
    font-size: clamp(44px, 5.5vw, 82px);
}

.section-heading--split > p {
    max-width: 460px;
    margin: 0 0 6px;
    color: inherit;
    opacity: .62;
    font-size: 15px;
}

.section-heading .eyebrow,
.journey-heading .eyebrow,
.coverage-copy .eyebrow,
.quote-copy .eyebrow {
    margin-bottom: 24px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .9s var(--ease-out);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Journey */
.journey {
    background: var(--paper);
}

.journey-heading {
    width: min(100%, 980px);
    margin-bottom: clamp(54px, 8vw, 110px);
}

.journey-heading h2 em,
.coverage-copy h2 em {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
}

.journey-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(300px, .72fr) minmax(0, 1.25fr);
    border-top: 1px solid var(--ink);
}

.journey-year {
    min-width: 0;
    min-height: 650px;
    padding: 36px clamp(18px, 2vw, 32px) 38px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-right: 1px solid var(--line-dark);
}

.journey-media {
    min-height: 650px;
    margin: 0;
    padding: 34px clamp(28px, 2.4vw, 44px) 35px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-dark);
}

.journey-media__visual {
    position: relative;
    min-height: 450px;
    flex: 1;
    overflow: hidden;
    background: #d8d8d3;
}

.journey-media__visual > img,
.journey-media__visual > .home-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.journey-media__visual > img {
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.04);
    transition: filter .6s ease, transform 1.1s var(--ease-out);
}

.journey-media:hover .journey-media__visual > img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.025);
}

.journey-media figcaption {
    margin-top: 14px;
    padding: 14px 16px 15px;
    color: var(--white);
    background: var(--ink);
}

.journey-media figcaption span {
    display: block;
    margin-bottom: 7px;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.journey-media figcaption strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.journey-media > small {
    margin-top: 13px;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .04em;
}

.journey-year > span,
.journey-year > p {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journey-year > strong {
    font-family: var(--font-display);
    font-size: clamp(88px, 9.2vw, 148px);
    font-weight: 700;
    letter-spacing: -.11em;
    line-height: .75;
    white-space: nowrap;
}

.journey-year > strong em {
    color: var(--signal);
    font-style: normal;
    -webkit-text-stroke: 1px var(--ink);
}

.journey-year > p {
    margin: 0;
    line-height: 1.6;
}

.journey-story {
    padding: 50px 0 50px clamp(52px, 5.5vw, 96px);
}

.journey-story .lead {
    max-width: 830px;
    margin: 0 0 58px;
    font-size: clamp(23px, 2.5vw, 38px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.25;
}

.journey-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.journey-columns p {
    margin: 0;
    color: rgba(9, 9, 9, .62);
    font-size: 14px;
}

.text-link {
    width: max-content;
    margin-top: 52px;
    padding-bottom: 8px;
    display: flex;
    gap: 38px;
    border-bottom: 1px solid var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.text-link span {
    transition: transform .3s var(--ease-out);
}

.text-link:hover span {
    transform: translate(4px, -4px);
}

.journey-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.journey-rail > div {
    min-height: 138px;
    padding: 25px 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-dark);
    transition: background .35s ease, color .35s ease;
}

.journey-rail > div:last-child {
    border-right: 0;
}

.journey-rail > div:hover {
    background: var(--ink);
    color: var(--white);
}

.journey-rail span {
    margin-bottom: auto;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
}

.journey-rail strong {
    font-size: 13px;
}

.journey-rail small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 320px;
    gap: 1px;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .22);
}

.service-card {
    position: relative;
    min-width: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}

.service-card--wide {
    grid-column: span 2;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: opacity .55s ease, filter .55s ease, transform .9s var(--ease-out);
    pointer-events: none;
}

.service-card::before {
    z-index: 0;
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    opacity: .58;
    filter: grayscale(.22) saturate(.9) contrast(1.04);
    transform: scale(1.05);
}

.service-card__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: .62;
    filter: grayscale(.22) saturate(.92) contrast(1.04);
    transform: scale(1.05);
    transition: opacity .55s ease, filter .55s ease, transform .9s var(--ease-out);
    pointer-events: none;
}

.service-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: .62;
    filter: grayscale(.16) saturate(.96) contrast(1.04);
    transform: scale(1.05);
    transition: opacity .55s ease, filter .55s ease, transform .9s var(--ease-out);
    pointer-events: none;
}

.service-card--has-video::before {
    opacity: 0;
}

.service-card::after {
    z-index: 1;
    background: linear-gradient(180deg, rgba(9, 9, 9, .04), rgba(9, 9, 9, .24) 42%, rgba(9, 9, 9, .78));
}

.service-card:hover::before {
    opacity: .74;
    filter: grayscale(0) saturate(1.02) contrast(1.02);
    transform: scale(1);
}

.service-card:hover .service-card__video {
    opacity: .78;
    filter: grayscale(0) saturate(1.02) contrast(1.02);
    transform: scale(1);
}

.service-card:hover .service-card__image {
    opacity: .78;
    filter: grayscale(0) saturate(1.04) contrast(1.02);
    transform: scale(1);
}

.service-card__number,
.service-card__code {
    position: absolute;
    z-index: 2;
    top: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.service-card__number {
    left: 26px;
    color: rgba(255, 255, 255, .52);
}

.service-card__code {
    right: 26px;
    padding: 3px 6px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .62);
}

.service-card__body {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    margin-top: auto;
    transform: translateY(30px);
    transition: transform .55s var(--ease-out);
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.2vw, 35px);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.service-card p {
    max-width: 460px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.55;
    opacity: 0;
    transition: opacity .4s ease;
}

.service-card__arrow {
    position: absolute;
    z-index: 2;
    right: 25px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 19px;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .4s var(--ease-out);
}

.service-card:hover .service-card__body {
    transform: translateY(0);
}

.service-card:hover p {
    opacity: 1;
}

.service-card:hover .service-card__arrow {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
    transform: rotate(8deg);
}

.service-card__media-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(9,9,9,.22), rgba(9,9,9,.94)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 48px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 48px),
        #171717;
    border: 1px solid rgba(255,242,0,.42);
    color: var(--white);
}
.service-card__media-placeholder small,
.service-card__media-placeholder b { max-width: 80%; font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; overflow-wrap: anywhere; }
.service-card__media-placeholder small { color: var(--signal); }
.service-card__media-placeholder b { margin-top: 10px; font-weight: 500; }
.service-card--media-missing .service-card__number,
.service-card--media-missing .service-card__code,
.service-card--media-missing .service-card__body,
.service-card--media-missing .service-card__arrow { z-index: 1; }

.services-all {
    grid-column: span 2;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--signal);
    color: var(--ink);
}

.services-all > span:first-child {
    display: flex;
    align-items: baseline;
    gap: 13px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.services-all strong {
    font-family: var(--font-display);
    font-size: clamp(46px, 5vw, 78px);
    letter-spacing: -.07em;
}

.services-all > span:last-child {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 12px;
    font-weight: 800;
}

.services-all i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    transition: background .3s ease, color .3s ease, transform .3s var(--ease-out);
}

.services-all:hover i {
    background: var(--ink);
    color: var(--signal);
    transform: rotate(8deg);
}

.services-brand-tile {
    position: relative;
    min-height: 320px;
    padding: 34px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 237, 51, .16), rgba(255, 237, 51, 0) 58%),
        #303030;
    color: var(--white);
}

.services-brand-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .42;
}

.services-brand-tile > span {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    place-items: center;
    gap: 16px;
    text-align: center;
}

.services-brand-tile img {
    width: min(78%, 300px);
    max-height: 128px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 22px 38px rgba(0,0,0,.38));
}

.services-brand-tile small {
    color: rgba(255,255,255,.66);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

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

.process-step {
    min-height: 150px;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 100px 1fr 70px;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--line-dark);
    transition: padding .45s var(--ease-out), background .3s ease, color .3s ease;
}

.process-step:hover {
    padding-right: 24px;
    padding-left: 24px;
    background: var(--ink);
    color: var(--white);
}

.process-step > span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
}

.process-step > div {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(280px, 1fr);
    align-items: center;
    gap: 8vw;
}

.process-step h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.7vw, 41px);
    letter-spacing: -.055em;
}

.process-step p {
    max-width: 530px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.process-step > i {
    justify-self: end;
    font-size: 24px;
    font-style: normal;
    transition: color .3s ease, transform .4s var(--ease-out);
}

.process-step:hover > i {
    color: var(--signal);
    transform: rotate(-45deg);
}

/* Fleet */
.fleet-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.fleet-nav button {
    width: 50px;
    height: 50px;
}

.fleet-track {
    margin-right: calc(max(24px, (100vw - 1480px) / 2) * -1);
    padding-right: max(24px, calc((100vw - 1480px) / 2));
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 38vw);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.fleet-track::-webkit-scrollbar {
    display: none;
}

.fleet-card {
    scroll-snap-align: start;
    border: 1px solid var(--line-light);
    background: var(--ink);
}

.fleet-card__image {
    position: relative;
    aspect-ratio: 1.55;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .56)), var(--fleet-image);
    background-position: center;
    background-size: cover;
    filter: grayscale(.25) saturate(.94) contrast(1.04);
    transition: filter .55s ease, background-size 1s var(--ease-out);
}

.fleet-card:hover .fleet-card__image {
    filter: grayscale(0) saturate(1.06) contrast(1.02);
}

.fleet-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .56));
    pointer-events: none;
}

.fleet-card__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(.25) saturate(.94) contrast(1.04);
    transform: scale(1.02);
    transition: filter .55s ease, transform 1s var(--ease-out);
    pointer-events: none;
}

.fleet-card:hover .fleet-card__img {
    filter: grayscale(0) saturate(1.06) contrast(1.02);
    transform: scale(1);
}

.fleet-card__image span,
.fleet-card__image i {
    position: absolute;
    top: 18px;
    padding: 6px 8px;
    background: rgba(9, 9, 9, .72);
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .08em;
    backdrop-filter: blur(8px);
}

.fleet-card__image span { left: 18px; }
.fleet-card__image i { right: 18px; color: var(--signal); text-transform: uppercase; }
.fleet-card__image span,
.fleet-card__image i { z-index: 2; }
.fleet-card__media-placeholder { position: absolute; inset: 0; padding: 25px; display: flex; flex-direction: column; justify-content: center; background: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 48px), repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 48px), #171717; border: 1px solid rgba(255,242,0,.45); color: var(--white); filter: none; }
.fleet-card__media-placeholder small,
.fleet-card__media-placeholder b { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; overflow-wrap: anywhere; }
.fleet-card__media-placeholder small { color: var(--signal); }
.fleet-card__media-placeholder strong { margin: 8px 0; }
.fleet-card__media-placeholder b { font-weight: 500; }

.fleet-card__body {
    min-height: 170px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 24px;
}

.fleet-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.5vw, 36px);
    letter-spacing: -.055em;
    line-height: 1.05;
}

.fleet-card p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 1.55;
}

/* Coverage */
.coverage {
    background: var(--paper-bright);
}

.coverage-layout {
    display: grid;
    grid-template-columns: minmax(290px, .8fr) minmax(390px, 1.15fr) minmax(270px, .72fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 70px);
}

.coverage-copy {
    padding: 8px 0;
}

.coverage-copy h2 {
    font-size: clamp(42px, 4.5vw, 70px);
}

.coverage-copy > p:not(.eyebrow) {
    margin: 34px 0 36px;
    color: rgba(9, 9, 9, .6);
    font-size: 13px;
}

.coverage-map {
    position: relative;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--ink);
    background-color: #e7e5dc;
    background-image: linear-gradient(rgba(9, 9, 9, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 9, 9, .08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.coverage-map img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.2);
}
.coverage-map > .home-media-placeholder { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }

.coverage-map__scan {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
}

.coverage-map__radar {
    position: absolute;
    inset: 9%;
    z-index: 3;
    pointer-events: none;
}

.coverage-map__ring,
.coverage-map__core,
.coverage-map__sweep {
    position: absolute;
    top: 50%;
    left: 50%;
}

.coverage-map__ring {
    aspect-ratio: 1;
    border: 1px solid rgba(9, 9, 9, .24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 1px rgba(255, 242, 0, .12);
}

.coverage-map__ring--one { width: 34%; }
.coverage-map__ring--two { width: 66%; }
.coverage-map__ring--three { width: 98%; }

.coverage-map__sweep {
    width: 49%;
    height: 2px;
    background: linear-gradient(90deg, var(--signal), rgba(255, 242, 0, 0));
    box-shadow: 0 0 12px rgba(255, 242, 0, .85);
    transform-origin: left center;
    animation: radarSweep 5.8s linear infinite;
}

.coverage-map__core {
    width: 10px;
    height: 10px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 7px rgba(255, 242, 0, .28), 0 0 24px rgba(255, 242, 0, .85);
    transform: translate(-50%, -50%);
}

@keyframes radarSweep {
    to { transform: rotate(360deg); }
}

.coverage-map__scan::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--signal);
    box-shadow: 0 0 20px var(--signal);
    animation: mapScan 5s ease-in-out infinite;
}

@keyframes mapScan {
    0%, 100% { top: 12%; opacity: 0; }
    15% { opacity: 1; }
    75% { opacity: 1; }
    86% { top: 86%; opacity: 0; }
}

.coverage-map figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    padding: 12px 14px;
    background: var(--ink);
    color: var(--white);
}

.coverage-map figcaption span,
.coverage-map figcaption strong {
    display: block;
}

.coverage-map figcaption span {
    margin-bottom: 4px;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
}

.coverage-map figcaption strong {
    font-size: 11px;
}

.coverage-list {
    border-top: 1px solid var(--ink);
}

.coverage-list > div {
    min-height: 62px;
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line-dark);
    transition: padding .3s var(--ease-out), background .25s ease;
}

.coverage-list > div:hover {
    padding-right: 10px;
    padding-left: 10px;
    background: var(--signal);
}

.coverage-list span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--muted);
}

.coverage-list strong {
    font-size: 12px;
}

.coverage-list i {
    font-style: normal;
}

/* Quote */
.quote {
    padding-top: clamp(90px, 10vw, 150px);
    padding-bottom: clamp(90px, 10vw, 150px);
}

.quote::after {
    content: "OPS";
    position: absolute;
    right: -2vw;
    bottom: -8vw;
    z-index: 0;
    color: transparent;
    font-family: var(--font-display);
    font-size: 33vw;
    font-weight: 800;
    letter-spacing: -.12em;
    line-height: .7;
    -webkit-text-stroke: 1px rgba(9, 9, 9, .13);
    pointer-events: none;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .75fr);
    align-items: center;
    gap: clamp(60px, 10vw, 160px);
}

.quote-copy h2 {
    font-size: clamp(54px, 7vw, 102px);
}

.quote-copy h2 em {
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
}

.quote-copy > p:not(.eyebrow) {
    max-width: 570px;
    margin: 34px 0 44px;
    font-size: 15px;
}

.quote-phone {
    width: max-content;
    display: flex;
    flex-direction: column;
}

.quote-phone span {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

.quote-phone strong {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 54px);
    letter-spacing: -.06em;
}

.quote-builder {
    position: relative;
    padding: clamp(28px, 4vw, 52px);
    background: var(--paper-bright);
    border: 1px solid var(--ink);
    box-shadow: 18px 18px 0 var(--ink);
}

.quote-builder__head {
    padding-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
}

.quote-builder__head span {
    font-family: var(--font-mono);
    font-size: 10px;
}

.quote-builder__head strong {
    font-size: 12px;
}

.quote-builder fieldset {
    margin: 28px 0 0;
    padding: 0;
    border: 0;
}

.quote-builder legend {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.choice-grid label {
    cursor: pointer;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid label span {
    min-height: 68px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--line-dark);
    background: var(--white);
    font-size: 10px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.choice-grid label span i {
    font-family: var(--font-mono);
    font-size: 10px;
    font-style: normal;
    color: var(--muted);
}

.choice-grid input:checked + span {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.choice-grid input:checked + span i {
    color: var(--signal);
}

.choice-grid input:focus-visible + span {
    outline: 3px solid var(--ink);
    outline-offset: 2px;
}

.select-wrap {
    position: relative;
    display: block;
}

.select-wrap::after {
    content: "↓";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrap select {
    width: 100%;
    height: 58px;
    padding: 0 46px 0 15px;
    border: 1px solid var(--line-dark);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 11px;
    appearance: none;
}

.quote-builder .button {
    margin-top: 28px;
}

.quote-builder__note {
    margin: 14px 0 0;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 10px;
}

/* Footer */
.site-footer {
    padding: 80px max(24px, calc((100vw - 1480px) / 2)) 24px;
    background: var(--ink);
    color: var(--white);
}

.footer-top {
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(260px, .7fr) 1fr auto;
    align-items: center;
    gap: 8vw;
    border-bottom: 1px solid var(--line-light);
}

.brand--footer .brand-name {
    font-size: 23px;
}

.footer-top > p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.footer-grid {
    padding: 58px 0 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-grid > div > span {
    margin-bottom: 13px;
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .08em;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
    line-height: 1.7;
    transition: color .2s ease;
}

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

.footer-bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, .42);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .04em;
}

.footer-bottom a {
    color: var(--white);
}

/* Tablet */
@media (max-width: 1100px) {
    :root {
        --shell: calc(100vw - 40px);
    }

    .desktop-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        z-index: 90;
    }

    .journey-grid {
        grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
    }

    .journey-media {
        border-right: 0;
    }

    .journey-story {
        grid-column: 1 / -1;
        padding: 48px 0;
        border-top: 1px solid var(--line-dark);
    }

    .hero-console {
        display: none;
    }

    .hero-tag {
        width: 220px;
    }

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

    .service-card--wide {
        grid-column: span 1;
    }

    .services-all {
        grid-column: span 1;
    }

    .coverage-layout {
        grid-template-columns: minmax(300px, 1fr) minmax(380px, 1.1fr);
    }

    .coverage-list {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--ink);
    }

    .coverage-list > div {
        padding: 0 14px;
        border-right: 1px solid var(--line-dark);
    }

    .quote-layout {
        gap: 60px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: calc(100vw - 32px);
    }

    .utility-bar {
        height: 34px;
    }

    .utility-bar p strong,
    .utility-bar p:not(.status-dot) {
        font-size: 10px;
    }

    .site-header {
        height: 68px;
    }

    .site-header.is-stuck {
        height: 64px;
        padding: 0 16px;
    }

    .header-cta {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .mobile-nav {
        align-content: start;
        padding-top: 112px;
    }

    .mobile-nav nav a {
        min-height: 58px;
        font-size: clamp(22px, 7vw, 32px);
    }

    .hero {
        height: auto;
        min-height: 860px;
    }

    .hero-slide::before,
    .hero-slide--light::before {
        background: linear-gradient(180deg, rgba(8, 8, 8, .7) 0%, rgba(8, 8, 8, .56) 35%, rgba(8, 8, 8, .85) 73%, rgba(8, 8, 8, .98) 100%);
        background-position: 60% center;
        filter: saturate(.68) contrast(1.08);
    }

    .hero-slide--light {
        color: var(--white);
    }

    .hero-slide--light .eyebrow,
    .hero-slide--light .hero-copy {
        color: rgba(255, 255, 255, .72);
    }

    .hero-slide--light .hero-content .hero-title em {
        color: var(--signal);
        text-decoration: none;
    }

    .hero-slide--light .button--ghost {
        color: var(--white);
        border-color: rgba(255, 255, 255, .48);
    }

    .hero-content {
        width: var(--shell);
        min-height: 860px;
        height: 100%;
        padding: 170px 0 190px;
        justify-content: flex-start;
    }

    .hero-content .hero-title {
        font-size: clamp(45px, 12.5vw, 70px);
    }

    .hero-tag {
        display: none;
    }

    .hero-controls {
        left: 16px;
        bottom: 108px;
    }

    .hero-facts {
        min-height: 82px;
        padding: 0 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-facts > div {
        display: none;
        padding: 14px;
    }

    .hero-facts > div:nth-child(1),
    .hero-facts > div:nth-child(3) {
        display: flex;
    }

    .section-heading--split,
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-heading--split > p {
        max-width: 620px;
    }

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

    .journey-year {
        min-height: 300px;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .journey-media {
        min-height: min(560px, 78vw);
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .journey-media__visual,
    .journey-media__visual > img,
    .journey-media__visual > .home-media-placeholder {
        min-height: min(560px, 78vw);
    }

    .journey-story {
        padding-left: 0;
        border-top: 0;
    }

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

    .journey-rail > div:nth-child(2) {
        border-right: 0;
    }

    .journey-rail > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line-dark);
    }

    .process-step {
        grid-template-columns: 55px 1fr 34px;
    }

    .process-step > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fleet-track {
        grid-auto-columns: minmax(310px, 78vw);
    }

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

    .coverage-map {
        min-height: 520px;
    }

    .coverage-list {
        grid-column: auto;
    }

    .quote-layout {
        align-items: stretch;
    }

    .quote-builder {
        box-shadow: 12px 12px 0 var(--ink);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top .button {
        width: max-content;
    }

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

@media (max-width: 560px) {
    .utility-bar p {
        display: none;
    }

    .utility-bar {
        justify-content: flex-end;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-mark {
        width: 28px;
        height: 28px;
        transform: scale(.9);
    }

    .hero {
        min-height: 820px;
    }

    .hero-content {
        min-height: 820px;
        padding-top: 145px;
        padding-bottom: 190px;
    }

    .hero-content .hero-title {
        font-size: clamp(41px, 13.7vw, 62px);
        line-height: .96;
    }

    .hero-copy {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        margin-top: 27px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-controls {
        right: 16px;
        justify-content: space-between;
    }

    .hero-tabs {
        flex: 1;
    }

    .hero-tab {
        flex: 1;
    }

    .signal-strip {
        height: 40px;
    }

    .section {
        padding: 84px 20px;
    }

    .section-index {
        right: 20px;
        top: 20px;
    }

    .journey-columns {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journey-story .lead {
        margin-bottom: 34px;
    }

    .journey-rail {
        grid-template-columns: 1fr;
    }

    .journey-rail > div,
    .journey-rail > div:nth-child(2) {
        min-height: 118px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .journey-rail > div:last-child {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .service-card--wide,
    .services-all {
        grid-column: span 1;
    }

    .service-card__body {
        transform: translateY(0);
    }

    .service-card p {
        padding-right: 50px;
        opacity: 1;
    }

    .services-all {
        min-height: 210px;
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .services-all > span:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-brand-tile {
        min-height: 230px;
        padding: 24px;
        display: grid;
        align-items: center;
    }

    .services-brand-tile img {
        width: min(80%, 310px);
        max-height: 120px;
    }

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

    .process-step > i {
        display: none;
    }

    .process-step:hover {
        padding-right: 12px;
        padding-left: 12px;
    }

    .fleet-nav {
        justify-content: flex-start;
    }

    .fleet-track {
        margin-right: -20px;
        padding-right: 20px;
        grid-auto-columns: 87vw;
    }

    .fleet-card__body {
        grid-template-columns: 1fr;
        min-height: 190px;
    }

    .coverage-map {
        min-height: 430px;
    }

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

    .coverage-list > div {
        border-right: 0;
    }

    .quote-copy h2 {
        font-size: clamp(48px, 15vw, 70px);
    }

    .quote-builder {
        padding: 24px 18px;
        box-shadow: 8px 8px 0 var(--ink);
    }

    .quote-builder__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

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

    .choice-grid label span {
        min-height: 56px;
    }

    .site-footer {
        padding-top: 64px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

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

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

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

.mobile-services { margin-top: 20px; border: 1px solid rgba(255,255,255,.2); color: var(--white); }
.mobile-services summary { min-height: 55px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.mobile-services summary::-webkit-details-marker { display: none; }
.mobile-services summary::after { content: "+"; color: var(--signal); font-family: var(--font-display); font-size: 22px; }
.mobile-services[open] summary::after { content: "−"; }
.mobile-services summary strong { margin-left: auto; color: var(--signal); font-size: 10px; }
.mobile-services > div { padding: 0 12px 12px; display: grid; grid-template-columns: 1fr; }
.mobile-services > div a { min-height: 44px; padding: 0 6px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 8px; border-top: 1px solid rgba(255,255,255,.12); color: var(--white); font-size: 12px; text-decoration: none; }
.mobile-services > div a small { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.mobile-services > div a i { color: var(--signal); font-style: normal; }

@media (forced-colors: active) {
    .brand-mark,
    .eyebrow > span,
    .button--signal,
    .signal-strip {
        forced-color-adjust: none;
    }
}

/* Document-led homepage additions. The approved original visual system stays intact. */
.utility-bar {
    width: 100%;
    padding: 0 max(24px, calc((100vw - 1480px) / 2));
    background: var(--signal);
    color: var(--ink);
    border-bottom: 0;
}

.utility-bar p,
.utility-bar a,
.utility-bar strong { color: var(--ink); }
.utility-bar p { max-width: 72%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.status-dot { background: var(--ink); box-shadow: 0 0 0 4px rgba(9,9,9,.12); }

.brand-logo-image { width: auto; height: 42px; object-fit: contain; }
.brand-logo-placeholder { position: relative; max-width: min(290px, 72vw); padding: 5px 8px 19px; display: inline-flex; align-items: center; border: 1px dashed rgba(255,242,0,.62); color: var(--white); box-sizing: border-box; }
.brand-logo-placeholder__identity { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo-placeholder > small { position: absolute; right: 7px; bottom: 4px; left: 7px; overflow: hidden; color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
.brand--footer .brand-logo-image { height: 56px; }
.brand--footer .brand-logo-placeholder { max-width: 360px; }

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-content: center;
    gap: 22px;
    background: var(--ink);
    color: var(--white);
    text-align: center;
    pointer-events: none;
    transform: translateY(-101%);
    transition: transform .55s var(--ease-snap);
}

body.is-leaving .page-transition { transform: translateY(0); }
.page-transition > div { display: flex; align-items: center; justify-content: center; gap: 14px; }
.page-transition .brand-logo-image { height: 72px; }
.page-transition .brand-logo-placeholder { max-width: min(680px, 90vw); padding: 20px 25px 40px; }
.page-transition .brand-logo-placeholder > small { right: 25px; bottom: 14px; left: 25px; text-align: center; }
.page-transition .brand-mark { width: 52px; height: 52px; }
.page-transition .brand-name { font-size: clamp(27px, 5vw, 54px); }
.page-transition > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; }

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9996;
    width: clamp(220px, 19vw, 320px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,242,0,.09) 0%, rgba(255,242,0,.04) 30%, rgba(255,242,0,.015) 52%, transparent 74%);
    filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity .18s ease;
    will-change: transform, opacity;
}
.cursor-glow.is-visible { opacity: .55; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor-glow { display: none; } }

/* First-visit logo reveal. JavaScript removes it after the opening animation. */
.site-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-content: center;
    background: var(--ink);
    color: var(--white);
    transition: opacity .55s ease, visibility .55s ease, transform .8s var(--ease-snap);
    animation: introFailsafe .55s 2.5s both;
}
.site-intro.is-done { opacity: 0; visibility: hidden; transform: translateY(-100%); }
.site-intro__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; }
.site-intro__brand { position: relative; display: flex; justify-content: center; animation: introName .8s var(--ease-out) both; }
.site-intro__brand .brand-logo-image { width: auto; height: clamp(64px, 8vw, 110px); }
.site-intro__brand .brand-logo-placeholder { max-width: min(680px, 90vw); padding: 20px 25px 40px; }
.site-intro__brand .brand-logo-placeholder > small { right: 25px; bottom: 14px; left: 25px; text-align: center; }
.site-intro > div:last-child { position: relative; margin-top: 22px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; }
.site-intro > div:last-child i { height: 1px; background: var(--signal); transform-origin: center; animation: introLine 1s .2s var(--ease-out) both; }
@keyframes introName { from { opacity: 0; transform: translateY(25px); } }
@keyframes introLine { from { transform: scaleX(0); } }
@keyframes introFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-100%); } }

.client-proof { padding-top: clamp(64px, 6vw, 96px); padding-bottom: clamp(70px, 7vw, 110px); background: linear-gradient(135deg, #232321 0%, #30302c 100%); }
.client-proof__intro { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 7vw; row-gap: 26px; align-items: end; }
.client-proof__intro .eyebrow { grid-column: 1 / -1; }
.client-proof__intro h2,
.commercial-intro h2,
.storage-feature h2,
.featured-home h2,
.home-insights h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 82px);
    line-height: .92;
    letter-spacing: -.065em;
}
.client-proof__intro h2 em,
.featured-home h2 em { color: var(--signal); font-family: var(--font-display); font-style: normal; font-weight: inherit; }
.client-proof__intro h2 { font-size: clamp(36px, 4.2vw, 62px); }
.client-proof__intro > p:last-child { max-width: 500px; margin: 0 0 7px; color: rgba(255,255,255,.6); font-size: 15px; }
.client-logo-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-light); }
.client-logo { position: relative; min-height: 150px; padding: 22px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid var(--line-light); text-align: center; overflow: hidden; }
.client-logo:last-child { border-right: 0; }
.client-logo > span { font-family: var(--font-display); font-size: clamp(18px, 2vw, 30px); font-weight: 800; letter-spacing: -.055em; }
.client-logo > img { width: min(94%, 320px); height: 86px; object-fit: contain; object-position: center; filter: none; }
.client-logo small { margin-top: 9px; color: rgba(255,255,255,.58); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; }
.client-logo > .client-logo-placeholder { width: 100%; min-width: 0; padding: 13px; display: flex; flex-direction: column; align-items: center; border: 1px dashed rgba(255,242,0,.55); font-family: inherit; font-size: inherit; font-weight: inherit; letter-spacing: normal; }
.client-logo-placeholder strong { font-family: var(--font-display); font-size: clamp(18px, 2vw, 30px); letter-spacing: -.055em; }
.client-logo-placeholder > span,
.client-logo-placeholder code,
.client-logo-placeholder em { font-family: var(--font-mono); font-size: 10px; font-style: normal; letter-spacing: .03em; line-height: 1.4; text-align: center; overflow-wrap: anywhere; }
.client-logo-placeholder > span { margin-top: 9px; color: var(--signal); }
.client-logo-placeholder code { margin-top: 5px; color: rgba(255,255,255,.82); }
.client-logo-placeholder em { margin-top: 4px; color: rgba(255,255,255,.46); }
.client-sector-proof { margin-top: 28px; padding: clamp(24px, 3vw, 38px); display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr; gap: clamp(30px, 5vw, 72px); align-items: center; border: 1px solid var(--line-light); background: rgba(255,255,255,.035); }
.client-sector-proof > div:first-child > span { color: var(--signal); font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; }
.client-sector-proof > div:first-child > p { max-width: 470px; margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.65; }
.client-sectors { display: flex; flex-wrap: wrap; gap: 12px; }
.client-sectors span { min-height: 52px; padding: 0 19px; display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.88); font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; text-align: center; }
.client-proof__story { margin-top: 28px; padding: 22px 0; display: grid; grid-template-columns: .35fr 1fr; gap: 50px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.client-proof__story > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.client-proof__story p { max-width: 980px; margin: 0; color: rgba(255,255,255,.66); font-size: clamp(16px, 1.5vw, 22px); }
.client-proof__story strong { color: var(--white); font-family: var(--font-display); }

.commercial-intro { background: var(--paper-bright); }
.commercial-intro__heading { max-width: 960px; }
.commercial-intro__heading .eyebrow { margin-bottom: 23px; }
.commercial-intro h2 em,
.storage-feature h2 em,
.home-insights h2 em,
.process .section-heading h2 em { color: var(--ink); font-family: var(--font-display); font-style: normal; font-weight: inherit; -webkit-text-stroke: 0; }

.journey-heading h2 em,
.coverage-copy h2 em,
.quote-copy h2 em { color: var(--ink); font-family: var(--font-display); font-style: normal; font-weight: inherit; -webkit-text-stroke: 0; }
.commercial-intro__content { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.commercial-intro__content article { min-height: 320px; padding: 30px 45px 35px 0; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); }
.commercial-intro__content article:last-child { padding-left: 45px; border-right: 0; }
.commercial-intro__content span { font-family: var(--font-mono); font-size: 10px; }
.commercial-intro__content h3 { margin: auto 0 18px; font-family: var(--font-display); font-size: clamp(26px, 2.7vw, 42px); line-height: 1.02; letter-spacing: -.055em; }
.commercial-intro__content p { max-width: 600px; margin: 0; color: rgba(9,9,9,.62); font-size: 14px; }

.storage-feature { background: var(--paper-bright); }
.storage-feature__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: stretch; }
.storage-feature__copy { align-self: center; }
.storage-feature__copy > p:not(.eyebrow) { max-width: 580px; margin: 28px 0; color: rgba(9,9,9,.62); }
.storage-feature__visual { min-width: 0; }
.storage-feature__video { position: relative; aspect-ratio: 16 / 9; min-height: 390px; overflow: hidden; background: #111; border: 1px solid var(--ink); }
.storage-feature__video > video,
.storage-feature__video > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.storage-feature__video-placeholder { position: absolute; inset: 0; padding: clamp(25px, 4vw, 48px); display: flex; flex-direction: column; justify-content: flex-end; background: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 52px), repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 52px); color: var(--white); }
.storage-feature__video-placeholder.has-poster { background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.82)); }
.storage-feature__video-placeholder::before { content: "▶"; position: absolute; top: 50%; left: 50%; width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid var(--signal); border-radius: 50%; color: var(--signal); font-size: 20px; transform: translate(-50%,-50%); }
.storage-feature__video-placeholder span,
.storage-feature__video-placeholder small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; }
.storage-feature__video-placeholder span { color: var(--signal); }
.storage-feature__video-placeholder strong { margin: 7px 0 13px; font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 34px); line-height: 1; letter-spacing: -.05em; }
.storage-feature__video-placeholder small { color: rgba(255,255,255,.68); overflow-wrap: anywhere; }
.storage-feature__benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); padding-top: 24px; border-top: 1px solid var(--ink); }
.storage-feature__benefits article { min-width: 0; }
.storage-feature__benefits span { font-family: var(--font-mono); font-size: 10px; }
.storage-feature__benefits strong { margin: 10px 0 8px; display: block; font-family: var(--font-display); font-size: clamp(18px, 1.7vw, 25px); }
.storage-feature__benefits p { margin: 0; color: rgba(9,9,9,.62); font-size: 11px; }

.furniture-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.furniture-panel { background: var(--ink); }
.furniture-panel--signal { background: var(--signal); color: var(--ink); }
.furniture-panel__media { position: relative; height: 360px; overflow: hidden; background: #181818; }
.furniture-panel__media > img { width: 100%; height: 100%; padding: clamp(24px, 4vw, 56px); display: block; object-fit: contain; object-position: center; box-sizing: border-box; }
.home-media-placeholder { position: relative; width: 100%; height: 100%; min-height: inherit; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 52px), repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 52px), #171717; border: 1px solid rgba(255,242,0,.5); color: var(--white); box-sizing: border-box; }
.home-media-placeholder::after { content: "+"; position: absolute; top: 50%; left: 50%; color: var(--signal); font-family: var(--font-mono); font-size: 46px; transform: translate(-50%,-50%); }
.home-media-placeholder span, .home-media-placeholder small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .07em; opacity: .5; }
.home-media-placeholder strong { margin: 5px 0; font-size: 15px; }
.home-media-placeholder .home-media-placeholder__path { margin-top: 10px; color: var(--signal); opacity: 1; overflow-wrap: anywhere; }
.featured-home__media > .home-media-placeholder { padding-bottom: 78px; }
.furniture-panel__body { padding: clamp(28px, 4vw, 58px); }
.furniture-panel__body > span { color: var(--signal); font-family: var(--font-mono); font-size: 10px; }
.furniture-panel--signal .furniture-panel__body > span { color: var(--ink); }
.furniture-panel h3 { margin: 24px 0 16px; font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 57px); line-height: .94; letter-spacing: -.065em; }
.furniture-panel p { color: rgba(255,255,255,.62); font-size: 14px; }
.furniture-panel--signal p { color: rgba(9,9,9,.66); }
.furniture-panel ul { margin: 25px 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.furniture-panel--signal ul { border-color: rgba(9,9,9,.2); }
.furniture-panel li { padding: 10px 0; border-bottom: 1px solid var(--line-light); font-family: var(--font-mono); font-size: 10px; }
.furniture-panel--signal li { border-color: rgba(9,9,9,.2); }
.furniture-panel .text-link { color: var(--white); border-color: var(--white); }

.fleet-after { margin-top: 75px; display: grid; grid-template-columns: 1.2fr .8fr; border: 1px solid var(--line-light); }
.fleet-after__media { position: relative; min-height: 430px; overflow: hidden; }
.fleet-after__media > img { width: 100%; height: 100%; object-fit: cover; }
.fleet-after > div:last-child { padding: clamp(30px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.fleet-after h3 { margin: 0 0 20px; font-family: var(--font-display); font-size: clamp(28px, 3vw, 48px); line-height: 1; letter-spacing: -.06em; }
.fleet-after p:not(.eyebrow) { color: rgba(255,255,255,.58); font-size: 13px; }

.featured-home { display: grid; grid-template-columns: 1.2fr .8fr; align-items: stretch; gap: 1px; }
.featured-home__media { position: relative; min-height: 660px; overflow: hidden; background: #171717; }
.featured-home__media > img { width: 100%; height: 100%; object-fit: cover; }
.featured-home__media > a { position: absolute; right: 18px; bottom: 18px; padding: 12px 15px; background: var(--signal); color: var(--ink); font-family: var(--font-mono); font-size: 10px; }
.featured-home__copy { padding: clamp(35px, 5vw, 75px); display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line-light); }
.featured-home__client { margin: 30px 0; color: var(--signal); font-family: var(--font-display); font-size: clamp(34px, 4vw, 62px); font-weight: 800; line-height: .84; letter-spacing: -.07em; }
.featured-home__copy > p:not(.eyebrow) { margin: 25px 0 30px; color: rgba(255,255,255,.6); font-size: 14px; }
.featured-home__copy .button { align-self: flex-start; }

.home-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-dark); }
.home-post { min-height: 370px; border-right: 1px solid var(--line-dark); }
.home-post:last-child { border-right: 0; }
.home-post a { height: 100%; padding: 27px; display: flex; flex-direction: column; }
.home-post span { color: var(--muted); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.home-post h3 { margin: auto 0 18px; font-family: var(--font-display); font-size: clamp(23px, 2.4vw, 38px); line-height: 1; letter-spacing: -.055em; }
.home-post p { min-height: 65px; margin: 0; color: rgba(9,9,9,.62); font-size: 12px; }
.home-post strong { margin-top: 25px; font-family: var(--font-mono); font-size: 10px; }
.home-insights .section-heading > a { margin: 0 0 6px; }

@media (max-width: 900px) {
    .client-proof__intro, .client-sector-proof, .storage-feature__layout, .featured-home, .fleet-after { grid-template-columns: 1fr; }
    .client-logo-grid { grid-template-columns: 1fr 1fr; }
    .client-logo:nth-child(2) { border-right: 0; }
    .client-logo:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
    .commercial-intro__content, .furniture-duo { grid-template-columns: 1fr; }
    .commercial-intro__content article { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
    .commercial-intro__content article:last-child { padding: 30px 0; border-bottom: 0; }
    .storage-feature__visual { margin-top: 25px; }
    .featured-home__media { min-height: 520px; }
}

@media (max-width: 620px) {
    .utility-bar p { display: none; }
    .utility-bar { justify-content: center; }
    .client-logo-grid, .home-post-grid { grid-template-columns: 1fr; }
    .client-sectors { display: grid; grid-template-columns: 1fr; }
    .client-logo { border-right: 0; border-bottom: 1px solid var(--line-light); }
    .client-logo:last-child { border-bottom: 0; }
    .client-proof__story { grid-template-columns: 1fr; gap: 15px; }
    .storage-feature__video { width: 100%; min-height: 0; aspect-ratio: 16 / 9; }
    .storage-feature__video-placeholder { padding: 16px; }
    .storage-feature__video-placeholder::before { top: 38%; width: 50px; height: 50px; font-size: 15px; }
    .storage-feature__video-placeholder strong { margin: 4px 0 7px; font-size: 18px; }
    .storage-feature__video-placeholder small { font-size: 8px; line-height: 1.35; }
    .storage-feature__video-placeholder small:last-child { display: none; }
    .storage-feature__benefits { grid-template-columns: 1fr; gap: 0; }
    .storage-feature__benefits article { padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
    .storage-feature__benefits article:last-child { border-bottom: 0; }
    .home-post { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
    .furniture-panel__media { height: 310px; }
    .fleet-after__media, .featured-home__media { min-height: 390px; }
    .brand-logo-image { height: 36px; }
    .hero-slide__media-placeholder { padding: 115px 22px 205px 48%; align-items: flex-end; justify-content: flex-start; text-align: right; }
    .hero-slide__media-placeholder::before { margin-bottom: 8px; font-size: 34px; }
    .hero-slide__media-placeholder strong { font-size: 24px; }
}

/* Switch to the full mobile menu before the expanded navigation becomes cramped. */
@media (max-width: 1220px) {
    .desktop-nav, .header-cta { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .menu-toggle { display: flex; }
}
