/* =========================================
   PRICE LIMITED — GLOBAL STYLES
========================================= */

:root {
    --bg: #050806;
    --bg-soft: #0a100c;
    --panel: #0d1510;
    --panel-hover: #111c14;

    --green: #7cff9b;
    --green-soft: #4fbd6b;
    --green-dark: #1d6b35;

    --text: #e8f0ea;
    --muted: #87958b;
    --line: rgba(124, 255, 155, 0.16);

    --max-width: 1180px;
    --radius: 4px;

    --transition: 180ms ease;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(50, 130, 70, 0.10),
            transparent 38%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


/* Subtle moving background */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            rgba(124, 255, 155, 0.018) 50%,
            transparent 100%
        );

    background-size: 250% 250%;

    animation: backgroundMove 14s ease-in-out infinite alternate;

    z-index: -1;
}

@keyframes backgroundMove {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 100% 50%;
    }
}


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

button {
    font: inherit;
}

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


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;

    width: 100%;

    z-index: 100;

    background: rgba(5, 8, 6, 0.88);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.navbar {
    width: min(
        calc(100% - 32px),
        var(--max-width)
    );

    min-height: 68px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.brand {
    color: var(--green);

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 0.24em;

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.brand span,
.footer-brand span,
.hero h1 span {
    color: var(--green-soft);
}

.brand:hover {
    opacity: 0.75;
    transform: translateY(-1px);
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-links a {
    position: relative;

    color: var(--muted);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.16em;

    transition:
        color var(--transition);
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--green);

    transition: width var(--transition);
}


.nav-links a:hover {
    color: var(--green);
}


.nav-links a:hover::after {
    width: 100%;
}


.menu-button {
    display: none;

    background: transparent;

    color: var(--green);

    border: 1px solid var(--line);

    padding: 9px 13px;

    cursor: pointer;

    font-size: 10px;

    letter-spacing: 0.15em;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: calc(100vh - 68px);

    width: min(
        calc(100% - 32px),
        var(--max-width)
    );

    margin: auto;

    display: flex;

    align-items: center;

    position: relative;
}


.hero::before {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            transparent 0 34px,
            rgba(124, 255, 155, 0.035) 35px 36px
        );

    mask-image: radial-gradient(
        circle,
        black,
        transparent 70%
    );

    pointer-events: none;
}


.hero-content {
    width: 100%;

    position: relative;

    padding: 80px 0;
}


.eyebrow {
    margin-bottom: 18px;

    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.32em;
}


.hero h1 {
    font-size: clamp(
        64px,
        13vw,
        170px
    );

    line-height: 0.86;

    font-weight: 800;

    letter-spacing: -0.075em;

    margin-bottom: 32px;
}


.hero-description {
    max-width: 520px;

    color: var(--muted);

    font-size: clamp(
        15px,
        2vw,
        19px
    );

    margin-bottom: 34px;
}


/* =========================================
   BUTTONS
========================================= */

.primary-button,
.release-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 22px;

    border: 1px solid var(--green);

    color: var(--green);

    background: rgba(124, 255, 155, 0.04);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.17em;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}


.primary-button:hover,
.release-button:not(.disabled):hover {
    background: var(--green);

    color: #061008;

    transform: translateY(-2px);

    box-shadow:
        0 10px 35px rgba(
            124,
            255,
            155,
            0.12
        );
}


.release-button.disabled {
    cursor: not-allowed;

    opacity: 0.45;
}


/* =========================================
   SECTIONS
========================================= */

