@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;800&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --bg: #ffffff;
    --text: #0f172a;
    --accent-1: #8b5cf6;
    --accent-2: #06b6d4;
    --border: #f1f5f9;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--bg) !important;
    color: var(--text) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    overflow-x: hidden;
}

/* SPECTRUM BACKGROUND */
.spectrum-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.bar {
    width: 8px;
    background: linear-gradient(to top, var(--accent-1), var(--accent-2));
    border-radius: 10px 10px 0 0;
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { height: 10%; }
    50%       { height: 80%; }
}

/* NAVIGATION */
.vocalselect-nav {
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    letter-spacing: -1px !important;
    color: var(--text) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;
    text-transform: none !important;
}

.logo span {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-cta {
    text-decoration: none;
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--text);
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    color: #fff !important;
}

/* HERO */
.hero {
    padding: 100px 6% 60px 6%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-1);
    font-weight: 700;
    margin-bottom: 30px;
}

h1 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(3rem, 10vw, 7.5rem) !important;
    font-weight: 800 !important;
    line-height: 0.9 !important;
    margin: 0 !important;
    letter-spacing: -3px !important;
    color: var(--text) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text) !important;
    text-transform: none !important;
}

.hero-p {
    margin: 30px auto;
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    line-height: 1.5;
}

/* VOCAL GRID */
.vocal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 40px 6% 70px 6%;
    position: relative;
    z-index: 1;
}

.vocal-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 30px 30px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vocal-card:hover {
    border-color: var(--accent-2);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

/* SONIC ICONS */
.sonic-icon {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    margin-bottom: 25px;
    height: 32px;
}

.sonic-line {
    width: 3px;
    border-radius: 4px;
    background: linear-gradient(to top, var(--accent-1), var(--accent-2));
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.sonic-icon.one .sonic-line:nth-child(1) { height: 15px; }
.sonic-icon.one .sonic-line:nth-child(2) { height: 32px; }
.sonic-icon.one .sonic-line:nth-child(3) { height: 20px; }

.sonic-icon.two .sonic-line:nth-child(1) { height: 25px; }
.sonic-icon.two .sonic-line:nth-child(2) { height: 15px; }
.sonic-icon.two .sonic-line:nth-child(3) { height: 32px; }

.sonic-icon.three .sonic-line:nth-child(1) { height: 32px; }
.sonic-icon.three .sonic-line:nth-child(2) { height: 22px; }
.sonic-icon.three .sonic-line:nth-child(3) { height: 15px; }

h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    color: var(--text) !important;
    text-transform: none !important;
}

p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* FOOTER / SHARED LAYOUT OVERRIDES */
footer, .footer, .site-footer {
    border-top: 1px solid var(--border) !important;
    background: transparent !important;
    color: #94a3b8 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.7rem !important;
}

footer a, .footer a, .site-footer a {
    color: #94a3b8 !important;
}

/* SHARED NAV OVERRIDE */
nav:not(.vocalselect-nav), .navbar, header {
    display: none !important;
}

.vocalselect-nav, main, footer, .site-footer {
    position: relative;
    z-index: 1;
}

/* ── Signal Line ─────────────────────────────────── */
.signal-line {
    padding: 0px 8% 120px;
    text-align: center;
    position: relative;
    z-index: 5;
}
.signal-inner { max-width: 600px; margin: 0 auto; }
.signal-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-1);
    font-weight: 900;
    opacity: 0.9;
    margin-bottom: 30px;
}
.signal-cta {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--text);
    transition: 0.3s;
}
.signal-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    color: #fff;
}
.signal-sub {
    margin-top: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
}
