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

:root {
    --bg: #070a12;
    --surface: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.15);
    --accent: #f59e0b;
    --accent-dim: rgba(245,158,11,0.15);
    --accent-glow: rgba(245,158,11,0.35);
    --blue: #6366f1;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #475569;
    --radius: 16px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ── AMBIENT ── */
.ambient {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
    animation: drift 25s ease-in-out infinite alternate;
}
.orb-1 { width: 700px; height: 700px; background: #7c3aed; top: -300px; left: -200px; animation-duration: 30s; }
.orb-2 { width: 500px; height: 500px; background: #b45309; bottom: -200px; right: -100px; animation-duration: 25s; animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; background: #1d4ed8; top: 45%; left: 35%; opacity: 0.25; animation-duration: 20s; animation-delay: -12s; }

@keyframes drift {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.08); }
}

/* ── LAYOUT ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.glass {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, .nav-logo { font-family: 'Outfit', sans-serif; }

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 40%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px var(--accent-glow); }
.btn-primary.glow { box-shadow: 0 0 30px var(--accent-glow); }

.btn-ghost {
    display: inline-flex; align-items: center;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 20px;
    border-radius: 40px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }

.btn-outline {
    display: inline-flex; align-items: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    border: 1px solid rgba(245,158,11,0.4);
    transition: all 0.2s ease;
}
.btn-outline:hover { background: var(--accent-dim); }

/* ── NAVIGATION ── */
.nav {
    position: fixed; top: 0; width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 5%;
    z-index: 100;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
    background: rgba(7,10,18,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--text);
    text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-hamburger {
    display: none; background: none; border: none;
    color: var(--text); font-size: 1.4rem; cursor: pointer;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 5% 80px;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid rgba(245,158,11,0.3);
    color: var(--accent);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 24px;
}

h1.hero-main { display: none; }
.hero-inner h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    display: flex; flex-direction: column; gap: 4px;
}
.hero-pre { font-size: 0.55em; font-weight: 300; color: var(--text-muted); letter-spacing: 1px; }
.hero-main { font-size: 1em; }

.hero-body {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-body strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 16px; }
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); }
.stat-l { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── VINYL STACK ── */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.vinyl-stack {
    position: relative;
    width: 340px; height: 340px;
}
.vinyl-cover {
    position: absolute;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: transform 0.4s ease;
}
.vc-1 { width: 280px; height: 280px; top: 30px; left: 30px; z-index: 3; animation: float-1 6s ease-in-out infinite; }
.vc-2 { width: 220px; height: 220px; top: 0; left: 0; z-index: 2; opacity: 0.7; transform: rotate(-8deg); animation: float-2 8s ease-in-out infinite; }
.vc-3 { width: 200px; height: 200px; bottom: 0; right: 0; z-index: 1; opacity: 0.5; transform: rotate(6deg); animation: float-3 7s ease-in-out infinite; }

@keyframes float-1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-12px) rotate(1deg)} }
@keyframes float-2 { 0%,100%{transform:rotate(-8deg) translateY(0)} 50%{transform:rotate(-6deg) translateY(-8px)} }
@keyframes float-3 { 0%,100%{transform:rotate(6deg) translateY(0)} 50%{transform:rotate(8deg) translateY(-10px)} }

/* ── DISCOGRAPHY ── */
.discography { padding: 100px 0; position: relative; z-index: 1; }

.filter-bar {
    display: flex; gap: 10px; flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem; font-weight: 600;
    padding: 8px 20px; border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text); }
.filter-btn.active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.album-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}
.album-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.album-card:hover .album-cover-img { transform: scale(1.04); }

