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

:root {
    --bg: #09090d;
    --bg-secondary: #0f1017;
    --card: #14151d;
    --card-hover: #191a23;
    --text: #f5f5f7;
    --muted: #9698a6;
    --border: #252631;
    --accent: #a970ff;
    --accent-light: #c49aff;
    --green: #42d392;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}

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

.navbar {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 9, 13, 0.85);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--accent);
    color: white;
    font-size: 20px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: var(--muted);
    font-size: 14px;
    transition: 0.2s ease;
}

nav a:hover {
    color: var(--text);
}

.nav-button {
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text) !important;
}

.nav-button:hover {
    border-color: var(--accent);
}

.hero {
    min-height: 680px;
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(169, 112, 255, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(66, 211, 146, 0.06),
            transparent 30%
        );
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(66, 211, 146, 0.7);
}

h1 {
    font-size: clamp(52px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 850;
}

h1 span {
    color: var(--accent-light);
}

.hero-text {
    color: var(--muted);
    font-size: 18px;
    max-width: 560px;
    margin-top: 28px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
}

.primary-button {
    background: var(--accent);
    color: white;
}

.primary-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.secondary-button {
    border: 1px solid var(--border);
    color: var(--text);
}

.secondary-button:hover {
    background: var(--card);
}

.small-note {
    color: #666876;
    font-size: 12px;
    margin-top: 16px;
}

.hero-card {
    width: 100%;
    max-width: 520px;
    justify-self: end;
}

.chat-window {
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.chat-header {
    height: 58px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.chat-channel {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
}

.channel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.live {
    font-size: 10px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 1px;
}

.messages {
    padding: 22px;
}

.message {
    margin-bottom: 16px;
    font-size: 13px;
    color: #c8c9d2;
}

.username {
    color: var(--accent-light);
    font-weight: 700;
}

.bot {
    color: var(--green);
}

.colon {
    color: #60616d;
    margin: 0 5px;
}

.message b {
    color: var(--accent-light);
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    margin-top: 22px;
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 13px;
}

.album {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #24202f;
    color: var(--accent-light);
    font-size: 26px;
}

.track-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.playing-label {
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.track-info strong {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-info span:last-child {
    color: var(--muted);
    font-size: 11px;
}

.equalizer {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
}

.equalizer i {
    display: block;
    width: 3px;
    height: 12px;
    border-radius: 3px;
    background: var(--accent);
    animation: equalize 0.9s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) {
    height: 19px;
    animation-delay: 0.2s;
}

.equalizer i:nth-child(3) {
    height: 14px;
    animation-delay: 0.4s;
}

.equalizer i:nth-child(4) {
    height: 22px;
    animation-delay: 0.1s;
}

@keyframes equalize {
    from {
        transform: scaleY(0.5);
    }

    to {
        transform: scaleY(1);
    }
}

.section {
    padding: 110px 7%;
    border-top: 1px solid var(--border);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 55px;
}

.section-label {
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -2px;
    line-height: 1;
    margin-top: 12px;
}

.section-heading p {
    color: var(--muted);
    margin-top: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-card {
    padding: 28px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: 14px;
    transition: 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--card-hover);
    border-color: #353644;
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #211b2d;
    color: var(--accent-light);
    font-size: 20px;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 13px;
}

code {
    color: var(--accent-light);
    font-family: monospace;
}

.how-section {
    background: var(--bg-secondary);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.step-number {
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.step h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.step p {
    color: var(--muted);
    font-size: 13px;
}

.step-line {
    width: 70px;
    height: 1px;
    background: var(--border);
}

.commands-section {
    background: var(--bg);
}

.command-box {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    max-width: 900px;
}

.command-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 25px;
    padding: 19px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.command-row:last-child {
    border-bottom: none;
}

.command-row code {
    font-size: 13px;
    font-weight: 700;
}

.command-row span {
    color: var(--muted);
    font-size: 13px;
}

.connect-section {
    padding: 120px 7%;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(169, 112, 255, 0.15),
            transparent 40%
        );
}

.connect-card {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.connect-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 16px;
    background: var(--accent);
    font-size: 28px;
}

.connect-card h2 {
    font-size: clamp(38px, 6vw, 58px);
    letter-spacing: -2px;
    line-height: 1;
}

.connect-card > p {
    max-width: 500px;
    margin: 18px auto 30px;
    color: var(--muted);
}

.large {
    padding: 15px 25px;
}

footer {
    border-top: 1px solid var(--border);
    padding: 30px 7%;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
}

.footer-inner p {
    color: var(--muted);
    font-size: 12px;
}

.copyright {
    margin-left: auto;
    color: #5f606b;
    font-size: 11px;
}

@media (max-width: 1000px) {

    nav a:not(.nav-button) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 75px;
    }

    .hero-card {
        justify-self: start;
        max-width: 650px;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 600px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding: 65px 5%;
        min-height: auto;
    }

    h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section {
        padding: 80px 5%;
    }

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

    .command-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .footer-inner {
        flex-wrap: wrap;
    }

    .copyright {
        width: 100%;
        margin-left: 0;
    }
}
```
