:root {
    --ink: #07080d;
    --ink-soft: #101218;
    --panel: #14161d;
    --line: rgba(255, 255, 255, .1);
    --muted: #9b9da7;
    --paper: #f5f1e8;
    --white: #fffdf8;
    --acid: #d9ff43;
    --acid-soft: #efff9f;
    --violet: #8b6dff;
    --cyan: #51e1d7;
    --danger: #ff7272;
    --shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select {
    font: inherit;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: .11;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .12) 0 1px, transparent 1.5px),
        radial-gradient(circle at 72% 66%, rgba(255, 255, 255, .08) 0 1px, transparent 1.5px);
    background-size: 19px 23px, 29px 31px;
}

.site-header {
    width: min(1380px, calc(100% - 48px));
    height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 30;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    font-size: 14px;
}

.brand-mark {
    width: 31px;
    height: 31px;
    border: 1px solid rgba(217, 255, 67, .5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.brand-mark i {
    display: block;
    width: 2px;
    height: 8px;
    border-radius: 2px;
    background: var(--acid);
}

.brand-mark i:nth-child(2) {
    height: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 13px;
    color: #c8c8cc;
}

.nav-links a:not(.button):hover {
    color: var(--acid);
}

.button {
    appearance: none;
    border: 1px solid var(--acid);
    background: var(--acid);
    color: var(--ink);
    min-height: 43px;
    padding: 0 20px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--acid-soft);
    box-shadow: 0 12px 32px rgba(217, 255, 67, .15);
}

.button:disabled {
    cursor: not-allowed;
    opacity: .45;
    transform: none;
}

.button-small {
    min-height: 38px;
    padding: 0 17px;
    gap: 10px;
}

.button-large {
    min-height: 54px;
    padding: 0 24px;
}

.button-full {
    width: 100%;
}

.button-ghost {
    background: transparent;
    color: var(--acid);
}

.button-dark {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.hero {
    min-height: 710px;
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    right: -240px;
    top: -190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 109, 255, .17), transparent 67%);
}

.hero-copy {
    padding: 70px 0 82px 5vw;
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--acid);
    font: 500 11px/1.2 "DM Mono", monospace;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 26px;
    height: 1px;
    background: currentColor;
}

.hero h1,
.auth-copy h1 {
    font-size: clamp(59px, 6.6vw, 105px);
    line-height: .9;
    letter-spacing: -.068em;
    margin: 0;
    max-width: 780px;
}

h1 em,
h2 em {
    color: var(--acid);
    font-style: italic;
    font-weight: 500;
}

.hero-lead {
    color: #b1b2b8;
    font-size: 17px;
    line-height: 1.75;
    max-width: 570px;
    margin: 34px 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #dedee0;
    font-size: 13px;
}

.play-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    font-size: 9px;
    color: var(--acid);
}

.trust-row {
    display: flex;
    gap: 25px;
    margin-top: 38px;
    color: #74767f;
    font: 10px/1.3 "DM Mono", monospace;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.trust-row span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--acid);
}

.hero-player {
    position: relative;
    min-height: 600px;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
}

.orbit-one {
    width: 600px;
    height: 600px;
}

.orbit-two {
    width: 440px;
    height: 440px;
}

.glass-card {
    background: linear-gradient(145deg, rgba(29, 31, 40, .94), rgba(15, 16, 22, .97));
    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: var(--shadow);
}

.player-card {
    width: min(420px, 80vw);
    padding: 20px 23px 22px;
    border-radius: 6px;
    position: relative;
    z-index: 4;
    transform: rotate(2.7deg);
}

.player-card::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(217, 255, 67, .14);
    border-radius: 8px;
    transform: rotate(-5deg);
    z-index: -1;
}

.player-card-top,
.panel-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777984;
    font: 9px/1 "DM Mono", monospace;
    letter-spacing: .12em;
}

.player-card-top button {
    border: 0;
    background: none;
    color: #8e9099;
}

.live-pill {
    color: var(--acid);
}

.live-pill i,
.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 11px var(--acid);
    margin-right: 5px;
}

.album-art {
    height: 260px;
    margin: 19px 0;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background:
        linear-gradient(135deg, rgba(81, 225, 215, .15), transparent 43%),
        linear-gradient(315deg, rgba(139, 109, 255, .25), transparent 48%),
        #0b0c11;
}

