* {
    box-sizing: border-box;
}

@font-face {
    font-family: "Akira Expanded";
    src: url("assets/fonts/Akira%20Expanded%20Demo.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #000;
    --panel: rgba(35, 35, 38, .92);
    --ice: #d9f6ff;
    --steel: #8993ad;
    --red: #ff3218;
    --white: #fff;
    --muted: #cbd1dc;
    --glow: 0 0 8px rgba(151, 226, 255, .95), 0 0 18px rgba(72, 188, 255, .85), 0 0 36px rgba(72, 188, 255, .58);
    --font-heavy: "Akira Expanded", Impact, Haettenschweiler, "Arial Black", "Segoe UI Black", sans-serif;
    --font-secondary: "Share Tech Mono", monospace;
    --font-body: "Share Tech Mono", Arial, Helvetica, sans-serif;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.4;
    background-color: var(--bg);
    background-image: url("assets/brand/Back_Grid_Repeating.png");
    background-repeat: repeat;
    background-position: top left;
    background-size: 384px 384px;
}

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.page-banner h1 {
    font-family: var(--font-heavy);
    letter-spacing: 0;
    text-transform: uppercase;
}

.top-strip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 28px;
    overflow: hidden;
    padding: 4px 0;
    color: var(--white);
    background: rgba(0, 0, 0, .88);
    font-family: var(--font-secondary);
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow:
        0 0 6px rgba(151, 226, 255, .9),
        0 0 14px rgba(72, 188, 255, .6);
}

.announcement-track {
    display: flex;
    width: max-content;
    min-width: 200%;
    animation: announcement-scroll 28s linear infinite;
}

.announcement-track span {
    flex: 0 0 auto;
    padding: 0 34px;
    color: var(--white);
    font-family: var(--font-secondary);
    text-shadow:
        0 0 6px rgba(151, 226, 255, .9),
        0 0 14px rgba(72, 188, 255, .6);
}

@keyframes announcement-scroll {
    from {
        transform: translateX(0);
    }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: background .22s ease, box-shadow .22s ease;
}

.site-header.scrolled,
.site-header.open {
    background: rgba(0, 0, 0, .86);
    box-shadow: 0 0 20px rgba(98, 201, 255, .18);
    backdrop-filter: blur(8px);
}

.nav-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 78px;
    padding: 0 38px;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-right:empty {
    display: none;
}

.nav-link,
.nav-toggle {
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-shadow:
        0 0 6px rgba(151, 226, 255, .95),
        0 0 14px rgba(72, 188, 255, .65),
        2px 2px 0 #000;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: var(--ice);
    text-shadow:
        0 0 8px rgba(217, 246, 255, 1),
        0 0 22px rgba(72, 188, 255, .9),
        2px 2px 0 #000;
}

.logo-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-lockup img {
    width: 238px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(150, 226, 255, .72)) drop-shadow(0 8px 8px #000);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    position: relative;
    place-items: center;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nav-toggle span {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 0 8px rgba(151, 226, 255, .95), 2px 2px 0 #000;
    transition: transform .24s ease, opacity .18s ease, top .24s ease;
}

.nav-toggle span:nth-child(1) {
    top: 13px;
}

.nav-toggle span:nth-child(2) {
    top: 20px;
}

.nav-toggle span:nth-child(3) {
    top: 27px;
}

.site-header.open .nav-toggle span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.site-header.open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.open .nav-toggle span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100vh - 110px);
    overflow: hidden;
    border-bottom: 0;
    background: transparent;
}

