/* =============================================================
   VTuber Manager - Skeuomorphic Control Room Design
   Colors from DESIGN.md palette
   ============================================================= */

/* -- CSS Custom Properties ------------------------------------ */
:root {
    --surface-dark: #1c1f26;
    --surface-mid: #2a2e38;
    --surface-light: #3d4250;
    --border: #4f5565;
    --text-primary: #e8eaed;
    --text-secondary: #9ca3af;
    --accent-cyan: #22d3ee;
    --accent-amber: #f59e0b;
    --accent-mint: #34d399;
    --accent-coral: #f87171;
    --recessed: #12141a;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Inter', sans-serif;
    --shadow-panel: 0 1px 2px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.1), 0 12px 24px rgba(0,0,0,0.08);
    --shadow-inset: inset 0 2px 6px rgba(0,0,0,0.4), inset 0 -1px 2px rgba(255,255,255,0.05);
    --brushed-metal: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--surface-dark);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* -- Dot Matrix Background ------------------------------------ */
.dot-matrix-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* -- Scan Lines ----------------------------------------------- */
.scan-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.01) 2px,
        rgba(0,0,0,0.01) 4px
    );
    z-index: 2;
}

/* -- Stations (Sections) -------------------------------------- */
.station {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.station-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 32px;
    width: 100%;
}

/* -- Section Labels ------------------------------------------- */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-mono);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.65;
}

/* -- Status LEDs ---------------------------------------------- */
.status-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-led-active {
    background: #f87171;
    box-shadow: 0 0 6px #f87171, 0 0 12px rgba(248,113,113,0.4);
    animation: ledPulse 1.5s ease-in-out infinite;
}

.status-led-cyan {
    background: var(--accent-cyan);
    box-shadow: 0 0 6px var(--accent-cyan), 0 0 12px rgba(34,211,238,0.4);
}

.status-led-amber {
    background: var(--accent-amber);
    box-shadow: 0 0 6px var(--accent-amber), 0 0 12px rgba(245,158,11,0.4);
}

.status-led-mint {
    background: var(--accent-mint);
    box-shadow: 0 0 6px var(--accent-mint), 0 0 12px rgba(52,211,153,0.4);
}

@keyframes ledPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* -- Panel Screws --------------------------------------------- */
.panel-screw, .badge-screw {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    z-index: 5;
}

.panel-screw::before, .badge-screw::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 1px;
    background: var(--border);
    transform: translate(-50%, -50%);
}

.panel-screw::after, .badge-screw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 6px;
    background: var(--border);
    transform: translate(-50%, -50%);
}

.panel-screw-tl, .badge-screw-tl { top: 10px; left: 10px; }
.panel-screw-tr, .badge-screw-tr { top: 10px; right: 10px; }
.panel-screw-bl, .badge-screw-bl { bottom: 10px; left: 10px; }
.panel-screw-br, .badge-screw-br { bottom: 10px; right: 10px; }

/* =============================================================
   STATION 1: HERO - The Console Powers On
   ============================================================= */
.station-hero {
    background: var(--recessed);
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 24px 32px;
    z-index: 3;
}

/* Logo Badge */
.logo-badge {
    position: relative;
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 24px;
    box-shadow: var(--shadow-panel);
    background-image: var(--brushed-metal);
    background-size: 4px 100%;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.badge-logo {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(34,211,238,0.4);
}

.badge-tagline {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.cursor {
    animation: cursorBlink 1s step-end infinite;
    color: var(--accent-cyan);
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Live Status Panel */
.live-status-panel {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
    box-shadow: var(--shadow-panel);
}

.status-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: #f87171;
    font-weight: 700;
}

.waveform-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
}

.waveform-bar {
    width: 3px;
    background: var(--accent-cyan);
    border-radius: 1px;
    animation: waveformBounce 0.8s ease-in-out infinite alternate;
    animation-delay: var(--delay);
    height: var(--height);
    opacity: 0.7;
}

@keyframes waveformBounce {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px;
    position: relative;
    z-index: 2;
}

.hero-waveform-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-waveform-bg.visible {
    opacity: 1;
}

.waveform-svg {
    width: 100%;
    height: 200px;
}

.wave-path {
    animation: waveDrift 6s ease-in-out infinite alternate;
}

.wave-path-2 { animation-delay: -2s; animation-duration: 8s; }
.wave-path-3 { animation-delay: -4s; animation-duration: 10s; }

@keyframes waveDrift {
    0% { d: path("M0,100 Q150,20 300,100 T600,100 T900,100 T1200,100"); }
    100% { d: path("M0,100 Q150,180 300,100 T600,80 T900,120 T1200,100"); }
}

.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 20px;
    min-height: 1.3em;
    position: relative;
}

