/* ============================================================
   CATWORK DIGITAL — Main CSS v3
   Premium dark studio — purple / blue / near-black
   ============================================================ */

:root {
    --bg:         #080810;
    --bg-surface: #0d0d1a;
    --bg-card:    #111120;
    --bg-hover:   #16162a;
    --border:     #1e1e35;
    --border-h:   #2d2d50;
    --text:       #eeeeff;
    --text-muted: #8888aa;
    --text-dim:   #44445a;
    --accent:     #7c3aed;
    --accent2:    #3b82f6;
    --accent-glow:rgba(124,58,237,.12);
    --green:      #10b981;
    --red:        #ef4444;
    --yellow:     #f59e0b;
    --font:       'Inter', -apple-system, sans-serif;
    --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.75rem;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    cursor: pointer; transition: all var(--transition);
    border: 1px solid transparent;
    text-decoration: none; background: none;
    font-family: var(--font); line-height: 1;
}
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: #6d28d9; border-color: #6d28d9; opacity: 1; }
.btn-ghost    { color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--border-h); background: var(--bg-hover); color: var(--text); opacity: 1; }
.btn-outline  { color: var(--accent); border-color: rgba(124,58,237,.4); }
.btn-outline:hover { border-color: var(--accent); background: var(--accent-glow); opacity: 1; }
.btn-danger   { background: rgba(239,68,68,.1); color: var(--red); border-color: rgba(239,68,68,.3); }
.btn-danger:hover { background: var(--red); color: #fff; opacity: 1; }
.btn-lg { padding: 1rem 2.5rem; font-size: .78rem; }
.btn-sm { padding: .4rem .85rem; font-size: .7rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,8,16,.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.navbar .container {
    display: flex; align-items: center; height: 68px; gap: 2rem;
}
.navbar-brand .logo { height: 26px; }
.nav-links { display: flex; gap: 2rem; list-style: none; margin-left: auto; }
.nav-links a {
    color: var(--text-muted); font-size: .72rem;
    letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); opacity: 1; }
.nav-auth { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-muted); }

/* Mobile nav */
@media (max-width: 768px) {
    .nav-links, .nav-auth { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 68px; left: 0; right: 0;
        background: var(--bg-surface); border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem; gap: 1.25rem;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #0e0820 0%, #080810 50%, #060616 100%);
}
/* Purple glow, top-right */
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 70% 20%, rgba(124,58,237,.14) 0%, transparent 65%);
}
/* Blue glow, bottom-left */
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 40% 40% at 10% 85%, rgba(59,130,246,.08) 0%, transparent 55%);
}
/* Grid lines overlay */
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .6;
}
.hero .container {
    position: relative; z-index: 2;
    padding-top: 68px;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 100vh; padding-bottom: 5rem;
}
.hero-label {
    display: inline-flex; align-items: center; gap: .75rem;
    font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--accent); font-weight: 500; margin-bottom: 2.5rem;
}
.hero-label::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
}
.hero-title {
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    font-weight: 900; line-height: .92; letter-spacing: -.05em; margin-bottom: 3rem;
}
.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(238,238,255,.18);
}
.hero-bottom {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
}
.hero-desc {
    font-size: .9rem; color: var(--text-muted); line-height: 1.8; max-width: 340px;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-stat { text-align: right; flex-shrink: 0; }
.hero-stat-num {
    font-size: 2.25rem; font-weight: 900; line-height: 1; letter-spacing: -.04em;
    color: var(--accent);
}
.hero-stat-label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); margin-top: .3rem; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-wrap {
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    overflow: hidden; padding: .85rem 0; background: var(--bg-surface);
}
.marquee-track {
    display: flex; width: max-content;
    animation: marquee 32s linear infinite;
}
.marquee-track span {
    font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--text-muted); padding: 0 2rem; white-space: nowrap;
}
.marquee-track .sep { color: var(--accent); padding: 0 .25rem; letter-spacing: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES — Numbered editorial list
   ============================================================ */
.services-section { padding: 8rem 0; }

.section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
    margin-bottom: 0; gap: 2rem;
}
.section-eye {
    display: flex; align-items: center; gap: .75rem;
    font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--accent); margin-bottom: .75rem;
}
.section-eye::before { content: ''; width: 22px; height: 1px; background: var(--accent); }
.section-title-xl {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900; letter-spacing: -.04em; line-height: 1;
}