.album-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, .022) 29px 30px);
}

.record {
    width: 190px;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    background:
        repeating-radial-gradient(circle, transparent 0 5px, rgba(255, 255, 255, .045) 6px 7px),
        radial-gradient(circle, #24242d 0 7%, var(--acid) 7.5% 22%, #111219 22.5% 100%);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .55);
    animation: spin 18s linear infinite;
    z-index: 2;
}

.record-ring {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--white);
}

.record-label {
    position: absolute;
    transform: translateY(-25px);
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.eq {
    position: absolute;
    height: 1px;
    width: 120px;
    background: var(--acid);
    filter: drop-shadow(0 0 10px rgba(217, 255, 67, .5));
}

.eq-a { transform: rotate(62deg) translateX(125px); }
.eq-b { transform: rotate(-25deg) translateX(-118px); }

.track-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.track-meta span,
.panel-label,
.form-kicker,
.dashboard-kicker {
    color: var(--acid);
    font: 500 9px/1.2 "DM Mono", monospace;
    letter-spacing: .15em;
}

.track-meta h2 {
    font-size: 18px;
    letter-spacing: -.03em;
    margin: 6px 0 4px;
}

.track-meta p {
    color: #74767e;
    font-size: 10px;
    margin: 0;
}

.heart-button {
    border: 0;
    background: none;
    color: var(--white);
    font-size: 23px;
}

.progress {
    height: 3px;
    background: #2b2d35;
    margin-top: 19px;
}

.progress span {
    height: 100%;
    display: block;
    position: relative;
    background: var(--acid);
}

.progress .demo-progress {
    width: 38%;
}

.dashboard-progress span {
    width: 0;
}

.progress span::after {
    content: "";
    position: absolute;
    right: -3px;
    top: -2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--acid);
    box-shadow: 0 0 9px var(--acid);
}

.time-row {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    color: #5f616b;
    font: 8px/1 "DM Mono", monospace;
}

.transport {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 15px;
}

.transport button,
.dashboard-transport button {
    border: 0;
    background: transparent;
    color: #989aa3;
    cursor: pointer;
}

.transport .transport-main,
.dashboard-transport .transport-main {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--acid);
    color: var(--ink);
    box-shadow: 0 9px 28px rgba(217, 255, 67, .22);
}

.floating-note {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--acid);
    background: rgba(7, 8, 13, .72);
    backdrop-filter: blur(14px);
}

.note-one {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    top: 18%;
    right: 7%;
}

.note-two {
    width: 44px;
    height: 44px;
    bottom: 18%;
    left: 4%;
    transform: rotate(-11deg);
}

.signal-strip {
    width: 100%;
    min-height: 116px;
    background: var(--acid);
    color: var(--ink);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 max(5vw, calc((100vw - 1280px) / 2));
    align-items: center;
}

.signal-strip div {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 34px;
    border-left: 1px solid rgba(7, 8, 13, .18);
}

.signal-strip strong {
    font-size: 25px;
    letter-spacing: -.05em;
}

.signal-strip span {
    margin-top: 4px;
    font: 10px/1 "DM Mono", monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feature-section,
.how-section {
    width: min(1230px, calc(100% - 48px));
    margin: 0 auto;
    padding: 130px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1.2fr .8fr;
    align-items: end;
    margin-bottom: 62px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.06em;
}

.section-heading > p:last-child {
    color: #858791;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 5px 35px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.feature-card {
    min-height: 355px;
    padding: 27px;
    position: relative;
    overflow: hidden;
    background: var(--ink-soft);
}

.feature-card:hover .feature-icon {
    color: var(--acid);
    transform: translateY(-4px);
}

.feature-number {
    color: #5b5d65;
    font: 9px/1 "DM Mono", monospace;
}

.feature-icon {
    width: 66px;
    height: 66px;
    margin: 55px 0 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 25px;
    transition: .25s ease;
}

.equalizer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.equalizer-icon i {
    width: 3px;
    height: 13px;
    background: currentColor;
}

.equalizer-icon i:nth-child(2) { height: 25px; }
.equalizer-icon i:nth-child(3) { height: 19px; }
.equalizer-icon i:nth-child(4) { height: 8px; }

.feature-card h3 {
    margin: 0 0 13px;
    font-size: 18px;
}

.feature-card p {
    margin: 0;
    color: #7f818a;
    font-size: 12px;
    line-height: 1.7;
}

.feature-primary {
    background: var(--acid);
    color: var(--ink);
}

.feature-primary .feature-number,
.feature-primary p {
    color: rgba(7, 8, 13, .62);
}

.feature-primary .feature-icon {
    border-color: rgba(7, 8, 13, .22);
}

.mini-wave {
    position: absolute;
    width: 170px;
    height: 60px;
    right: -20px;
    bottom: -15px;
    opacity: .18;
    background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 8px);
    clip-path: polygon(0 45%, 8% 20%, 15% 60%, 22% 5%, 30% 80%, 38% 25%, 47% 55%, 55% 12%, 62% 70%, 70% 30%, 79% 62%, 87% 18%, 95% 45%, 100% 35%, 100% 100%, 0 100%);
}

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

