:root {
    --bg: #0a0a0a;
    --bg-elev: #1a1a1a;
    --surface: #151515;
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-muted: #999999;
    --accent: #ffffff;
    --accent-2: #e0e0e0;
    --accent-soft: rgba(255, 255, 255, 0.08);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.5);
    --radius: 14px;
    --radius-lg: 22px;
    --maxw: 1240px;
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-elev: #f5f5f5;
    --surface: #fafafa;
    --border: rgba(0, 0, 0, 0.1);
    --text: #000000;
    --text-muted: #666666;
    --accent: #000000;
    --accent-2: #333333;
    --accent-soft: rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
    cursor: url('img/mouse.png') auto;
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-dot {
    position: absolute;
    height: 1.2em;
    width: 14em;
    background-color: var(--text);
    border-radius: 1em;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: dot 3s cubic-bezier(0.175, 0.520, 0.100, 1) infinite;
    transform-origin: center center;
}

.loading-shadow {
    position: absolute;
    width: 14em;
    height: 1.2em;
    background-color: rgba(0, 0, 0, 0.085);
    border-radius: 100%;
    transform: scale(1, 0.4) translate(0, 10em);
    animation: shadow 3s cubic-bezier(0.175, 0.520, 0.100, 1) infinite;
    top: 52%;
}

.loading-text {
    position: absolute;
    top: 55%;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.loading-link {
    position: absolute;
    top: 62%;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.03em;
}

.loading-link:hover {
    opacity: 0.7;
}

.loading-bar {
    position: absolute;
    bottom: 35px;
    width: 160px;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: var(--text);
    width: 0%;
    animation: loading-bar 2s ease-in-out forwards;
}

@keyframes dot {
    20% {
        width: 1em;
        transform: translate(-50%, -50%) scale(1);
    }
    30% {
        transform: translate(-50%, -50%) scale(3);
        border-radius: 1em;
    }
    40% {
        transform: translate(-50%, -50%) scale(3) translateY(-1.5em);
        border-radius: 0.2em;
        transform-origin: center center;
    }
    50% {
        transform: translate(-50%, -50%) scale(3) translateY(-1.5em) rotateZ(-90deg);
        transform-origin: 50% 3em;
    }
    60% {
        transform: translate(-50%, -50%) scale(3) translateY(-1.5em) rotateZ(90deg);
        transform-origin: 50% 3em;
    }
    70% {
        transform: translate(-50%, -50%) scale(3) translateY(-1.5em) rotateZ(0deg);
    }
    80% {
        transform: translate(-50%, -50%) scale(3) translateY(0em);
        border-radius: 0.2em;
    }
    90% {
        width: 1em;
        transform: translate(-50%, -50%) scale(1);
        border-radius: 1em;
    }
    100% {
        width: 14em;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes shadow {
    20% {
        width: 1em;
        transform: scale(1, 0.4) translate(0, 10em);
    }
    30% {
        transform: scale(3, 0.4) translate(0, 10em);
    }
    40% {
        transform: scale(3, 0.4) translate(0, 10em);
    }
    50% {
        transform: scale(3, 0.4) translate(-2.5em, 10em);
    }
    60% {
        transform: scale(3, 0.4) translate(2.5em, 10em);
    }
    70% {
        transform: scale(3, 0.4) translate(0, 10em);
    }
    80% {
        transform: scale(3, 0.4) translate(0, 10em);
    }
    90% {
        width: 1em;
        transform: scale(1, 0.4) translate(0, 10em);
    }
    100% {
        width: 14em;
        transform: scale(1, 0.4) translate(0, 10em);
    }
}

@keyframes loading-bar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.accent {
    color: var(--accent);
}

.gradient-text {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--text);
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--bg) 75%, transparent);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.nav__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav__wordmark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    gap: 28px;
    margin-left: 20px;
}

.nav__links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--text);
}

.nav__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.theme-toggle:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn--primary {
    background: var(--text);
    color: var(--bg);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
    color: var(--text);
    border-color: var(--border);
}

.btn--ghost:hover {
    background: var(--surface);
    border-color: var(--text-muted);
}

.btn--lg {
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
}

.hero {
    position: relative;
    padding: 100px 28px 80px;
    overflow: visible;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
    opacity: 0.6;
}

