/* =============================================
   SongSlipDB — Landing / Auth Page
   Aesthetic: Dark Stage / Neon Rig (consistent
   with djhome.css)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@300;400;700&display=swap');

/* ── Tokens (mirrored from djhome.css) ── */
:root {
    --neon-cyan:     #02df87;
    --neon-green:    #39FF14;
    --dark-base:     #080B12;
    --dark-mid:      #0E1220;
    --dark-card:     #131929;
    --dark-surface:  rgba(255,255,255,0.04);
    --border-glow:   rgba(2,223,135,0.18);
    --text-bright:   #F0F4FF;
    --text-muted:    #7A8BA8;
    --text-subtle:   #4A5A72;
    --font-display:  'Bebas Neue', sans-serif;
    --font-cond:     'Barlow Condensed', sans-serif;
    --font-body:     'Barlow', sans-serif;
    --radius-card:   16px;
    --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--dark-base);
    color: var(--text-bright);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.main {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    min-height: 100vh;
}

/* ══════════════════════════════════════
   HERO — Left Panel
══════════════════════════════════════ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 5rem;
    background: var(--dark-mid);
    overflow: hidden;
}

/* drifting grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(2,223,135,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2,223,135,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: gridDrift 24s linear infinite;
    z-index: 0;
}

/* ambient glow pools */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 20% 35%, rgba(2,223,135,0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 45% at 85% 75%, rgba(57,255,20,0.06) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 70% 10%, rgba(2,223,135,0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

@keyframes gridDrift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 44px 44px, 44px 44px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-cond);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.5s 0.05s ease forwards;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(57,255,20,0.08);
    border: 1px solid rgba(57,255,20,0.22);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    font-family: var(--font-cond);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon-green);
    margin-left: 0.75rem;
    vertical-align: middle;
}

.status-badge::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 6px var(--neon-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Main title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 6vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: 0.015em;
    color: var(--text-bright);
    margin-bottom: 0.25rem;
    opacity: 0;
    animation: fadeUp 0.55s 0.12s ease forwards;
}

.hero-title .gradient-word {
    display: block;
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tagline */
.hero-tagline {
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 1.25rem 0 2.5rem;
    line-height: 1.6;
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.55s 0.2s ease forwards;
}

.hero-tagline strong {
    color: var(--text-bright);
    font-weight: 600;
}

/* ══════════════════════════════════════
   FEATURE GRID
══════════════════════════════════════ */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    opacity: 0;
    animation: fadeUp 0.55s 0.3s ease forwards;
}