.section-heading.compact {
    grid-template-columns: 1fr;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
}

.steps article {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    border-left: 1px solid var(--line);
}

.steps article > span {
    color: var(--acid);
    font: 10px/1 "DM Mono", monospace;
}

.steps strong {
    font-size: 17px;
}

.steps p {
    color: #7f818a;
    font-size: 12px;
    line-height: 1.7;
}

code {
    font-family: "DM Mono", monospace;
    color: var(--acid);
}

.final-cta {
    width: min(1380px, calc(100% - 48px));
    min-height: 380px;
    margin: 0 auto 50px;
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background:
        linear-gradient(105deg, rgba(217, 255, 67, 1), rgba(217, 255, 67, .92)),
        var(--acid);
}

.final-cta .eyebrow {
    color: var(--ink);
}

.final-cta h2 em {
    color: var(--ink);
}

.site-footer {
    width: min(1380px, calc(100% - 48px));
    min-height: 120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
    color: #62646c;
    font-size: 11px;
}

.site-footer > p {
    text-align: center;
}

.site-footer > div {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.brand-muted {
    color: #83858d;
}

/* Authentication */
.auth-page {
    min-height: 100vh;
}

.auth-main {
    min-height: calc(100vh - 86px);
    display: grid;
    place-items: center;
    padding: 65px 24px;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 109, 255, .11), transparent 35%),
        radial-gradient(circle at 80% 15%, rgba(217, 255, 67, .05), transparent 24%);
}

.auth-panel {
    width: min(1060px, 100%);
    display: grid;
    grid-template-columns: 1fr 430px;
    align-items: center;
    gap: 100px;
}

.auth-copy h1 {
    font-size: clamp(54px, 6vw, 82px);
}

.auth-copy > p:not(.eyebrow) {
    color: #92949d;
    line-height: 1.7;
    max-width: 470px;
}

.auth-art {
    height: 155px;
    position: relative;
    overflow: hidden;
    margin-top: 32px;
}

.large-record {
    width: 145px;
    position: absolute;
    left: 15%;
    top: 10px;
}

.auth-wave {
    position: absolute;
    width: 70%;
    height: 110px;
    top: 18px;
    right: 0;
    background: repeating-linear-gradient(90deg, var(--acid) 0 2px, transparent 2px 10px);
    clip-path: polygon(0 48%, 6% 25%, 12% 72%, 18% 18%, 24% 80%, 30% 30%, 36% 65%, 42% 8%, 48% 88%, 54% 25%, 60% 67%, 66% 16%, 72% 80%, 78% 35%, 84% 63%, 90% 26%, 96% 50%, 100% 45%, 100% 55%, 96% 58%, 90% 37%, 84% 74%, 78% 46%, 72% 90%, 66% 26%, 60% 76%, 54% 36%, 48% 98%, 42% 18%, 36% 75%, 30% 40%, 24% 90%, 18% 28%, 12% 82%, 6% 35%, 0 58%);
    opacity: .2;
}

.auth-form-wrap {
    padding: 44px;
    border-radius: 5px;
}

.auth-form-wrap h2 {
    font-size: 31px;
    margin: 11px 0 3px;
    letter-spacing: -.04em;
}

.auth-form-wrap > p:not(.form-kicker):not(.form-security) {
    margin: 0 0 30px;
    color: #7e8089;
    font-size: 12px;
}

.auth-form-wrap > p a {
    color: var(--acid);
}

