:root {
    --orange: #ff4d00;
    --gold: #ff7a00;
    --black: #050505;
    --panel: #101010;
    --line: #292929;
    --muted: #999
}

* {
    box-sizing: border-box
}

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

body {
    margin: 0;
    background: var(--black);
    color: #f5f5f5;
    font-family: "Barlow Condensed", Arial, sans-serif;
    overflow-x: hidden
}

body.locked {
    overflow: hidden
}

button,
a {
    font: inherit;
    color: inherit
}

a {
    text-decoration: none
}

button {
    cursor: pointer
}

::selection {
    background: var(--orange);
    color: #fff
}

.shell {
    width: min(1220px, 90vw);
    margin-inline: auto
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #030303;
    display: grid;
    place-items: center;
    transition: .65s
}

.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader__inner {
    width: min(520px, 75vw);
    text-align: center
}

.loader img {
    width: 100%;
    filter: drop-shadow(0 10px 25px #000);
    animation: pulse 1s ease-in-out infinite alternate
}

.loader__track {
    height: 2px;
    background: #222;
    margin: 28px auto 15px;
    overflow: hidden
}

.loader__track span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff9d00);
    animation: load 1.2s ease forwards
}

.loader p {
    font: 500 10px DM Mono, monospace;
    letter-spacing: .35em;
    color: #777
}

@keyframes load {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes pulse {
    to {
        filter: drop-shadow(0 0 18px #ff4d0044)
    }
}

.nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    border-bottom: 1px solid #ffffff17
}

.nav__brand img {
    width: 190px;
    display: block
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 32px;
    text-transform: uppercase;
    font: 500 11px DM Mono, monospace;
    letter-spacing: .14em
}

.nav nav a:not(.nav__cta) {
    color: #bbb
}

.nav nav a:hover {
    color: #fff
}

.nav__cta {
    border: 1px solid var(--orange);
    padding: 13px 20px
}

.nav__toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 25px
}

.hero {
    min-height: 100svh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1c1c1c, #080808 56%, #020202 88%)
}

.hero__grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, transparent, #000, transparent);
    transform: perspective(500px) rotateX(65deg) scale(1.5) translateY(25%)
}

.hero:after {
    content: "";
    position: absolute;
    width: 65vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    bottom: 17%;
    box-shadow: 0 0 30px 7px #ff4d0033
}

.hero__flare {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    background: #ff4d0011;
    filter: blur(75px)
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(1050px, 90vw)
}

.eyebrow,
.kicker {
    display: block;
    color: var(--gold);
    font: 500 11px/1.5 DM Mono, monospace;
    letter-spacing: .25em
}

.hero__logo {
    width: min(950px, 85vw);
    margin: 40px auto 25px;
    display: block;
    filter: drop-shadow(0 22px 22px #000)
}

.hero__content p {
    color: #b6b6b6;
    font-size: clamp(17px, 2vw, 22px);
    margin: 0 0 42px
}

.button {
    display: inline-flex;
    gap: 25px;
    align-items: center;
    padding: 17px 23px;
    background: var(--orange);
    font: 600 12px DM Mono, monospace;
    letter-spacing: .08em;
    box-shadow: 0 12px 45px #ff4d0030;
    transition: .25s
}

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

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 5vw;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #777;
    font: 500 9px DM Mono, monospace;
    letter-spacing: .2em
}

.scroll-cue i {
    width: 35px;
    height: 1px;
    background: var(--orange)
}

.stats {
    width: min(1080px, 90vw);
    margin: -35px auto 0;
    min-height: 105px;
    background: #111;
    border: 1px solid #282828;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 30px 60px #000
}

.stats div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
    border-right: 1px solid #292929
}

.stats div:last-child {
    border: 0
}

.stats strong {
    color: var(--orange);
    font-size: 31px
}

.stats span {
    font: 500 10px/1.4 DM Mono, monospace;
    letter-spacing: .13em;
    color: #999
}

.catalog {
    padding: 150px 0 140px
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px
}

.section-title h1,
.about h2 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: .87;
    letter-spacing: -.045em;
    margin: 18px 0 0;
    font-weight: 900
}

.section-title em,
.about em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px var(--orange)
}

.section-title p {
    width: 370px;
    color: var(--muted);
    line-height: 1.7;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 40px
}

.filters button {
    border: 1px solid #333;
    background: transparent;
    padding: 10px 15px;
    color: #888;
    font: 500 10px DM Mono, monospace;
    letter-spacing: .08em
}

.filters button:hover,
.filters button.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 450px
}

.product {
    background: #0e0e0e;
    border: 1px solid #242424;
    overflow: hidden;
    transition: transform .35s, border-color .35s, opacity .65s
}

.product:hover {
    transform: translateY(-7px);
    border-color: #ff4d0066
}

.product__visual {
    border: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 1/1.08;
    position: relative;
    overflow: hidden;
    display: block;
    background: #151515
}

.product__visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0e0e0e, transparent 40%)
}

.product__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.85) contrast(1.05);
    transition: .65s
}

.product:hover img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.08)
}

.product__tag {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 2;
    background: var(--orange);
    padding: 7px 9px;
    font: 500 9px DM Mono, monospace;
    letter-spacing: .08em
}

.product__zoom {
    position: absolute;
    z-index: 3;
    right: 17px;
    bottom: 17px;
    border: 1px solid #ffffff66;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 19px;
    transition: .3s
}

.product:hover .product__zoom {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg)
}

.product__info {
    padding: 5px 22px 24px
}

