@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --background: #050505;
    --background-2: #0a0a0a;
    --surface: #101010;
    --surface-2: #151515;
    --border: rgba(255, 255, 255, 0.09);
    --text: #ffffff;
    --muted: #8c8c8c;
    --muted-2: #5e5e5e;
    --accent: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6vw;

    border-bottom: 1px solid var(--border);

    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(18px);

    z-index: 100;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 5px;

    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.65;
}

.navbar nav {
    display: flex;
    gap: 34px;
}

.navbar nav a {
    color: #999;
    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.navbar nav a:hover {
    color: white;
    transform: translateY(-1px);
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 8vw 100px;

    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    animation: heroIn 0.9s ease forwards;
}

.eyebrow {
    color: #777;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 24px;

    font-size: clamp(60px, 9vw, 140px);
    line-height: 0.91;

    font-weight: 900;
    letter-spacing: -7px;
}

.hero h1 span {
    color: #707070;
}

.hero-text {
    max-width: 480px;

    margin-top: 35px;

    color: #858585;

    font-size: 16px;
    line-height: 1.7;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 22px;

    margin-top: 38px;
    padding: 15px 20px;

    background: white;
    color: black;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    background: #ddd;
}

.hero-button span {
    font-size: 18px;
}

.hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.025) 35%,
        transparent 70%
    );

    filter: blur(20px);

    pointer-events: none;
}


/* BEATS */

.beats-section {
    padding: 120px 8vw;
    background: var(--background-2);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 35px;
}

.section-heading h2 {
    margin-top: 12px;

    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;

    letter-spacing: -4px;
}

.release-count {
    color: #555;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* BEAT CARD */

.beat-card {
    display: grid;
    grid-template-columns: minmax(280px, 430px) 1fr;

    max-width: 1200px;

    margin: auto;

    background: var(--surface);

    border: 1px solid var(--border);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.beat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.18);
}


/* COVER */

.cover {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 255, 255, 0.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 30% 80%,
            rgba(255, 255, 255, 0.08),
            transparent 30%
        ),
        #080808;
}

.cover::before {
    content: "";

    position: absolute;

    inset: -50%;

    background:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 12px,
            rgba(255, 255, 255, 0.025) 13px,
            transparent 14px
        );

    transform: rotate(8deg);
}

.cover::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    box-shadow:
        0 0 0 35px rgba(255, 255, 255, 0.015),
        0 0 0 70px rgba(255, 255, 255, 0.01);
}

.cover-noise {
    position: absolute;
    inset: 0;

    opacity: 0.15;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");

    pointer-events: none;
}

.cover-content {
    position: absolute;

    left: 34px;
    bottom: 34px;

    z-index: 3;
}

.cover-content span {
    display: block;

    margin-bottom: 8px;

    color: #888;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 4px;
}

.cover-content strong {
    display: block;

    font-size: clamp(40px, 5vw, 70px);
    line-height: 0.84;

    font-weight: 900;
    letter-spacing: -4px;
}

.cover-number {
    position: absolute;

    right: 30px;
    top: 30px;

    color: #666;

    font-size: 12px;
    font-weight: 800;
}


/* BEAT INFO */

.beat-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 45px;
}

.beat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.beat-label {
    margin-bottom: 12px;

    color: #666;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}

.beat-top h3 {
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 900;

    letter-spacing: -3px;
}

.status {
    padding: 7px 10px;

    border: 1px solid var(--border);

    color: #888;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;
}

.beat-description {
    max-width: 450px;

    margin-top: 45px;

    color: #777;

    font-size: 14px;
    line-height: 1.8;
}

.beat-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 55px;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: white;
    color: black;

    font-size: 12px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.youtube-button:hover {
    transform: translateY(-2px);
    background: #ddd;
}

.youtube-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 5px;

    background: #111;
    color: white;

    font-size: 9px;
}

.open-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 49px;
    height: 49px;

    border: 1px solid var(--border);

    color: #aaa;

    font-size: 18px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.open-button:hover {
    background: white;
    color: black;
}


/* ABOUT */

.about-section {
    max-width: 850px;

    margin: auto;

    padding: 160px 8vw;
}

.about-section h2 {
    margin-top: 25px;

    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.95;

    letter-spacing: -5px;
}

.about-section > p:last-child {
    max-width: 570px;

    margin-top: 35px;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* FOOTER */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 35px 8vw;

    border-top: 1px solid var(--border);

    color: #555;

    font-size: 11px;
}

.footer-logo {
    color: white;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: 4px;
}

footer span {
    color: #444;
}


/* ANIMATION */

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .navbar {
        padding: 0 6%;
    }

    .navbar nav {
        gap: 18px;
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .beats-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .beat-card {
        grid-template-columns: 1fr;
    }

    .beat-info {
        padding: 30px;
    }

    .beat-description {
        margin-top: 30px;
    }

    .beat-actions {
        margin-top: 35px;
    }

    .about-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;

        padding-left: 6%;
        padding-right: 6%;
    }
}

@media (max-width: 480px) {

    .navbar {
        height: 65px;
    }

    .navbar nav a {
        font-size: 11px;
    }

    .hero {
        min-height: 90vh;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-text {
        font-size: 14px;
    }

    .beat-top {
        flex-direction: column;
    }

    .beat-top h3 {
        font-size: 42px;
    }

    .youtube-button {
        flex: 1;
        justify-content: center;
    }
}