.api-form {
    display: grid;
    gap: 18px;
}

.api-form label:not(.check-label) {
    display: grid;
    gap: 8px;
    color: #bbbcc1;
    font-size: 11px;
}

.api-form input:not([type="checkbox"]),
.track-input input,
.server-select-wrap select {
    width: 100%;
    height: 49px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 2px;
    padding: 0 14px;
    outline: none;
    background: rgba(4, 5, 9, .5);
    color: var(--white);
    transition: border-color .2s ease;
}

.api-form input:focus,
.track-input input:focus,
.server-select-wrap select:focus {
    border-color: var(--acid);
}

.check-label {
    display: flex;
    gap: 9px;
    color: #858790;
    font-size: 10px;
    line-height: 1.5;
}

.check-label input {
    accent-color: var(--acid);
}

.form-message {
    min-height: 0;
    color: var(--danger);
    font-size: 11px;
}

.form-security {
    color: #5e6069;
    text-align: center;
    font-size: 9px;
    line-height: 1.5;
    margin: 20px 0 0;
}

.form-security i {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--acid);
    margin-right: 5px;
}

/* Dashboard */
.dashboard-page {
    background: #0b0c11;
    min-height: 100vh;
}

.sidebar {
    width: 230px;
    position: fixed;
    inset: 0 auto 0 0;
    padding: 27px 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    background: #090a0f;
    z-index: 10;
}

.dashboard-nav {
    display: grid;
    gap: 4px;
    margin-top: 67px;
}

.dashboard-nav button,
.sidebar-bottom > a {
    width: 100%;
    min-height: 43px;
    border: 0;
    border-left: 2px solid transparent;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #777984;
    background: transparent;
    text-align: left;
    font-size: 11px;
    cursor: pointer;
}

.dashboard-nav button.active {
    color: var(--white);
    border-left-color: var(--acid);
    background: linear-gradient(90deg, rgba(217, 255, 67, .08), transparent);
}

.dashboard-nav button span,
.sidebar-bottom > a span {
    width: 18px;
    color: var(--acid);
    font-size: 16px;
    text-align: center;
}

.sidebar-bottom {
    margin-top: auto;
    display: grid;
    gap: 3px;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--acid);
    color: var(--ink);
    font-weight: 800;
}

.user-chip strong,
.user-chip small {
    display: block;
}

.user-chip strong {
    font-size: 11px;
}

.user-chip small {
    color: #64666f;
    font-size: 8px;
    margin-top: 3px;
}

.dashboard-main {
    min-height: 100vh;
    margin-left: 230px;
    padding: 28px 3vw 55px;
}

.dashboard-header {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    margin-bottom: 25px;
}

.dashboard-header h1 {
    margin: 5px 0 0;
    font-size: 21px;
    letter-spacing: -.03em;
}

.dashboard-kicker {
    margin: 0;
}

.server-select-wrap {
    position: relative;
    display: grid;
    grid-template-columns: auto 200px 12px;
    gap: 12px;
    align-items: center;
}

.server-select-wrap label {
    color: #6c6e77;
    font: 9px/1 "DM Mono", monospace;
    letter-spacing: .1em;
}

.server-select-wrap select {
    height: 39px;
    padding-right: 30px;
    font-size: 10px;
}

.status-dot {
    margin: 0;
    background: #5a5c65;
    box-shadow: none;
}

.status-dot.online,
.status-dot.is-online {
    background: var(--acid);
    box-shadow: 0 0 10px rgba(217, 255, 67, .7);
}

.mobile-menu {
    display: none;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, .8fr);
    gap: 18px;
}

.main-column,
.side-column {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 18px;
}

.panel {
    border: 1px solid var(--line);
    background: #101116;
}

.now-playing-panel {
    min-height: 390px;
    padding: 24px 27px 28px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 22% 52%, rgba(139, 109, 255, .12), transparent 38%),
        #101116;
}

.panel-topline {
    border-bottom: 1px solid var(--line);
    padding-bottom: 17px;
}

.now-playing-content {
    min-height: 325px;
    display: grid;
    grid-template-columns: minmax(220px, .8fr) 1.1fr;
    align-items: center;
    gap: 35px;
}

.dashboard-art {
    height: 280px;
    position: relative;
    display: grid;
    place-items: center;
}