/* ── Base feature card ── */
.feature-item {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    transition: border-color var(--transition), background var(--transition);
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-item:hover {
    border-color: rgba(2,223,135,0.2);
    background: rgba(2,223,135,0.03);
}

.feature-item:hover::before { opacity: 1; }

.feature-item h3 {
    font-family: var(--font-cond);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 0.4rem;
}

.feature-item p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.feature-item p a {
    color: var(--neon-cyan);
    text-decoration: none;
    opacity: 0.8;
}

.feature-item p a:hover { opacity: 1; }

/* ══════════════════════════════════════
   FREE DOWNLOAD CARD — KaraokeMax Home
   Spans full grid width; overrides the
   base .feature-item where needed.
══════════════════════════════════════ */
.feature-item.feature-download {
    grid-column: 1 / -1;           /* full-width row in the 2-col grid */
    background: linear-gradient(
        135deg,
        rgba(2, 223, 135, 0.07) 0%,
        rgba(57, 255, 20,  0.04) 50%,
        rgba(2, 223, 135, 0.05) 100%
    );
    border: 1px solid rgba(2, 223, 135, 0.28);
    border-radius: 14px;
    padding: 1.6rem 1.75rem;
    box-shadow:
        0 0 0 1px rgba(2, 223, 135, 0.06),
        0 0 32px rgba(2, 223, 135, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Override the base card's left-bar pseudo-element — we use the shimmer instead */
.feature-item.feature-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(2, 223, 135, 0.06) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    /* reset the base card's left-bar dimensions */
    width: 60%;
    border-radius: 0;
    opacity: 1;             /* always visible; position controls the sweep */
}

.feature-item.feature-download:hover {
    border-color: rgba(2, 223, 135, 0.5);
    background: linear-gradient(
        135deg,
        rgba(2, 223, 135, 0.07) 0%,
        rgba(57, 255, 20,  0.04) 50%,
        rgba(2, 223, 135, 0.05) 100%
    );
    box-shadow:
        0 0 0 1px rgba(2, 223, 135, 0.10),
        0 0 48px rgba(2, 223, 135, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-item.feature-download:hover::before {
    left: 160%;             /* sweep the shimmer across on hover */
}

/* ── FREE ribbon ── */
.download-badge-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #39FF14 0%, #02df87 100%);
    color: #080B12;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    padding: 0.28rem 1.1rem 0.28rem 0.9rem;
    border-radius: 0 14px 0 10px;
    box-shadow: -2px 2px 12px rgba(2, 223, 135, 0.35);
    line-height: 1;
}

/* ── Inner two-column: text left · action right ── */
.feature-download-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.feature-download-text {
    flex: 1;
    min-width: 0;
}

/* Override base h3 size for the download card's larger title */
.feature-item.feature-download .feature-download-text h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;       /* Bebas Neue has no bold weight; 400 renders at full weight */
    letter-spacing: 0.04em;
    text-transform: none;   /* Bebas Neue is inherently uppercase — no need to force it */
    color: var(--neon-cyan);
    margin-bottom: 0.45rem;
    line-height: 1.15;
}

.feature-download-text p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

/* ── Spec bullet list ── */
.download-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.download-specs li {
    font-family: var(--font-cond);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-bright);
    opacity: 0.72;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.spec-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    opacity: 0.9;
}

/* ── Action column (button + meta) ── */
.feature-download-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   DOWNLOAD BUTTON
══════════════════════════════════════ */
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #02df87 0%, #39FF14 100%);
    color: #080B12;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    /* override the base button styles that apply width:100% and other global rules */
    width: auto;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    text-transform: none;
    transition:
        filter     0.25s ease,
        transform  0.18s ease,
        box-shadow 0.25s ease;
    box-shadow:
        0 0 18px rgba(2, 223, 135, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

/* Kill the global button::before gradient overlay for this button */
.btn-download::before {
    content: none;
}

.btn-download:hover:not(:disabled) {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(2, 223, 135, 0.55),
        0 6px 18px rgba(0, 0, 0, 0.5);
}

.btn-download:active:not(:disabled) {
    transform: translateY(0);
    filter: brightness(0.95);
}

.btn-download:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

/* SVG download arrow */
.dl-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #080B12;
    transition: transform 0.25s ease;
}

.btn-download:hover:not(:disabled) .dl-arrow {
    transform: translateY(2px);
}

/* Loading state — pulse glow */
.btn-download--loading {
    background: linear-gradient(
        135deg,
        rgba(2,223,135,0.5)  0%,
        rgba(57,255,20, 0.4) 100%
    );
    animation: dlPulse 1.1s ease-in-out infinite alternate;
}

@keyframes dlPulse {
    from { box-shadow: 0 0 14px rgba(2,223,135,0.3), 0 4px 12px rgba(0,0,0,0.4); }
    to   { box-shadow: 0 0 30px rgba(2,223,135,0.7), 0 4px 18px rgba(0,0,0,0.5); }
}

/* Done / success state */
.btn-download--done {
    background: linear-gradient(135deg, #39FF14 0%, #02df87 100%);
    box-shadow:
        0 0 28px rgba(57, 255, 20, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.45);
}

/* Meta / status label below the button */
.dl-meta {
    font-family: var(--font-cond);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-subtle);
    text-align: center;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ══════════════════════════════════════
   SECTION DIVIDER LABEL
   Used between Downloads and Features
══════════════════════════════════════ */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 0.85rem;
    opacity: 0;
    animation: fadeUp 0.55s 0.25s ease forwards;
}

.section-label-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

.section-label-text {
    font-family: var(--font-cond);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-subtle);
    white-space: nowrap;
}