.section {
    width: min(
        calc(100% - 32px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 110px 0;
}


.section-heading {
    display: flex;

    align-items: baseline;

    gap: 15px;

    margin-bottom: 40px;

    border-bottom: 1px solid var(--line);

    padding-bottom: 14px;
}


.section-heading span {
    color: var(--green);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.section-heading h2 {
    font-size: clamp(
        22px,
        4vw,
        38px
    );

    line-height: 1;

    letter-spacing: -0.03em;
}


/* =========================================
   CARDS
========================================= */

.content-card {
    border: 1px solid var(--line);

    background:
        linear-gradient(
            135deg,
            rgba(124, 255, 155, 0.035),
            transparent
        ),
        var(--panel);

    transition:
        border-color var(--transition),
        background var(--transition);
}


.content-card:hover {
    border-color:
        rgba(124, 255, 155, 0.30);

    background: var(--panel-hover);
}


/* =========================================
   EXPANDABLE ABOUT
========================================= */

.expand-button {
    width: 100%;

    padding: 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    color: var(--text);

    text-align: left;

    cursor: pointer;
}


.expand-button > span:first-child {
    font-size: clamp(
        16px,
        2.5vw,
        22px
    );

    font-weight: 500;

    line-height: 1.45;
}


.expand-symbol {
    flex: 0 0 auto;

    color: var(--green);

    font-size: 22px;
}


.expand-content {
    max-height: 0;

    overflow: hidden;

    padding: 0 25px;

    color: var(--muted);

    transition:
        max-height 400ms ease,
        padding 400ms ease;
}


.content-card.expanded .expand-content {
    max-height: 600px;

    padding:
        0 25px 25px;
}


.expand-content p {
    margin-top: 15px;

    max-width: 850px;
}


/* =========================================
   SHIRT SECTION
========================================= */

.shirt-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(250px, 0.6fr);

    gap: 50px;

    align-items: center;
}


.shirt-preview {
    aspect-ratio: 1 / 1;

    max-width: 650px;

    border: 1px solid var(--line);

    display: grid;

    place-items: center;

    background:
        radial-gradient(
            circle,
            rgba(124, 255, 155, 0.05),
            transparent 55%
        ),
        #030503;
}


.shirt-placeholder {
    width: 42%;

    aspect-ratio: 0.75 / 1;

    border: 1px solid
        rgba(124, 255, 155, 0.45);

    display: grid;

    place-items: center;

    position: relative;
}


.shirt-placeholder::before {
    content: "";

    position: absolute;

    width: 35%;
    height: 18%;

    top: -1px;

    border:
        1px solid
        rgba(124, 255, 155, 0.45);

    border-top: 0;
}


.shirt-placeholder span {
    color: rgba(
        124,
        255,
        155,
        0.45
    );

    font-size: clamp(
        10px,
        2vw,
        18px
    );

    letter-spacing: 0.3em;

    transform: rotate(-90deg);
}


.shirt-information {
    display: flex;

    flex-direction: column;

    gap: 26px;

    border-left: 1px solid var(--line);

    padding-left: 30px;
}


.shirt-information p {
    color: var(--muted);

    font-size: 13px;
}


.shirt-information strong {
    display: block;

    margin-bottom: 3px;

    color: var(--green);

    font-size: 9px;

    letter-spacing: 0.16em;
}


/* =========================================
   RELEASE
========================================= */

.release-section {
    width: 100%;

    padding:
        120px max(
            16px,
            calc(
                (100vw - var(--max-width)) / 2
            )
        );

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(20, 70, 35, 0.12),
            transparent
        );
}


.release-card {
    text-align: center;

    border:
        1px solid
        rgba(124, 255, 155, 0.22);

    background:
        radial-gradient(
            circle at center,
            rgba(124, 255, 155, 0.07),
            transparent 60%
        ),
        var(--panel);

    padding:
        clamp(35px, 8vw, 90px)
        20px;
}


.release-status {
    margin-bottom: 16px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.25em;
}


.release-card h3 {
    font-size: clamp(
        25px,
        6vw,
        60px
    );

    line-height: 1;

    letter-spacing: -0.04em;

    margin-bottom: 15px;
}


.release-date {
    color: var(--muted);

    font-size: 11px;

    letter-spacing: 0.15em;

    margin-bottom: 45px;
}


/* =========================================
   COUNTDOWN
========================================= */

.countdown {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: clamp(
        8px,
        2vw,
        24px
    );

    margin-bottom: 35px;
}


.countdown-unit {
    display: flex;

    flex-direction: column;

    align-items: center;

    min-width: clamp(
        50px,
        10vw,
        105px
    );
}


.countdown-unit span {
    color: var(--green);

    font-size: clamp(
        30px,
        7vw,
        70px
    );

    font-variant-numeric: tabular-nums;

    font-weight: 700;

    line-height: 1;
}


.countdown-unit small {
    margin-top: 9px;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 0.15em;
}


.countdown-divider {
    color: var(--green-dark);

    font-size: clamp(
        20px,
        4vw,
        45px
    );

    transform: translateY(-7px);
}


.timezone-note {
    max-width: 560px;

    margin:
        0 auto 35px;

    color: var(--muted);

    font-size: 11px;
}


/* Finished state */

.countdown.finished .countdown-unit span {
    opacity: 0.55;
}


/* =========================================
   STATS
========================================= */

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);
}


.stat-card {
    min-height: 190px;

    padding: 25px;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: var(--panel);

    transition:
        background var(--transition),
        transform var(--transition);
}


.stat-card:hover {
    background: var(--panel-hover);

    transform: translateY(-3px);
}