.hero-title .typed-cursor {
    color: var(--accent-cyan);
    animation: cursorBlink 1s step-end infinite;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Power Indicator */
.power-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    opacity: 0;
    transition: opacity 1s ease 1s;
}

.power-indicator.visible {
    opacity: 1;
}

.power-ring {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-mint);
    box-shadow: 0 0 8px rgba(52,211,153,0.5);
    animation: powerPulse 2s ease-in-out infinite;
}

@keyframes powerPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(52,211,153,0.5); }
    50% { box-shadow: 0 0 16px rgba(52,211,153,0.8), 0 0 24px rgba(52,211,153,0.3); }
}

.power-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent-mint);
    text-shadow: 0 0 8px rgba(52,211,153,0.4);
}

/* =============================================================
   STATION 2: CHANNEL STRIP
   ============================================================= */
.station-channel {
    background: var(--surface-dark);
}

.channel-strip-panel {
    position: relative;
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-panel);
    background-image: var(--brushed-metal);
    background-size: 4px 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.channel-strip-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.channels-row {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    margin-bottom: 32px;
}

.channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 120px;
}

.channel-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Fader Track */
.fader-track {
    position: relative;
    width: 8px;
    height: 160px;
    border-radius: 4px;
    background: var(--recessed);
    box-shadow: var(--shadow-inset);
}

.fader-groove {
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
    border-radius: 1px;
}

.fader-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--accent-cyan), rgba(34,211,238,0.3));
    border-radius: 4px;
    transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fader-knob {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, 50%);
    width: 24px;
    height: 14px;
    background: linear-gradient(180deg, #5a6070 0%, #3d4250 50%, #4a5060 100%);
    border: 1px solid var(--border);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: bottom 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fader-knob::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
}

.channel-value {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-shadow: 0 0 6px rgba(34,211,238,0.4);
    min-width: 30px;
    text-align: center;
}

/* LED Strip */
.channel-led-strip {
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
}

.led-segment {
    width: 20px;
    height: 4px;
    border-radius: 1px;
    background: rgba(255,255,255,0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.led-segment.lit-green {
    background: var(--accent-mint);
    box-shadow: 0 0 4px rgba(52,211,153,0.5);
}

.led-segment.lit-amber {
    background: var(--accent-amber);
    box-shadow: 0 0 4px rgba(245,158,11,0.5);
}

.led-segment.lit-red {
    background: var(--accent-coral);
    box-shadow: 0 0 4px rgba(248,113,113,0.5);
}

/* VU Meters */
.vu-meter-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.vu-meter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vu-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    width: 55px;
}

.vu-bar-track {
    width: 200px;
    height: 10px;
    background: var(--recessed);
    border-radius: 5px;
    box-shadow: var(--shadow-inset);
    position: relative;
    overflow: hidden;
}

.vu-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--accent-mint) 0%, var(--accent-cyan) 60%, var(--accent-amber) 85%, var(--accent-coral) 100%);
    transition: width 1.5s ease;
}

.vu-bar-fill.active {
    animation: vuBounce 2s ease-in-out infinite;
}

@keyframes vuBounce {
    0%, 100% { width: var(--base-level); }
    25% { width: calc(var(--base-level) + 8%); }
    50% { width: calc(var(--base-level) - 5%); }
    75% { width: calc(var(--base-level) + 4%); }
}

.vu-peak {
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-amber);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s, right 0.5s;
}

/* =============================================================
   STATION 3: PATCH BAY
   ============================================================= */
.station-patchbay {
    background: var(--recessed);
}

.patchbay-panel {
    position: relative;
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-panel);
    background-image: var(--brushed-metal);
    background-size: 4px 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.patchbay-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.patchbay-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    min-height: 300px;
}

.platform-nodes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.platform-node {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-panel);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.platform-node.visible {
    opacity: 1;
    transform: translateX(0);
}

.platform-node:hover {
    border-color: var(--accent-cyan);
}

.node-jack {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--recessed);
    border: 2px solid var(--border);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.platform-node.connected .node-jack {
    border-color: var(--accent-cyan);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), 0 0 6px rgba(34,211,238,0.5);
}