/* ══════════════════════════════════════
   DOWNLOADS GRID
   Two software cards stacked vertically.
══════════════════════════════════════ */
.downloads {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    opacity: 0;
    animation: fadeUp 0.55s 0.3s ease forwards;
}

/* Cards inside .downloads are full-width — no column spanning needed */
.downloads .feature-item.feature-download {
    grid-column: auto;
}

/* Keep the inner layout horizontal (text left · action right) for stacked cards */
.downloads .feature-download-inner {
    flex-direction: row;
    align-items: center;
}

.downloads .feature-download-action {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════
   INLINE SECTION LABEL
   Sits inside the subscriber card above
   the embedded platform features grid.
   Inherits parent animation so no extra
   fadeUp needed.
══════════════════════════════════════ */
.section-label--inline {
    opacity: 1;
    animation: none;
    margin: 1.25rem 0 0.65rem;
}

/* ══════════════════════════════════════
   INLINE FEATURES GRID
   Platform features embedded inside the
   SSDBKaraoke Light subscriber card.
   Smaller padding and text to stay
   proportional inside the parent card.
══════════════════════════════════════ */
.features--inline {
    opacity: 1;
    animation: none;
    margin-top: 0;
}

.features--inline .feature-item {
    background: rgba(255,255,255,0.02);
    border-color: rgba(2,223,135,0.1);
    padding: 0.75rem 0.9rem;
}

.features--inline .feature-item:hover {
    border-color: rgba(2,223,135,0.25);
    background: rgba(2,223,135,0.03);
}

.features--inline .feature-item::before {
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
}

.features--inline .feature-item h3 {
    font-size: 0.78rem;
    color: var(--neon-cyan);
}

.features--inline .feature-item p {
    font-size: 0.76rem;
}

/* ══════════════════════════════════════
   JOIN THE TEAM CTA CARD
   Standalone card after the downloads
   grid. Eyebrow + title + email link.
══════════════════════════════════════ */
.feature-item.feature-cta {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin-top: 0.4rem;
}

.feature-item.feature-cta::before {
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
}

.feature-item.feature-cta:hover {
    border-color: rgba(2, 223, 135, 0.2);
    background: rgba(2, 223, 135, 0.02);
}

.feature-cta-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-cta-text {
    flex: 1;
}

.feature-cta-eyebrow {
    display: block;
    font-family: var(--font-cond);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.feature-item.feature-cta h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--text-bright);
    margin-bottom: 0.4rem;
    line-height: 1.15;
}

.feature-item.feature-cta p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.feature-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-cond);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(2, 223, 135, 0.3);
    padding-bottom: 0.1rem;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.feature-cta-link:hover {
    opacity: 0.85;
    border-color: rgba(2, 223, 135, 0.7);
}

/* ══════════════════════════════════════
   AUTH PANEL — Right Side
══════════════════════════════════════ */
.auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-base);
    padding: 2.5rem 2rem;
    border-left: 1px solid rgba(2,223,135,0.06);
    position: relative;
    overflow: hidden;
}

/* subtle glow behind the card */
.auth-section::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2,223,135,0.07) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Auth card */
.auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    opacity: 0;
    animation: fadeUp 0.55s 0.15s ease forwards;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(1.05);
}

/* ── Guest & Singer Access — the primary CTA for most visitors,
   sits above the DJ tabs so it's never hidden behind Sign Up/Login. ── */
.guest-cta {
    margin-bottom: 1.25rem;
}

.guest-cta form { margin: 0; }

