/* Local e-Ukraine family. Keep text hidden during the short initial font load
   so text can paint before the local OTF finishes loading. */
@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-UltraLight.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Thin.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Bold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "e-Ukraine";
    src: url("fonts/e-Ukraine-Bold.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --gray: #808080;
    --container-width: 85%;
    --container-padding: 20px;
    --container-main-width: 95%;
    --font-body: "e-Ukraine", Arial, sans-serif;
}

/* Kamik-OG home redesign */
/* Two intentional reds: --red (#d8193f) = primary/brand (logo, nav, footer);
   --signal-red (#ff1f45, defined below) = HUD signal/accent for story/console. */
:root {
    --red: #d8193f;
    --red-dark: #7b081e;
    --ink: #050505;
    --panel: #101010;
    --panel-soft: #171717;
    --line: rgba(255, 255, 255, 0.18);
    --muted: #b8b8b8;
}

/* Hyphenation baseline — CSS covers EN everywhere + UK on Firefox/Safari/Mac Chrome.
   Hyphenopoly fills the Chromium/Windows gap for Ukrainian (no UA dictionary there). */
p, li, h2, h3, h4, h5, blockquote, figcaption, dt, dd, td, th {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
}
abbr, code, pre, var, kbd, samp, .no-hyphens {
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
}
h1, h2, h3, h4, h5, h6 {
    hyphens: none;
    -webkit-hyphens: none;
}

.home-page body {
    margin: 0;
    background:
        linear-gradient(135deg, rgba(216, 25, 63, 0.14), transparent 32%),
        linear-gradient(180deg, #000 0%, #080808 48%, #000 100%);
    color: var(--white);
    font-family: var(--font-body);
}

.home-page .container {
    max-width: min(1440px, 92vw);
}

.home-page header.container {
    position: sticky;
    top: 0;
    z-index: 50;
    max-width: 100%;
    width: 100%;
    padding: 14px 4vw;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(12px);
}

.brand-title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-mark {
    width: clamp(44px, 5vw, 70px);
    height: clamp(44px, 5vw, 70px);
    object-fit: contain;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-page nav {
    gap: 12px;
}

.home-page nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-page nav a:hover,
.home-page nav a:focus-visible {
    border-color: var(--red);
    background: var(--red);
    outline: none;
}

.home-page .nav-menu-toggle span {
    background: var(--white);
}

.home-page main.container {
    max-width: min(1440px, 92vw);
}

.section-head {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 32px;
    align-items: end;
    margin-bottom: 24px;
}

.section-head .page-kicker {
    grid-column: 1 / -1;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.section-head h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(34px, 6vw, 78px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.section-head a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--red);
    color: var(--white);
    background: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.section-head a:hover,
.section-head a:focus-visible {
    background: var(--white);
    color: var(--black);
    outline: none;
}

.home-page .news-section {
    margin: 44px 0 72px;
    align-items: stretch;
}

.home-page .news-slider {
    gap: 18px;
    padding: 0 0 18px;
}

.home-page .news-slide {
    min-height: clamp(420px, 68vh, 760px);
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--panel);
}

.home-page .news-slide img {
    height: clamp(420px, 68vh, 760px);
    filter: saturate(0.88) contrast(1.08);
}

.home-page .news-slide::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent);
    pointer-events: none;
}

.home-page .news-dot {
    width: 30px;
    height: 3px;
    background: var(--white);
    opacity: 0.28;
}

.home-page .news-dot.active {
    width: 64px;
    background: var(--red);
    opacity: 1;
}

.products-section {
    padding: 64px 0 22px;
    border-top: 2px solid var(--red);
}

.products-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 0 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.home-page .product-card {
    flex: 0 0 100%;
    height: clamp(620px, 78vh, 820px);
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(216, 25, 63, 0.22), transparent 36%),
        var(--panel);
    scroll-snap-align: center;
}

.home-page .product-card:hover:not(.is-active) {
    border-color: var(--red);
}

.home-page .product-card.is-active {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red), 0 24px 80px rgba(216, 25, 63, 0.2);
}

.home-page .product-visual {
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
}

.home-page .product-visual img {
    max-width: 92%;
    max-height: 86%;
}

.home-page .product-info {
    width: 34%;
    background: #080808;
    border-left: 1px solid var(--red);
    color: var(--white);
}

.home-page .product-info h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 900;
    line-height: 0.96;
    text-transform: uppercase;
}

.home-page .product-info p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.home-page .bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page .bullet-content {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--white);
    font-size: 15px;
    line-height: 1.35;
}

.home-page .bullet-content::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 12px;
    background: var(--red);
}

.home-page .toggle-btn {
    background: var(--red);
}

.home-page .toggle-btn span {
    background: var(--white);
}

.home-page .slide-counter {
    color: var(--white);
    opacity: 0.82;
    font-weight: 700;
}

.home-page .slide-nav {
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
}

.home-page .slide-nav:hover,
.home-page .slide-nav:focus-visible {
    border-color: var(--red);
    background: var(--red);
    outline: none;
}

.home-page .site-footer {
    margin-top: 80px;
    border-top: 2px solid var(--red);
    background: #050505;
    color: var(--white);
}

.home-page .home-page .footer-brand h2.footer-brand,
.home-page .footer-bottom,
.home-page .footer-column {
    border-color: var(--line);
}

.home-page .footer-brand h2,
.home-page .footer-column h3,
.home-page .footer-column a,
.home-page .footer-column address {
    color: var(--white);
}

.home-page .footer-brand p,
.home-page .footer-bottom {
    color: var(--muted);
}

.home-page .footer-kicker {
    color: var(--red) !important;
}

.home-page .footer-column h3 {
    color: var(--red);
}

.home-page .footer-column a:hover,
.home-page .footer-column a:focus-visible {
    border-bottom-color: var(--red);
}

@media (min-width: 769px) and (max-width: 1100px) {
    .home-page .product-card.is-active .product-visual {
        width: 100%;
    }

    .home-page .product-info {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--red);
    }
}

@media (max-width: 768px) {
    .home-page header.container {
        padding: 12px 5vw;
    }

    .home-page nav a {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .section-head {
        grid-template-columns: 1fr;
    }

    .home-page .news-section {
        margin: 28px 0 48px;
    }

    .home-page .news-slide,
    .home-page .news-slide img {
        min-height: 0;
        height: 62vh;
    }

    .products-section {
        padding-top: 42px;
    }

    .home-page .product-card {
        flex-basis: 100%;
        height: 76vh;
    }

    .home-page .product-info {
        background: #080808;
        border-left: none;
        border-top: 1px solid var(--red);
    }

    .home-page .product-info h2 {
        font-size: 28px;
    }
}

/* Home interaction fixes */
html.home-page {
    scroll-snap-type: none !important;
    overflow-anchor: none;
}

.home-page .news-section,
.home-page .products-section,
.home-page .product-card,
.home-page .site-footer {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
}

.home-page header.container {
    transition:
        padding 160ms linear,
        background-color 160ms linear,
        border-color 160ms linear;
}

.home-page header.container.is-compact {
    padding-top: 8px;
    padding-bottom: 8px;
    background: rgba(0, 0, 0, 0.94);
}

.home-page header.container.is-compact .brand-mark {
    width: 42px;
    height: 42px;
}

.home-page header.container.is-compact .brand-title {
    font-size: clamp(20px, 2vw, 30px);
}

.home-page header.container.is-compact nav a {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
}

.home-page .news-slide:hover img,
.home-page .news-slide:active img,
.home-page .news-slide img {
    transform: none !important;
}

.home-page .news-controls,
.home-page .product-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.home-page .news-nav,
.home-page .product-carousel-nav {
    width: 46px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 22px;
    line-height: 1;
}

.home-page .news-nav:hover,
.home-page .news-nav:focus-visible,
.home-page .product-carousel-nav:hover,
.home-page .product-carousel-nav:focus-visible {
    border-color: var(--red);
    background: var(--red);
    outline: none;
}

.home-page .news-pagination {
    margin-top: 16px;
}

.home-page .product-controls {
    margin-top: 0;
}

.home-page .products-slider {
    scroll-padding: 0;
}

.home-page .product-card {
    flex-basis: 100%;
}

.home-page .product-info {
    width: 36%;
}

@media (max-width: 768px) {
    .home-page header.container.is-compact {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .home-page header.container.is-compact .brand-mark {
        width: 36px;
        height: 36px;
    }

    .home-page header.container.is-compact .brand-title {
        font-size: 20px;
    }

    .home-page .news-controls {
        margin-top: 8px;
    }

    .home-page .news-slide,
    .home-page .news-slide img {
        height: 54vh;
    }

    .home-page .product-card {
        flex-basis: 100%;
    }
}

/* One-card product carousel and click-zoned news */
.home-page .news-slider {
    display: block;
    overflow: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: pointer;
    touch-action: pan-y;
    -webkit-user-drag: none;
    user-select: none;
}

.home-page .news-slider:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px;
}

.home-page .news-slider-track {
    display: flex;
    gap: 18px;
    width: 100%;
    will-change: transform;
}

.home-page .news-slider-track.is-animating {
    transition: transform 250ms cubic-bezier(0.25, 1, 0.5, 1);
}

.home-page .news-slide,
.home-page .news-slide img {
    pointer-events: none;
}

html.home-page .news-pagination .news-dot {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 1;
}

html.home-page .news-pagination .news-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3px;
    background: var(--white);
    opacity: 0.28;
    transform: translate(-50%, -50%);
    transition: width 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

html.home-page .news-pagination .news-dot.active::before {
    width: 40px;
    background: var(--red);
    opacity: 1;
}

html.home-page .news-pagination .news-dot:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: -2px;
}

.home-page .news-controls {
    display: none !important;
}

.home-page .products-slider {
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.home-page .products-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.home-page .product-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
}

.home-page .product-controls {
    margin-top: 16px;
}

.home-page .product-visual {
    cursor: grab;
}

.home-page .product-visual:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .home-page .product-card {
        flex-basis: 100%;
    }
}

/* 2026 home identity layer */
:root {
    --signal-red: #ff1f45;
    --signal-amber: #ffb703;
    --steel: #d7dde2;
    --steel-muted: #87909a;
    --carbon: #050607;
    --carbon-2: #0c0f12;
    --carbon-3: #15191d;
    --hud-line: rgba(215, 221, 226, 0.18);
    --hud-strong: rgba(255, 31, 69, 0.7);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html.home-page {
    background: var(--carbon);
}

.home-page body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 78% 12%, rgba(255, 31, 69, 0.22), transparent 28%),
        radial-gradient(circle at 22% 72%, rgba(255, 183, 3, 0.09), transparent 30%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 12px),
        linear-gradient(180deg, #050607 0%, #0b0d10 48%, #050607 100%);
    color: var(--steel);
    font-family: var(--font-body);
}

.home-page body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 82%);
}

.home-page .container,
.home-page main.container {
    max-width: min(1500px, 94vw);
}

