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

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --accent: #a78bfa;
    --bg: #0f0a1a;
    --bg-card: #1a1128;
    --bg-card-hover: #231740;
    --text: #f1e8ff;
    --text-muted: #a89bc2;
    --border: #2d1f4e;
    --radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px 0;
    background: rgba(15, 10, 26, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border);
}

.btn-secondary:hover { border-color: var(--accent); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    width: 100%;
    text-align: center;
}

.btn-outline:hover { border-color: var(--primary); color: var(--accent); }

.btn-nav { padding: 8px 20px; }

.btn-full { width: 100%; text-align: center; font-size: 1rem; padding: 14px; }

/* Hero */
.hero {
    padding: 140px 0 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight { color: var(--accent); }

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta { display: flex; gap: 16px; }

/* Player Mockup */
.player-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.3);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }
.player-title { margin-left: 12px; font-size: 0.8rem; color: var(--text-muted); }

.player-body { padding: 20px; }

.now-playing {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
}

.now-playing small { color: var(--text-muted); font-size: 0.75rem; }
.now-playing strong { display: block; margin-top: 2px; }

.eq-bars { display: flex; gap: 3px; align-items: flex-end; height: 24px; }
.eq-bars span {
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    animation: eq 0.8s ease-in-out infinite alternate;
}
.eq-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.eq-bars span:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.eq-bars span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.eq-bars span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes eq {
    from { transform: scaleY(0.4); }
    to { transform: scaleY(1); }
}

.playlist-preview { margin-bottom: 14px; }
.pl-item {
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-radius: 6px;
}
.pl-item.active { background: rgba(124, 58, 237, 0.15); color: var(--text); }

.stats-row {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.trust-bar p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 1rem;
    font-weight: 500;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* Features */
.features { padding: 100px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.2s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.feature-icon { font-size: 2rem; margin-bottom: 16px; }

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

.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* DJs */
.djs { padding: 0 0 50px; margin-top: -40px; }

.dj-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.dj-avatar {
    width: 289px;
    height: 289px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.dj-info h2 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.dj-logo-inline { height: 1.4em; max-width: 180px; vertical-align: middle; margin-left: 8px; object-fit: contain; }
.dj-info p { color: var(--text-muted); margin-bottom: 16px; font-size: 2.4rem; }
.dj-link { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 2.8rem; }
.dj-link:hover { text-decoration: underline; }
.sc-icon { width: 2.8rem; height: 2.8rem; vertical-align: middle; margin-right: 4px; }
.dj-info h3 { font-size: 1.4rem; color: var(--accent); }
.dj-logo { height: 150px; margin-bottom: 20px; }

/* How it works */
.how-it-works { padding: 100px 0; background: var(--bg-card); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* Scenarios */
.scenarios { padding: 100px 0; }

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.scenario-card h4 { margin-bottom: 16px; font-size: 1.1rem; }

.scenario-card ul { list-style: none; }

.scenario-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.scenario-card li:last-child { border-bottom: none; }
.scenario-card li strong { color: var(--text); }

/* Devices */
.devices { padding: 100px 0; }

.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.device-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all 0.2s;
}

.device-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.logo-img { height: 66px; width: auto; display: block; }

.device-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.device-card img:hover { transform: scale(1.1); }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal img {
    width: 600px;
    max-width: 90vw;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}

.device-card h3 { font-size: 1.05rem; margin-bottom: 8px; }

.device-power {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.device-card ul {
    list-style: none;
    text-align: left;
}

.device-card li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.device-card li:last-child { border-bottom: none; }

/* Pricing */
.pricing { padding: 100px 0; background: var(--bg-card); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    text-align: center;
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-card h3 { font-size: 1.2rem; margin-bottom: 12px; }

.price {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.price-card ul { list-style: none; margin-bottom: 28px; text-align: left; }

.price-card li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.price-card li:last-child { border-bottom: none; }

/* Contact */
.contact { padding: 100px 0; }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer { padding: 60px 0 0; border-top: 1px solid var(--border); }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { margin-bottom: 4px; font-size: 0.9rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container,
    .features-grid,
    .steps,
    .scenario-grid,
    .pricing-grid,
    .devices-grid,
    .footer-content { grid-template-columns: 1fr; }

    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; }
    .hero { padding: 100px 0 60px; }
    .form-row { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }

    .dj-layout { flex-direction: column; gap: 20px; }
    .dj-avatar { width: 250px; height: 250px; }
    .dj-info { text-align: center; }
    .dj-logo { height: 80px; }
    .djs { margin-top: 0; }
}