.guest-cta-sub {
    margin-top: 0.6rem;
    text-align: center;
    font-family: var(--font-cond);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

/* ── Tabs — real <button> elements with role="tab", replacing the
   previous hidden-checkbox + <label> pattern. Reset button's default
   appearance to match the original label look, then layer the active/
   focus states on top. */
.auth-tabs {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 1.75rem;
    gap: 4px;
}

.auth-tab {
    flex: 1;
    padding: 0.6rem;
    text-align: center;
    font-family: var(--font-cond);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 7px;
    border: 1px solid transparent;
    background: none;
    transition: all var(--transition);
    user-select: none;
}

.auth-tab.active {
    background: linear-gradient(135deg, rgba(2,223,135,0.15), rgba(2,223,135,0.08));
    color: var(--neon-cyan);
    border-color: rgba(2,223,135,0.25);
    box-shadow: 0 0 12px rgba(2,223,135,0.1);
}

/* Visible keyboard-focus ring — real buttons get real :focus-visible,
   which the old hidden-checkbox pattern couldn't offer meaningfully. */
.auth-tab:focus-visible {
    outline: 2px solid rgba(2,223,135,0.6);
    outline-offset: 2px;
}

/* ── Form panels ── */
.signup, .login {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.signup.active, .login.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ── Inputs ── */
input:not([type="checkbox"]) {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 0.85rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-bright);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:not([type="checkbox"])::placeholder {
    color: var(--text-subtle);
}

input:not([type="checkbox"]):focus {
    outline: none;
    border-color: rgba(2,223,135,0.4);
    background: rgba(2,223,135,0.04);
    box-shadow: 0 0 0 3px rgba(2,223,135,0.08);
}

/* Autofill override */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #131929 inset !important;
    -webkit-text-fill-color: var(--text-bright) !important;
    border-color: rgba(2,223,135,0.25) !important;
}

/* Terms row */
.terms {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terms input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
}

.terms label { cursor: pointer; }

/* Forgot password */
.forgot-password {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: -0.4rem;
    margin-bottom: 1.25rem;
    transition: color 0.2s;
}

.forgot-password:hover { color: var(--neon-cyan); }

/* ── Buttons (global) ── */
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-cond);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    background: linear-gradient(135deg, #1A2540, #1E2D50);
    color: var(--neon-cyan);
    border: 1px solid rgba(2,223,135,0.25);
}

button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,223,135,0.12), rgba(2,223,135,0.04));
    opacity: 0;
    transition: opacity 0.25s;
}

button:hover {
    box-shadow: 0 0 24px rgba(2,223,135,0.2), 0 4px 12px rgba(0,0,0,0.5);
    transform: translateY(-1px);
}

button:hover::before { opacity: 1; }
button:active { transform: translateY(0); }

/* Guest / Singer button — green accent, and now the primary CTA:
   bigger and glowier than a standard button since it's the first
   thing most visitors should act on. */
button.guest-button {
    background: linear-gradient(135deg, #0E2420, #0F2E22);
    color: var(--neon-green);
    border-color: rgba(57,255,20,0.35);
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 0 22px rgba(57,255,20,0.18), 0 4px 12px rgba(0,0,0,0.5);
}

button.guest-button:hover {
    box-shadow: 0 0 32px rgba(57,255,20,0.28), 0 4px 12px rgba(0,0,0,0.5);
}

/* ── Divider between Guest Access and the DJ account tabs ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 0;
    color: var(--text-subtle);
    font-size: 0.72rem;
    font-family: var(--font-cond);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
}

/* ── Nav footer ── */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

nav a {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-subtle);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .main {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    /* auth panel first on mobile */
    .auth-section {
        order: 1;
        border-left: none;
        border-bottom: 1px solid rgba(2,223,135,0.06);
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }

    .hero {
        order: 2;
        padding: 3rem 2rem 3.5rem;
    }
}

@media (max-width: 680px) {
    .hero { padding: 2.5rem 1.5rem; }
    .hero-title { font-size: 3.4rem; }
    .features { grid-template-columns: 1fr; gap: 0.65rem; }

    .auth-section { padding: 2rem 1.25rem; }
    .auth-container { max-width: 100%; }

    /* Stack text above action on small screens.
       Both selectors needed — .downloads .feature-download-inner
       has higher specificity and overrides the base rule otherwise. */
    .feature-download-inner,
    .downloads .feature-download-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .feature-download-action,
    .downloads .feature-download-action {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.85rem;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    /* Prevent text ever being squeezed into a narrow column */
    .feature-download-text {
        width: 100%;
        min-width: 0;
    }

    .feature-download-text p,
    .feature-download-text ul {
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
}

@media (max-width: 400px) {
    .hero-title { font-size: 2.8rem; }
    .auth-logo { width: 150px; }
}