.home-page header.container {
    border-bottom: 1px solid var(--hud-line);
    background: rgba(5, 6, 7, 0.78);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

.home-page .brand-title {
    color: var(--steel);
    text-decoration: none;
}

.home-page .brand-mark {
    border-color: var(--hud-strong);
    background: transparent;
    box-shadow: none;
}

.home-page nav a {
    border-color: var(--hud-line);
    color: var(--steel);
    background: rgba(255, 255, 255, 0.02);
}

.home-page nav a:hover,
.home-page nav a:focus-visible,
.home-page header.container.is-compact nav a:hover,
.home-page header.container.is-compact nav a:focus-visible {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
}

.home-page .section-head {
    padding-top: 18px;
    border-top: 1px solid var(--hud-line);
}

.home-page .section-head .page-kicker {
    color: var(--signal-amber) !important;
}

.home-page .section-head h2 {
    font-family: Impact, "Arial Black", var(--font-body);
    color: #f5f7f8;
}

.home-page .section-head h1 {
    width: auto;
    margin: 0;
    color: #f5f7f8;
    font-family: Impact, "Arial Black", var(--font-body);
    font-size: clamp(42px, 7vw, 104px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    white-space: normal;
}

.home-page .section-head a,
.home-page .product-carousel-nav:hover,
.home-page .product-carousel-nav:focus-visible,
.home-page .slide-nav:hover,
.home-page .slide-nav:focus-visible {
    border-color: var(--signal-red);
    background: var(--signal-red);
}

.home-page .news-section {
    margin-top: 0;
}

.home-page .news-slide {
    border-color: var(--hud-line);
    background: var(--carbon-3);
}

.home-page .news-slide img {
    filter: saturate(0.95) contrast(1.1);
}

.home-page .news-dot.active {
    background: var(--signal-red);
}

.home-page .products-section {
    border-top-color: var(--hud-line);
}

.home-page .product-card {
    border-color: var(--hud-line);
    background:
        linear-gradient(135deg, rgba(255, 31, 69, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
        var(--carbon-2);
}

.home-page .product-card.is-active {
    border-color: var(--signal-red);
    box-shadow: 0 0 0 1px rgba(255, 31, 69, 0.75), 0 28px 90px rgba(255, 31, 69, 0.18);
}

.home-page .product-info {
    border-left-color: var(--signal-red);
    background: rgba(5, 6, 7, 0.92);
}

.home-page .product-info h2 {
    font-family: Impact, "Arial Black", var(--font-body);
    color: #fff;
}

.home-page .bullet-content::before,
.home-page .toggle-btn {
    background: var(--signal-red);
}

.home-page .site-footer {
    border-top-color: var(--hud-line);
    background: rgba(5, 6, 7, 0.96);
}

@media (max-width: 768px) {
    .home-page .container,
    .home-page main.container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page header.container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page .brand-title {
        font-size: 22px;
    }

    .home-page .product-info {
        border-left: 0;
        border-top-color: var(--signal-red);
    }
}

/* Product catalog skin: home identity, original shop layout */
html.catalog-page {
    color-scheme: dark;
    background: var(--carbon);
}

.catalog-page body {
    background:
        radial-gradient(circle at 78% 12%, rgba(255, 31, 69, 0.2), transparent 28%),
        radial-gradient(circle at 22% 72%, rgba(255, 183, 3, 0.08), transparent 30%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 12px),
        linear-gradient(180deg, #050607 0%, #0b0d10 48%, #050607 100%);
    color: var(--steel);
    font-family: var(--font-body);
}

.catalog-page body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.catalog-page header.container {
    border-bottom: 1px solid var(--hud-line);
    background: rgba(5, 6, 7, 0.78);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

.catalog-page header h1 a {
    color: var(--steel);
    font-family: Impact, "Arial Black", var(--font-body);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-page nav a {
    border-color: var(--hud-line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--steel);
    font-family: var(--font-body);
}

.catalog-page nav a:hover,
.catalog-page nav a:focus-visible {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
    outline: none;
}

.catalog-page .nav-menu-toggle span {
    background: var(--steel);
}

.catalog-page .nav-menu-toggle:focus-visible {
    outline-color: var(--signal-amber);
}

.catalog-page .page-hero {
    border-bottom-color: var(--hud-line);
}

.catalog-page .page-kicker {
    color: var(--signal-amber);
    font-family: Consolas, "Courier New", monospace;
    font-weight: 800;
}

.catalog-page .page-hero h2,
.catalog-page .catalog-head h3,
.catalog-page .catalog-content h4 {
    color: #f5f7f8;
    font-family: Impact, "Arial Black", var(--font-body);
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-page .page-hero p,
.catalog-page .catalog-content p {
    color: var(--steel-muted);
}

.catalog-page .catalog-filter {
    border-color: var(--hud-line);
    background: var(--carbon-2);
    color: var(--steel);
    font-family: var(--font-body);
    font-weight: 800;
}

.catalog-page .catalog-filter:hover,
.catalog-page .catalog-filter:focus-visible {
    border-color: var(--signal-amber);
    background: rgba(255, 183, 3, 0.1);
    color: #fff;
    outline: none;
}

.catalog-page .catalog-filter.is-active {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
}

.catalog-page .catalog-card {
    border-color: var(--hud-line);
    background: var(--carbon-2);
}

.catalog-page .catalog-card a {
    color: var(--steel);
}

.catalog-page .catalog-image {
    border-bottom-color: var(--hud-line);
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(255, 31, 69, 0.16), transparent 52%),
        var(--carbon-3);
    background-size: 42px 42px, 42px 42px, auto, auto;
}

.catalog-page .catalog-image img {
    filter: saturate(0.84) contrast(1.08);
}

.catalog-page .catalog-card a:hover .catalog-image img,
.catalog-page .catalog-card a:focus-visible .catalog-image img {
    filter: saturate(1) contrast(1.12);
}

.catalog-page .catalog-card a:focus-visible {
    outline-color: var(--signal-amber);
}

.catalog-page .catalog-content > span:first-child {
    color: var(--signal-amber);
    font-family: Consolas, "Courier New", monospace;
}

.catalog-page .catalog-content dl {
    border-top-color: var(--hud-line);
}

.catalog-page .catalog-content dt {
    color: var(--steel-muted);
    font-family: Consolas, "Courier New", monospace;
}

.catalog-page .catalog-content dd {
    color: #fff;
    font-weight: 900;
}

.catalog-page .catalog-content .catalog-card-action {
    color: var(--steel);
    font-weight: 900;
}

.catalog-page .catalog-card a:hover .catalog-card-action,
.catalog-page .catalog-card a:focus-visible .catalog-card-action {
    color: var(--signal-amber);
}

.catalog-page .site-footer {
    border-top-color: var(--hud-line);
    background: rgba(5, 6, 7, 0.96);
    color: var(--steel);
}

.catalog-page .footer-brand,
.catalog-page .footer-bottom {
    border-color: var(--hud-line);
}

.catalog-page .footer-brand h2,
.catalog-page .footer-column h3 {
    color: #f5f7f8;
    font-family: Impact, "Arial Black", var(--font-body);
}

.catalog-page .footer-brand p,
.catalog-page .footer-bottom {
    color: var(--steel-muted);
}

.catalog-page .footer-kicker {
    color: var(--signal-amber) !important;
}

.catalog-page .footer-column {
    border-color: var(--hud-line);
}

.catalog-page .footer-column a,
.catalog-page .footer-column address {
    color: var(--steel);
}

.catalog-page .footer-column a:hover,
.catalog-page .footer-column a:focus-visible {
    border-bottom-color: var(--signal-amber);
    color: var(--signal-amber);
}

/* Product decision console */
.system-console {
    height: 840px;
    min-height: 840px;
    display: grid;
    grid-template-columns: minmax(290px, 0.78fr) minmax(420px, 1.05fr) minmax(290px, 0.72fr);
    grid-template-rows: auto 1fr 134px;
    gap: 1px;
    align-items: stretch;
    margin: 0 0 58px;
    border: 1px solid var(--hud-line);
    background: var(--hud-line);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.console-title,
.console-visual,
.console-options,
.console-specs,
.console-actions {
    background:
        linear-gradient(145deg, rgba(255, 31, 69, 0.08), transparent 38%),
        rgba(5, 6, 7, 0.94);
}

.console-title {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    overflow: hidden;
    padding: clamp(26px, 4vw, 54px);
}

.console-title h2 {
    width: auto;
    min-height: 1.76em;
    margin: 0;
    color: #f5f7f8;
    font-family: Impact, "Arial Black", var(--font-body);
    font-size: clamp(42px, 6vw, 50px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: normal;
}

.console-title p:last-child {
    min-height: 8.52em;
    max-width: 44ch;
    margin: 30px 0 0;
    color: var(--steel);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.42;
}

.console-visual {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 46%, rgba(255, 31, 69, 0.22), transparent 34%),
        #0b0e11;
    background-size: 54px 54px, 54px 54px, auto, auto;
}

.console-visual::before {
    content: "KAMIK-OG";
    position: absolute;
    left: 28px;
    bottom: 22px;
    color: rgba(255, 255, 255, 0.055);
    font-family: Impact, "Arial Black", var(--font-body);
    font-size: clamp(72px, 11vw, 160px);
    line-height: 0.8;
    pointer-events: none;
}

.console-visual img {
    position: relative;
    z-index: 2;
    width: min(94%, 760px);
    height: auto;
    max-height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 34px 56px rgba(0, 0, 0, 0.72)) saturate(0.96) contrast(1.08);
    transition: opacity 180ms linear;
}

.console-visual img.is-swapped {
    animation: consoleImageSwap 240ms var(--ease-out);
}

@keyframes consoleImageSwap {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .console-visual img {
        transition: none;
    }

    .console-visual img.is-swapped {
        animation: none;
    }
}

.console-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    min-width: 190px;
    padding: 15px;
    border: 1px solid var(--hud-strong);
    background: rgba(5, 6, 7, 0.82);
}

.console-badge span,
.console-option span,
.console-specs span {
    display: block;
    color: var(--signal-amber);
    font-family: Consolas, "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.console-badge strong,
.console-option strong,
.console-specs strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.console-badge strong {
    font-size: 24px;
}

.console-options-wrap {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    min-width: 0;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: rgba(5, 6, 7, 0.94);
}

.console-options {
    grid-row: 2;
    display: grid;
    grid-template-rows: repeat(3, minmax(156px, 1fr));
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.console-option[hidden],
.console-option.is-console-hidden {
    display: none;
}

.console-option {
    position: relative;
    min-width: 0;
    min-height: 156px;
    overflow: hidden;
    border-bottom: 1px solid var(--hud-line);
    background: transparent;
    color: var(--steel);
    transition: background 180ms linear, border-color 180ms linear, transform 220ms var(--ease-out);
}

.console-option:last-child {
    border-bottom: 0;
}

.console-option-select {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    align-content: start;
    gap: 10px;
    padding: clamp(18px, 1.7vw, 24px);
    padding-right: 68px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.console-option-select strong {
    max-width: 100%;
    margin-top: 0;
    overflow-wrap: anywhere;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 0.98;
}

.console-option-select em {
    max-width: 100%;
    overflow-wrap: anywhere;
    color: var(--steel-muted);
    font-size: 15px;
    font-style: normal;
    line-height: 1.38;
}

.console-option:hover,
.console-option:focus-within,
.console-option.is-featured {
    background: linear-gradient(135deg, rgba(255, 31, 69, 0.23), rgba(255, 31, 69, 0.04));
    outline: none;
}

.console-option-link {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hud-line);
    background: transparent;
    color: var(--steel-muted);
    font-family: Consolas, "Courier New", monospace;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    transition: background 160ms linear, border-color 180ms linear, color 180ms linear, transform 180ms var(--ease-out);
}

.console-option-link[aria-disabled="true"] {
    cursor: default;
    pointer-events: none;
    opacity: 0.72;
}

.console-option.is-featured .console-option-link {
    border-color: var(--signal-red);
    background: transparent;
    color: var(--signal-red);
    transform: none;
}

.console-option.is-featured .console-option-link:hover,
.console-option.is-featured .console-option-link:focus-visible {
    background: var(--signal-red);
    color: #fff;
    transform: scale(1.06);
}

.console-option.is-featured .console-option-link:active {
    transform: scale(0.94);
}

.console-option-select:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--signal-amber);
}

.console-option-link:focus-visible {
    outline: 2px solid var(--signal-amber);
    outline-offset: 3px;
}

.console-step {
    grid-row: 1;
    min-height: 44px;
    border: 0;
    border-bottom: 1px solid var(--hud-line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--steel);
    cursor: pointer;
    font-family: Consolas, "Courier New", monospace;
    font-size: 22px;
    transition: background 160ms linear, color 160ms linear;
}

.console-step.next {
    grid-row: 3;
    border-top: 1px solid var(--hud-line);
    border-bottom: 0;
}

.console-step:hover,
.console-step:focus-visible {
    background: var(--signal-red);
    color: #fff;
    outline: none;
}

.console-step[hidden] {
    display: block;
    visibility: visible;
    pointer-events: none;
    color: transparent;
    cursor: default;
    opacity: 1;
}

.console-step[hidden]::before {
    content: "END OF LIST";
    color: var(--steel-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    opacity: 0.55;
}

.console-step.prev[hidden]::before {
    content: "START OF LIST";
}

.console-mobile-status {
    display: none;
}

.console-catalog-link {
    grid-row: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 20px;
    align-items: center;
    margin: 14px;
    padding: 14px 16px;
    border: 1px solid var(--hud-line);
    background: rgba(255, 255, 255, 0.025);
    color: var(--steel);
    text-decoration: none;
    transition: border-color 160ms linear, background 160ms linear, color 160ms linear;
}

.console-catalog-link span:first-child {
    grid-column: 1 / -1;
    color: var(--steel-muted);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.console-catalog-link strong {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.console-catalog-link span:last-child {
    font-family: Consolas, "Courier New", monospace;
    font-size: 18px;
}

.console-catalog-link:hover,
.console-catalog-link:focus-visible {
    border-color: var(--signal-amber);
    background: rgba(255, 183, 3, 0.08);
    color: #fff;
    outline: none;
}

.console-catalog-link:focus-visible {
    box-shadow: 0 0 0 2px var(--signal-amber);
}

.console-specs {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.console-specs div {
    box-sizing: border-box;
    height: 134px;
    min-height: 134px;
    overflow: hidden;
    padding: 20px;
    border-right: 1px solid var(--hud-line);
}

.console-specs div:last-child {
    border-right: 0;
}

.console-specs strong {
    min-height: 2.1em;
    overflow-wrap: anywhere;
    font-size: clamp(22px, 1.9vw, 34px);
}

.console-specs [data-console-make] {
    font-size: clamp(18px, 1.45vw, 25px);
    line-height: 1;
    hyphens: auto;
}

.console-actions {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
}

.console-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--hud-line);
    color: var(--steel);
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 220ms var(--ease-out), background 180ms linear, border-color 180ms linear;
}

.console-button.primary,
.console-button:hover,
.console-button:focus-visible {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
    outline: none;
}

.console-button:hover,
.console-button:focus-visible {
    transform: translateY(-2px);
}

.console-actions .console-button {
    min-height: 44px;
}

.home-page .news-section {
    margin-top: 0;
}

@media (max-width: 1180px) {
    .system-console {
        height: auto;
        min-height: 74vh;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 700px auto auto;
    }

    .console-title {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        height: 440px;
        min-height: 440px;
        overflow: hidden;
    }

    .console-title h2 {
        min-height: 1.76em;
    }

    .console-title p:last-child {
        min-height: 8.52em;
    }

    .console-visual {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        height: 700px;
        min-height: 500px;
    }

    .console-options-wrap {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        height: 700px;
    }

    .console-options {
        grid-template-rows: repeat(3, minmax(170px, 1fr));
    }

    .console-option {
        min-height: 170px;
    }

    .console-specs {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .console-actions {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .system-console {
        position: relative;
        min-height: auto;
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: 440px 76px auto auto;
        margin-top: 18px;
    }

    .console-title,
    .console-visual,
    .console-options-wrap,
    .console-specs,
    .console-actions {
        grid-column: 1;
    }

    .console-title {
        grid-row: 1;
        z-index: 4;
        height: auto;
        min-height: 0;
        align-self: start;
        justify-content: start;
        gap: 8px;
        padding: 24px 72px 0 24px;
        overflow: visible;
        background: transparent;
        pointer-events: none;
    }

    .console-title h2 {
        min-height: 0;
        font-size: clamp(38px, 11vw, 58px);
        line-height: 0.9;
        text-shadow: 0 3px 24px rgba(0, 0, 0, 0.9);
    }

    .console-title p:last-child {
        display: none;
    }

    .console-visual {
        grid-row: 1;
        height: 440px;
        min-height: 440px;
    }

    .console-options-wrap {
        grid-row: 2;
        position: static;
        z-index: auto;
        height: 76px;
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr) 76px;
        grid-template-rows: 76px;
        align-items: stretch;
        overflow: hidden;
        border-bottom: 1px solid var(--hud-line);
        background:
            linear-gradient(90deg, rgba(255, 31, 69, 0.08), transparent 38%),
            rgba(5, 6, 7, 0.96);
        pointer-events: auto;
    }

    .console-options,
    .console-catalog-link {
        display: none;
    }

    .console-step {
        position: relative;
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: 76px;
        min-height: 76px;
        display: grid;
        place-items: center;
        padding: 0;
        border: 0;
        border-right: 1px solid var(--hud-line);
        background: rgba(255, 255, 255, 0.025);
        color: transparent;
        font-size: 0;
        pointer-events: auto;
        transform: none;
    }

    .console-step.next {
        grid-column: 3;
        grid-row: 1;
        border: 0;
        border-left: 1px solid var(--hud-line);
    }

    .console-step::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        box-sizing: border-box;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .console-step.prev::after {
        transform: translate(-35%, -50%) rotate(-135deg);
    }

    .console-step.next::after {
        transform: translate(-65%, -50%) rotate(45deg);
    }

    .console-step[hidden] {
        display: grid;
        opacity: 0.24;
    }

    .console-step[hidden]::before {
        display: none;
    }

    .console-mobile-status {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px 12px;
        text-align: center;
    }

    .console-mobile-status span {
        color: var(--signal-amber);
        font-family: Consolas, "Courier New", monospace;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .console-mobile-status strong {
        overflow: hidden;
        color: var(--steel);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.4px;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

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

    .console-specs div:nth-child(2) {
        border-right: 0;
    }

    .console-specs div:nth-child(-n + 4) {
        border-bottom: 1px solid var(--hud-line);
    }

    .console-actions {
        grid-row: 4;
        grid-template-columns: 1fr;
    }

    .console-title [data-console-type] {
        display: none;
    }

    .console-step {
        touch-action: manipulation;
    }
}

@media (max-width: 360px) {
    .home-page header.nav-open nav,
    .home-page header:focus-within nav {
        border-top-color: var(--line);
    }
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
}

img {
    -webkit-user-drag: none;
}

html {
    scroll-behavior: smooth;
}

html.home-page {
    scroll-snap-type: y proximity;
}

body {
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: var(--white);
    -ms-overflow-style: none;
}


body::-webkit-scrollbar {
    display: none;
}


header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    scroll-snap-align: start;
}

h1 {
    width: auto;
    margin: 0;
    color: var(--black);
    font-size: 48px;
    font-weight: 100;
    white-space: nowrap;
}

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

nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

nav a {
    color: var(--black);
    font-size: 22px;
    text-decoration: none;
}

.nav-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.nav-menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: transform 100ms linear;
}

.nav-menu-toggle span:first-child {
    transform: translateY(-4px);
}

.nav-menu-toggle span:last-child {
    transform: translateY(4px);
}

.nav-open .nav-menu-toggle span:first-child {
    transform: rotate(45deg);
}

.nav-open .nav-menu-toggle span:last-child {
    transform: rotate(-45deg);
}

.nav-menu-toggle:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 3px;
}

header.container {
    padding: 20px 0 0 0;
    max-width: var(--container-width);
}

@media (max-width: 1100px) {
    header.container {
        max-width: var(--container-main-width);
    }
}


.news-section container {
    max-width: 90%;
}
.news-section {
    position: relative;
    width: 100%;
    margin: 50px 0 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-slider {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
}

.news-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.news-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.news-slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-slide:hover img {
    transform: scale(1.03);
}


.news-pagination {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}

.news-dot {
    width: 8px;
    height: 2px;
    background-color: var(--gray);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-dot.active {
    width: 32px;
    background-color: var(--black);
    opacity: 1;
}



main.container {
    width: 100%;
    max-width: var(--container-width);
}

.featured-products-intro {
    padding: 72px 0 18px;
    border-top: 4px solid var(--black);
    scroll-margin-top: 24px;
    scroll-snap-align: start;
}

.featured-products-intro h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(48px, 8vw, 116px);
    font-weight: 100;
    line-height: 0.9;
}

.featured-products-intro p:not(.page-kicker) {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--gray);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.45;
}

.featured-products-intro a {
    display: inline-block;
    margin-top: 28px;
    color: var(--black);
    font-size: 12px;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid var(--black);
}

.featured-products-intro a:hover,
.featured-products-intro a:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}


.page-background-content {
    transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


body:has(.product-card.is-active) .page-background-content {
    filter: blur(8px) brightness(0.8);
}


.product-card {
    position: relative;
    height: 80vh;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 50px 0 50px 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: white;
    scroll-margin-top: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}


.product-card.is-active {
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover:not(.is-active) {
    border-color: var(--black);
}


.product-visual {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);

    touch-action: pan-y;
    cursor: pointer;
}

.product-visual img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-height: 80%;
    max-width: 90%;
    object-fit: contain;
    opacity: 0;

    transition:
        opacity 0.5s ease,
        transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}


.product-visual img.active {
    opacity: 1;
    z-index: 2;
}


.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slide-nav.prev {
    left: 50px;
}
.slide-nav.next {
    right: 50px;
}

.product-card.is-active .slide-nav {
    opacity: 0.65;
    pointer-events: auto;
}

.product-card.is-active .product-visual:hover .slide-nav {
    opacity: 0.9;
}



.product-info {
    position: absolute;
    right: -50%;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    background: var(--white);
}


.toggle-btn {

    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    z-index: 10;
    cursor: pointer;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.toggle-btn span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle-btn span:nth-child(1) {
    transform: rotate(0deg);
}

.toggle-btn span:nth-child(2) {
    transform: rotate(90deg);
}



.product-card.is-active .product-visual {
    width: 65%;
}


.product-card.is-active .product-visual img {

    transform: translate(-50%, -50%) scale(1);
}


.product-card.is-active .product-info {
    right: 0;
    opacity: 1;
}


.product-card.is-active .toggle-btn span:nth-child(1) {

    transform: translateY(2px) rotate(45deg);
}

.product-card.is-active .toggle-btn span:nth-child(2) {

    transform: translateY(-2px) rotate(-45deg);
}
.slide-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 3s00;
    letter-spacing: 3px;
    color: var(--black);
    opacity: 0.6;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.4s ease;
}


.product-card.is-active .slide-counter {
    opacity: 0;
}


@media (pointer: fine) {
    .product-card:hover:not(.is-active) {
        border-color: var(--black);
    }
}
@media (min-width: 769px) and (max-width: 1100px) {
    main.container {
        max-width: var(--container-main-width);
    }

    .product-card {
        height: 85vh;
        padding: 24px 0;
    }

    .product-visual img {
        max-width: 105%;
        max-height: 74%;
    }

    .product-card.is-active .product-visual {
        width: 100%;
        height: 100%;
    }

    .product-card.is-active .product-visual img {
        max-width: 105%;
        max-height: 52%;
        transform: translate(-50%, -82%) scale(1.05);
    }

    .product-info {
        right: 0;
        bottom: -100%;
        width: 100%;
        height: 46%;
        box-sizing: border-box;
        justify-content: flex-start;
        padding: 40px 48px;
        background: var(--white);
        z-index: 10;
    }

    .product-card.is-active .product-info {
        bottom: 0;
    }

    .slide-nav {
        display: none;
    }
}
@media (max-width: 768px) {
    html.home-page {
        scroll-snap-type: none;
    }

    header {
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
        padding-top: 10px;
    }
    h1 {
        font-size: 32px;
    }
    nav {
        gap: 16px;
    }
    nav a {
        font-size: 16px;
    }

    header.container {
        padding-top: 14px;
    }

    .news-section {
        margin-top: 20px;
    }

    .news-slide {
        height: 70vh;
    }

    .product-card {
        height: 85vh;
        padding: 20px 0;
    }

    main.container {
        max-width: var(--container-main-width);
    }
    .product-visual img {
        max-width: 120%;
    }

    .slide-nav {
        display: none;
    }

    .product-info {
        right: 0;
        bottom: -100%;
        width: 100%;
        height: 50%;

        padding: 40px 30px;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;


        align-items: flex-start;
        text-align: left;

        background: var(--white);
        z-index: 10;
    }

    .product-info h2 {
        font-size: 28px;
        font-weight: 500;

        letter-spacing: -0.5px;
        margin: 0 0 6px 0;
        color: var(--black);
    }
    .product-info p {
        font-size: 15px;

        color: var(--gray);
        margin: 0 0 24px 0;
        line-height: 1.5;
    }
    .product-info .bullet-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .product-info .bullet-content {
        font-size: 15px;
        color: var(--black);
        padding: 14px 0;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        align-items: center;
    }
    .product-info .bullet-content:last-child {
        border-bottom: none;
    }
    .product-info .bullet-content::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 4px;
        background-color: var(--black);
        border-radius: 50%;
        margin-right: 16px;
        opacity: 0.2;
    }
    .bullet-content {
        font-size: 15px;
        margin-bottom: 8px;
    }



    .product-card.is-active .product-info {
        bottom: 0;
    }

    .product-card.is-active .product-visual {
        width: 100%;
        height: 100%;
    }

    .product-card.is-active .product-visual img {
        top: 25%;
        max-width: 115%;
        max-height: 42%;
        transform: translate(-50%, -50%) scale(1.05);
    }
}
@media (max-width: 360px) {
    header {
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .nav-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    header nav {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 16px;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        padding: 0 2px;
        box-sizing: border-box;
        border-top: 0 solid transparent;
    }

    header.nav-open nav {
        max-height: 80px;
        visibility: visible;
        padding-top: 12px;
        border-top: 1px solid var(--black);
    }

}


.fade-in-up {
    opacity: 0;
    transform: translateY(18px);

    transition:
        opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);

    will-change: opacity, transform;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.site-footer {
    margin-top: 80px;
    padding: 80px 0 36px;
    border-top: 4px solid var(--black);
    background: var(--white);
    color: var(--black);
    scroll-snap-align: start;
}

.footer-inner {
    display: grid;
    gap: 60px;
}

.footer-brand {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 60px;
    align-items: end;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--black);
}

.footer-brand h2 {
    margin: 0;
    font-size: 64px;
    font-weight: 100;
    line-height: 0.95;
}

.footer-brand p {
    margin: 0;
    max-width: 520px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--gray);
}

.footer-kicker {
    grid-column: 1 / -1;
    font-size: 12px !important;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--black) !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    gap: 16px;
    padding-top: 22px;
    border-top: 2px solid var(--black);
}

.footer-column h3 {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column address {
    color: var(--black);
    font-size: 17px;
    line-height: 1.5;
    text-decoration: none;
    font-style: normal;
}

.footer-column a {
    width: fit-content;
    border-bottom: 1px solid transparent;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    border-bottom-color: var(--black);
    outline: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--black);
    color: var(--gray);
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 40px;
        padding: 56px 0 28px;
    }

    .footer-inner {
        gap: 40px;
    }

    .footer-brand {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 36px;
    }

    .footer-brand h2 {
        font-size: 42px;
    }

    .footer-brand p {
        font-size: 16px;
    }

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

    .footer-column {
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


.page-main {
    padding: 42px 0 40px;
}

.page-hero {
    min-height: 42vh;
    display: grid;
    align-content: end;
    gap: 22px;
    padding-bottom: 48px;
    border-bottom: 4px solid var(--black);
}

.page-kicker {
    margin: 0;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-hero h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(52px, 12vw, 132px);
    font-weight: 100;
    line-height: 0.92;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: var(--gray);
    font-size: 21px;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .content-page .page-hero {
        min-height: auto;
    }
}

.page-section {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 48px;
    padding: 56px 0;
    border-bottom: 1px solid var(--black);
}

.page-section h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    white-space: nowrap;
    text-transform: uppercase;
}

.page-section p,
.page-section li {
    font-size: 19px;
    line-height: 1.6;
}

.page-section p {
    margin: 0 0 22px;
}

.page-section ul,
.page-section ol {
    margin: 0;
    padding-left: 22px;
}

.page-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.page-link-card {
    min-height: 160px;
    padding: 24px;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    transition:
        background-color 100ms linear,
        color 100ms linear;
}

.page-link-card:hover,
.page-link-card:focus-visible {
    background: var(--black);
    color: var(--white);
    outline: none;
}

.page-link-card span {
    display: block;
    margin-bottom: 42px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-link-card strong {
    display: block;
    font-size: 24px;
    font-weight: 100;
    line-height: 1.1;
}

.contact-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 2px solid var(--black);
}

.contact-panel div {
    min-height: 180px;
    padding: 26px;
    border-right: 1px solid var(--black);
}

.contact-panel div:last-child {
    border-right: none;
}

.contact-panel span {
    display: block;
    margin-bottom: 32px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-panel a,
.contact-panel address {
    color: var(--black);
    font-size: 20px;
    line-height: 1.45;
    text-decoration: none;
    font-style: normal;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
}

.product-table th,
.product-table td {
    padding: 18px 0;
    border-bottom: 1px solid var(--black);
    text-align: left;
    font-size: 17px;
}

.product-table th {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.catalog-section {
    padding: 56px 0;
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    margin-bottom: 28px;
}

.catalog-head h3 {
    margin: 12px 0 0;
    font-size: 48px;
    font-weight: 100;
    line-height: 1;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.catalog-filter {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--black);
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition:
        background-color 100ms linear,
        color 100ms linear;
}

.catalog-filter:hover,
.catalog-filter:focus-visible,
.catalog-filter.is-active {
    background: var(--black);
    color: var(--white);
    outline: none;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.catalog-card {
    border: 1px solid var(--black);
    background: var(--white);
}

.catalog-card[hidden] {
    display: none;
}

.catalog-card a {
    display: grid;
    min-height: 100%;
    color: var(--black);
    text-decoration: none;
}

.catalog-image {
    height: clamp(260px, 36vw, 420px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 22px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--black);
    background: #f5f5f5;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: translateY(-8%);
    transition: transform 180ms linear;
}

.catalog-card a:hover .catalog-image img,
.catalog-card a:focus-visible .catalog-image img {
    transform: translateY(-8%) scale(1.04);
}

.catalog-card a:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.catalog-dummy {
    position: relative;
    align-content: space-between;
    justify-items: start;
    background:
        linear-gradient(#00000010 1px, transparent 1px),
        linear-gradient(90deg, #00000010 1px, transparent 1px),
        var(--white);
    background-size: 34px 34px;
}

.catalog-dummy::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 2px solid var(--black);
    pointer-events: none;
}

.catalog-dummy span {
    z-index: 1;
    margin: 8px 0 0 8px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.catalog-dummy strong {
    z-index: 1;
    align-self: end;
    margin: 0 0 8px 8px;
    font-size: clamp(76px, 12vw, 148px);
    font-weight: 100;
    line-height: 0.8;
}

.catalog-content {
    padding: 28px;
}

.catalog-content span {
    display: block;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.catalog-content h4 {
    margin: 0 0 16px;
    font-size: 34px;
    font-weight: 100;
    line-height: 1;
}

.catalog-content p {
    margin: 0 0 28px;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.5;
}

.catalog-content dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    border-top: 1px solid var(--black);
}

.catalog-content dl div {
    padding-top: 18px;
}

.catalog-content dt {
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.catalog-content dd {
    margin: 0;
    font-size: 18px;
}

.catalog-content .catalog-card-action {
    margin: 24px 0 0;
    color: var(--black);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.catalog-card a:hover .catalog-card-action,
.catalog-card a:focus-visible .catalog-card-action {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.detail-back {
    width: fit-content;
    color: var(--black);
    font-size: 13px;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid var(--black);
}

.detail-back:hover,
.detail-back:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 48px;
    padding: 56px 0 128px;
}

.detail-media {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 32px;
    background: transparent;
    box-sizing: border-box;
}

.detail-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.detail-gallery {
    cursor: pointer;
}

.detail-gallery img {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 180ms linear;
    pointer-events: none;
}

.detail-gallery img.is-active {
    opacity: 1;
}

.detail-counter {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--black);
    font-size: 14px;
    letter-spacing: 3px;
    pointer-events: none;
}

.detail-counter[data-total="0"] {
    display: none;
}

.detail-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--black);
    cursor: pointer;
    font: inherit;
    font-size: 26px;
}

.detail-gallery-nav:hover,
.detail-gallery-nav:focus-visible {
    background: transparent;
    color: var(--black);
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.detail-gallery-nav.prev {
    left: 18px;
}

.detail-gallery-nav.next {
    right: 18px;
}

.detail-media.catalog-dummy::after {
    border: none;
}

.detail-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
}

.detail-copy h3 {
    margin: 0;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 100;
    line-height: 0.94;
}

.detail-copy p {
    margin: 0;
    color: var(--gray);
    font-size: 20px;
    line-height: 1.55;
}

.detail-specs {
    display: grid;
    border-top: 2px solid var(--black);
}

.detail-specs div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--black);
}

.detail-specs dt {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.detail-specs dd {
    margin: 0;
    font-size: 18px;
}

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

.detail-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 22px;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.detail-action.primary,
.detail-action:hover,
.detail-action:focus-visible {
    background: var(--black);
    color: var(--white);
    outline: none;
}

@media (max-width: 768px) {
    .page-main {
        padding: 32px 0 24px;
    }

    .page-hero {
        min-height: auto;
        padding-bottom: 36px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .page-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 42px 0;
    }

    .page-section p,
    .page-section li {
        font-size: 17px;
    }

    .page-link-grid,
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-panel div {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--black);
    }

    .contact-panel div:last-child {
        border-bottom: none;
    }

    .product-table th,
    .product-table td {
        font-size: 14px;
    }

    .catalog-section {
        padding: 42px 0;
    }

    .catalog-head {
        display: grid;
        align-items: start;
    }

    .catalog-head h3 {
        font-size: 38px;
    }

    .catalog-filters {
        justify-content: flex-start;
    }

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

    .catalog-image {
        height: 260px;
        padding: 16px;
    }

    .catalog-image img {
        transform: none;
    }

    .catalog-card a:hover .catalog-image img,
    .catalog-card a:focus-visible .catalog-image img {
        transform: scale(1.04);
    }

    .catalog-content {
        padding: 24px;
    }

    .catalog-content h4 {
        font-size: 30px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .detail-media {
        min-height: 320px;
        padding: 20px;
    }

    .detail-media img {
        max-height: 300px;
    }

    .detail-copy p {
        font-size: 18px;
    }

    .detail-specs div {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Final home-page cascade */
.home-page body {
    margin: 0;
    background:
        linear-gradient(135deg, rgba(216, 25, 63, 0.14), transparent 32%),
        linear-gradient(180deg, #000 0%, #080808 48%, #000 100%);
    color: var(--white);
    font-family: var(--font-body);
}

.home-page .container,
.home-page main.container {
    max-width: min(1440px, 92vw);
}

.home-page header.container {
    position: sticky;
    top: 0;
    z-index: 50;
    max-width: 100%;
    width: 100%;
    padding: 14px 4vw;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(12px);
}

.home-page .brand-title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-page .brand-mark {
    width: clamp(44px, 5vw, 70px);
    height: clamp(44px, 5vw, 70px);
    object-fit: contain;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-page nav {
    gap: 12px;
}

.home-page nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-page nav a:hover,
.home-page nav a:focus-visible {
    border-color: var(--red);
    background: var(--red);
    outline: none;
}

.home-page .section-head {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 32px;
    align-items: end;
    margin-bottom: 24px;
}

.home-page .section-head .page-kicker {
    grid-column: 1 / -1;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-page .section-head h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(34px, 6vw, 78px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.home-page .section-head a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--red);
    color: var(--white);
    background: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.home-page .news-section {
    margin: 44px 0 72px;
    align-items: stretch;
}

.home-page .news-slider {
    gap: 18px;
    padding: 0 0 18px;
}

.home-page .news-slide {
    position: relative;
    min-height: clamp(420px, 68vh, 760px);
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--panel);
}

.home-page .news-slide img {
    height: clamp(420px, 68vh, 760px);
    filter: saturate(0.88) contrast(1.08);
}

.home-page .news-dot {
    width: 30px;
    height: 3px;
    background: var(--white);
    opacity: 0.28;
}

.home-page .news-dot.active {
    width: 64px;
    background: var(--red);
    opacity: 1;
}

.home-page .products-section {
    padding: 64px 0 22px;
    border-top: 2px solid var(--red);
}

.home-page .products-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 0 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-page .products-slider::-webkit-scrollbar {
    display: none;
}

.home-page .product-card {
    flex: 0 0 100%;
    height: clamp(620px, 78vh, 820px);
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(216, 25, 63, 0.22), transparent 36%),
        var(--panel);
    scroll-snap-align: center;
}

.home-page .product-card:hover:not(.is-active) {
    border-color: var(--red);
}

.home-page .product-card.is-active {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red), 0 24px 80px rgba(216, 25, 63, 0.2);
}

.home-page .product-visual {
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
}

.home-page .product-visual img {
    max-width: 92%;
    max-height: 86%;
}

.home-page .product-info {
    width: 34%;
    background: #080808;
    border-left: 1px solid var(--red);
    color: var(--white);
}

.home-page .product-info h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-page .product-info p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.home-page .bullet-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-page .bullet-content {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--white);
    font-size: 15px;
    line-height: 1.35;
}

.home-page .bullet-content::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 12px;
    background: var(--red);
}

.home-page .toggle-btn {
    background: var(--red);
}

.home-page .toggle-btn span,
.home-page .nav-menu-toggle span {
    background: var(--white);
}

.home-page .slide-counter {
    color: var(--white);
    opacity: 0.82;
    font-weight: 700;
}

.home-page .slide-nav {
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
}

.home-page .slide-nav:hover,
.home-page .slide-nav:focus-visible {
    border-color: var(--red);
    background: var(--red);
    outline: none;
}

.home-page .site-footer {
    margin-top: 80px;
    border-top: 2px solid var(--red);
    background: #050505;
    color: var(--white);
}

.home-page .footer-brand,
.home-page .footer-bottom,
.home-page .footer-column {
    border-color: var(--line);
}

.home-page .footer-brand h2,
.home-page .footer-column h3,
.home-page .footer-column a,
.home-page .footer-column address {
    color: var(--white);
}

.home-page .footer-brand p,
.home-page .footer-bottom {
    color: var(--muted);
}

.home-page .footer-kicker,
.home-page .footer-column h3 {
    color: var(--red) !important;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .home-page .product-card.is-active .product-visual {
        width: 100%;
        height: 100%;
    }

    .home-page .product-card.is-active .product-visual img {
        max-width: 105%;
        max-height: 52%;
        transform: translate(-50%, -82%) scale(1.05);
    }

    .home-page .product-info {
        right: 0;
        bottom: -100%;
        width: 100%;
        height: 46%;
        border-left: none;
        border-top: 1px solid var(--red);
        background: #080808;
    }

    .home-page .product-card.is-active .product-info {
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .home-page header.container {
        padding: 12px 5vw;
    }

    .home-page nav a {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .home-page .section-head {
        grid-template-columns: 1fr;
    }

    .home-page .news-section {
        margin: 28px 0 48px;
    }

    .home-page .news-slide,
    .home-page .news-slide img {
        min-height: 0;
        height: 62vh;
    }

    .home-page .products-section {
        padding-top: 42px;
    }

    .home-page .product-card {
        flex-basis: 100%;
        height: 76vh;
    }

    .home-page .product-info {
        right: 0;
        bottom: -100%;
        width: 100%;
        height: 52%;
        padding: 34px 26px;
        background: #080808;
        border-left: none;
        border-top: 1px solid var(--red);
    }

    .home-page .product-card.is-active .product-info {
        bottom: 0;
    }

    .home-page .product-card.is-active .product-visual {
        width: 100%;
        height: 100%;
    }

    .home-page .product-info h2 {
        font-size: 28px;
    }
}
/* Main page modern UI override - absolute final */
.home-page body {
    background-color: #000;
    background-image:
        linear-gradient(90deg, rgba(166, 176, 184, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(166, 176, 184, 0.045) 1px, transparent 1px);
    background-size: 96px 96px;
    background-attachment: fixed;
    color: var(--steel);
    font-family: var(--font-body);
}

.home-page body::before {
    display: none;
}

.home-page .container,
.home-page main.container {
    max-width: min(1500px, 94vw);
}

.home-page header.container {
    border-bottom-color: var(--hud-line);
    background: rgba(5, 6, 7, 0.78);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

.home-page .brand-title {
    color: var(--steel);
    text-decoration: none;
}

.home-page .brand-mark {
    border-color: var(--hud-strong);
    background: transparent;
    box-shadow: none;
}

.home-page nav a {
    border-color: var(--hud-line);
    color: var(--steel);
    background: rgba(255, 255, 255, 0.02);
}

.home-page nav a:hover,
.home-page nav a:focus-visible {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
}

.home-page .section-head {
    padding-top: 18px;
    border-top: 1px solid var(--hud-line);
}

.home-page .section-head .page-kicker {
    color: var(--signal-amber) !important;
}

.home-page .section-head h2,
.home-page .product-info h2 {
    font-family: Impact, "Arial Black", var(--font-body);
    color: #f5f7f8;
}

.home-page .section-head a,
.home-page .product-carousel-nav:hover,
.home-page .product-carousel-nav:focus-visible,
.home-page .slide-nav:hover,
.home-page .slide-nav:focus-visible,
.home-page .toggle-btn,
.home-page .bullet-content::before {
    border-color: var(--signal-red);
    background: var(--signal-red);
}

.home-page .news-section {
    margin-top: 0;
}

.home-page .news-slide,
.home-page .product-card {
    border-color: var(--hud-line);
    background:
        linear-gradient(135deg, rgba(255, 31, 69, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
        var(--carbon-2);
}

.home-page .news-dot.active {
    background: var(--signal-red);
}

.home-page .products-section,
.home-page .site-footer {
    border-top-color: var(--hud-line);
}

.home-page .product-card.is-active {
    border-color: var(--signal-red);
    box-shadow: 0 0 0 1px rgba(255, 31, 69, 0.75), 0 28px 90px rgba(255, 31, 69, 0.18);
}

.home-page .product-info {
    border-left-color: var(--signal-red);
    background: rgba(5, 6, 7, 0.92);
}

.home-page .site-footer {
    background: rgba(5, 6, 7, 0.96);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.language-switcher strong,
.language-switcher a {
    min-width: 34px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hud-line);
    color: var(--steel);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
}

.language-switcher strong {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
}

@media (max-width: 768px) {
    .home-page .container,
    .home-page main.container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page header.container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page .brand-title {
        font-size: 22px;
    }

    .home-page .product-info {
        border-left: 0;
        border-top-color: var(--signal-red);
    }
}

/* Darker product display surfaces */
.home-page .console-visual {
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 50% 52%, rgba(255, 31, 69, 0.07), transparent 48%),
        #020303;
    background-size: 42px 42px, 42px 42px, auto, auto;
}

.home-page .product-visual {
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #020303;
    background-size: 42px 42px, 42px 42px, auto;
}

.home-page .footer-brand h2 {
    font-family: var(--font-body);
    font-size: clamp(36px, 3.2vw, 56px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: uppercase;
}

/* Borderless home surfaces: separation comes from space and tone. */
.home-page header.container,
.home-page .brand-mark,
.home-page nav a,
.home-page .language-switcher strong,
.home-page .language-switcher a,
.home-page .section-head,
.home-page .news-slide,
.home-page .system-console,
.home-page .console-option,
.home-page .console-option-link,
.home-page .console-step,
.home-page .console-catalog-link,
.home-page .console-specs div,
.home-page .console-button,
.home-page .site-footer {
    border: 0;
}

.home-page .news-section {
    margin-bottom: clamp(72px, 9vw, 132px);
}

.home-page .news-slide {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
}

.home-page .selector-section {
    position: relative;
    padding-top: clamp(20px, 3vw, 42px);
    --console-surface: #0b0e12;
    --console-surface-raised: #11161c;
    --console-surface-soft: #171d24;
    --console-stroke: rgba(215, 221, 226, 0.16);
    --console-stroke-strong: rgba(215, 221, 226, 0.28);
}

.home-page .selector-section > .section-head {
    margin-bottom: clamp(40px, 4vw, 58px);
}

.home-page .selector-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -72px;
    left: 8%;
    width: 46%;
    height: 190px;
    background: radial-gradient(ellipse at center, rgba(255, 31, 69, 0.09), transparent 70%);
    pointer-events: none;
}

.home-page .system-console {
    position: relative;
    --console-light-x: 50%;
    --console-light-y: 42%;
    gap: 6px;
    overflow: hidden;
    border-radius: 12px;
    background: #050608;
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.48),
        0 1px 0 rgba(255, 255, 255, 0.035);
}

.home-page .system-console::before {
    content: "";
    position: absolute;
    z-index: 8;
    inset: 10px;
    border: 1px solid rgba(153, 188, 214, 0.08);
    clip-path: polygon(
        0 0, 36px 0, 36px 1px, calc(100% - 36px) 1px,
        calc(100% - 36px) 0, 100% 0, 100% 36px,
        calc(100% - 1px) 36px, calc(100% - 1px) calc(100% - 36px),
        100% calc(100% - 36px), 100% 100%, calc(100% - 36px) 100%,
        calc(100% - 36px) calc(100% - 1px), 36px calc(100% - 1px),
        36px 100%, 0 100%, 0 calc(100% - 36px),
        1px calc(100% - 36px), 1px 36px, 0 36px
    );
    pointer-events: none;
}

.home-page .console-title {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(ellipse at 18% 4%, rgba(153, 188, 214, 0.13), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 36%),
        linear-gradient(165deg, #111820 0%, #090c10 72%);
}

.home-page .console-title::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -24%;
    bottom: -16%;
    width: 76%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 31, 69, 0.1), transparent 68%);
    filter: blur(12px);
    pointer-events: none;
}

.home-page .console-visual {
    isolation: isolate;
    background:
        radial-gradient(
            circle at var(--console-light-x) var(--console-light-y),
            rgba(202, 228, 245, 0.2),
            rgba(117, 156, 184, 0.06) 18%,
            transparent 38%
        ),
        radial-gradient(ellipse at 52% 72%, rgba(255, 31, 69, 0.08), transparent 44%),
        linear-gradient(rgba(153, 188, 214, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 188, 214, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(153, 188, 214, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 188, 214, 0.055) 1px, transparent 1px),
        linear-gradient(150deg, #0b1117 0%, #040608 62%, #080b0f 100%);
    background-size: auto, auto, 32px 32px, 32px 32px, 160px 160px, 160px 160px, auto;
}

.home-page .console-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 8% 10%;
    background:
        linear-gradient(112deg, transparent 24%, rgba(220, 238, 250, 0.075) 49%, transparent 70%);
    filter: blur(18px);
    opacity: 0.8;
    pointer-events: none;
    transform: skewX(-8deg);
}

.home-page .console-options-wrap {
    background:
        linear-gradient(180deg, rgba(153, 188, 214, 0.045), transparent 26%),
        #080b0f;
}

.home-page .console-actions {
    background:
        linear-gradient(145deg, rgba(153, 188, 214, 0.045), transparent 45%),
        #080b0f;
}

.home-page .console-visual::before {
    content: "OPTICAL BAY / LIVE PREVIEW";
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 22px;
    padding-left: 18px;
    color: rgba(202, 228, 245, 0.48);
    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    pointer-events: none;
}

.home-page .console-visual::before {
    background:
        linear-gradient(90deg, rgba(255, 31, 69, 0.8) 0 10px, transparent 10px) left center / 12px 1px no-repeat;
}

.home-page .console-options {
    gap: 4px;
    padding: 4px 0;
}

.home-page .console-option {
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.026), transparent 48%),
        rgba(11, 14, 18, 0.86);
}

.home-page .console-option:hover,
.home-page .console-option:focus-within {
    background:
        radial-gradient(circle at 92% 24%, rgba(153, 188, 214, 0.11), transparent 34%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.04), transparent 52%),
        #11161c;
}

.home-page .console-option.is-featured {
    background:
        radial-gradient(circle at 90% 24%, rgba(255, 31, 69, 0.15), transparent 34%),
        linear-gradient(115deg, rgba(255, 31, 69, 0.17), rgba(255, 31, 69, 0.02) 62%),
        #12151a;
}

.home-page .console-option-link,
.home-page .console-step,
.home-page .console-catalog-link,
.home-page .console-button {
    border: 1px solid var(--console-stroke);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.home-page .console-option-link {
    border-color: var(--console-stroke);
    background: rgba(215, 221, 226, 0.035);
    color: #aab4bd;
}

.home-page .console-option.is-featured .console-option-link {
    border-color: rgba(255, 31, 69, 0.55);
    background: rgba(255, 31, 69, 0.07);
    color: #ff4967;
}

.home-page .console-catalog-link,
.home-page .console-button {
    border-color: var(--console-stroke);
    background: rgba(215, 221, 226, 0.035);
}

.home-page .console-button.primary {
    border-color: rgba(255, 31, 69, 0.68);
    background: linear-gradient(135deg, #e8193f, #bc0f30);
    color: #fff;
}

.home-page .console-catalog-link:hover,
.home-page .console-catalog-link:focus-visible {
    border-color: rgba(255, 183, 3, 0.52);
    background: rgba(255, 183, 3, 0.065);
}

.home-page .console-button:not(.primary):hover,
.home-page .console-button:not(.primary):focus-visible {
    border-color: var(--console-stroke-strong);
    background: var(--console-surface-soft);
    color: #fff;
}

.home-page .console-specs {
    gap: 4px;
    background: transparent;
}

.home-page .console-specs div {
    position: relative;
    background:
        radial-gradient(circle at 14% 12%, rgba(153, 188, 214, 0.08), transparent 40%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.025), transparent 48%),
        #0a0d11;
}

.home-page .console-specs div::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 18px;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(153, 188, 214, 0.28) 0 2px,
        transparent 2px 5px
    );
}

.home-page .console-actions {
    gap: 8px;
}

.home-page [data-console-image] {
    view-transition-name: console-product-image;
}

.home-page [data-console-name] {
    view-transition-name: console-product-name;
}

.home-page .console-specs {
    view-transition-name: console-product-specs;
}

::view-transition-group(console-product-image),
::view-transition-group(console-product-name),
::view-transition-group(console-product-specs) {
    animation-duration: 320ms;
    animation-timing-function: var(--ease-out);
}

::view-transition-old(console-product-image) {
    animation: console-vt-old 220ms ease-in both;
}

::view-transition-new(console-product-image) {
    animation: console-vt-new 320ms var(--ease-out) both;
}

::view-transition-old(console-product-name),
::view-transition-old(console-product-specs) {
    animation: console-vt-copy-old 150ms ease-in both;
}

::view-transition-new(console-product-name),
::view-transition-new(console-product-specs) {
    animation: console-vt-copy-new 280ms var(--ease-out) both;
}

@keyframes console-vt-old {
    to {
        opacity: 0;
        transform: translateX(-24px) scale(0.985);
    }
}

@keyframes console-vt-new {
    from {
        opacity: 0;
        transform: translateX(34px) scale(1.015);
        filter: blur(4px);
    }
}

@keyframes console-vt-copy-old {
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@keyframes console-vt-copy-new {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

@media (min-width: 769px) {
    .home-page .console-step {
        position: relative;
        min-height: 34px;
        margin: 8px 14px 0;
        border: 0;
        background: transparent;
        color: transparent;
        font-size: 0;
        box-shadow: none;
    }

    .home-page .console-step.next {
        margin: 0 14px 8px;
        border: 0;
    }

    .home-page .console-step::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-top: 1.5px solid #aab4bd;
        border-right: 1.5px solid #aab4bd;
    }

    .home-page .console-step.prev::after {
        transform: translate(-50%, -35%) rotate(-45deg);
    }

    .home-page .console-step.next::after {
        transform: translate(-50%, -65%) rotate(135deg);
    }

    .home-page .console-step:hover,
    .home-page .console-step:focus-visible {
        border: 0;
        background: rgba(153, 188, 214, 0.055);
        box-shadow: none;
    }

    .home-page .console-step:hover::after,
    .home-page .console-step:focus-visible::after {
        border-color: #fff;
    }

    .home-page .console-step[hidden]::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-page .selector-section > .section-head {
        margin-bottom: 24px;
    }

    .home-page .system-console {
        gap: 4px;
        border-radius: 10px;
    }

    .home-page .console-options-wrap {
        border: 0;
    }

    .home-page .console-step,
    .home-page .console-step.next,
    .home-page .console-specs div,
    .home-page .console-specs div:nth-child(-n + 4) {
        border: 0;
    }

    .home-page .console-step,
    .home-page .console-step.next {
        border: 0;
        box-shadow: none;
    }

    .home-page .console-specs {
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-group(console-product-image),
    ::view-transition-group(console-product-name),
    ::view-transition-group(console-product-specs),
    ::view-transition-old(console-product-image),
    ::view-transition-new(console-product-image),
    ::view-transition-old(console-product-name),
    ::view-transition-new(console-product-name),
    ::view-transition-old(console-product-specs),
    ::view-transition-new(console-product-specs) {
        animation: none;
    }
}

/* BC Interceptor scroll story */
.home-page main.container {
    overflow: visible;
}

.home-page .interceptor-story {
    position: relative;
    width: 100vw;
    height: 620vh;
    margin-left: calc(50% - 50vw);
    /* Pull the story up under the sticky nav so the pane locks at viewport top
       from the first frame — no pre-scroll before the story engages. --nav-h is
       published live by animations.js (full vs compact). */
    margin-top: calc(-1 * var(--nav-h, 72px));
    background: #000;
}

.home-page .interceptor-story-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.home-page .interceptor-story-canvas,
.home-page .interceptor-story-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .interceptor-story-canvas {
    z-index: 1;
    opacity: 0;
    transition: opacity 350ms ease;
}

.home-page .interceptor-story-fallback {
    z-index: 0;
}

/* No poster placeholder while frames download on the animated path — show black
   until frame 0 draws. Fallback image stays only for the reduced-motion/static
   path (which adds .is-static). */
.home-page .interceptor-story:not(.is-static) .interceptor-story-fallback {
    display: none;
}

.home-page .interceptor-story.is-ready .interceptor-story-canvas {
    opacity: 1;
}

.home-page .interceptor-story.is-ready .interceptor-story-fallback {
    display: none;
}

.home-page .interceptor-story-shade {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 48%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 32%),
        radial-gradient(circle at 50% 50%, transparent 36%, rgba(0, 0, 0, 0.28));
    pointer-events: none;
}

.home-page .interceptor-story-beat {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 300ms ease, transform 500ms var(--ease-out);
    pointer-events: none;
}

.home-page .interceptor-story-beat.is-active {
    opacity: 1;
    transform: translateY(0);
}

.home-page .interceptor-story-beat,
.home-page .interceptor-story-beat * {
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.home-page .interceptor-story-beat h1,
.home-page .interceptor-story-beat h2 {
    text-wrap: balance;
}

.home-page .interceptor-story-intro {
    left: clamp(24px, 7vw, 112px);
    bottom: clamp(58px, 10vh, 110px);
    max-width: 700px;
}

.home-page .story-index {
    margin: 0 0 14px;
    color: var(--signal-red);
    font: 800 11px/1 Consolas, "Courier New", monospace;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.home-page .interceptor-story h1 {
    margin: 0;
    color: #f5f7f8;
    font: 900 clamp(70px, 11vw, 180px)/0.77 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.home-page .story-lede {
    max-width: 520px;
    margin: 32px 0 0;
    color: #c9d0d5;
    font-size: clamp(16px, 1.45vw, 22px);
    line-height: 1.45;
}

.home-page .story-scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: #fff;
    font: 700 10px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.home-page .story-scroll-cue i {
    width: 54px;
    height: 1px;
    background: var(--signal-red);
    animation: story-cue 1.4s ease-in-out infinite;
    transform-origin: left;
}

.home-page .story-callout {
    width: min(470px, 39vw);
}

.home-page .story-callout-motor {
    top: 18%;
    left: 7vw;
}

.home-page .story-callout-camera {
    right: 7vw;
    bottom: 13%;
}

.home-page .story-callout-copy {
    padding: 24px 26px;
    background: rgba(5, 7, 8, 0.82);
    border-left: 2px solid var(--signal-red);
    backdrop-filter: blur(14px);
}

.home-page .story-callout h2 {
    margin: 0 0 12px;
    color: #fff;
    font: 900 clamp(34px, 4vw, 62px)/0.9 Impact, "Arial Black", sans-serif;
    text-transform: uppercase;
}

.home-page .story-callout-copy > p:not(.story-index) {
    max-width: 38ch;
    margin: 0;
    color: #aeb7be;
    font-size: 15px;
    line-height: 1.5;
}

.home-page .story-callout ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.home-page .story-callout li {
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: 800 12px/1 Consolas, "Courier New", monospace;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.home-page .story-anchor {
    position: absolute;
    top: 52%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--signal-red), rgba(255, 31, 69, 0.2));
    transform-origin: 0 50%;
    transition: none;
}

.home-page .story-anchor::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -5px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--signal-red);
    border-radius: 50%;
    background: #050607;
}

.home-page .story-callout-motor .story-anchor {
    left: 100%;
}

.home-page .story-callout-camera .story-anchor {
    left: 0;
}

.home-page .story-progress {
    position: absolute;
    z-index: 4;
    right: 4vw;
    bottom: 28px;
    left: 4vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.home-page .story-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--signal-red);
    transform: scaleX(0);
    transform-origin: left;
}

.home-page .story-frame-status {
    position: absolute;
    z-index: 5;
    right: 4vw;
    top: 24px;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-page .interceptor-story + .news-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: clamp(70px, 10vw, 150px);
    background: transparent;
}

@keyframes story-cue {
    0%, 100% { transform: scaleX(0.35); opacity: 0.45; }
    50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 768px) {
    .home-page body {
        background-attachment: scroll;
    }

    .home-page .interceptor-story {
        height: auto;
    }

    .home-page .interceptor-story-sticky {
        position: relative;
        min-height: 0;
        height: auto;
        overflow: visible;
    }

    .home-page .interceptor-story-shade {
        display: none;
    }

    .home-page .interceptor-story-intro {
        right: auto;
        left: auto;
        bottom: auto;
    }

    .home-page .interceptor-story h1 {
        font-size: clamp(60px, 19vw, 96px);
    }

    .home-page .story-lede {
        margin-top: 22px;
    }

    .home-page .story-callout {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
    }

    .home-page .story-callout-copy {
        padding: 20px;
        background: rgba(5, 7, 8, 0.9);
    }

    .home-page .story-callout h2 {
        font-size: 38px;
    }

    .home-page .story-anchor {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .interceptor-story {
        height: auto;
        min-height: 1180px;
    }

    .home-page .interceptor-story-sticky {
        position: relative;
        min-height: 1180px;
    }

    .home-page .interceptor-story-canvas,
    .home-page .story-scroll-cue,
    .home-page .story-progress,
    .home-page .story-frame-status {
        display: none;
    }

    .home-page .interceptor-story-fallback {
        display: block;
    }

    .home-page .interceptor-story-beat {
        display: block;
        opacity: 1;
        transform: none;
    }

    .home-page .interceptor-story-intro {
        top: 70px;
        bottom: auto;
    }

    .home-page .story-callout-motor {
        top: 560px;
        right: auto;
        bottom: auto;
        left: 7vw;
    }

    .home-page .story-callout-camera {
        top: 820px;
        right: 7vw;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 768px) {
    .home-page .interceptor-story,
    .home-page .interceptor-story-sticky {
        min-height: 0;
    }

    .home-page .interceptor-story-canvas,
    .home-page .story-scroll-cue,
    .home-page .story-progress,
    .home-page .story-frame-status,
    .home-page .story-viewport-frame,
    .home-page .story-hud,
    .home-page .story-stage-nav,
    .home-page .story-telemetry {
        display: none;
    }

    .home-page .interceptor-story-fallback {
        display: block;
        position: relative;
        width: 100%;
        height: 58vw;
        min-height: 220px;
        max-height: 360px;
        object-fit: cover;
        object-position: center 20%;
    }

    .home-page .interceptor-story-beat {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .home-page .interceptor-story-intro {
        padding: 28px 22px 32px;
        background: rgba(5, 7, 8, 0.97);
        border-top: 2px solid var(--signal-red);
    }

    .home-page .story-callout-copy {
        border-left: 2px solid var(--signal-red);
    }

    .home-page .interceptor-story-outro {
        padding: 28px 22px 32px;
    }
}

/* Home atmosphere system: borderless aerospace gallery */
:root {
    --home-void: #000;
    --home-grid-fine: rgba(164, 177, 188, 0.026);
    --home-grid-major: rgba(164, 177, 188, 0.048);
    --home-light-cold: rgba(92, 126, 150, 0.045);
    --home-light-red: rgba(255, 31, 69, 0.028);
    --home-shadow-soft: 0 36px 110px rgba(0, 0, 0, 0.48);
}

html.home-page {
    background: var(--home-void);
}

.home-page body {
    position: relative;
    isolation: isolate;
    overflow-x: clip;
    background: var(--home-void);
}

.home-page body::before,
.home-page body::after {
    content: "";
    position: fixed;
    inset: 0;
    display: block;
    pointer-events: none;
}

.home-page body::before {
    z-index: 0;
    background-image:
        linear-gradient(90deg, var(--home-grid-major) 1px, transparent 1px),
        linear-gradient(var(--home-grid-major) 1px, transparent 1px),
        linear-gradient(90deg, var(--home-grid-fine) 1px, transparent 1px),
        linear-gradient(var(--home-grid-fine) 1px, transparent 1px);
    background-position: center;
    background-size: 384px 384px, 384px 384px, 96px 96px, 96px 96px;
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0, #000 10%, #000 88%, transparent 100%),
        radial-gradient(ellipse 88% 68% at 50% 48%, #000 30%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to bottom, transparent 0, #000 10%, #000 88%, transparent 100%),
        radial-gradient(ellipse 88% 68% at 50% 48%, #000 30%, transparent 100%);
    mask-composite: intersect;
    opacity: 0.54;
}

.home-page body::after {
    z-index: 0;
    inset: 0;
    background:
        linear-gradient(112deg, transparent 8%, var(--home-light-cold) 36%, transparent 58%),
        linear-gradient(248deg, transparent 22%, var(--home-light-red) 52%, transparent 72%),
        repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.009) 0 1px, transparent 1px 7px);
    opacity: 0.58;
}

.home-page > body > header,
.home-page > body > main,
.home-page > body > footer {
    position: relative;
    z-index: 1;
}

.home-page header.container {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62));
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(115%);
}

.home-page header.container.is-compact {
    background: rgba(0, 0, 0, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.home-page .interceptor-story {
    z-index: 2;
    box-shadow: 0 64px 140px rgba(0, 0, 0, 0.82);
}

.home-page .interceptor-story + .news-section {
    padding-top: clamp(104px, 13vw, 190px);
}

.home-page .news-section,
.home-page .selector-section {
    scroll-margin-top: clamp(72px, 9vh, 104px);
}

.home-page .section-head {
    border: 0;
    padding-top: 0;
}

.home-page .news-slide {
    border-radius: 0;
    background: transparent;
    box-shadow: var(--home-shadow-soft);
    outline: 1px solid rgba(255, 255, 255, 0.035);
    outline-offset: -1px;
}

.home-page .news-slide::after {
    height: 48%;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 36%, rgba(0, 0, 0, 0.12));
}

.home-page .system-console {
    gap: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.028);
    box-shadow: 0 42px 130px rgba(0, 0, 0, 0.52);
}

.home-page .system-console::before {
    display: none;
}

.home-page .console-title,
.home-page .console-options-wrap,
.home-page .console-actions {
    background-color: rgba(5, 7, 9, 0.7);
    backdrop-filter: blur(12px);
}

.home-page .console-visual {
    background:
        radial-gradient(
            circle at var(--console-light-x) var(--console-light-y),
            rgba(202, 228, 245, 0.17),
            rgba(117, 156, 184, 0.045) 20%,
            transparent 42%
        ),
        radial-gradient(ellipse at 50% 76%, rgba(255, 31, 69, 0.055), transparent 46%),
        linear-gradient(rgba(153, 188, 214, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 188, 214, 0.025) 1px, transparent 1px),
        #020304;
    background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.home-page .console-option,
.home-page .console-option.is-featured,
.home-page .console-specs div {
    background-color: rgba(7, 9, 11, 0.74);
}

.home-page .console-option:hover,
.home-page .console-option:focus-within {
    background-color: rgba(17, 22, 28, 0.88);
}

.home-page .console-option-link,
.home-page .console-step,
.home-page .console-catalog-link,
.home-page .console-button {
    box-shadow: none;
}

:root .site-footer {
    position: relative;
    overflow: hidden;
    margin-top: clamp(72px, 8vw, 120px);
    padding-top: clamp(44px, 5vw, 72px);
    border: 0;
    background: #07090b;
    color: #f4f6f7;
    box-shadow: 0 -48px 120px rgba(0, 0, 0, 0.72);
}

:root .site-footer::before {
    content: none;
}

:root .footer-inner {
    position: relative;
    z-index: 1;
    gap: clamp(36px, 4vw, 56px);
}

:root .footer-brand {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    grid-template-areas:
        "kicker copy"
        "name copy";
    column-gap: clamp(28px, 4vw, 56px);
    row-gap: 14px;
    align-items: end;
    padding: clamp(28px, 3vw, 40px);
    border: 0;
    background: #0d1014;
    box-shadow:
        0 24px 72px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

:root .footer-brand h2 {
    grid-area: name;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(36px, 3.2vw, 56px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.95;
    text-transform: uppercase;
}

:root .footer-brand p {
    grid-area: copy;
    max-width: 46ch;
    color: #c5ccd1;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.5;
}

:root .footer-brand .footer-kicker {
    grid-column: auto;
    grid-row: auto;
    grid-area: kicker;
    align-self: end;
    margin: 0;
    color: var(--red) !important;
    opacity: 1;
}

:root .footer-grid {
    gap: clamp(24px, 4vw, 56px);
}

:root .footer-column {
    min-height: 164px;
    padding: 20px 0 4px;
    border: 0;
}

:root .footer-column h3 {
    margin-bottom: 14px;
    color: var(--red) !important;
    font-size: 12px;
    font-weight: 800;
}

:root .footer-column a,
:root .footer-column address {
    color: #d8dde1;
}

:root .footer-column a {
    padding: 2px 0;
}

:root .footer-column a:hover,
:root .footer-column a:focus-visible {
    border-bottom-color: var(--signal-red);
    color: #fff;
}

:root .footer-bottom {
    border-top-color: rgba(215, 221, 226, 0.12);
    color: #929ca4;
}

@media (max-width: 768px) {
    .home-page body::before {
        background-size: 288px 288px, 288px 288px, 72px 72px, 72px 72px;
        opacity: 0.44;
    }

    .home-page body::after {
        opacity: 0.42;
    }

    .home-page header.container {
        backdrop-filter: blur(12px);
    }

    .home-page .system-console {
        box-shadow: 0 28px 84px rgba(0, 0, 0, 0.46);
    }

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

    :root .footer-brand {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kicker"
            "name"
            "copy";
        row-gap: 12px;
        padding: 24px 20px;
    }

    :root .footer-brand p {
        margin-top: 6px;
    }

    :root .footer-grid {
        gap: 12px;
    }

    :root .footer-column {
        min-height: auto;
        padding: 20px 4px;
    }

    :root .footer-column + .footer-column {
        border-top: 1px solid rgba(215, 221, 226, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page body::after {
        background:
            linear-gradient(112deg, transparent 8%, var(--home-light-cold) 36%, transparent 58%),
            linear-gradient(248deg, transparent 22%, var(--home-light-red) 52%, transparent 72%);
    }
}

/* Interceptor story v2 and editorial mission log */
.home-page {
    --story-red: #ff1f45;
    --story-ice: #dce8ef;
    --story-muted: #8d9aa3;
    --story-panel: rgba(5, 8, 10, 0.78);
    --story-line: rgba(190, 216, 232, 0.18);
    --story-hud-top: clamp(80px, 8vh, 98px);
}

.home-page .interceptor-story-canvas,
.home-page .interceptor-story-fallback {
    filter: brightness(1.14) contrast(1.08);
}

.home-page .interceptor-story-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 46%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 38%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 24%),
        radial-gradient(circle at 50% 46%, transparent 28%, rgba(0, 0, 0, 0.34) 82%);
}

.home-page .interceptor-story-sticky::before {
    display: none;
}

.home-page .story-viewport-frame {
    --story-frame-corner: clamp(48px, 4.8vw, 72px);
    position: absolute;
    z-index: 4;
    /* Glue corners just below the nav at any nav height (full/compact). */
    top: calc(var(--nav-h, 72px) + 8px);
    transition: top 160ms linear;
    right: clamp(16px, 2vw, 32px);
    bottom: clamp(16px, 2vw, 32px);
    left: clamp(16px, 2vw, 32px);
    border: 1px solid rgba(202, 228, 245, 0.12);
    clip-path: polygon(
        0 0,
        var(--story-frame-corner) 0,
        var(--story-frame-corner) 1px,
        calc(100% - var(--story-frame-corner)) 1px,
        calc(100% - var(--story-frame-corner)) 0,
        100% 0,
        100% var(--story-frame-corner),
        calc(100% - 1px) var(--story-frame-corner),
        calc(100% - 1px) calc(100% - var(--story-frame-corner)),
        100% calc(100% - var(--story-frame-corner)),
        100% 100%,
        calc(100% - var(--story-frame-corner)) 100%,
        calc(100% - var(--story-frame-corner)) calc(100% - 1px),
        var(--story-frame-corner) calc(100% - 1px),
        var(--story-frame-corner) 100%,
        0 100%,
        0 calc(100% - var(--story-frame-corner)),
        1px calc(100% - var(--story-frame-corner)),
        1px var(--story-frame-corner),
        0 var(--story-frame-corner)
    );
    pointer-events: none;
}

.home-page .story-hud {
    position: absolute;
    z-index: 5;
    top: var(--story-hud-top);
    right: clamp(28px, 4vw, 68px);
    left: clamp(28px, 4vw, 68px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--story-ice);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    pointer-events: none;
}

.home-page .story-hud-brand,
.home-page .story-hud-state {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-page .story-hud-brand span {
    padding: 7px 8px;
    background: var(--story-red);
    color: #fff;
}

.home-page .story-hud-brand strong {
    font: inherit;
}

.home-page .story-hud-state {
    color: rgba(220, 232, 239, 0.62);
}

.home-page .story-hud-state i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--story-red);
    box-shadow: 0 0 0 5px rgba(255, 31, 69, 0.12);
}

.home-page .story-stage-nav {
    position: absolute;
    z-index: 5;
    top: var(--story-hud-top);
    left: 50%;
    display: flex;
    gap: clamp(12px, 2vw, 30px);
    margin: 0;
    padding: 0;
    color: rgba(220, 232, 239, 0.34);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.2px;
    list-style: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.home-page .story-stage-nav li {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: color 220ms ease;
}

.home-page .story-stage-nav li::after {
    content: "";
    width: clamp(18px, 2.4vw, 38px);
    height: 1px;
    background: currentColor;
    opacity: 0.55;
}

.home-page .story-stage-nav li:last-child::after {
    display: none;
}

.home-page .story-stage-nav span {
    color: rgba(255, 255, 255, 0.26);
}

.home-page .story-stage-nav .is-active {
    color: var(--story-ice);
}

.home-page .story-stage-nav .is-active span {
    color: var(--story-red);
}

.home-page .story-telemetry {
    position: absolute;
    z-index: 5;
    top: calc(var(--story-hud-top) + 42px);
    right: clamp(28px, 4vw, 68px);
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1px;
    margin: 0;
    opacity: 1;
    transition: opacity 240ms ease, transform 360ms var(--ease-out);
    transform: translateY(0);
}

.home-page .interceptor-story[data-chapter="1"] .story-telemetry {
    opacity: 0;
    transform: translateY(-8px);
}

.home-page .story-telemetry div {
    min-width: 92px;
    padding: 10px 12px;
    background: rgba(3, 5, 7, 0.48);
    backdrop-filter: blur(8px);
}

.home-page .story-telemetry dt,
.home-page .story-telemetry dd {
    margin: 0;
    font-family: Consolas, "Courier New", monospace;
    text-transform: uppercase;
}

.home-page .story-telemetry dt {
    margin-bottom: 5px;
    color: rgba(220, 232, 239, 0.38);
    font-size: 7px;
    letter-spacing: 1.3px;
}

.home-page .story-telemetry dd {
    color: var(--story-ice);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.home-page .interceptor-story-intro {
    bottom: clamp(72px, 11vh, 124px);
    max-width: min(900px, 78vw);
}

.home-page .interceptor-story h1 {
    display: grid;
    line-height: 0.74;
}

.home-page .interceptor-story h1 span:first-child,
.home-page .interceptor-story h1 span:last-child {
    display: block;
    margin: 0;
    color: #f5f7f8;
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(74px, 12.4vw, 202px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.76;
}

.home-page .story-lede {
    position: relative;
    max-width: 560px;
    margin-top: 38px;
    padding-left: 74px;
    color: #c8d1d7;
}

.home-page .story-lede::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 54px;
    height: 1px;
    background: var(--story-red);
}

.home-page .story-scroll-cue {
    margin-left: 74px;
}

.home-page .story-callout {
    width: min(460px, 36vw);
}

.home-page .story-callout-copy {
    position: relative;
    overflow: hidden;
    padding: 28px 30px 30px;
    border-left: 0;
    background:
        linear-gradient(135deg, rgba(202, 228, 245, 0.08), transparent 42%),
        var(--story-panel);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px) saturate(112%);
}

.home-page .story-callout-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--story-red);
}

.home-page .story-callout-copy::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 1px;
    background: rgba(202, 228, 245, 0.42);
}

.home-page .story-callout li {
    border: 1px solid rgba(202, 228, 245, 0.13);
    background: rgba(202, 228, 245, 0.045);
}

.home-page .interceptor-story-outro {
    right: clamp(24px, 7vw, 112px);
    bottom: clamp(70px, 11vh, 122px);
    width: min(560px, 42vw);
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255, 31, 69, 0.13), transparent 42%),
        rgba(4, 6, 8, 0.86);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
}

.home-page .interceptor-story-outro.is-active {
    pointer-events: auto;
}

.home-page .interceptor-story-outro h2 {
    max-width: min(100%, 14ch);
    margin: 0;
    color: #f4f7f9;
    font: 900 clamp(48px, 6vw, 92px)/0.86 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.home-page .interceptor-story-outro > p:not(.story-index) {
    max-width: 44ch;
    margin: 24px 0 0;
    color: #aeb9c0;
    font-size: 15px;
    line-height: 1.55;
}

.home-page .story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.home-page .story-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    background: var(--story-red);
    color: #fff;
    font: 800 10px/1 var(--font-body);
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
}

.home-page .story-actions a + a {
    border: 1px solid rgba(220, 232, 239, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

.home-page .story-actions a:hover,
.home-page .story-actions a:focus-visible {
    background: #fff;
    color: #050607;
    outline: none;
}

.home-page .story-progress {
    right: clamp(28px, 4vw, 68px);
    bottom: clamp(26px, 3vw, 46px);
    left: clamp(28px, 4vw, 68px);
}

.home-page .story-progress b {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: rgba(220, 232, 239, 0.62);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.4px;
}

.home-page .story-frame-status {
    top: auto;
    right: auto;
    bottom: clamp(40px, calc(3vw + 14px), 60px);
    left: clamp(28px, 4vw, 68px);
}

.home-page .mission-log {
    position: relative;
    margin-bottom: clamp(92px, 12vw, 170px);
    padding-top: clamp(110px, 14vw, 210px);
}

.home-page .mission-log-head {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr) auto;
    gap: 28px clamp(28px, 4vw, 72px);
    align-items: end;
    margin-bottom: clamp(38px, 5vw, 72px);
}

.home-page .mission-log-head .page-kicker {
    margin: 0 0 16px;
    color: var(--signal-amber);
    font: 800 10px/1 Consolas, "Courier New", monospace;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.home-page .mission-log-head h2 {
    max-width: 8ch;
    margin: 0;
    color: #f1f5f7;
    font: 900 clamp(58px, 8vw, 126px)/0.82 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.home-page .mission-log-deck {
    max-width: 42ch;
    margin: 0 0 6px;
    color: #aab4bb;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.5;
}

.home-page .mission-log-count {
    display: grid;
    grid-template-columns: auto 52px auto;
    gap: 10px;
    align-items: center;
    margin: 0 0 6px;
    color: rgba(220, 232, 239, 0.38);
    font: 700 10px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.4px;
}

.home-page .mission-log-count span:first-child {
    color: #fff;
    font-size: 20px;
}

.home-page .mission-log-count i {
    height: 1px;
    background: rgba(220, 232, 239, 0.2);
}

.home-page .mission-log-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.29fr);
    gap: clamp(24px, 3vw, 46px);
    align-items: stretch;
}

.home-page .mission-log .news-slider {
    position: relative;
    height: clamp(560px, 72vh, 820px);
    min-height: 0;
    overflow: hidden;
    padding: 0;
    background: #050708;
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.52);
}

.home-page .mission-log .news-slider::before {
    content: "VISUAL RECORD / ACTIVE";
    position: absolute;
    z-index: 6;
    top: 22px;
    left: 24px;
    padding-left: 18px;
    background:
        linear-gradient(90deg, var(--story-red) 0 10px, transparent 10px) left center / 12px 1px no-repeat;
    color: rgba(220, 232, 239, 0.54);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.6px;
    pointer-events: none;
}

.home-page .mission-log .news-slider:focus-visible {
    outline: 1px solid var(--story-red);
    outline-offset: 5px;
}

.home-page .mission-log .news-slider-track {
    height: 100%;
    gap: 0;
}

.home-page .mission-log .news-slider-track.is-animating {
    transition-duration: 520ms;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .mission-log .news-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    border-radius: 0;
    background: #060809;
    box-shadow: none;
    outline: 0;
}

.home-page .mission-log .news-slide::after {
    display: none;
}

.home-page .news-media {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.home-page .mission-log .news-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.12) brightness(0.86);
    transform: scale(1.015);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .mission-log .news-slide[aria-hidden="false"] img {
    transform: scale(1);
}

.home-page .mission-log .news-slide-product .news-media {
    background:
        radial-gradient(circle at 50% 46%, rgba(125, 162, 186, 0.16), transparent 34%),
        linear-gradient(rgba(202, 228, 245, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202, 228, 245, 0.035) 1px, transparent 1px),
        #06090c;
    background-size: auto, 48px 48px, 48px 48px, auto;
}

.home-page .mission-log .news-slide-product img {
    box-sizing: border-box;
    padding: clamp(40px, 6vw, 88px);
    object-fit: contain;
    filter: contrast(1.08) brightness(0.9);
}

.home-page .news-slide-copy {
    position: relative;
    z-index: 4;
    flex: 0 0 clamp(230px, 27%, 340px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    padding: clamp(24px, 2.4vw, 40px);
    border-right: 1px solid rgba(205, 225, 237, 0.12);
    background: #070a0c;
}

.home-page .news-slide-meta {
    display: flex;
    gap: 20px;
    margin: 0 0 18px;
    color: rgba(220, 232, 239, 0.54);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.home-page .news-slide-meta span:first-child {
    color: var(--story-red);
}

.home-page .news-slide-copy h3 {
    max-width: 12ch;
    margin: 0;
    color: #fff;
    font: 900 clamp(28px, 2.9vw, 46px)/0.92 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.home-page .news-slide-copy > p:last-child {
    max-width: 56ch;
    margin: 22px 0 0;
    color: #bbc5cb;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.5;
}

.home-page .mission-log-rail {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 4px 0;
}

.home-page .mission-log-rail-label,
.home-page .mission-log-hint {
    margin: 0;
    color: rgba(220, 232, 239, 0.38);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.home-page .mission-log-rail-label {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(220, 232, 239, 0.12);
}

.home-page .mission-log .news-pagination {
    display: grid;
    gap: 0;
    margin: 0;
}

.home-page .news-index-button {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px 4px;
    border: 0;
    border-bottom: 1px solid rgba(220, 232, 239, 0.09);
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.home-page .news-index-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px;
    width: 2px;
    background: var(--story-red);
    opacity: 0;
    transform: scaleY(0.25);
    transition: opacity 180ms ease, transform 260ms var(--ease-out);
}

.home-page .news-index-button:hover,
.home-page .news-index-button:focus-visible,
.home-page .news-index-button.is-active {
    background: linear-gradient(90deg, rgba(255, 31, 69, 0.07), transparent 72%);
    outline: none;
}

.home-page .news-index-button.is-active::before {
    opacity: 1;
    transform: scaleY(1);
}

.home-page .news-index-number {
    color: rgba(220, 232, 239, 0.26);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1px;
}

.home-page .news-index-button.is-active .news-index-number {
    color: var(--story-red);
}

.home-page .news-index-copy {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.home-page .news-index-copy small {
    overflow: hidden;
    color: rgba(220, 232, 239, 0.38);
    font: 700 7px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.2px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-page .news-index-copy strong {
    overflow: hidden;
    color: #dfe7eb;
    font: 800 12px/1.25 var(--font-body);
    letter-spacing: 0.3px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-page .mission-log-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: auto;
    padding-top: 26px;
}

.home-page .mission-log-controls button {
    min-height: 46px;
    border: 0;
    background: rgba(220, 232, 239, 0.06);
    color: #fff;
    font: 800 9px/1 var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.home-page .mission-log-controls button:hover,
.home-page .mission-log-controls button:focus-visible {
    background: var(--story-red);
    outline: none;
}

.home-page .mission-log-hint {
    margin-top: 16px;
    text-align: right;
}

@media (max-width: 1040px) {
    .home-page .story-stage-nav {
        display: none;
    }

    .home-page .mission-log-head {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    }

    .home-page .mission-log-count {
        grid-column: 2;
    }

    .home-page .mission-log-layout {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
    }
}

@media (max-width: 768px) {
    .home-page .container,
    .home-page main.container {
        width: 100%;
        box-sizing: border-box;
    }

    .home-page .interceptor-story {
        height: 560svh;
        min-height: 3200px;
    }

    .home-page .interceptor-story-sticky {
        position: sticky;
        top: 0;
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;
    }

    .home-page .interceptor-story-canvas,
    .home-page .interceptor-story-fallback {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        object-fit: cover;
        object-position: 50% 50%;
    }

    .home-page .interceptor-story-shade,
    .home-page .story-viewport-frame,
    .home-page .story-progress {
        display: block;
    }

    .home-page .story-hud {
        display: flex;
    }

    .home-page .story-scroll-cue {
        display: inline-flex;
    }

    .home-page .interceptor-story-beat {
        position: absolute;
        display: block;
        opacity: 0;
        transform: translateY(18px);
        pointer-events: none;
    }

    .home-page .interceptor-story-beat.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    .home-page .story-viewport-frame {
        inset: 12px;
    }

    .home-page .story-hud {
        top: 88px;
        right: 20px;
        left: 20px;
    }

    .home-page .story-hud-brand strong,
    .home-page .story-telemetry {
        display: none;
    }

    .home-page .story-hud-state {
        gap: 0;
        font-size: 0;
    }

    .home-page .interceptor-story-shade {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 74%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 25%);
    }

    .home-page .interceptor-story-intro {
        right: 20px;
        bottom: 84px;
        left: 20px;
        width: auto;
        max-width: none;
        padding: 0;
        background: transparent;
        border-top: 0;
    }

    .home-page .interceptor-story h1 span:first-child,
    .home-page .interceptor-story h1 span:last-child {
        font-size: clamp(38px, 11.4vw, 62px);
        letter-spacing: 0;
        line-height: 0.9;
    }

    .home-page .story-lede {
        width: 100%;
        max-width: 31ch;
        margin-top: 24px;
        padding-left: 0;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        word-break: normal;
    }

    .home-page .story-lede::before {
        display: none;
    }

    .home-page .story-scroll-cue {
        margin-left: 0;
    }

    .home-page .story-callout {
        right: 20px;
        bottom: 60px;
        left: 20px;
        width: auto;
    }

    .home-page .story-callout-copy {
        padding: 22px;
    }

    .home-page .interceptor-story-outro {
        right: 20px;
        bottom: 60px;
        left: 20px;
        width: auto;
        padding: 24px 22px;
    }

    .home-page .interceptor-story-outro h2 {
        max-width: 100%;
        font-size: clamp(36px, 10.4vw, 52px);
        letter-spacing: 0;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        text-wrap: balance;
        word-break: normal;
    }

    .home-page .interceptor-story-outro > p:not(.story-index) {
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        word-break: normal;
    }

    .home-page .story-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-page .story-actions a {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        white-space: normal;
        word-break: normal;
    }

    .home-page .story-progress {
        right: 20px;
        bottom: 22px;
        left: 20px;
    }

    .home-page .story-frame-status {
        display: none;
    }

    .home-page .mission-log {
        padding-top: 104px;
    }

    .home-page .mission-log::before {
        display: none;
    }

    .home-page .mission-log-head {
        grid-template-columns: 1fr auto;
        gap: 24px 18px;
    }

    .home-page .mission-log-head > div {
        grid-column: 1 / -1;
    }

    .home-page .mission-log-head h2 {
        max-width: 7ch;
        font-size: clamp(54px, 18vw, 84px);
    }

    .home-page .mission-log-deck {
        max-width: 36ch;
    }

    .home-page .mission-log-count {
        display: none;
    }

    .home-page .mission-log-layout {
        grid-template-columns: 1fr;
    }

    .home-page .mission-log .news-slider {
        height: min(720px, 74svh);
        min-height: 560px;
    }

    .home-page .mission-log .news-slider::before {
        top: 18px;
        left: 18px;
    }

    .home-page .mission-log .news-slide {
        flex-direction: column;
    }

    .home-page .mission-log .news-slide-product img {
        padding: 40px 30px;
    }

    .home-page .news-slide-copy {
        flex: 0 0 auto;
        padding: 20px 20px 24px;
        border-right: 0;
        border-top: 1px solid rgba(205, 225, 237, 0.12);
    }

    .home-page .news-slide-copy h3 {
        font-size: clamp(44px, 14vw, 68px);
    }

    .home-page .news-slide-copy > p:last-child {
        margin-top: 16px;
    }

    .home-page .mission-log-rail {
        min-width: 0;
    }

    .home-page .mission-log-rail-label {
        padding-bottom: 12px;
    }

    .home-page .mission-log .news-pagination {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .home-page .mission-log .news-pagination::-webkit-scrollbar {
        display: none;
    }

    .home-page .news-index-button {
        min-width: min(260px, 76vw);
        border-right: 1px solid rgba(220, 232, 239, 0.09);
    }

    .home-page .news-index-button:not(.is-active) {
        display: none;
    }

    .home-page .news-index-button.is-active {
        min-width: 0;
        width: 100%;
        border-right: 0;
    }

    .home-page .mission-log-controls {
        margin-top: 8px;
        padding-top: 0;
    }

    .home-page .console-detail-link {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .interceptor-story {
        height: auto;
    }

    .home-page .interceptor-story-sticky {
        position: relative;
        top: auto;
        height: auto;
        overflow: hidden;
    }

    .home-page .interceptor-story,
    .home-page .interceptor-story-sticky {
        min-height: 1540px;
    }

    .home-page .interceptor-story-canvas,
    .home-page .story-scroll-cue,
    .home-page .story-progress,
    .home-page .story-frame-status {
        display: none;
    }

    .home-page .interceptor-story-fallback {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        object-fit: cover;
    }

    .home-page .story-hud,
    .home-page .story-stage-nav,
    .home-page .story-telemetry {
        display: none;
    }

    .home-page .interceptor-story-beat {
        display: block;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .home-page .interceptor-story-outro {
        top: 1120px;
        right: 7vw;
        bottom: auto;
        left: auto;
        pointer-events: auto;
    }

    .home-page .mission-log .news-slider-track.is-animating,
    .home-page .mission-log .news-slide img {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
    .home-page .interceptor-story,
    .home-page .interceptor-story-sticky {
        min-height: 1740px;
    }

    .home-page .interceptor-story-intro {
        top: 70px;
        right: 18px;
        bottom: auto;
        left: 18px;
    }

    .home-page .story-callout {
        right: 18px;
        bottom: auto;
        left: 18px;
        width: auto;
    }

    .home-page .story-callout-motor {
        top: 570px;
    }

    .home-page .story-callout-camera {
        top: 880px;
    }

    .home-page .interceptor-story-outro {
        top: 1260px;
        right: 18px;
        bottom: auto;
        left: 18px;
        width: auto;
    }
}

/* Platform selector v2: editorial aerospace object stage */
.home-page .selector-section {
    --console-bg: #050708;
    --console-surface: #090c0f;
    --console-surface-raised: #0d1115;
    --console-copy: #bdc8ce;
    --console-muted: #8a97a0;
    --console-gap: #020304;
    --console-line: rgba(205, 225, 237, 0.13);
    --console-line-strong: rgba(205, 225, 237, 0.24);
    margin-top: clamp(80px, 11vw, 164px);
    padding-top: 0;
}

.home-page .selector-section::before {
    top: 18%;
    left: -14%;
    width: 58%;
    height: 52%;
    background: radial-gradient(ellipse at center, rgba(255, 31, 69, 0.055), transparent 70%);
}

.home-page .selector-head {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.62fr) auto;
    gap: 20px clamp(30px, 4vw, 68px);
    align-items: end;
    margin-bottom: clamp(38px, 5vw, 70px);
}

.home-page .selector-head .page-kicker {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--story-red);
    font: 800 10px/1 Consolas, "Courier New", monospace;
    letter-spacing: 2.4px;
}

.home-page .selector-head h2 {
    grid-column: 1;
    max-width: 8ch;
    font: 900 clamp(58px, 8vw, 126px)/0.82 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.035em;
}

.home-page .selector-deck {
    grid-column: 2;
    max-width: 42ch;
    margin: 0 0 4px;
    color: #aab4bb;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.5;
}

.home-page .selector-head > a {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 46px;
    margin-bottom: 2px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--story-red);
    background: transparent;
    color: #fff;
    font: 800 10px/1 var(--font-body);
    letter-spacing: 1.3px;
}

.home-page .selector-head > a:hover,
.home-page .selector-head > a:focus-visible {
    background: transparent;
    color: var(--story-red);
}

.home-page .system-console {
    position: relative;
    height: clamp(790px, 82vh, 920px);
    min-height: 790px;
    display: grid;
    grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1fr) clamp(300px, 24vw, 360px);
    grid-template-rows: 58px minmax(0, 1fr) 124px;
    gap: 2px;
    overflow: hidden;
    margin-bottom: clamp(20px, 2.5vw, 32px);
    border: 0;
    border-radius: 0;
    background: var(--console-gap);
    box-shadow: 0 44px 130px rgba(0, 0, 0, 0.54);
}

/* All-platforms link sits just under the console (below "view this platform"),
   pushed to the right edge. */
.home-page .selector-foot-link {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    min-height: 46px;
    margin-bottom: clamp(72px, 9vw, 130px);
    color: #fff;
    border-bottom: 1px solid var(--story-red);
    font: 800 10px/1 var(--font-body);
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
}

.home-page .selector-foot-link:hover,
.home-page .selector-foot-link:focus-visible {
    color: var(--story-red);
}

.home-page .system-console::before {
    display: none;
}

.home-page .system-console::after {
    display: none;
}

.home-page .console-statusbar {
    grid-column: 1 / -1;
    grid-row: 1;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    padding: 0 22px;
    background: rgba(3, 5, 6, 0.94);
}

.home-page .console-statusbar p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: var(--console-muted);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-page .console-statusbar span {
    padding: 7px 8px;
    background: var(--story-red);
    color: #fff;
}

.home-page .console-statusbar .console-options-head {
    background: none;
    min-height: auto;
    padding: 0;
}

.home-page .console-statusbar .console-options-head span {
    padding: 0;
    background: none;
    color: var(--console-muted);
}

.home-page .console-statusbar strong {
    color: #a9b5bc;
    font: inherit;
}

.home-page .console-system-state i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--story-red);
    box-shadow: 0 0 0 5px rgba(255, 31, 69, 0.12);
}

.home-page .console-visual {
    --console-visual-headroom: clamp(62px, 7vh, 86px);
    --console-visual-footroom: clamp(24px, 4vh, 48px);
    --console-visual-inline: clamp(24px, 4vw, 64px);
    grid-column: 2;
    grid-row: 2;
    z-index: 1;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: var(--console-visual-headroom) var(--console-visual-inline) var(--console-visual-footroom);
    background:
        radial-gradient(
            circle at var(--console-light-x) var(--console-light-y),
            rgba(176, 210, 231, 0.16),
            rgba(96, 130, 151, 0.035) 23%,
            transparent 43%
        ),
        radial-gradient(ellipse at 68% 78%, rgba(255, 31, 69, 0.055), transparent 43%),
        linear-gradient(148deg, #0a0e11 0%, #030506 64%, #080b0d 100%);
}

.home-page .console-visual::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 7%;
    left: 7%;
    height: 1px;
    padding: 0;
    background: linear-gradient(90deg, transparent, rgba(205, 225, 237, 0.09), transparent);
}

.home-page .console-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 9% 5%;
    background:
        radial-gradient(circle at 72% 46%, rgba(220, 238, 250, 0.055), transparent 24%),
        linear-gradient(116deg, transparent 26%, rgba(220, 238, 250, 0.035) 50%, transparent 70%);
    filter: blur(12px);
    opacity: 1;
    transform: none;
    pointer-events: none;
}

.home-page .console-visual-top {
    position: absolute;
    z-index: 4;
    top: 22px;
    right: 24px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(205, 225, 237, 0.42);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.home-page .console-visual-top span {
    padding-left: 18px;
    background:
        linear-gradient(90deg, var(--story-red) 0 10px, transparent 10px) left center / 12px 1px no-repeat;
}

.home-page .console-visual-top strong {
    color: rgba(205, 225, 237, 0.56);
    font: inherit;
}

.home-page .console-visual img {
    display: block;
    justify-self: center;
    align-self: center;
    width: min(100%, 840px);
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
    filter: drop-shadow(0 38px 64px rgba(0, 0, 0, 0.7)) saturate(0.9) contrast(1.08);
}

.home-page .console-title {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    z-index: 4;
    align-self: stretch;
    width: 100%;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px clamp(28px, 3vw, 52px) 104px;
    overflow: hidden;
    background: rgba(5, 7, 8, 0.96);
    backdrop-filter: none;
    pointer-events: auto;
}

.home-page .console-title::after {
    display: none;
}

.home-page .console-selection-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--console-muted);
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-page .console-selection-label span {
    color: var(--story-red);
}

.home-page .console-title .page-kicker {
    margin: 0 0 12px;
    color: #aab7bf;
    font: 700 9px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.8px;
}

.home-page .console-title h2 {
    width: auto;
    min-height: 0;
    max-width: none;
    margin: 0;
    color: #f2f5f7;
    font: 900 clamp(42px, 4.6vw, 76px)/0.86 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
}

.home-page .console-title p[data-console-copy] {
    min-height: 0;
    max-width: 43ch;
    margin: 24px 0 0;
    color: var(--console-copy);
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.52;
}

.home-page .console-options-wrap {
    grid-column: 3;
    grid-row: 2;
    z-index: 4;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: 38px minmax(0, 1fr) 38px;
    gap: 2px;
    overflow: hidden;
    background: var(--console-gap);
    backdrop-filter: none;
}

.home-page .console-options-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    flex-wrap: wrap;
    min-width: 0;
    color: var(--console-muted);
    font: 700 9.5px/1 Consolas, "Courier New", monospace;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-page .console-options-head strong {
    color: #d9e3e8;
    font: inherit;
}

.home-page .console-step,
.home-page .console-step.next {
    position: relative;
    width: auto;
    min-height: 38px;
    margin: 0;
    border: 0;
    background: rgba(5, 7, 8, 0.96);
    color: transparent;
    font-size: 0;
    box-shadow: none;
}

.home-page .console-step {
    grid-row: 1;
}

.home-page .console-step.next {
    grid-row: 3;
}

.home-page .console-step::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid #8c9aa3;
    border-right: 1px solid #8c9aa3;
}

.home-page .console-step.prev::after {
    transform: translate(-50%, -32%) rotate(-45deg);
}

.home-page .console-step.next::after {
    transform: translate(-50%, -68%) rotate(135deg);
}

.home-page .console-step:hover,
.home-page .console-step:focus-visible {
    background: rgba(205, 225, 237, 0.055);
}

.home-page .console-step[hidden] {
    display: block;
    visibility: visible;
    opacity: 0.25;
}

.home-page .console-step[hidden]::before {
    display: none;
}

.home-page .console-options {
    grid-row: 2;
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 2px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: var(--console-gap);
}

.home-page .console-option {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: rgba(5, 7, 8, 0.96);
}

.home-page .console-option::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: var(--story-red);
    opacity: 0;
    transform: scaleY(0.2);
    transition: opacity 180ms ease, transform 260ms var(--ease-out);
}

.home-page .console-option:hover,
.home-page .console-option:focus-within {
    background: linear-gradient(90deg, rgba(205, 225, 237, 0.055), transparent 78%);
}

.home-page .console-option.is-featured {
    background: linear-gradient(90deg, rgba(255, 31, 69, 0.09), transparent 82%);
}

.home-page .console-option.is-featured::before {
    opacity: 1;
    transform: scaleY(1);
}

.home-page .console-option-select {
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 8px;
    height: 100%;
    padding: 18px 58px 18px 22px;
}

.home-page .console-option-select span {
    color: var(--console-muted);
    font-size: 9.5px;
    letter-spacing: 1.5px;
}

.home-page .console-option.is-featured .console-option-select span {
    color: var(--story-red);
}

.home-page .console-option-select strong {
    margin: 0;
    color: #e8edf0;
    font: 900 clamp(23px, 1.8vw, 30px)/1.12 Impact, "Arial Black", sans-serif;
    letter-spacing: -0.015em;
}

.home-page .console-option-select em {
    display: -webkit-box;
    overflow: hidden;
    color: #9aa5ac;
    font-size: 12px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-page .console-option-link {
    top: 50%;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--console-line);
    border-radius: 0;
    background: transparent;
    color: #7f8b93;
    font-size: 15px;
    transform: translateY(-50%);
    transition: background 160ms linear, border-color 160ms linear, color 160ms linear;
}

.home-page .console-option-link:hover {
    border-color: var(--signal-red);
    background: var(--signal-red);
    color: #fff;
}

.home-page .console-option-link:focus-visible {
    outline: 1px solid var(--story-red);
    outline-offset: 3px;
}

.home-page .console-option-select:focus-visible {
    box-shadow: inset 0 0 0 1px var(--story-red);
}

.home-page .console-option.is-featured .console-option-link {
    border-color: var(--signal-red);
    background: transparent;
    color: var(--signal-red);
    transform: translateY(-50%);
}

.home-page .console-option.is-featured .console-option-link:hover,
.home-page .console-option.is-featured .console-option-link:focus-visible {
    background: var(--signal-red);
    color: #fff;
}

.home-page .console-option.is-featured .console-option-link:active {
    opacity: 0.75;
}

.home-page .console-detail-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-content: center;
    row-gap: 4px;
    column-gap: 16px;
    height: 64px;
    padding: 0 clamp(28px, 3vw, 52px);
    border: 0;
    background: rgba(215, 221, 226, 0.025);
    color: inherit;
    text-decoration: none;
    transition: background 160ms linear;
}

.home-page .console-detail-link [data-detail-type] {
    grid-column: 1;
    padding-left: 16px;
    background:
        linear-gradient(90deg, var(--story-red) 0 9px, transparent 9px) left center / 11px 1px no-repeat;
    color: var(--story-red);
    font-size: 8.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: color 160ms linear;
}

.home-page .console-detail-link [data-detail-name] {
    grid-column: 1;
    color: #e8edf0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: color 160ms linear;
}

.home-page .console-detail-link .detail-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--story-red);
    font-size: 18px;
    transition: transform 160ms var(--ease-out), color 160ms linear;
}

.home-page .console-detail-link:hover,
.home-page .console-detail-link:focus-visible {
    background: var(--story-red);
}

.home-page .console-detail-link:hover [data-detail-type],
.home-page .console-detail-link:focus-visible [data-detail-type] {
    background-image: none;
    color: rgba(255, 255, 255, 0.72);
}

.home-page .console-detail-link:hover [data-detail-name],
.home-page .console-detail-link:focus-visible [data-detail-name] {
    color: #fff;
}

.home-page .console-detail-link:hover .detail-arrow,
.home-page .console-detail-link:focus-visible .detail-arrow {
    color: #fff;
    transform: translateX(4px);
}

.home-page .console-catalog-link {
    grid-column: 3;
    grid-row: 3;
    align-content: center;
    gap: 6px 16px;
    min-height: 124px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    background:
        linear-gradient(90deg, rgba(255, 31, 69, 0.14), transparent 72%),
        rgba(215, 221, 226, 0.045);
    transition: background 160ms linear, color 160ms linear;
}

.home-page .console-catalog-link:hover,
.home-page .console-catalog-link:focus-visible {
    background: var(--story-red);
    box-shadow: none;
}

.home-page .console-catalog-link:hover strong,
.home-page .console-catalog-link:focus-visible strong,
.home-page .console-catalog-link:hover span,
.home-page .console-catalog-link:focus-visible span {
    color: #fff;
}

.home-page .console-catalog-link span:first-child {
    padding-left: 16px;
    background:
        linear-gradient(90deg, var(--story-red) 0 9px, transparent 9px) left center / 11px 1px no-repeat;
    color: var(--story-red);
    font-size: 9px;
    letter-spacing: 1.6px;
}

.home-page .console-catalog-link strong {
    color: #f0f5f7;
    font-size: 13px;
    letter-spacing: 1.4px;
}

.home-page .console-catalog-link span:last-child {
    color: var(--story-red);
    font-size: 18px;
    transition: transform 160ms var(--ease-out);
}

.home-page .console-catalog-link:hover span:last-child,
.home-page .console-catalog-link:focus-visible span:last-child {
    transform: translateX(4px);
}

.home-page .console-mobile-status {
    display: none;
}

.home-page .console-specs {
    grid-column: 1 / 3;
    grid-row: 3;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
    background: var(--console-gap);
}

.home-page .console-specs div {
    height: auto;
    min-height: 124px;
    padding: 22px clamp(16px, 2vw, 28px);
    border: 0;
    background: rgba(4, 6, 7, 0.96);
}

.home-page .console-specs div::after {
    display: none;
}

.home-page .console-specs span {
    color: var(--console-muted);
    font-size: 9.5px;
    letter-spacing: 1.5px;
}

.home-page .console-specs strong,
.home-page .console-specs [data-console-make] {
    min-height: 0;
    margin-top: 14px;
    color: #eaf1f5;
    font: 700 clamp(17px, 1.7vw, 25px)/1.1 var(--font-body);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.005em;
    text-transform: none;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.home-page .console-specs [data-console-control],
.home-page .console-specs [data-console-make] {
    hyphens: auto;
    -webkit-hyphens: auto;
}

.home-page .console-actions {
    grid-column: 1;
    grid-row: 5;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0;
    background: var(--console-gap);
}

.home-page .console-actions .console-button {
    min-height: 74px;
    border: 0;
    background: #080b0d;
    box-shadow: none;
    font-size: 10px;
    letter-spacing: 1.4px;
}

.home-page .console-actions .console-button.primary {
    background: var(--story-red);
}

.home-page .console-actions .console-button:hover,
.home-page .console-actions .console-button:focus-visible {
    background: #fff;
    color: #050607;
    transform: none;
}

@media (max-width: 1180px) {
    .home-page .selector-head {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    }

    .home-page .selector-head > a {
        grid-column: 2;
        justify-self: start;
    }

    .home-page .system-console {
        height: 820px;
        min-height: 820px;
        grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) 278px;
    }

    .home-page .system-console::after {
        right: 278px;
    }

    .home-page .console-title {
        width: 100%;
    }

    .home-page .console-title h2 {
        font-size: clamp(36px, 4.6vw, 58px);
    }

    .home-page .console-visual img {
        transform: none;
    }
}

@media (max-width: 1180px) {
    .home-page .selector-section {
        margin-top: 92px;
    }

    .home-page .selector-head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 34px;
    }

    .home-page .selector-head .page-kicker,
    .home-page .selector-head h2,
    .home-page .selector-deck,
    .home-page .selector-head > a {
        grid-column: 1;
    }

    .home-page .selector-head h2 {
        max-width: 7ch;
        font-size: clamp(52px, 17vw, 82px);
    }

    .home-page .selector-head > a {
        justify-self: start;
    }

    .home-page .system-console {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: 52px 360px auto auto auto auto;
        gap: 2px;
        margin-top: 0;
        border-radius: 0;
    }

    .home-page .system-console::after {
        display: none;
    }

    .home-page .console-statusbar {
        grid-column: 1;
        grid-row: 1;
        padding: 0 16px;
    }

    .home-page .console-statusbar p {
        font-size: 7px;
    }

    .home-page .console-statusbar strong {
        display: none;
    }

    .home-page .console-visual {
        --console-visual-headroom: 56px;
        --console-visual-footroom: 22px;
        --console-visual-inline: 18px;
        grid-column: 1;
        grid-row: 2;
        height: 360px;
        min-height: 360px;
    }

    .home-page .console-visual-top {
        top: 18px;
        right: 18px;
        left: 18px;
    }

    .home-page .console-visual-top strong {
        display: none;
    }

    .home-page .console-visual img {
        width: min(100%, 720px);
        height: calc(360px - var(--console-visual-headroom) - var(--console-visual-footroom));
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none;
    }

    .home-page .console-title {
        grid-column: 1;
        grid-row: 3;
        align-self: stretch;
        width: 100%;
        padding: 22px 20px 24px;
        background: rgba(5, 7, 8, 0.96);
    }

    .home-page .console-selection-label {
        margin-bottom: 12px;
    }

    .home-page .console-title .page-kicker {
        margin-bottom: 9px;
    }

    .home-page .console-title h2 {
        max-width: 10ch;
        font-size: clamp(44px, 14vw, 66px);
    }

    .home-page .console-title p[data-console-copy] {
        display: none;
    }

    .home-page .console-options-wrap {
        grid-column: 1;
        grid-row: 4;
        height: auto;
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr) 72px;
        grid-template-rows: auto 72px auto;
        gap: 2px;
        border: 0;
    }

    .home-page .console-options-head,
    .home-page .console-options {
        display: none;
    }

    .home-page .console-catalog-link {
        display: grid;
        grid-column: 1;
        grid-row: 6;
        min-height: 56px;
        border-top: 0;
    }

    .home-page .console-step,
    .home-page .console-step.next {
        position: relative;
        width: 100%;
        height: 72px;
        min-height: 72px;
        display: grid;
        margin: 0;
        border: 0;
        background: rgba(5, 7, 8, 0.96);
    }

    .home-page .console-step {
        grid-column: 1;
        grid-row: 2;
    }

    .home-page .console-step.next {
        grid-column: 3;
        grid-row: 2;
    }

    .home-page .console-step::after {
        width: 10px;
        height: 10px;
        border-width: 2px;
        border-color: #fff;
    }

    /* Mobile lays prev/next out left/right, so the chevrons point sideways
       (base points them up/down for the PC vertical stack). */
    .home-page .console-step.prev::after {
        transform: translate(-50%, -50%) rotate(-135deg);
    }

    .home-page .console-step.next::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .home-page .console-mobile-status {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px;
        background: rgba(5, 7, 8, 0.96);
    }

    .home-page .console-mobile-status span {
        color: var(--story-red);
        font: 800 10px/1 Consolas, "Courier New", monospace;
        letter-spacing: 1.6px;
    }

    .home-page .console-mobile-status strong {
        overflow: hidden;
        color: #b8c3c9;
        font-size: 9px;
        letter-spacing: 1.3px;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .home-page .console-specs {
        grid-column: 1;
        grid-row: 5;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .console-specs div,
    .home-page .console-specs div:nth-child(-n + 4) {
        min-height: 94px;
        padding: 18px;
        border: 0;
    }

    .home-page .console-specs div:last-child {
        grid-column: 1 / -1;
    }

    .home-page .console-specs strong,
    .home-page .console-specs [data-console-make] {
        margin-top: 11px;
        font-size: clamp(22px, 7vw, 30px);
    }

    .home-page .console-actions {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 0;
        grid-template-columns: 1fr 1fr;
    }

    .home-page .console-actions .console-button {
        min-height: 58px;
    }
}

@media (max-width: 768px) {
    .home-page {
        --home-mobile-heading-size: 52px;
        --home-mobile-frame-corner: 36px;
        --home-mobile-header-height: 72px;
    }

    /* PC logic: story sticks at viewport top and scrolls under the nav, so a
       resizing header never leaves a gap. ponytail: drop the fixed header-height
       reservation that caused the black bar when the nav compacted. */
    .home-page .interceptor-story-sticky {
        top: 0;
        height: 100svh;
        min-height: 100svh;
    }

    /* Image stays full-bleed under the nav; the frame insets below it so the
       top corners clear the compact header instead of hiding behind it. */
    .home-page .story-viewport-frame {
        --story-frame-corner: var(--home-mobile-frame-corner);
        inset: calc(var(--nav-h, var(--home-mobile-header-height)) + 8px) 12px 16px 12px;
        transition: top 160ms linear;
    }

    .home-page .mission-log-head h2,
    .home-page .selector-head h2,
    .home-page .section-head h2 {
        max-width: min(100%, 12ch);
        font-size: var(--home-mobile-heading-size);
        line-height: 0.9;
        letter-spacing: 0;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        text-wrap: balance;
        word-break: normal;
    }

    .home-page .news-slide-copy h3 {
        max-width: 100%;
        font-size: clamp(31px, 9.2vw, 36px);
        line-height: 0.98;
        letter-spacing: 0;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        text-wrap: balance;
        word-break: normal;
    }

    .home-page .console-detail-link {
        display: none;
    }
}

@media (max-width: 1180px) {
    .home-page .console-detail-link {
        display: none;
    }
}

@media (max-width: 360px) {
    .home-page {
        --home-mobile-heading-size: 46px;
        --home-mobile-frame-corner: 32px;
    }
}

@media (max-width: 340px) {
    .home-page {
        --home-mobile-header-height: 114px;
    }
}

@media (min-width: 769px) {
    .home-page .mission-log-head {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .home-page .mission-log-deck {
        display: none;
    }

    .home-page .mission-log-count {
        grid-column: 2;
    }

    .home-page .selector-head h2 {
        max-width: 13ch;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        text-wrap: balance;
        word-break: normal;
    }
}