.node-icon {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.platform-node.connected .node-icon {
    color: var(--accent-cyan);
}

.node-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

/* Cable SVG */
.cable-svg {
    position: absolute;
    left: 120px;
    top: 0;
    width: calc(100% - 240px);
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.cable-svg.visible {
    opacity: 1;
}

.cable-path {
    stroke-dashoffset: 100;
    animation: cableFlow 3s linear infinite;
}

@keyframes cableFlow {
    0% { stroke-dashoffset: 24; }
    100% { stroke-dashoffset: 0; }
}

.cable-particle {
    opacity: 0.8;
    filter: blur(0.5px);
}

/* Hub Node */
.hub-node {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    z-index: 2;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hub-node.visible {
    opacity: 1;
    transform: scale(1);
}

.hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.hub-ring-outer {
    inset: 0;
    border-color: rgba(34,211,238,0.2);
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-ring-inner {
    inset: 12px;
    border-color: rgba(34,211,238,0.4);
    animation: hubPulse 3s ease-in-out infinite 0.5s;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.hub-core {
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 12px rgba(34,211,238,0.3), inset 0 0 8px rgba(34,211,238,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hub-core span {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.hub-sub {
    font-size: 8px !important;
    letter-spacing: 0.2em;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
}

/* Monitor Frames */
.monitor-frames {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.monitor-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.monitor-frame.visible {
    opacity: 1;
    transform: translateY(0);
}

.monitor-bezel {
    background: var(--surface-dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow-panel);
    position: relative;
}

.monitor-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-mint);
    box-shadow: 0 0 4px rgba(52,211,153,0.5);
    position: absolute;
    top: 4px;
    right: 8px;
}

.monitor-screen {
    width: 240px;
    height: 140px;
    background: var(--recessed);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.monitor-screen.duotone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,46,56,0.6) 0%, rgba(34,211,238,0.15) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.monitor-content {
    padding: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-ui-bar {
    height: 8px;
    background: var(--surface-light);
    border-radius: 2px;
    opacity: 0.6;
}

.mock-ui-row {
    display: flex;
    gap: 6px;
    flex: 1;
}

.mock-ui-sidebar {
    width: 40px;
    background: var(--surface-mid);
    border-radius: 2px;
    opacity: 0.5;
}

.mock-ui-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-ui-card {
    flex: 1;
    background: var(--surface-mid);
    border-radius: 2px;
    opacity: 0.4;
    border: 1px solid rgba(79,85,101,0.3);
}

.mock-ui-chat {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}

.mock-chat-line {
    height: 4px;
    background: var(--surface-light);
    border-radius: 2px;
    opacity: 0.5;
}

.mock-chat-line.short {
    width: 70%;
}

.mock-ui-video {
    flex: 1;
    background: var(--surface-mid);
    border-radius: 2px;
    opacity: 0.4;
    border: 1px solid rgba(79,85,101,0.3);
}

.monitor-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* =============================================================
   STATION 4: MONITOR WALL (Testimonials)
   ============================================================= */
.station-monitors {
    background: var(--surface-dark);
}

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

.testimonial-screen {
    position: relative;
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-panel);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-screen.visible {
    opacity: 1;
    transform: translateY(0);
}

.screen-bezel {
    padding: 24px 20px;
    background: var(--surface-mid);
    background-image: var(--brushed-metal);
    background-size: 4px 100%;
}

.screen-content {
    background: var(--recessed);
    border-radius: 6px;
    padding: 24px 20px;
    box-shadow: var(--shadow-inset);
    margin-bottom: 16px;
    position: relative;
}

.screen-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
    pointer-events: none;
    border-radius: 6px;
}

.quote-icon {
    font-family: var(--font-mono);
    font-size: 36px;
    color: var(--accent-cyan);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-mint);
    box-shadow: 0 0 4px rgba(52,211,153,0.5);
}

.author-name {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.author-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
}

/* Testimonial VU */
.testimonial-vu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vu-mini-track {
    flex: 1;
    height: 6px;
    background: var(--recessed);
    border-radius: 3px;
    box-shadow: var(--shadow-inset);
    overflow: hidden;
}

.vu-mini-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-mint) 0%, var(--accent-cyan) 60%, var(--accent-amber) 100%);
    border-radius: 3px;
    transition: width 1.5s ease;
}

.vu-mini-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-transform: uppercase;
    white-space: nowrap;
}

/* =============================================================
   STATION 5: MASTER BUS
   ============================================================= */
.station-master {
    background: var(--recessed);
}

.master-panel {
    position: relative;
    background: var(--surface-mid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: var(--shadow-panel);
    background-image: var(--brushed-metal);
    background-size: 4px 100%;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.master-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.master-fader-area {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.master-fader-track {
    position: relative;
    width: 12px;
    height: 260px;
    background: var(--recessed);
    border-radius: 6px;
    box-shadow: var(--shadow-inset);
}

.master-fader-groove {
    position: absolute;
    left: 50%;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
    border-radius: 1px;
}

.master-fader-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--accent-cyan), rgba(34,211,238,0.2));
    border-radius: 6px;
    transition: height 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.master-fader-knob {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, 50%);
    width: 36px;
    height: 20px;
    background: linear-gradient(180deg, #5a6070 0%, #3d4250 40%, #4a5060 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: grab;
    transition: bottom 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.knob-grip {
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 0.5px;
}

.master-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 260px;
    padding: 6px 0;
}

.master-label-item {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

/* Master Output VU */
.master-output {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.output-vu {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.vu-large {
    width: 20px;
    height: 200px;
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
}

.vu-large .vu-bar-fill, .vu-master-fill {
    width: 100%;
    height: 0%;
    border-radius: 3px;
    background: linear-gradient(to top, var(--accent-mint) 0%, var(--accent-cyan) 50%, var(--accent-amber) 80%, var(--accent-coral) 100%);
    transition: height 2s ease;
}

.output-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* CTA Area */
.master-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-button {
    position: relative;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--surface-dark);
    background: var(--accent-cyan);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(34,211,238,0.3), 0 4px 12px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34,211,238,0.5), 0 6px 16px rgba(0,0,0,0.3);
}

.cta-glow {
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    border: 2px solid var(--accent-cyan);
    opacity: 0;
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-hint {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
}

/* Mascot */
.mascot-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.mascot-area.visible {
    opacity: 1;
    transform: translateY(0);
}

.mascot {
    position: relative;
    width: 60px;
    height: 68px;
}

.mascot-body {
    width: 60px;
    height: 60px;
    background: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-panel);
}

.mascot-eye {
    width: 8px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(34,211,238,0.5);
    position: absolute;
    top: 20px;
}

.mascot-eye-l { left: 16px; }
.mascot-eye-r { right: 16px; }

.mascot-mouth {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 2px solid var(--accent-cyan);
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.mascot-hand {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--surface-light);
    border: 2px solid var(--border);
    border-radius: 50%;
    bottom: 8px;
}

.mascot-hand-l { left: -8px; }
.mascot-hand-r {
    right: -8px;
    transition: transform 0.5s ease;
}

.mascot-hand-r.waving {
    animation: mascotWave 0.6s ease-in-out 3;
}

@keyframes mascotWave {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(-30deg) translateY(-8px); }
}

.mascot-speech {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-cyan);
    background: var(--surface-mid);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 4px;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mascot-speech.visible {
    opacity: 1;
}

.mascot-speech::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--border);
}

/* =============================================================
   FOOTER: COMMAND STRIP
   ============================================================= */
.command-strip {
    background: var(--surface-mid);
    border-top: 1px solid var(--border);
    padding: 20px 32px;
    position: relative;
    z-index: 10;
    background-image: var(--brushed-metal);
    background-size: 4px 100%;
}

.strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.strip-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Toggle Switches */
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.toggle-track {
    width: 32px;
    height: 16px;
    background: var(--recessed);
    border-radius: 8px;
    box-shadow: var(--shadow-inset);
    position: relative;
    transition: background 0.3s ease;
}

.toggle-switch.active .toggle-track {
    background: rgba(34,211,238,0.2);
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #5a6070 0%, #3d4250 100%);
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: left 0.3s ease, background 0.3s ease;
}

.toggle-switch.active .toggle-thumb {
    left: 18px;
    background: linear-gradient(180deg, var(--accent-cyan), #1aadbd);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 6px rgba(34,211,238,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

.toggle-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color 0.3s;
}

.toggle-switch.active .toggle-label {
    color: var(--accent-cyan);
}

/* Strip Info */
.strip-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.strip-copyright {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.strip-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 768px) {
    .console-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .channels-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fader-track {
        height: 120px;
    }

    .patchbay-layout {
        flex-direction: column;
        gap: 32px;
    }

    .platform-nodes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cable-svg {
        display: none;
    }

    .hub-node {
        margin: 0 auto;
    }

    .testimonial-wall {
        grid-template-columns: 1fr;
    }

    .monitor-frames {
        flex-direction: column;
        align-items: center;
    }

    .master-panel {
        flex-direction: column;
        padding: 32px 20px;
    }

    .master-fader-track {
        height: 200px;
    }

    .master-labels {
        height: 200px;
    }

    .vu-large {
        height: 150px;
    }

    .strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip-nav {
        gap: 10px;
    }

    .vu-bar-track {
        width: 120px;
    }

    .vu-meter-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .station-inner {
        padding: 60px 16px;
    }

    .hero-content {
        padding: 40px 16px;
    }

    .channel {
        max-width: 80px;
    }

    .fader-track {
        height: 90px;
    }

    .platform-node {
        padding: 8px 12px;
    }

    .monitor-screen {
        width: 180px;
        height: 100px;
    }
}