.stat-label {
    color: var(--muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.15em;
}


.stat-card strong {
    color: var(--green);

    font-size: clamp(
        30px,
        4vw,
        50px
    );

    line-height: 1;
}


.stat-card small {
    color: var(--muted);

    font-size: 8px;

    letter-spacing: 0.12em;
}


.information-card {
    margin-top: 40px;

    padding: 30px;

    color: var(--muted);
}


.information-card h3 {
    color: var(--text);

    margin-bottom: 20px;

    font-size: 16px;

    letter-spacing: 0.08em;
}


.information-card p + p {
    margin-top: 18px;
}


/* =========================================
   FAQ
========================================= */

.faq {
    border-top: 1px solid var(--line);
}


.faq details {
    border-bottom: 1px solid var(--line);
}


.faq summary {
    padding: 22px 0;

    cursor: pointer;

    list-style: none;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

    display: flex;

    justify-content: space-between;
}


.faq summary::-webkit-details-marker {
    display: none;
}


.faq summary::after {
    content: "+";

    color: var(--green);

    font-size: 18px;

    font-weight: 400;

    transition:
        transform var(--transition);
}


.faq details[open] summary::after {
    transform: rotate(45deg);
}


.faq details p {
    max-width: 800px;

    padding:
        0 40px 25px 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: min(
        calc(100% - 32px),
        var(--max-width)
    );

    margin: auto;

    padding:
        70px 0 35px;

    border-top: 1px solid var(--line);

    display: flex;

    align-items: center;

    gap: 25px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 0.15em;
}


.footer-brand {
    color: var(--green);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.2em;

    margin-right: auto;
}


.copyright {
    opacity: 0.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .navbar {
        min-height: 62px;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 62px;
        left: 16px;
        right: 16px;

        padding: 8px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: #080d09;

        border:
            1px solid
            var(--line);

        opacity: 0;

        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity var(--transition),
            transform var(--transition);
    }


    .nav-links.open {
        opacity: 1;

        pointer-events: auto;

        transform: translateY(0);
    }


    .nav-links a {
        padding: 15px;

        border-bottom:
            1px solid
            rgba(124, 255, 155, 0.08);
    }


    .nav-links a:last-child {
        border-bottom: 0;
    }


    .nav-links a::after {
        display: none;
    }


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


    .shirt-preview {
        max-width: none;
    }


    .shirt-information {
        border-left: 0;

        border-top: 1px solid var(--line);

        padding:
            25px 0 0;

        display: grid;

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


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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 560px) {

    .navbar,
    .hero,
    .section,
    .site-footer {
        width: min(
            calc(100% - 24px),
            var(--max-width)
        );
    }


    .hero {
        min-height:
            calc(100svh - 62px);
    }


    .hero-content {
        padding: 60px 0;
    }


    .hero h1 {
        font-size: 20vw;

        margin-bottom: 25px;
    }


    .hero-description {
        font-size: 14px;

        margin-bottom: 27px;
    }


    .section {
        padding: 75px 0;
    }


    .section-heading {
        margin-bottom: 25px;
    }


    .expand-button {
        padding: 19px;
    }


    .expand-button > span:first-child {
        font-size: 15px;
    }


    .expand-content {
        padding-left: 19px;
        padding-right: 19px;
    }


    .content-card.expanded .expand-content {
        padding:
            0 19px 20px;
    }


    .shirt-information {
        grid-template-columns: 1fr;
    }


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


    .stat-card {
        min-height: 150px;
    }


    .release-section {
        padding:
            80px 12px;
    }


    .release-card {
        padding:
            45px 10px;
    }


    .countdown {
        gap: 5px;
    }


    .countdown-unit {
        min-width: 55px;
    }


    .countdown-unit span {
        font-size: 29px;
    }


    .countdown-unit small {
        font-size: 6px;
    }


    .countdown-divider {
        font-size: 20px;
    }


    .release-date {
        font-size: 8px;

        letter-spacing: 0.09em;
    }


    .timezone-note {
        font-size: 9px;
    }


    .information-card {
        padding: 20px;
    }


    .faq summary {
        font-size: 13px;
    }


    .faq details p {
        font-size: 12px;
    }


    .site-footer {
        flex-wrap: wrap;

        padding-bottom: 25px;
    }


    .footer-brand {
        width: 100%;

        margin-right: 0;
    }

}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 370px) {

    .countdown {
        gap: 2px;
    }


    .countdown-unit {
        min-width: 45px;
    }


    .countdown-unit span {
        font-size: 23px;
    }


    .countdown-divider {
        font-size: 15px;
    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

:focus-visible {
    outline:
        2px solid
        var(--green);

    outline-offset: 4px;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}


/* =========================================
   SELECTION
========================================= */

::selection {
    background: var(--green);

    color: #050806;
}