.hero-art {
    position: absolute;
    left: 50%;
    bottom: 92px;
    z-index: 1;
    width: min(1540px, 118vw);
    height: min(64vh, 560px);
    min-height: 400px;
    background-image: url("assets/brand/Lineup.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .95));
}

.hero-logo {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    width: min(980px, 82vw);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-logo img {
    width: 100%;
    filter: drop-shadow(0 0 12px rgba(151, 226, 255, .95)) drop-shadow(0 0 28px rgba(72, 188, 255, .68)) drop-shadow(0 16px 10px #000);
}

.section {
    padding: 50px 6vw;
}

.home-showcase {
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: 48px;
}

body[data-page="home"] main > section:not(.hero),
body[data-page="home"] .site-footer {
    animation: reveal-content linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
}

@keyframes reveal-content {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

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

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: min(1400px, 100%);
    margin: 0 auto;
}

.catalogue-button-wrap {
    text-align: center;
}

.catalogue-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--ice);
    border-radius: 14px;
    background: #202225;
    box-shadow: 0 0 12px rgba(191, 232, 255, .5);
    color: var(--white);
    font-family: var(--font-heavy);
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

.page-banner {
    padding: 42px 6vw 18px;
    border-bottom: 0;
    background: rgba(0, 0, 0, .52);
}

.page-banner h1 {
    margin: 0;
    color: var(--ice);
    font-size: 3.4rem;
    line-height: .92;
    text-shadow: 3px 3px 0 #000, 0 0 14px rgba(126, 215, 255, .72);
}

.catalog-section {
    padding-top: 18px;
}

.catalogue-list {
    display: grid;
    gap: 1.7rem;
    max-width: 1520px;
    margin: 0 auto;
}

.catalogue-entry {
    display: grid;
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    min-height: auto;
    padding: .75rem 3vw;
    scroll-margin-top: 130px;
}

.catalogue-info {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: .38rem;
    min-width: 0;
    padding-right: 1vw;
    text-align: center;
}

.catalogue-title-img {
    display: block;
    width: min(690px, 100%);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 5px #63a3ff)
        drop-shadow(0 0 11px #72beff);
}

.featured-card,
.catalogue-image {
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.catalogue-image {
    width: min(430px, 100%);
}

.catalogue-variant-shell {
    display: grid;
    justify-items: start;
    gap: 14px;
    width: min(430px, 100%);
}

.featured-card::before,
.catalogue-image::before {
    content: "";
    position: absolute;
    inset: 1.8%;
    z-index: 0;
    border-radius: 3.5%;
    box-shadow:
        0 0 10px #d9f6ff,
        0 0 22px rgba(217, 246, 255, .9),
        0 0 44px rgba(114, 190, 255, .78),
        0 0 70px rgba(114, 190, 255, .52);
    pointer-events: none;
}

.featured-card::after,
.catalogue-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: url("assets/brand/Box_Outline.png") center / 100% 100% no-repeat;
    pointer-events: none;
}

.featured-card img,
.catalogue-image img {
    position: absolute;
    inset: 1%;
    z-index: 1;
    width: calc(100% - 2%);
    height: calc(100% - 2%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 2%;
}

.catalogue-image img.is-fading {
    opacity: 0;
}

[data-variant-image] {
    transition: opacity .34s ease;
}

.featured-card:hover::before,
.featured-card:focus-visible::before {
    box-shadow:
        0 0 14px #ffffff,
        0 0 24px rgba(217, 246, 255, .98),
        0 0 44px rgba(114, 190, 255, .9),
        0 0 74px rgba(114, 190, 255, .62);
}

.contents-box {
    width: min(650px, 100%);
    margin: .35rem 0 .15rem;
    padding: .85rem 1.35rem;
    border: 2px solid var(--steel);
    border-radius: 28px;
    background: rgba(255, 255, 255, .12);
    text-align: left;
}

.contents-box strong {
    display: block;
    margin-bottom: .45rem;
    font-family: var(--font-secondary);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.contents-box ul {
    display: grid;
    gap: .04rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contents-box li {
    color: var(--white);
    font-family: var(--font-heavy);
    font-size: clamp(.95rem, 1.55vw, 1.22rem);
    line-height: 1.02;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

.coming-button {
    display: inline-block;
    min-width: 190px;
    padding: .42rem 1.8rem;
    border: 2px solid var(--steel);
    border-radius: 13px;
    background: #333;
    color: var(--white);
    font-family: var(--font-heavy);
    font-size: .82rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #000;
}

.variant-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.variant-dot {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 2px solid rgba(217, 246, 255, .8);
    border-radius: 999px;
    cursor: pointer;
    background: #d9b890;
    box-shadow: 0 0 8px rgba(126, 215, 255, .35);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.variant-dot.yellow {
    background: #f5d73d;
}

.variant-dot:hover,
.variant-dot:focus-visible,
.variant-dot.active {
    border-color: var(--white);
    transform: translateY(-2px) scale(1.12);
    box-shadow:
        0 0 8px rgba(217, 246, 255, .95),
        0 0 18px rgba(72, 188, 255, .72);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 6vw;
    border-top: 3px solid rgba(255, 255, 255, .14);
    color: var(--white);
    background: rgba(0, 0, 0, .72);
    font-family: var(--font-heavy);
    text-transform: uppercase;
}

@media (min-width: 1250px) {
    .catalogue-entry {
        grid-template-columns: minmax(300px, 420px) minmax(720px, 1fr);
    }
}

@media (max-width: 1100px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogue-entry {
        grid-template-columns: 1fr;
        padding: 1.25rem 22px;
    }

    .catalogue-image {
        width: min(460px, 100%);
        margin: 0 auto;
    }

    .catalogue-variant-shell {
        justify-items: center;
        width: min(460px, 100%);
        margin: 0 auto;
    }

    .hero-logo {
        bottom: 0;
        width: min(860px, 88vw);
    }
}

@media (max-width: 780px) {
    .nav-shell {
        grid-template-columns: 44px 1fr 44px;
        padding: 10px 16px;
        overflow: hidden;
    }

    .logo-lockup {
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
    }

    .logo-lockup img {
        width: 178px;
        height: 48px;
    }

    .nav-toggle {
        grid-column: 3;
        grid-row: 1;
        display: inline-grid;
        align-items: center;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: max-height .34s ease, opacity .24s ease, transform .28s ease, padding .28s ease, margin .28s ease;
    }

    .site-header.open .nav-left,
    .site-header.open .nav-right {
        max-height: 220px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-header.open .nav-left {
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 2px solid rgba(255, 255, 255, .14);
    }

    .site-header.open .nav-right {
        margin-top: 8px;
        padding-bottom: 8px;
    }

    .nav-left .nav-link,
    .nav-right .nav-link {
        min-height: 34px;
        justify-content: center;
        border: 0;
        border-radius: 0;
        background: transparent;
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity .24s ease, transform .24s ease, color .2s ease, text-shadow .2s ease;
    }

    .site-header.open .nav-left .nav-link,
    .site-header.open .nav-right .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .site-header.open .nav-left .nav-link:nth-child(1) {
        transition-delay: .04s;
    }

    .site-header.open .nav-left .nav-link:nth-child(2) {
        transition-delay: .08s;
    }

    .nav-left .nav-link:hover,
    .nav-left .nav-link:focus-visible,
    .nav-right .nav-link:hover,
    .nav-right .nav-link:focus-visible {
        color: var(--ice);
    }

    .hero {
        min-height: 620px;
    }

    .hero-logo {
        bottom: 0;
        width: 94vw;
    }

    .hero-art {
        width: 138vw;
        min-height: 340px;
        height: 46vh;
    }

    .section,
    .page-banner {
        padding-left: 22px;
        padding-right: 22px;
    }

    .page-banner h1 {
        font-size: 2.4rem;
    }

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

@media (max-width: 480px) {
    .hero {
        min-height: 540px;
    }

    .hero-logo {
        bottom: 0;
    }

    .hero-art {
        width: 158vw;
        min-height: 280px;
    }

    .site-footer {
        display: grid;
        text-align: center;
    }
}