.dashboard-record {
    width: 205px;
}

.visual-bars {
    position: absolute;
    inset: auto 0 30px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: .17;
}

.visual-bars i {
    width: 3px;
    height: 35%;
    background: var(--acid);
    animation: pulse-bars 1.5s ease-in-out infinite alternate;
}

.visual-bars i:nth-child(2n) { height: 80%; animation-delay: -.4s; }
.visual-bars i:nth-child(3n) { height: 52%; animation-delay: -.8s; }

@keyframes pulse-bars {
    to { transform: scaleY(1.8); }
}

.dashboard-track > p {
    color: var(--acid);
    font: 9px/1 "DM Mono", monospace;
    letter-spacing: .12em;
    margin: 0 0 11px;
}

.dashboard-track h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 45px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.dashboard-track > span {
    display: block;
    color: #747681;
    font-size: 11px;
    margin-top: 10px;
}

.dashboard-progress {
    margin-top: 34px;
}

.dashboard-transport {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-transport button:disabled {
    opacity: .25;
}

.add-track,
.queue-panel,
.connection-panel,
.volume-panel {
    padding: 24px 27px;
}

.add-track > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.add-track label {
    font-size: 11px;
    color: #858791;
}

.track-input {
    position: relative;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    background: #090a0e;
    border: 1px solid var(--line);
}

.track-input > span {
    text-align: center;
    color: #6a6c75;
}

.track-input input {
    height: 50px;
    border: 0;
    padding-left: 0;
    background: transparent;
    font-size: 11px;
}

.track-input .button {
    margin-right: 4px;
    min-height: 42px;
}

.input-hint {
    color: #5f616b;
    font-size: 9px;
    margin: 9px 0 0;
}

.panel-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-title-row h2 {
    margin: 6px 0 0;
    font-size: 18px;
}

.text-button {
    border: 0;
    background: none;
    color: #747681;
    font-size: 9px;
    cursor: pointer;
}

.text-button:hover {
    color: var(--acid);
}

.queue-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
}

.queue-list li {
    min-height: 55px;
    display: grid;
    grid-template-columns: 30px 42px 1fr auto auto;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    color: #9b9da5;
    font-size: 10px;
}

.queue-list img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    background: #1b1c23;
}

.queue-cover {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--acid);
    background: #1b1c23;
}

.queue-list strong,
.queue-list small {
    display: block;
}

.queue-list strong {
    color: #d7d7da;
    font-size: 10px;
}

.queue-list small {
    color: #666872;
    margin-top: 3px;
}

.queue-list button {
    border: 0;
    background: none;
    color: #64666f;
    cursor: pointer;
}

.queue-list .queue-empty {
    display: flex;
    justify-content: center;
    color: #64666f;
}

.queue-empty > span {
    color: var(--acid);
}

.connection-badge {
    color: #c0a771;
    background: rgba(192, 167, 113, .1);
    border: 1px solid rgba(192, 167, 113, .2);
    padding: 5px 8px;
    font: 8px/1 "DM Mono", monospace;
    text-transform: uppercase;
}

.connection-badge.connected {
    color: var(--acid);
    background: rgba(217, 255, 67, .08);
    border-color: rgba(217, 255, 67, .18);
}

.link-steps {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.mini-step {
    display: flex;
    gap: 11px;
    align-items: center;
    opacity: .48;
}

.mini-step.active {
    opacity: 1;
}

.mini-step > span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    color: var(--acid);
    font: 9px/1 "DM Mono", monospace;
}

.mini-step p {
    margin: 0;
}

.mini-step strong,
.mini-step small {
    display: block;
    font-size: 9px;
}

.mini-step small {
    color: #70727c;
    margin-top: 3px;
}

.link-code-box {
    padding: 16px;
    margin-bottom: 12px;
    text-align: center;
    border: 1px dashed rgba(217, 255, 67, .26);
    background: rgba(217, 255, 67, .035);
}

.link-code-box > span {
    color: #686a73;
    font: 8px/1 "DM Mono", monospace;
}

.link-code-box strong {
    display: block;
    color: var(--acid);
    font: 500 20px/1 "DM Mono", monospace;
    letter-spacing: .08em;
    margin: 11px 0;
}

.link-code-box button {
    border: 0;
    background: none;
    color: #9a9ca4;
    font-size: 9px;
    cursor: pointer;
}