.service-rows { display: flex; flex-direction: column; }
.service-row {
    display: grid; grid-template-columns: 48px 1fr 24px;
    align-items: center; gap: 2rem;
    padding: 2rem 0; border-bottom: 1px solid var(--border);
    text-decoration: none; color: inherit;
    transition: padding-left var(--transition);
}
.service-row:hover { padding-left: .75rem; opacity: 1; }
.service-row:hover .sr-num { color: var(--accent); }
.service-row:hover .sr-title { color: var(--text); }
.service-row:hover .sr-arrow { transform: translate(4px,-4px); color: var(--accent); }
.sr-num { font-size: .68rem; font-weight: 700; color: var(--text-dim); letter-spacing: .06em; transition: color var(--transition); }
.sr-title { font-size: clamp(1.1rem, 2.5vw, 1.625rem); font-weight: 700; letter-spacing: -.02em; color: var(--text-muted); margin-bottom: .25rem; transition: color var(--transition); }
.sr-sub { font-size: .8rem; color: var(--text-dim); line-height: 1.5; }
.sr-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .5rem; }
.sr-tag { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--border); padding: .15rem .55rem; color: var(--text-muted); }
.sr-arrow { font-size: 1rem; color: var(--text-dim); transition: all var(--transition); line-height: 1; }

/* ============================================================
   STUDIO FEATURE BLOCK
   ============================================================ */
.studio-block { padding: 0 0 8rem; }
.studio-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border); min-height: 520px;
}
.studio-visual {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0c0c20, #080814);
    border-right: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    min-height: 420px;
}
/* Grid lines on studio visual */
.studio-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
/* Purple radial glow */
.studio-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(124,58,237,.16) 0%, transparent 65%);
}
.studio-visual-center {
    position: relative; z-index: 1;
    width: 110px; height: 110px;
    border: 1px solid rgba(124,58,237,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.studio-visual-center svg { color: rgba(124,58,237,.6); }
.studio-visual-tag {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 2;
    background: rgba(8,8,16,.8);
    border: 1px solid rgba(255,255,255,.06);
    padding: .875rem 1.25rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.studio-visual-tag-eye { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .3rem; }
.studio-visual-tag-text { font-size: .82rem; font-weight: 600; color: var(--text-muted); }

.studio-content {
    padding: 4rem;
    display: flex; flex-direction: column; justify-content: space-between;
}
.studio-content h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 1.25rem; }
.studio-content p { color: var(--text-muted); font-size: .9rem; line-height: 1.8; margin-bottom: 2rem; }
.studio-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.spec-num { font-size: 1.625rem; font-weight: 900; letter-spacing: -.04em; color: var(--text); margin-bottom: .2rem; }
.spec-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.page-hero-eye {
    display: flex; align-items: center; gap: .6rem;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1rem;
}
.page-hero-eye::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 8rem 0; text-align: center;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}
.cta-eyebrow { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900; letter-spacing: -.05em; line-height: .95; margin-bottom: 1.5rem;
}
.cta-sub { color: var(--text-muted); font-size: .95rem; line-height: 1.7; max-width: 480px; margin: 0 auto 2.5rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 10rem 0 5rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: .75rem; }
.page-hero-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 540px; }
.page-hero-label {
    font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.25rem; display: block;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: 6rem 0; }