.product__info>span,
.modal__copy>span {
    color: var(--orange);
    font: 500 9px DM Mono, monospace;
    letter-spacing: .17em;
    text-transform: uppercase
}

.product__info h3 {
    margin: 9px 0 10px;
    font-size: 24px
}

.product__info p {
    color: #858585;
    font: 13px/1.6 Arial, sans-serif;
    min-height: 42px
}

.product__info>div {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-top: 1px solid #272727;
    padding-top: 18px;
    margin-top: 17px
}

.product__info b {
    font-size: 20px
}

.product__info button {
    border: 0;
    background: none;
    color: #aaa;
    font: 500 9px DM Mono, monospace;
    letter-spacing: .08em
}

.product__info button:hover {
    color: var(--orange)
}

.about {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 120px 0;
    border-top: 1px solid #242424
}

.about__mark {
    font-size: 100px;
    font-weight: 900;
    color: #101010;
    -webkit-text-stroke: 1px #272727;
    transform: rotate(-90deg)
}

.about h2 {
    font-size: clamp(40px, 4vw, 62px)
}

.about__copy {
    color: #999;
    font: 15px/1.8 Arial, sans-serif
}

.parallax {
    min-height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('assets/parallax.png') center 46%/cover fixed;
    overflow: hidden
}

.parallax__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050505, #050505dc 43%, #05050544 75%, #050505b5)
}

.parallax__copy {
    position: relative
}

.parallax__copy span {
    color: var(--orange);
    font: 500 11px DM Mono, monospace;
    letter-spacing: .23em
}

.parallax h2 {
    font-size: clamp(58px, 9vw, 125px);
    line-height: .76;
    letter-spacing: -.06em;
    margin: 25px 0 45px;
    font-weight: 900
}

.parallax a {
    display: inline-block;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
    font: 500 11px DM Mono, monospace;
    letter-spacing: .12em
}

.footer {
    padding: 80px 0 25px
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 70px
}

.footer__top>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px
}

.footer img {
    width: 240px
}

.footer p {
    max-width: 350px;
    color: #777;
    font: 14px/1.6 Arial, sans-serif
}

.footer__top span {
    color: var(--orange);
    font: 500 10px DM Mono, monospace;
    letter-spacing: .18em;
    margin-bottom: 8px
}

.footer__top a {
    color: #999
}

.footer__top a:hover {
    color: white
}

.footer__bottom {
    border-top: 1px solid #222;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: #555;
    font: 500 9px DM Mono, monospace;
    letter-spacing: .15em
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #000d;
    backdrop-filter: blur(12px);
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .25s
}

.modal.open {
    opacity: 1;
    visibility: visible
}

.modal__card {
    width: min(900px, 95vw);
    max-height: 90vh;
    background: #101010;
    border: 1px solid #333;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    position: relative;
    overflow: auto;
    transform: translateY(20px);
    transition: .25s
}

.modal.open .modal__card {
    transform: none
}

.modal__close {
    position: absolute;
    z-index: 4;
    right: 15px;
    top: 12px;
    width: 40px;
    height: 40px;
    border: 1px solid #555;
    background: #090909dd;
    font-size: 25px
}

.modal__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover
}

.modal__copy {
    padding: 70px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.modal__copy h2 {
    font-size: 46px;
    line-height: .9;
    margin: 16px 0 22px
}

.modal__copy p {
    color: #999;
    font: 14px/1.7 Arial, sans-serif
}

.modal__copy b {
    color: var(--orange);
    font-size: 30px;
    margin-top: 20px
}

.modal__copy a {
    margin-top: auto;
    background: var(--orange);
    padding: 16px 17px;
    font: 500 10px DM Mono, monospace;
    letter-spacing: .08em
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:850px) {
    .nav {
        height: 72px
    }

    .nav__brand img {
        width: 145px
    }

    .nav__toggle {
        display: block;
        z-index: 2
    }

    .nav nav {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 95px 7vw 35px;
        background: #080808;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #333
    }

    .nav nav.open {
        display: flex
    }

    .nav__cta {
        width: 100%;
        text-align: center
    }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 0
    }

    .stats div {
        padding: 22px;
        border-right: 0;
        border-bottom: 1px solid #292929
    }

    .section-title {
        display: block
    }

    .section-title p {
        width: auto;
        margin-top: 25px
    }

    .catalog {
        padding: 100px 0
    }

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

    .about {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 90px 0
    }

    .about__mark {
        display: none
    }

    .parallax {
        background-attachment: scroll
    }

    .footer__top {
        grid-template-columns: 1fr 1fr
    }

    .footer__top>div:first-child {
        grid-column: 1/-1
    }

    .modal__card {
        grid-template-columns: 1fr
    }

    .modal__image img {
        height: 45vh;
        min-height: 300px
    }

    .modal__copy {
        padding: 35px
    }

    .modal__copy a {
        margin-top: 30px
    }
}

@media(max-width:560px) {
    .eyebrow {
        font-size: 9px;
        line-height: 1.7;
        padding: 0 20px
    }

    .hero__content p {
        font-size: 16px
    }

    .products {
        grid-template-columns: 1fr
    }

    .section-title h1 {
        font-size: 46px
    }

    .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px
    }

    .filters button {
        flex: none
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer__top>div:first-child {
        grid-column: auto
    }

    .footer__bottom {
        gap: 20px
    }

    .product__info p {
        min-height: 0
    }

    .parallax {
        min-height: 520px
    }

    .modal__copy h2 {
        font-size: 36px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .parallax {
        background-attachment: scroll
    }
}