* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #ffffff;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 72px;

    display: flex;
    align-items: center;

    padding: 0 6%;

    background:
        rgba(8, 8, 8, 0.75);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(18px);

    z-index: 1000;
}

.brand {
    font-size: 22px;
    font-weight: 800;

    letter-spacing: -1px;
}

.nav-links {
    display: flex;

    gap: 32px;

    margin-left: auto;
    margin-right: 32px;
}

.nav-links a {
    color: #888;

    font-size: 14px;

    transition:
        color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-button {
    padding: 10px 18px;

    border-radius: 7px;

    background: #fff;
    color: #000;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
}


/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    padding:
        140px 8% 100px;
}

.hero-content {
    max-width: 620px;
}

.badge {
    display: inline-block;

    margin-bottom: 24px;

    padding: 7px 12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    color: #999;

    font-size: 11px;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(52px, 7vw, 92px);

    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 800;
}

.hero h1 span {
    display: block;

    color: #777;
}

.hero p {
    max-width: 520px;

    margin-top: 28px;

    color: #999;

    font-size: 17px;

    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 36px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 20px;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.primary-button {
    background: #fff;
    color: #000;
}

.primary-button:hover {
    transform: translateY(-2px);
}

.secondary-button {
    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    color: #aaa;
}

.secondary-button:hover {
    background:
        rgba(255, 255, 255, 0.05);

    color: #fff;
}


/* FAKE PLAYER */

.hero-player {
    width: 430px;
    min-width: 430px;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    background: #111;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.5);
}

.player-top {
    height: 34px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 12px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.player-top span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #444;
}

.player-content {
    height: calc(100% - 80px);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.player-text {
    font-size: 48px;
    font-weight: 800;

    letter-spacing: -3px;
}

.player-subtext {
    margin-top: 8px;

    color: #555;

    font-size: 11px;
}

.player-controls {
    height: 46px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 12px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.control {
    padding: 7px 9px;

    border-radius: 5px;

    color: #777;

    font-size: 11px;
}

.control.active {
    background:
        rgba(255, 255, 255, 0.1);

    color: #fff;
}


/* FEATURES */

.features-section {
    padding:
        140px 8%;
}

.section-heading {
    max-width: 600px;

    margin-bottom: 60px;
}

.section-heading > span,
.section-label {
    color: #555;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 14px;

    font-size: 48px;

    letter-spacing: -2px;
}

.section-heading p {
    margin-top: 16px;

    color: #777;

    line-height: 1.7;
}

.features-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.feature-card {
    min-height: 260px;

    padding: 30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    background:
        rgba(255, 255, 255, 0.045);

    border-color:
        rgba(255, 255, 255, 0.12);
}

.feature-number {
    color: #444;

    font-size: 12px;
    font-weight: 700;
}

.feature-card h3 {
    margin-top: 80px;

    font-size: 23px;

    letter-spacing: -0.7px;
}

.feature-card p {
    max-width: 420px;

    margin-top: 10px;

    color: #777;

    font-size: 14px;

    line-height: 1.6;
}


/* DOWNLOAD */

.download-section {
    padding:
        80px 8% 140px;
}

.download-box {
    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 70px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #111,
            #0b0b0b
        );
}

.download-content {
    max-width: 600px;
}

.download-content h2 {
    margin-top: 16px;

    font-size: 52px;

    line-height: 1;

    letter-spacing: -3px;
}

.download-content p {
    margin: 20px 0 28px;

    color: #777;

    line-height: 1.7;
}

.download-content small {
    display: block;

    margin-top: 14px;

    color: #444;

    font-size: 10px;
}


/* FOOTER */

footer {
    min-height: 100px;

    display: flex;
    align-items: center;

    padding:
        0 8%;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
}

.footer-links {
    display: flex;

    gap: 24px;

    margin-left: auto;
    margin-right: 30px;
}

.footer-links a {
    color: #555;

    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    color: #444;

    font-size: 10px;
}


/* SCROLL ANIMATION */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .hero {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-player {
        width: 100%;
        max-width: 600px;
        min-width: 0;
    }
}

@media (max-width: 700px) {

    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        margin-left: auto;
    }

    .hero {
        padding:
            120px 20px 70px;
    }

    .hero h1 {
        font-size: 56px;

        letter-spacing: -3px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .features-section {
        padding:
            80px 20px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-section {
        padding:
            30px 20px 80px;
    }

    .download-box {
        padding: 40px 25px;
    }

    .download-content h2 {
        font-size: 40px;
    }

    footer {
        padding:
            30px 20px;

        flex-wrap: wrap;

        gap: 20px;
    }

    .footer-links {
        margin: 0;
    }

    .copyright {
        width: 100%;
    }
}