.section-label { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .75rem; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: .875rem 1.25rem; margin: 1rem 0; font-size: .875rem; border: 1px solid; }
.alert-success { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.25); color: var(--green); }
.alert-error   { background: rgba(239,68,68,.08);  border-color: rgba(239,68,68,.25);  color: var(--red); }

/* ============================================================
   FORMS (public)
   ============================================================ */
.form-section { padding: 6rem 0; }
.form-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; max-width: 680px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .75rem; font-weight: 500; letter-spacing: .05em; margin-bottom: .4rem; color: var(--text-muted); }
.form-control {
    width: 100%; background: var(--bg-surface); border: 1px solid var(--border);
    padding: .7rem 1rem; color: var(--text); font-size: .875rem;
    font-family: var(--font); transition: border-color var(--transition);
    appearance: none; -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: var(--accent); }
.form-control.is-error { border-color: var(--red); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-actions { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem; }
.form-hint { font-size: .72rem; color: var(--text-muted); margin-top: .3rem; display: block; }
.field-error { font-size: .72rem; color: var(--red); margin-top: .25rem; display: block; }
.toggle-label { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .83rem; color: var(--text-muted); }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; padding-top: 100px; }
.auth-box { width: 100%; max-width: 400px; background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; }
.auth-logo-wrap { text-align: center; margin-bottom: 2rem; }
.auth-logo { height: 28px; margin: 0 auto; }
.auth-box h1 { font-size: 1.375rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .3rem; }
.auth-box p { color: var(--text-muted); font-size: .83rem; margin-bottom: 1.75rem; }
.auth-link { font-size: .82rem; color: var(--text-muted); margin-top: 1.25rem; text-align: center; }
.auth-link a { color: var(--accent); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 4rem; }
.service-card { background: var(--bg-card); padding: 2.5rem; transition: background var(--transition); }
.service-card:hover { background: var(--bg-hover); }
.service-card-num { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.service-card h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .75rem; }
.service-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.service-price { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent2); }

/* Service detail page */
.service-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; padding: 5rem 0; }
.service-detail-body h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -.04em; margin-bottom: 1rem; }
.service-detail-body p { color: var(--text-muted); font-size: .95rem; line-height: 1.9; margin-bottom: 1.25rem; }
.service-sidebar { position: sticky; top: 90px; height: fit-content; }
.service-sidebar-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; }
.feature-list { list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--text-muted); }
.feature-list li::before { content: '✓'; color: var(--accent); font-size: .75rem; font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.feature-list li:last-child { border-bottom: none; }

/* ============================================================
   PORTFOLIO (public)
   ============================================================ */
.portfolio-page { padding: 4rem 0 8rem; }
.portfolio-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.portfolio-filter-btn {
    padding: .4rem 1rem; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
    border: 1px solid var(--border); color: var(--text-muted); cursor: pointer;
    background: none; font-family: var(--font); transition: all var(--transition);
}
.portfolio-filter-btn:hover, .portfolio-filter-btn.active {
    border-color: var(--accent); color: var(--accent); background: var(--accent-glow);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.portfolio-card { background: var(--bg-card); overflow: hidden; cursor: pointer; }
.portfolio-card:hover .portfolio-card-thumb img { transform: scale(1.04); }
.portfolio-card-thumb {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    background: var(--bg-surface);
}
.portfolio-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.portfolio-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0c0c20, #080814);
    color: rgba(124,58,237,.3);
}
.portfolio-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 52px; height: 52px; background: rgba(124,58,237,.85);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .9rem; color: #fff; opacity: 0; transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-play-btn { opacity: 1; }
.portfolio-card-body { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); }
.portfolio-category { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .4rem; }
.portfolio-card-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.portfolio-artist { font-size: .78rem; color: var(--text-dim); }