.album-cover-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: #111;
}
.album-cover-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.album-cover-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #1e293b, #0f172a);
}
.album-state-badge {
    position: absolute; top: 10px; right: 10px;
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    letter-spacing: 0.5px;
}
.state-Released { background: rgba(16,185,129,0.2); color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.state-Uploaded { background: rgba(99,102,241,0.2); color: #a5b4fc; border: 1px solid rgba(165,180,252,0.3); }
.state-InProduction { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.state-Pending { background: rgba(148,163,184,0.1); color: #94a3b8; border: 1px solid rgba(148,163,184,0.2); }

.album-info { padding: 16px; }
.album-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; line-height: 1.3; }
.album-meta { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 10px; }
.album-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.album-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.76rem; font-weight: 700;
    padding: 5px 12px; border-radius: 20px;
    text-decoration: none; transition: all 0.2s;
    border: 1px solid transparent;
    line-height: 1;
}
.album-btn-spotify {
    background: rgba(30,215,96,0.15);
    color: #1ed760;
    border-color: rgba(30,215,96,0.3);
}
.album-btn-spotify:hover {
    background: rgba(30,215,96,0.28);
    border-color: #1ed760;
    transform: translateY(-1px);
}
.album-btn-presave {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: rgba(245,158,11,0.3);
}
.album-btn-presave:hover {
    background: rgba(245,158,11,0.25);
    border-color: var(--accent);
    transform: translateY(-1px);
}
/* Nav active page highlight */
.nav-links .nav-active { color: var(--accent) !important; font-weight: 600; }

/* ── PIPELINE ── */
.pipeline { padding: 100px 0; position: relative; z-index: 1; }

.pipeline-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 48px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.pipe-step {
    flex: 1; min-width: 180px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color 0.2s;
}
.pipe-step:hover { border-color: var(--border-hover); }

.pipe-arrow {
    flex: 0; padding: 0 8px;
    color: var(--text-dim); font-size: 1.4rem;
    align-self: center;
    display: flex; align-items: center;
}

.pipe-num { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.pipe-icon { font-size: 2rem; margin-bottom: 12px; }
.pipe-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.pipe-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

.pipeline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    gap: 24px;
    flex-wrap: wrap;
}
.pcta-text h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.pcta-text p { font-size: 0.9rem; color: var(--text-muted); }

/* ── TECH STRIP ── */
.tech-strip {
    position: relative; z-index: 1;
    background: linear-gradient(90deg, rgba(99,102,241,0.08), rgba(245,158,11,0.08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
}
.tech-strip-inner {
    display: flex; gap: 28px; align-items: center;
    white-space: nowrap;
    animation: scroll-strip 30s linear infinite;
    font-size: 0.85rem; color: var(--text-muted);
    font-weight: 500;
}
.tech-strip-inner .sep { opacity: 0.3; }
@keyframes scroll-strip {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* -- EXTENSIONS SECTION -- */
.extensions { padding: 100px 0; position: relative; z-index: 1; }

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

.ext-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column; gap: 16px;
}
.ext-card:hover {
    border-color: rgba(99,102,241,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.ext-card-header {
    display: flex; align-items: center;
    justify-content: space-between;
}
.ext-icon { font-size: 2rem; line-height: 1; }

.ext-badge {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 3px 10px; border-radius: 20px;
}
.ext-badge-live {
    background: rgba(30,215,96,0.15);
    color: #1ed760;
    border: 1px solid rgba(30,215,96,0.3);
}
.ext-badge-beta {
    background: rgba(99,102,241,0.15);
    color: #a5b4fc;
    border: 1px solid rgba(165,180,252,0.3);
}

.ext-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    line-height: 1.3;
}
.ext-desc {
    font-size: 0.88rem; color: var(--text-muted);
    line-height: 1.6;
}

/* Flow diagram row */
.ext-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.ext-flow-step {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    min-width: 60px;
}
.ef-num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(99,102,241,0.2);
    border: 1px solid rgba(165,180,252,0.3);
    color: #a5b4fc;
    font-size: 0.65rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.ef-label {
    font-size: 0.65rem; font-weight: 600;
    color: var(--text-dim);
    text-align: center; line-height: 1.3;
    max-width: 64px;
}
.ef-arrow {
    color: var(--text-dim); font-size: 1rem;
    font-weight: 700; flex-shrink: 0;
    margin-bottom: 16px;
}

/* Tags */
.ext-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.ext-tag {
    font-size: 0.72rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.15);
    color: #d97706;
}

.ext-link {
    font-size: 0.84rem; font-weight: 700;
    color: #a5b4fc;
    text-decoration: none;
    margin-top: auto;
}
.ext-link:hover { text-decoration: underline; }
.ext-link-disabled {
    color: var(--text-dim);
    font-size: 0.78rem; font-weight: 500;
    margin-top: auto;
    font-style: italic;
}

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


/* ── ABOUT ── */
.about { padding: 100px 0; position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text .section-tag { display: block; }
.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-text strong { color: var(--text); }
.about-links { display: flex; gap: 16px; margin-top: 28px; }

.about-visual { padding: 32px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.astat { display: flex; flex-direction: column; gap: 4px; }
.astat-n { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text); }
.astat-l { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

.about-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid var(--border); }
.atag {
    font-size: 0.78rem; font-weight: 600;
    padding: 5px 12px; border-radius: 20px;
    background: var(--accent-dim);
    border: 1px solid rgba(245,158,11,0.2);
    color: var(--accent);
}

/* ── FOOTER ── */
.footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 48px 5%;
    text-align: center;
}
.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900; font-size: 1.6rem;
    letter-spacing: 3px; color: var(--text);
    margin-bottom: 10px;
}
.footer-sub { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 20px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 100px; text-align: center; }
    .hero-inner h1 { align-items: center; }
    .hero-body { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .pipeline-steps { flex-direction: column; }
    .pipe-arrow { transform: rotate(90deg); align-self: center; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .album-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .pipeline-cta { flex-direction: column; text-align: center; }
}