.discord-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid var(--line);
    background: #0b0c10;
}

.discord-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.discord-profile div {
    min-width: 0;
}

.discord-profile strong,
.discord-profile small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-profile strong {
    font-size: 11px;
}

.discord-profile small {
    color: #62646d;
    font-size: 8px;
    margin-top: 4px;
}

.verified {
    width: 21px;
    height: 21px;
    margin-left: auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--acid);
    font-size: 11px;
}

.connection-copy {
    color: #71737c;
    font-size: 10px;
    line-height: 1.6;
}

.volume-control {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    color: #73757e;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--acid);
}

.invite-panel {
    padding: 26px;
    color: var(--ink);
    background: var(--acid);
}

.invite-panel .panel-label {
    color: rgba(7, 8, 13, .62);
}

.invite-panel h2 {
    font-size: 30px;
    line-height: .95;
    letter-spacing: -.05em;
    margin: 11px 0 15px;
}

.invite-panel p:not(.panel-label) {
    color: rgba(7, 8, 13, .62);
    font-size: 10px;
    line-height: 1.6;
}

.toast-stack {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 8px;
}

.toast {
    width: min(340px, calc(100vw - 40px));
    padding: 13px 16px;
    border: 1px solid rgba(217, 255, 67, .2);
    background: #17191f;
    color: #d9dadf;
    box-shadow: var(--shadow);
    font-size: 11px;
    animation: toast-in .25s ease;
}

.toast.error {
    border-color: rgba(255, 114, 114, .3);
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(8px); }
}

.legal-page {
    width: min(800px, calc(100% - 48px));
    min-height: 70vh;
    margin: 0 auto;
    padding: 100px 0;
}

.legal-page h1 {
    font-size: 60px;
    letter-spacing: -.06em;
}

.legal-card {
    padding: 30px;
    border: 1px solid var(--line);
    color: #9a9ca5;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .hero-copy {
        padding-left: 0;
    }

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

    .auth-panel {
        gap: 45px;
    }

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

    .side-column {
        grid-template-columns: 1fr 1fr;
    }

    .connection-panel {
        grid-row: span 2;
    }
}

@media (max-width: 760px) {
    .site-header {
        height: 70px;
        width: calc(100% - 30px);
    }

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

    .hero {
        width: calc(100% - 30px);
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 75px 0 30px;
    }

    .hero h1 {
        font-size: clamp(55px, 17vw, 84px);
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .trust-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-player {
        min-height: 540px;
    }

    .player-card {
        transform: rotate(0);
    }

    .signal-strip {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .signal-strip div {
        padding-left: 18px;
    }

    .feature-section,
    .how-section {
        padding: 85px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .section-heading > p:last-child {
        margin: 25px 0 0;
    }

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

    .final-cta {
        width: calc(100% - 30px);
        padding: 38px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .site-footer {
        width: calc(100% - 30px);
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .site-footer > p {
        text-align: left;
    }

    .site-footer > div {
        justify-content: flex-start;
    }

    .auth-panel {
        grid-template-columns: 1fr;
    }

    .auth-copy {
        display: none;
    }

    .auth-form-wrap {
        padding: 30px 24px;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform .25s ease;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .dashboard-main {
        margin-left: 0;
        padding: 18px 15px 40px;
    }

    .mobile-menu {
        display: block;
        border: 0;
        background: none;
        color: var(--acid);
        font-size: 21px;
        margin-right: 10px;
    }

    .dashboard-header {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px;
    }

    .dashboard-header > div:nth-child(2) {
        flex: 1;
    }

    .server-select-wrap {
        width: 100%;
        grid-template-columns: auto 1fr 12px;
        padding-bottom: 13px;
    }

    .now-playing-content {
        grid-template-columns: 1fr;
        padding-top: 15px;
    }

    .dashboard-art {
        height: 230px;
    }

    .dashboard-record {
        width: 175px;
    }

    .dashboard-track {
        padding-bottom: 15px;
    }

    .track-input {
        grid-template-columns: 35px 1fr;
    }

    .track-input .button {
        grid-column: 1 / -1;
        margin: 0 4px 4px;
    }

    .side-column {
        grid-template-columns: 1fr;
    }

    .connection-panel {
        grid-row: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}