/* Portfolio detail */
.portfolio-detail { max-width: 800px; margin: 4rem auto 8rem; }
.portfolio-detail-cover { margin-bottom: 2.5rem; border: 1px solid var(--border); overflow: hidden; }
.portfolio-detail-cover img { width: 100%; max-height: 480px; object-fit: cover; }
.audio-player-wrap { margin-bottom: 2.5rem; background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; }
.audio-player-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .875rem; }
.audio-player { width: 100%; }
.portfolio-detail-text h2 { font-size: 1.375rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .875rem; }
.portfolio-detail-text p { color: var(--text-muted); line-height: 1.9; font-size: .95rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 5rem 0 8rem; }
.contact-info h2 { font-size: 2rem; font-weight: 900; letter-spacing: -.04em; margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); font-size: .9rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
    width: 40px; height: 40px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0;
}
.contact-item-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .2rem; }
.contact-item-value { font-size: .875rem; color: var(--text-muted); }

/* ============================================================
   SUBMISSIONS
   ============================================================ */
.submissions-page { padding: 5rem 0 8rem; }
.submission-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); margin-top: 2rem; }
.submission-item { background: var(--bg-card); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 2rem; }
.submission-item:hover { background: var(--bg-hover); }
.submission-status { flex-shrink: 0; }
.submission-title { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; }
.submission-meta { font-size: .78rem; color: var(--text-dim); }

/* Status badges */
.status-badge { display: inline-flex; align-items: center; padding: .2rem .65rem; font-size: .65rem; font-weight: 600; letter-spacing: .04em; }
.status-pending  { background: rgba(245,158,11,.1);  color: var(--yellow); border: 1px solid rgba(245,158,11,.25); }
.status-approved { background: rgba(16,185,129,.1);  color: var(--green);  border: 1px solid rgba(16,185,129,.25); }
.status-rejected { background: rgba(239,68,68,.1);   color: var(--red);    border: 1px solid rgba(239,68,68,.25); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-surface); border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo { height: 24px; margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; color: var(--text-dim); line-height: 1.7; max-width: 220px; }
.footer-links h4 { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .82rem; color: var(--text-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); opacity: 1; }
.footer-newsletter { border-top: 1px solid var(--border); padding: 1.75rem 0 1.5rem; margin-top: .5rem; }
.footer-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-form { display: flex; gap: .5rem; flex: 1; max-width: 400px; }
.newsletter-input { flex: 1; background: var(--bg-card); border: 1px solid var(--border); color: var(--text); padding: .55rem .85rem; font-size: .82rem; outline: none; }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-input::placeholder { color: var(--text-dim); }
.footer-bottom {
    padding-top: 1.5rem; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .75rem; color: var(--text-dim); }

/* ============================================================
   STUDIO PAGE
   ============================================================ */
.studio-hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
}
.studio-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #0e0820 0%, #080810 50%, #060616 100%);
}
.studio-hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 60% 35%, rgba(124,58,237,.16) 0%, transparent 65%);
}
.studio-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .7;
}
.studio-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; height: 25%;
    background: linear-gradient(transparent, var(--bg));
}
.studio-hero-inner { position: relative; z-index: 1; padding-top: 10rem; padding-bottom: 6rem; }
.studio-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; display: block; }
.studio-headline { font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; margin-bottom: 1.5rem; }
.studio-sub { max-width: 540px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 3.5rem; }
.studio-hero-stats { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.studio-stat-num { display: block; font-size: 2rem; font-weight: 900; letter-spacing: -.04em; color: var(--accent); }
.studio-stat-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.studio-stat-divider { width: 1px; height: 2.5rem; background: var(--border); }

/* Studio about */
.studio-about { padding: 6rem 0; }
.studio-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.studio-room-card { display: flex; gap: 1.5rem; padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 1rem; transition: border-color var(--transition), background var(--transition); }
.studio-room-card:hover { border-color: var(--border-h); background: var(--bg-card); }
.room-number { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); font-weight: 700; padding-top: .25rem; white-space: nowrap; }
.room-info h3 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.room-info p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }
.studio-about-text h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 1.5rem; }
.studio-about-desc { color: var(--text-muted); font-size: .9rem; line-height: 1.8; margin-bottom: 1rem; }