.hero__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero__copy {
    max-width: 580px;
    position: relative;
    overflow: visible;
}

.hero__line {
    position: absolute;
    top: 0;
    left: -100px;
    margin-bottom: 0;
    height: 350px;
    width: calc(100% + 200px);
    max-width: none;
    z-index: -1;
    pointer-events: none;
}

.hero__line-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
}

.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero__title-sub {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.3;
}

.hero__sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__meta {
    display: flex;
    gap: 40px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    animation: counter-up 2s ease-out forwards;
}

@keyframes counter-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meta-item:nth-child(1) strong {
    animation-delay: 0.3s;
}

.meta-item:nth-child(2) strong {
    animation-delay: 0.5s;
}

.meta-item:nth-child(3) strong {
    animation-delay: 0.7s;
}

.meta-item span {
    font-size: 13px;
    color: var(--text-muted);
}

.features {
    position: relative;
    padding: 140px 28px 280px;
    overflow: hidden;
    background: var(--bg);
}

.features__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.features__glow {
    position: absolute;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft), transparent);
    filter: blur(180px);
    opacity: 0.12;
}

.features__glow--1 {
    top: -600px;
    left: -10%;
}

.features__glow--2 {
    bottom: -600px;
    right: -10%;
}

.features__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
}

.features__header {
    text-align: center;
    margin-bottom: 100px;
}

.features__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.features__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    color: var(--text);
    opacity: 0.9;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.feature-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-card__text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}

.feature-card__example {
    padding: 14px 0;
    background: transparent;
    border-top: 1px solid var(--border);
    border-radius: 0;
    font-size: 13px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-card__label {
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.7;
}

.feature-card__value {
    color: var(--text);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.hero__player {
    background: rgba(0, 0, 0, 0.096);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.08s ease-out;
    will-change: transform;
}

[data-theme="light"] .hero__player {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.player__art-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.player__art-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.player__art {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    transform-style: preserve-3d;
}

[data-theme="light"] .player__art {
    background: linear-gradient(135deg, #ebebeb 0%, #d8d8d8 100%);
}

.player__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.player__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.player__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.player__artist {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.player__progress {
    margin-bottom: 16px;
}

.player__bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.player__fill {
    width: 0%;
    height: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.player__dots {
    position: absolute;
    inset: -60px;
    pointer-events: none;
}

.player__dots .dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 20px currentColor;
    opacity: 0;
    animation: float 4s ease-in-out infinite;
}

[data-theme="light"] .player__dots .dot {
    background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    box-shadow: 0 0 20px currentColor;
}

.player__dots .dot:nth-child(1) { 
    left: 20%; 
    top: 10%; 
    animation-delay: 0s;
    color: #ffffff;
}

.player__dots .dot:nth-child(2) { 
    right: 15%; 
    top: 20%; 
    animation-delay: 0.5s;
    color: #e0e0e0;
}

.player__dots .dot:nth-child(3) { 
    left: 10%; 
    bottom: 15%; 
    animation-delay: 1s;
    color: #ffffff;
}

.player__dots .dot:nth-child(4) { 
    right: 10%; 
    bottom: 20%; 
    animation-delay: 1.5s;
    color: #e0e0e0;
}

.player__dots .dot:nth-child(5) { 
    left: 35%; 
    top: 5%; 
    animation-delay: 2s;
    color: #ffffff;
}

.player__dots .dot:nth-child(6) { 
    right: 25%; 
    bottom: 10%; 
    animation-delay: 2.5s;
    color: #e0e0e0;
}

.player__dots .dot:nth-child(7) { 
    left: 5%; 
    top: 50%; 
    animation-delay: 3s;
    color: #ffffff;
}

.player__dots .dot:nth-child(8) { 
    right: 5%; 
    top: 40%; 
    animation-delay: 3.5s;
    color: #e0e0e0;
}

@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: translate(var(--tx, 20px), var(--ty, -20px)) scale(1);
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx2, -20px), var(--ty2, 20px)) scale(0.5);
    }
}

.player__time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.player__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.player__control-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: grid;
    place-items: center;
    transition: all 0.2s;
    cursor: pointer;
}

