* { /* NXD CSS Reset 2.0 */
    
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;

    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    
    box-sizing: border-box;
    
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	
}

:root {

    color-scheme: dark;

    --default-purple: #6c47ff;
    --default-red: color(display-p3 1 0.25 0.39); /* #ff1b5f */
    --default-green: color(display-p3 0.3 1 0.7); /* #00ffac */
    --default-yellow: color(display-p3 1 0.73 0.27); /* #ffb714 */
    
    --txt-primary: hsl(30, 20%, 80%);
    --txt-secondary: hsl(30, 10%, 50%);
    --txt-light: hsl(30, 15%, 25%);

    --bg-dark: #171511;
    --bg-light: hsl(30, 15%, 10%);

    --site-padding: 2.5em;
    --default-padding: 2em;

}

@font-face {

    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url('../fonts/inter-vf-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;

}

@font-face {

    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    src: url('../fonts/inter-vf-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;

}

img {

    pointer-events: none;

}

a {

    color: var(--txt-primary);
    text-decoration: none;
    
}

a:active {

    color: var(--default-purple);
    text-decoration: none;
    
}

html,
body {

    height: 100%;
    font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Helvetica,Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    cursor: default;
    font-size: 18px;
    background: var(--bg-light);
    color: var(--txt-primary);
    touch-action: pan-y;
    overscroll-behavior: none;
    font-weight: 600;
    scrollbar-width: thin;
    scrollbar-color: var(--txt-light) transparent;
    line-height: 1em;

}

body {

    overflow-x: hidden;
    overflow-y: auto;

}

::-webkit-scrollbar { width: 0.25em; }
::-webkit-scrollbar-track { background: transparent; }

::-webkit-scrollbar-thumb {

    background: var(--txt-light);
    border-radius: 0.5em;

}

::-webkit-scrollbar-thumb:hover { background: var(--default-yellow); }

.bg-video {

    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;

}

.bg-overlay {

    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at center, hsla(30, 15%, 4%, 0.65) 0.75px, transparent 0.75px) 0 0 / 3px 3px,
        radial-gradient(circle at center, hsla(30, 15%, 4%, 0.35) 0.75px, transparent 0.75px) 1.5px 1.5px / 3px 3px,
        linear-gradient(hsla(30, 15%, 10%, 0.55), hsla(30, 15%, 10%, 0.75));

}

.hero {

    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding: clamp(1.25em, 3vw, var(--site-padding)) clamp(2em, 6vw, var(--site-padding));

}

.hero-content {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    width: min(100%, 24em);

}

@media (max-width: 48em) {

    .hero-content { width: 100%; }

}

.hero-eyebrow {

    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    line-height: 0.9em;
    font-weight: 700;
    color: var(--default-yellow);

}

.hero-title {

    font-size: clamp(2rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    line-height: 0.8em;

}

.hero-title span { display: block; }

.player {

    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    max-width: 24em;

}

@media (max-width: 48em) {

    .player { max-width: none; }

}

.player-eq {

    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2em;
    height: 3em;

}

.player-eq span {

    width: 0.2em;
    height: 4%;
    border-radius: 0.5em;
    background: var(--txt-light);
    transform-origin: bottom;
    transition: height 0.08s linear, background 0.3s;

}

.player.is-playing .player-eq span { background: var(--default-yellow); }

.player-controls {

    display: flex;
    align-items: center;
    gap: 1em;

}

.player-download {

    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 1.25em 2.5em;
    border-radius: 0.5em;
    background: var(--txt-light);
    color: var(--txt-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;

}

.player-download:active {

    background: #fff;
    color: var(--bg-dark);

}

.player-toggle {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75em;
    height: 2.75em;
    border-radius: 50%;
    background: var(--default-yellow);
    color: var(--bg-dark);
    cursor: pointer;
    transition: transform 0.2s;

}

.player-toggle:active { transform: scale(0.94); }

.player-icon {

    width: 1.25em;
    height: 1.25em;
    fill: currentColor;

}

.player-icon-pause,
.player.is-playing .player-icon-play { display: none; }

.player.is-playing .player-icon-pause { display: block; }

.player-seek {

    position: relative;
    flex-grow: 1;
    height: 0.25em;
    border-radius: 0.5em;
    background: var(--txt-light);
    cursor: pointer;

}

.player-progress {

    width: 0;
    height: 100%;
    border-radius: 0.5em;
    background: var(--txt-primary);

}

.player-seek:hover .player-progress { background: var(--default-yellow); }

@media (max-width: 48em), (pointer: coarse) {

    .player-seek { height: 0.75em; }

}

.player-time {

    flex-shrink: 0;
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    color: var(--txt-secondary);

}