/* Gear */
.studio-gear { padding: 5rem 0; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header-center h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: .75rem; }
.section-sub { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.gradient-text { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.gear-category { background: var(--bg-card); padding: 1.75rem; }
.gear-category-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.gear-icon { color: var(--accent); flex-shrink: 0; }
.gear-category-header h3 { font-size: .875rem; font-weight: 700; }
.gear-list { list-style: none; }
.gear-list li { font-size: .8rem; color: var(--text-muted); padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.03); display: flex; align-items: center; gap: .5rem; }
.gear-list li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .5; flex-shrink: 0; }
.gear-list li:last-child { border-bottom: none; }

/* Process */
.studio-process { padding: 6rem 0; }
.process-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 3rem; }
.process-step { flex: 1; padding: 2rem 2rem 2rem 0; }
.process-step-num { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 1rem; }
.process-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .65rem; }
.process-step p { font-size: .8rem; color: var(--text-muted); line-height: 1.7; }
.process-arrow { font-size: 1.25rem; color: var(--border-h); padding: 2.25rem .5rem 0; flex-shrink: 0; }

/* Studio portfolio preview */
.studio-portfolio-preview { padding: 5rem 0; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.section-header-row h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: .25rem; }

/* Studio CTA */
.studio-cta { padding: 6rem 0; background: var(--bg-surface); border-top: 1px solid var(--border); }
.studio-cta-box { max-width: 680px; margin: 0 auto; text-align: center; padding: 4rem 3rem; border: 1px solid var(--border); background: var(--bg-card); position: relative; overflow: hidden; }
.studio-cta-box::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%); pointer-events: none; }
.studio-cta-box h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 1rem; position: relative; }
.studio-cta-box p { color: var(--text-muted); margin-bottom: 2rem; font-size: .9rem; line-height: 1.7; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-lg { padding: .9rem 2.5rem; font-size: .78rem; }

/* ============================================================
   ADMIN (inline admin table styles used in app layout)
   ============================================================ */
.admin-page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.75rem; gap: 1rem; }
.admin-page-header h1 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; }
.admin-table-wrap { border: 1px solid var(--border); overflow-x: auto; background: var(--bg-card); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); padding: .875rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); background: var(--bg-surface); }
.admin-table td { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .83rem; color: var(--text-muted); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.form-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; margin-bottom: 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .gear-grid { grid-template-columns: repeat(2, 1fr); }
    .studio-about-grid { gap: 3rem; }
    .service-detail-layout { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
}
@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: clamp(2.75rem, 10vw, 5rem); }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .hero-stat { text-align: left; }
    .studio-inner { grid-template-columns: 1fr; }
    .studio-visual { min-height: 260px; }
    .studio-content { padding: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .gear-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .studio-about-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 0; }
    .process-arrow { transform: rotate(90deg); padding: 0 0 0 1.5rem; }
    .studio-hero-stats { gap: 1.5rem; }
    .studio-stat-divider { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .cta-title { font-size: clamp(2rem, 8vw, 3.5rem); }
}

/* ============================================================
   EKSIK CLASS TAMAMLAMALARI — view dosyalarıyla uyum
   ============================================================ */

/* spec-item (studio block istatistikler) */
.spec-item {}

/* Auth — split layout */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }

.auth-promo {
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem; position: relative; overflow: hidden;
}
.auth-promo::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
    pointer-events: none;
}
.auth-promo-logo { height: 28px; margin-bottom: 3rem; display: block; }
.auth-promo-eyebrow { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.auth-promo h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 1.5rem; }
.auth-promo h2 .outline { -webkit-text-stroke: 1px rgba(255,255,255,.35); color: transparent; }
.auth-promo-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2.5rem; max-width: 340px; }
.auth-features { display: flex; flex-direction: column; gap: .875rem; }
.auth-feature { display: flex; align-items: flex-start; gap: .75rem; }
.auth-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: .45rem; flex-shrink: 0; }
.auth-feature-text { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.auth-feature-text strong { color: var(--text); font-weight: 600; }
.auth-promo-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; gap: 2rem; }
.auth-promo-stat { }
.auth-promo-stat-num { font-size: 1.25rem; font-weight: 800; letter-spacing: -.04em; color: var(--text); }
.auth-promo-stat-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }

.auth-form-panel {
    display: flex; align-items: center; justify-content: center;
    padding: 6rem 3rem 3rem; background: var(--bg);
}
.auth-box { width: 100%; max-width: 400px; }
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header .auth-logo { height: 26px; margin: 0 auto 1.25rem; display: block; }
.auth-header h1 { font-size: 1.375rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .3rem; }
.auth-header p { color: var(--text-muted); font-size: .83rem; margin-bottom: 0; }
.auth-form { display: flex; flex-direction: column; gap: 0; margin-top: 1.75rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: .82rem; color: var(--text-muted); }
.auth-footer a { color: var(--accent); }
.form-check { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .82rem; color: var(--text-muted); cursor: pointer; }

@media (max-width: 900px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-promo { display: none; }
    .auth-form-panel { padding: 6rem 1.5rem 3rem; min-height: 100vh; align-items: flex-start; padding-top: 7rem; }
}

/* Contact sayfası — mevcut view class'ları */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 5rem 0 8rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-list li { display: flex; flex-direction: column; gap: .25rem; }
.contact-list strong { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.contact-list a { color: var(--text-muted); font-size: .9rem; transition: color var(--transition); }
.contact-list a:hover { color: var(--accent); opacity: 1; }
.contact-note { margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--border); background: var(--bg-card); }
.contact-note p { color: var(--text-muted); font-size: .85rem; margin-bottom: 1rem; }
.contact-form-wrap h2 { font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 0; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0 5rem; } }

/* Services sayfası — mevcut view class'ları */
.services-grid--full { grid-template-columns: repeat(3, 1fr); }
.service-card-img {
    height: 200px; background-size: cover; background-position: center;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}