.player__control-btn:hover {
    color: var(--text);
    border-color: var(--text-muted);
    transform: translateY(-1px);
}

.player__control-btn svg {
    width: 16px;
    height: 16px;
}

.player__play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    display: grid;
    place-items: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.player__play:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.player__play svg {
    width: 18px;
    height: 18px;
    fill: var(--bg);
    color: var(--bg);
}

.player__spotify {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px;
    background: #1DB954;
    color: white;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.player__spotify:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.player__spotify svg {
    width: 14px;
    height: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    top: 50%;
    left: calc(100% + 24px);
    transform: translateY(-50%);
    pointer-events: auto;
    transform-style: preserve-3d;
}

.social-links__icons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-links__subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 56px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    line-height: 0.8;
    writing-mode: vertical-rl;
    white-space: nowrap;
    opacity: 0;
    animation: social-in 0.5s ease forwards;
    animation-delay: 0.5s;
    margin-bottom: 12px;
    font-style: italic;
}

.social-links__label {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 52px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    line-height: 1;
    writing-mode: vertical-rl;
    white-space: nowrap;
    opacity: 0;
    animation: social-in 0.5s ease forwards;
    animation-delay: 0.7s;
}

@media (max-width: 960px) {
    .social-links {
        position: static;
        flex-direction: row;
        align-items: center;
        transform: none;
        margin-top: 20px;
    }

    .social-links__label {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 6px;
    }
}

.social-links__item {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    display: grid;
    place-items: center;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    opacity: 0;
    animation: social-in 0.5s ease forwards;
    pointer-events: auto;
    will-change: auto;
    cursor: pointer;
}

.social-links__item:nth-child(1) { animation-delay: 0.1s; }
.social-links__item:nth-child(2) { animation-delay: 0.3s; }
.social-links__item:nth-child(3) { animation-delay: 0.5s; }

.social-links__item:hover {
    color: var(--text);
    border-color: var(--text-muted);
    transform: translateX(4px);
}

.social-links__item svg {
    width: 24px;
    height: 24px;
}

@keyframes social-in {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-links__label-char {
    animation: letter-pulse 2s ease-in-out infinite;
}

.social-links__label-char:nth-child(1) { animation-delay: 0s; }
.social-links__label-char:nth-child(2) { animation-delay: 0.15s; }
.social-links__label-char:nth-child(3) { animation-delay: 0.3s; }
.social-links__label-char:nth-child(4) { animation-delay: 0.45s; }
.social-links__label-char:nth-child(5) { animation-delay: 0.6s; }
.social-links__label-char:nth-child(6) { animation-delay: 0.75s; }
.social-links__label-char:nth-child(7) { animation-delay: 0.9s; }
.social-links__label-char:nth-child(8) { animation-delay: 1.05s; }
.social-links__label-char:nth-child(9) { animation-delay: 1.2s; }
.social-links__label-char:nth-child(10) { animation-delay: 1.35s; }
.social-links__label-char:nth-child(11) { animation-delay: 1.5s; }

@keyframes letter-pulse {
    0% {
        color: var(--text-muted);
    }
    50% {
        color: var(--text);
    }
    100% {
        color: var(--text-muted);
    }
}

.hero__trust {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 80px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust span {
    color: var(--text-muted);
    font-size: 13px;
}

.hero__trust ul {
    list-style: none;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.hero__trust li {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.hero__trust li:hover {
    opacity: 1;
}

.discover {
    position: relative;
    padding: 120px 28px 200px;
    overflow: hidden;
}

.discover__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.discover__canvas-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0.5;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, var(--bg) 100%);
}

.discover__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: var(--bg);
}

.discover__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft), transparent);
    filter: blur(100px);
    opacity: 0.3;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.discover__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
}

.discover__header {
    text-align: center;
    margin-bottom: 80px;
}

.discover__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.discover__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.discover__carousel {
    display: flex;
    gap: 80px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 0 150px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}

.discover__carousel::-webkit-scrollbar {
    display: none;
}