.service-card-img--placeholder {
    background: linear-gradient(135deg, #0c0c20, #080814);
    position: relative;
}
.service-card-img--placeholder::after {
    content: '♪';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: rgba(124,58,237,.2);
}
.service-card-body { padding: 1.5rem 2rem 2rem; }
.service-card-body h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .5rem; }
.service-card-body p { font-size: .83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.service-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.25rem; }
.price-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.price-value { font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.empty-state { text-align: center; padding: 5rem 0; color: var(--text-dim); font-size: .9rem; }
@media (max-width: 768px) { .services-grid--full { grid-template-columns: 1fr; } }
@media (max-width: 1024px) { .services-grid--full { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   LABEL — Artists & Releases
   ============================================================ */
.label-section { padding: 7rem 0; }

/* Artists grid */
.artists-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.artist-card { background: var(--bg-card); overflow: hidden; display: block; color: inherit; }
.artist-card:hover { background: var(--bg-hover); opacity: 1; }
.artist-card:hover .artist-card-img img { transform: scale(1.05); }
.artist-card-img { aspect-ratio: 1; overflow: hidden; background: var(--bg-surface); position: relative; }
.artist-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.artist-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg,#0c0c20,#080814); color: rgba(124,58,237,.25); }
.artist-card-body { padding: 1rem 1.25rem; border-top: 1px solid var(--border); }
.artist-card-body h3 { font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.artist-social { display:flex; gap:.4rem; flex-wrap:wrap; }
.artist-social span { font-size: .58rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text-dim); }

/* Releases grid */
.releases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.release-card { }
.release-cover { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); margin-bottom: 1rem; }
.release-cover img { width:100%; height:100%; object-fit:cover; }
.release-cover-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg,#0c0c20,#080814); color:rgba(124,58,237,.25); }
.release-links { position:absolute; bottom:.75rem; right:.75rem; display:flex; gap:.4rem; opacity:0; transition: opacity var(--transition); }
.release-card:hover .release-links { opacity: 1; }
.release-link-btn { width:32px; height:32px; background:rgba(0,0,0,.7); display:flex; align-items:center; justify-content:center; color:var(--text); transition: background var(--transition); }
.release-link-btn:hover { background: var(--accent); opacity:1; }
.release-type { font-size:.58rem; letter-spacing:.15em; text-transform:uppercase; color:var(--accent); margin-bottom:.35rem; }
.release-info h3 { font-size: .95rem; font-weight:700; margin-bottom:.2rem; }
.release-artist { font-size:.78rem; color:var(--text-muted); }
.release-date { font-size:.72rem; color:var(--text-dim); margin-top:.15rem; }

@media (max-width:1200px) { .artists-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width:1024px) { .releases-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:768px) {
    .artists-grid { grid-template-columns: repeat(2,1fr); }
    .releases-grid { grid-template-columns: repeat(2,1fr); }
    .label-section { padding: 4rem 0; }
}
@media (max-width:480px) { .artists-grid { grid-template-columns: repeat(2,1fr); } .releases-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   STUDIO — Photo gallery + label-identity section
   ============================================================ */
.studio-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin: 3rem 0; }
.studio-photo-item { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-card); }
.studio-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.studio-photo-item:hover img { transform: scale(1.04); }
.studio-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0c0c1e, #080812); color: rgba(124,58,237,.15); }

/* Label identity block (homepage, always visible) */
.label-identity { padding: 7rem 0; border-top: 1px solid var(--border); }
.label-identity-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.label-identity-num { font-size: clamp(5rem, 12vw, 9rem); font-weight: 900; letter-spacing: -.06em; line-height: .85; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.08); }
.label-identity-content h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 1rem; }
.label-identity-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.75rem; max-width: 520px; }
.label-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.label-pill { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .85rem; border: 1px solid var(--border); color: var(--text-dim); }

/* Audio player in release */
.release-audio { margin-top: 1.5rem; }
.release-audio audio { width: 100%; height: 40px; filter: invert(1) hue-rotate(180deg) brightness(.7); }

@media (max-width: 900px) {
    .studio-photo-grid { grid-template-columns: 1fr 1fr; }
    .studio-photo-grid .studio-photo-item:last-child { display: none; }
    .label-identity-grid { grid-template-columns: 1fr; gap: 2rem; }
    .label-identity-num { font-size: 5rem; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; z-index: 1; pointer-events: none; }
.slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.slide-bg { position: absolute; inset: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.slide-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-gradient-1 { width:100%;height:100%;background:linear-gradient(135deg,#0c0820 0%,#1a0a35 40%,#080810 100%); }
.slide-gradient-2 { width:100%;height:100%;background:linear-gradient(135deg,#080c20 0%,#0a1a35 40%,#080810 100%); }
.slide-gradient-3 { width:100%;height:100%;background:linear-gradient(135deg,#080c18 0%,#0a2030 40%,#080810 100%); }
.slide-overlay { position:absolute;inset:0;background:rgba(8,8,16,var(--opacity,.6)); }

.slide-content { position:relative;z-index:3;height:100%;display:flex;align-items:center; }
.slide-eyebrow {
    font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;
    color:var(--accent);margin-bottom:1.25rem;
    opacity:0;transform:translateY(16px);
    transition:opacity .6s ease .2s, transform .6s ease .2s;
}
.slide.active .slide-eyebrow { opacity:1;transform:translateY(0); }
.slide-title {
    font-size:clamp(2.5rem,6vw,5.5rem);font-weight:900;letter-spacing:-.05em;
    line-height:1;margin-bottom:1.5rem;
    opacity:0;transform:translateY(28px);
    transition:opacity .7s ease .35s, transform .7s ease .35s;
}
.slide.active .slide-title { opacity:1;transform:translateY(0); }
.slide-sub {
    font-size:1rem;color:var(--text-muted);max-width:520px;
    line-height:1.7;margin-bottom:2.5rem;
    opacity:0;transform:translateY(20px);
    transition:opacity .6s ease .5s, transform .6s ease .5s;
}
.slide.active .slide-sub { opacity:1;transform:translateY(0); }
.slide-btns {
    display:flex;gap:1rem;flex-wrap:wrap;
    opacity:0;transform:translateY(16px);
    transition:opacity .6s ease .65s, transform .6s ease .65s;
}
.slide.active .slide-btns { opacity:1;transform:translateY(0); }

.slider-prev,.slider-next {
    position:absolute;top:50%;transform:translateY(-50%);z-index:10;
    background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
    width:52px;height:52px;display:flex;align-items:center;justify-content:center;
    color:var(--text);cursor:pointer;transition:background .15s,border-color .15s;
}
.slider-prev:hover,.slider-next:hover { background:var(--accent);border-color:var(--accent);opacity:1; }
.slider-prev { left:2rem; }
.slider-next { right:2rem; }
.slider-dots { position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);display:flex;gap:.875rem;z-index:10; }
.slider-dot { width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.2);cursor:pointer;transition:background .2s,transform .2s;border:none;padding:0; }
.slider-dot.active { background:var(--accent);transform:scale(1.4); }
.slider-progress { position:absolute;bottom:0;left:0;height:2px;background:var(--accent);z-index:10;width:0; }

/* ============================================================
   AUTH SPLIT — v2 (standalone layout, no navbar)
   ============================================================ */
.auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    min-height: 100dvh;
}
.auth-promo {
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.auth-promo::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    padding-top: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.1) 0%, transparent 65%);
    pointer-events: none;
}
.auth-promo::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    padding-top: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,.06) 0%, transparent 65%);
    pointer-events: none;
}
.auth-promo-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,16,.82) 0%, rgba(8,8,16,.65) 100%);
    z-index: 0;
}
.auth-promo-inner { position: relative; z-index: 1; }
.auth-promo-inner {
    position: relative;
    z-index: 1;
    padding: 4rem 3.5rem;
    width: 100%;
}
.auth-promo-logo { height: 26px; margin-bottom: 3rem; display: block; }
.auth-promo-eyebrow { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.auth-promo h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -.05em; line-height: 1; margin-bottom: 1.5rem; }
.auth-promo h2 .outline { -webkit-text-stroke: 1px rgba(255,255,255,.3); color: transparent; }
.auth-promo-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 320px; }
.auth-features { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 3rem; }
.auth-feature { display: flex; align-items: flex-start; gap: .75rem; }
.auth-feature-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-top: .5rem; flex-shrink: 0; }
.auth-feature-text { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }
.auth-feature-text strong { color: var(--text); font-weight: 600; }
.auth-promo-bottom { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.auth-promo-stat-num { font-size: 1.375rem; font-weight: 800; letter-spacing: -.04em; }
.auth-promo-stat-label { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: var(--bg);
    min-height: 100vh;
}
.auth-box { width: 100%; max-width: 380px; }
.auth-header { margin-bottom: 2rem; }
.auth-header h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.04em; margin-bottom: .3rem; }
.auth-header p { color: var(--text-muted); font-size: .83rem; }
.auth-form { display: flex; flex-direction: column; }
.auth-footer { margin-top: 1.75rem; font-size: .82rem; color: var(--text-muted); }
.auth-footer a { color: var(--accent); }
.form-check { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .82rem; color: var(--text-muted); cursor: pointer; }

@media (max-width: 900px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-promo { display: none; }
    .auth-form-panel { min-height: 100vh; padding: 3rem 1.5rem; align-items: flex-start; padding-top: 5rem; }
}