.discover__carousel > * {
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.vinyl-album {
    --vinyl-size: 240px;
    position: relative;
    width: 280px;
    height: 280px;
    cursor: pointer;
}

.vinyl-album__cover {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}


.vinyl-album__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl-album__cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 1%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.vinyl-album__cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 4%),
        linear-gradient(225deg,
            rgba(162, 162, 162, 0.1) 0%,
            rgba(162, 162, 162, 0.2) 4%,
            rgba(255, 255, 255, 0.2) 6%,
            rgba(255, 255, 255, 0.6) 7%,
            rgba(255, 255, 255, 0.2) 7%,
            rgba(218, 218, 218, 0.04) 7%,
            transparent 6%),
        linear-gradient(45deg,
            rgba(14, 14, 14, 0.7),
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.2) 4%,
            rgba(14, 14, 14, 0.2) 6%,
            rgba(255, 255, 255, 0.3) 7%,
            rgba(218, 218, 218, 0.4) 7%,
            transparent 8%);
    pointer-events: none;
    z-index: 3;
}

.vinyl-album__vinyl {
    position: absolute;
    top: 10px;
    right: -20px;
    width: var(--vinyl-size);
    height: var(--vinyl-size);
    border-radius: 50%;
    background:
        conic-gradient(from 50deg at 50% 50%,
            transparent 46%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.15) 51%,
            transparent 56%),
        conic-gradient(from 225deg at 50% 50%,
            transparent 46%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.15) 51%,
            transparent 56%),
        repeating-radial-gradient(circle,
            rgba(120, 120, 120, 0.1) 0%,
            rgba(192, 192, 192, 0.01) 1px,
            transparent 1px,
            transparent 4px),
        black;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(0) rotate(270deg);
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.vinyl-album__vinyl-cover {
    width: calc(var(--vinyl-size) / 2.8);
    height: calc(var(--vinyl-size) / 2.8);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 0 0 5px black;
}

.vinyl-album:hover .vinyl-album__cover {
    transform: translateX(-10px) rotate(-2deg);
}

.vinyl-album:hover .vinyl-album__vinyl {
    transform: translateX(50%) rotate(630deg);
}

.vinyl-album__info {
    position: relative;
    padding: 30px 0 0 0;
    text-align: center;
    margin-top: 40px;
    z-index: 10;
}

.vinyl-album__info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.vinyl-album__artist {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.vinyl-album__credits {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.7;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.vinyl-album__producer {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
}

@media (max-width: 960px) {
    .nav__links {
        display: none;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero__player {
        transform: none;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero__meta {
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .nav__inner {
        padding: 14px 18px;
        gap: 12px;
    }

    .btn--ghost:not(.theme-toggle) {
        display: none;
    }

    .hero__cta .btn {
        flex: 1;
        justify-content: center;
    }
}

.services {
    position: relative;
    padding: 160px 28px 100px;
    overflow: hidden;
    background: var(--bg);
}

.services__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.services__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.services__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--text);
    color: var(--bg);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.services__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.services__btn svg {
    width: 16px;
    height: 16px;
}

.drumkits {
    position: relative;
    padding: 120px 28px;
    overflow: hidden;
}

.release-radar {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 320px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.4s ease-out;
}

[data-theme="light"] .release-radar {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.release-radar__header {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

[data-theme="light"] .release-radar__header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.release-radar__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.release-radar__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.release-radar__content {
    padding: 16px;
    display: flex;
    gap: 12px;
}

.release-radar__cover {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.release-radar__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.release-radar__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.release-radar__artist {
    font-size: 12px;
    color: var(--text-muted);
}

.release-radar__status {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 560px) {
    .release-radar {
        bottom: 20px;
        right: 20px;
        width: 280px;
    }
}

.drumkits__inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
}

.drumkits__header {
    text-align: center;
    margin-bottom: 80px;
}

.drumkits__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.drumkits__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

.drumkits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.drumkit-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.drumkit-card:hover {
    transform: translateY(-8px);
}

.drumkit-card__cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.drumkit-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drumkit-card__info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.drumkit-card__info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.drumkit-card__btn {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.drumkit-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer {
    position: relative;
    padding: 60px 28px 40px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo-img {
    width: 28px;
    height: 28px;
}

.footer__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.footer__nav {
    display: flex;
    gap: 32px;
}

.footer__nav a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--text);
}

.footer__divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.footer__bottom {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}
