/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (STUDIO EDITION)
   ========================================================================== */

:root {
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    /* Theme: Dark (Console Default) */
    --bg-app: #0b0b0c;
    --bg-card: rgba(34, 34, 36, 0.4);
    --bg-sidebar: rgba(17, 17, 18, 0.6);
    --border-glass: rgba(197, 160, 89, 0.08); /* Gold-tinted glass border */
    
    --text-primary: #f4f4f6;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-light: #ffffff;
    
    --accent-red: #c5a059;       /* Studio Gold Branding */
    --accent-audio: #c5a059;     /* Gold for Audio Pro */
    --accent-live: #00e5ff;      /* Cyan for Live Sound */
    --accent-systems: #00e676;   /* Emerald Green for Automation/Systems */
    
    --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-glow-audio: 0 0 20px rgba(197, 160, 89, 0.35);
    --shadow-glow-live: 0 0 20px rgba(0, 229, 255, 0.35);
    --shadow-glow-systems: 0 0 20px rgba(0, 230, 118, 0.35);
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Layout Variables */
    --app-max-width: 1200px;
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --border-radius-sm: 6px;
}

/* Light Theme: Vintage Studio Console (Walnut / Cream) */
body.light-theme {
    --bg-app: #f4f4f6;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-sidebar: rgba(228, 228, 231, 0.9);
    --border-glass: rgba(197, 160, 89, 0.15);
    
    --text-primary: #111112;
    --text-secondary: #3f3f46;
    --text-muted: #71717a;
    --text-light: #111112;
    
    --accent-red: #a17a36; /* Slightly darker gold for readability */
    --accent-audio: #a17a36;
    --accent-live: #0891b2;
    --accent-systems: #16a34a;
    
    --shadow-premium: 0 8px 32px 0 rgba(100, 90, 80, 0.1);
    --shadow-glow-audio: 0 0 20px rgba(161, 122, 54, 0.25);
    --shadow-glow-live: 0 0 20px rgba(8, 145, 178, 0.25);
    --shadow-glow-systems: 0 0 20px rgba(22, 163, 74, 0.25);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-app);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: var(--transition-smooth);
    padding: 20px 10px;
}

/* Base interactive elements */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style-type: none;
}

/* Beautiful custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-app);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ==========================================================================
   VISUAL FLUIDITY: BACKGROUND BLATED BLOBS
   ========================================================================== */

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    animation: blob-float 20s infinite ease-in-out alternate;
    transition: var(--transition-smooth);
}

.blob-1 {
    top: 5%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--accent-audio);
}

.blob-2 {
    bottom: 20%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: var(--accent-live);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 350px;
    height: 350px;
    background: var(--accent-systems);
    animation-delay: -10s;
}

@keyframes blob-float {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(40px, -60px) scale(1.1); }
    100% { transform: translate(-30px, 20px) scale(0.9); }
}

/* ==========================================================================
   GLASSMORPHISM UTILITIES
   ========================================================================== */

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   APP CONTAINER
   ========================================================================== */

.app-container {
    max-width: var(--app-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   CONTROL PANEL: MIXING DESK (THE WOW HEADER)
   ========================================================================== */

.mixing-desk {
    padding: 24px;
    border-top: 4px solid var(--accent-red);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.desk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed var(--border-glass);
    padding-bottom: 15px;
}

.desk-brand {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--accent-red);
    letter-spacing: -2px;
}

.desk-model {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
}

.desk-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pulse-green {
    background-color: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: led-pulse 2s infinite;
}

@keyframes led-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.status-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.desk-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Custom Buttons */
.btn {
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-red);
    color: #111112;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
}

body.light-theme .btn-accent {
    color: #ffffff;
}

.btn-accent:hover {
    background: #b18d48;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.4);
}

/* CHANNEL STRIPS GRID */
.mixer-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.2fr;
    gap: 16px;
}

.channel-strip {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    padding: 15px;
    border: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.channel-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.01);
    z-index: 0;
}

.channel-strip > * {
    position: relative;
    z-index: 1;
}

.channel-header {
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
}

.channel-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
}

.channel-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* VU METERS STYLING */
.vu-meter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.vu-meter {
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 60px;
    width: 12px;
}

.led {
    flex: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1px;
    transition: background 0.1s ease;
}

/* Inactive LEDs have very dim base colors */
.led-green.active { background: #10b981; box-shadow: 0 0 5px #10b981; }
.led-amber.active { background: #f59e0b; box-shadow: 0 0 5px #f59e0b; }
.led-red.active   { background: #ef4444; box-shadow: 0 0 5px #ef4444; }

.vu-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 700;
}

/* FADER SLIDER CONTROL */
.fader-container {
    height: 180px;
    position: relative;
    display: flex;
    justify-content: center;
    width: 40px;
    margin-bottom: 12px;
}

.fader-track {
    height: 100%;
    width: 6px;
    background: #000;
    border-radius: 3px;
    position: relative;
}

/* Custom ticks along track */
.fader-ticks {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 18px,
        rgba(255, 255, 255, 0.1) 18px,
        rgba(255, 255, 255, 0.1) 20px
    );
    pointer-events: none;
}

.fader-slider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center center;
    width: 160px; /* length matches fader track container height */
    height: 40px;
    background: transparent;
    cursor: ns-resize;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    margin-top: 60px; /* Offset to center rotated element correctly */
}

/* Chrome/Safari webkit slider thumb */
.fader-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(180deg, #555 0%, #222 50%, #555 100%);
    border: 2px solid #111;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    cursor: grab;
    position: relative;
}

.fader-slider::-webkit-slider-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
    transform: translateY(-50%);
}

.fader-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    background: linear-gradient(180deg, #666 0%, #333 50%, #666 100%);
}

/* Firefox slider thumb */
.fader-slider::-moz-range-thumb {
    width: 24px;
    height: 40px;
    border-radius: 4px;
    background: linear-gradient(180deg, #555 0%, #222 50%, #555 100%);
    border: 2px solid #111;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    cursor: grab;
}

.channel-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.fader-value {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.mute-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
}

.mute-btn.active {
    background: var(--accent-red);
    color: #111112;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

body.light-theme .mute-btn.active {
    color: #ffffff;
}

/* MASTER STRIP SPECIFICS */
.master-strip {
    background: rgba(0, 0, 0, 0.35);
    border: 1px dashed var(--accent-red);
}

.double-vu {
    margin-bottom: 12px;
}

.vu-meter-pair {
    display: flex;
    gap: 6px;
}

.presets-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.presets-title {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 700;
}

.preset-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    width: 100%;
}

.preset-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.preset-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.preset-btn.active {
    background: var(--accent-red);
    color: #111112;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.35);
}

body.light-theme .preset-btn.active {
    color: #ffffff;
}

.master-indicator {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* ==========================================================================
   RESUME MAIN GRID LAYOUT
   ========================================================================== */

.resume-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 30px;
    align-items: start;
}

/* ==========================================================================
   SIDEBAR COMPONENT
   ========================================================================== */

.resume-sidebar {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sidebar-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-smooth);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    border-bottom: 2px solid var(--border-glass);
    padding-bottom: 8px;
}

/* Avatar glow animation */
.avatar-glow {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
}

.avatar-glow::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-audio), var(--accent-live), var(--accent-systems));
    z-index: 0;
    animation: rotate-gradient 6s infinite linear;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #111112;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-red);
}

.user-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 5px;
}

.user-tagline {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.user-subtagline {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
    padding: 15px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-glass);
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.contact-item:hover {
    color: var(--text-primary);
}

.contact-icon {
    width: 16px;
    color: var(--accent-red);
    font-size: 0.85rem;
}

/* TECHNICAL & CREATIVE SKILL PILLS */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-pill {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
}

.skill-pill em {
    font-style: normal;
    color: var(--accent-red);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.skill-pill:hover {
    transform: translateX(4px);
    color: var(--text-light);
    border-color: rgba(197, 160, 89, 0.2);
}

.active-audio { border-left: 3px solid var(--accent-audio); }
.active-live { border-left: 3px solid var(--accent-live); }
.active-systems { border-left: 3px solid var(--accent-systems); }

/* EDUCATION SECTION */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edu-item {
    position: relative;
    padding-left: 12px;
    border-left: 2px solid var(--border-glass);
}

.edu-year {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-red);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.edu-degree {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.edu-school {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.edu-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(197, 160, 89, 0.08);
    color: var(--accent-audio);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

/* ==========================================================================
   MAIN CONTENT COMPONENT (RIGHT COLUMN)
   ========================================================================== */

.resume-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* PROFILE BIO CARD */
.profile-card {
    padding: 25px 35px;
    position: relative;
    border-left: 4px solid var(--accent-audio);
}

.quote-icon {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    top: 10px;
    left: 15px;
    pointer-events: none;
}

.profile-bio {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.profile-bio strong {
    color: var(--text-primary);
}

/* SECTION HEADING WRAPPER */
.section-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.title-icon {
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-audio { color: var(--accent-audio); background: rgba(197, 160, 89, 0.06); }
.icon-live { color: var(--accent-live); background: rgba(0, 229, 255, 0.06); }
.icon-systems { color: var(--accent-systems); background: rgba(0, 230, 118, 0.06); }
.main-icon { color: var(--accent-red); background: rgba(197, 160, 89, 0.06); }

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    flex: 1;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-glass);
    margin-left: 15px;
}

/* KEY DEPLOYMENTS GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-card-interactive {
    padding: 24px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Radial hover glow shadow */
.project-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

.audio-glow { background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.12), transparent 70%); }
.live-glow { background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.12), transparent 70%); }
.systems-glow { background: radial-gradient(circle at 50% 0%, rgba(0, 230, 118, 0.12), transparent 70%); }

.project-card-interactive:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.project-card-interactive:hover .project-glow {
    opacity: 1;
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.project-role-badge {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
}

.badge-audio { background: rgba(197, 160, 89, 0.1); color: var(--accent-audio); }
.badge-live { background: rgba(0, 229, 255, 0.1); color: var(--accent-live); }
.badge-systems { background: rgba(0, 230, 118, 0.1); color: var(--accent-systems); }

.project-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.project-short {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    min-height: 48px; /* equal card distribution height */
    line-height: 1.4;
}

.project-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

.skill-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
}

.learn-more-link {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-card-interactive:hover .learn-more-link i {
    transform: translateX(4px);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   WORK EXPERIENCE TIMELINE
   ========================================================================== */

.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    width: 2px;
    height: 100%;
    background: var(--border-glass);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    top: 24px;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--bg-app);
    z-index: 2;
    transition: var(--transition-smooth);
}

.marker-audio { background-color: var(--accent-audio); box-shadow: 0 0 8px var(--accent-audio); }
.marker-live { background-color: var(--accent-live); box-shadow: 0 0 8px var(--accent-live); }
.marker-systems { background-color: var(--accent-systems); box-shadow: 0 0 8px var(--accent-systems); }

.timeline-content {
    padding: 24px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 6px;
}

.role-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.date-audio { background: rgba(197, 160, 89, 0.08); color: var(--accent-audio); }
.date-live { background: rgba(0, 229, 255, 0.08); color: var(--accent-live); }
.date-systems { background: rgba(0, 230, 118, 0.08); color: var(--accent-systems); }

.org-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.org-name i {
    color: var(--accent-red);
}

.experience-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
}

.experience-bullets li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

.experience-bullets li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--accent-red);
    font-size: 0.95rem;
}

/* ==========================================================================
   DYNAMIC INTERACTIVE FILTERS (FADER TRIGGERS)
   ========================================================================== */

/* Active Glowing borders on Hover trigger elements */
.focus-audio [data-role-section="audio"] {
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: var(--shadow-glow-audio);
    transform: scale(1.01);
}

.focus-live [data-role-section="live"] {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: var(--shadow-glow-live);
    transform: scale(1.01);
}

.focus-systems [data-role-section="systems"] {
    border-color: rgba(0, 230, 118, 0.5);
    box-shadow: var(--shadow-glow-systems);
    transform: scale(1.01);
}

/* Dimming unrelated parts when specific roles are soloed/highly emphasized */
.dim-all [data-role-section] {
    opacity: 0.35;
    filter: grayscale(40%);
    transform: scale(0.98);
}

.dim-all.focus-audio [data-role-section="audio"],
.dim-all.focus-live [data-role-section="live"],
.dim-all.focus-systems [data-role-section="systems"] {
    opacity: 1;
    filter: grayscale(0%);
}

/* Channel Strip Highlighting */
.focus-audio .channel-strip[data-channel="audio"] {
    border-color: var(--accent-audio);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.focus-live .channel-strip[data-channel="live"] {
    border-color: var(--accent-live);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.focus-systems .channel-strip[data-channel="systems"] {
    border-color: var(--accent-systems);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
}

/* ==========================================================================
   PROJECT DETAILS DIALOGS (NATIVE MODALS)
   ========================================================================== */

.project-dialog {
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    background: rgba(12, 12, 14, 0.95);
    padding: 0;
    max-width: 600px;
    width: 90%;
    margin: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    transition: var(--transition-smooth);
    opacity: 0;
}

body.light-theme .project-dialog {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.project-dialog[open] {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.project-dialog::backdrop {
    background: rgba(5, 5, 6, 0.75);
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.dialog-content {
    padding: 35px;
    position: relative;
}

.close-dialog {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 0.5;
    transition: var(--transition-smooth);
}

.close-dialog:hover {
    color: var(--accent-red);
    transform: rotate(90deg);
}

.dialog-header {
    margin-bottom: 20px;
    border-bottom: 2px dashed var(--border-glass);
    padding-bottom: 15px;
}

.dialog-header h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--text-primary);
}

.dialog-intro {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.dialog-body h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 12px;
}

.dialog-body ul {
    margin-bottom: 25px;
}

.dialog-body li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.dialog-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
}

.dialog-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */

@media (max-width: 1024px) {
    .mixer-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .master-strip {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    body {
        padding: 10px;
    }
    
    .resume-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mixing-desk {
        padding: 16px;
    }
    
    .mixer-channels {
        grid-template-columns: 1fr;
    }
    
    .master-strip {
        grid-column: span 1;
    }
    
    .desk-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .desk-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .profile-card {
        padding: 24px 20px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .timeline-date {
        align-self: flex-start;
    }
}

/* ==========================================================================
   SKILLS SNAPSHOT STYLING
   ========================================================================== */
#skills-snapshot {
    margin-top: 30px;
}

.skills-snapshot-content {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

.skills-snapshot-content strong {
    color: var(--accent-red);
}

/* ==========================================================================
   PRINT STYLESHEET (CLEAN RE-FORMATTING)
   ========================================================================== */

@media print {
    /* Hard reset & Force background rendering */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        box-sizing: border-box !important;
    }
    
    body {
        background: #ffffff !important;
        color: #1a1a1c !important;
        font-size: 9.5pt !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1.35 !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    .app-container {
        max-width: 100% !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Remove digital interactions and console clutter */
    .mixing-desk, 
    .blob, 
    #theme-toggle, 
    #print-btn, 
    .learn-more-link,
    .mute-btn,
    .status-light,
    .status-label,
    .presets-container,
    .project-dialog,
    .quote-icon,
    .project-glow,
    .vu-meter-wrapper,
    .fader-container,
    .channel-footer {
        display: none !important;
    }
    
    /* Maintain beautiful 2-column grid layout */
    .resume-grid {
        display: grid !important;
        grid-template-columns: 260px 1fr !important;
        gap: 25px !important;
        align-items: start !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .glass {
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
    
    /* GORGEOUS HIGH-CONTRAST SIDEBAR */
    .resume-sidebar {
        background: #17181c !important;
        color: #ffffff !important;
        padding: 24px 18px !important;
        border-radius: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        min-height: 98vh !important;
    }
    
    .profile-block {
        text-align: left !important;
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 15px !important;
        margin-bottom: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .avatar-glow {
        display: none !important;
    }
    
    .user-name {
        font-size: 16pt !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }
    
    .user-tagline {
        display: none !important;
    }
    
    .user-subtagline {
        font-size: 8.5pt !important;
        color: #c5a059 !important;
        font-weight: 700 !important;
        margin-bottom: 8px !important;
        text-transform: uppercase !important;
    }
    
    .contact-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        margin-top: 5px !important;
    }
    
    .contact-item {
        font-size: 8pt !important;
        color: #d0d0d5 !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .contact-icon {
        display: inline-block !important;
        font-size: 8pt !important;
        color: #c5a059 !important;
        width: 12px !important;
    }
    
    .sidebar-title {
        font-size: 9.5pt !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        border-bottom: 1.5px solid #c5a059 !important;
        padding-bottom: 4px !important;
        margin-bottom: 8px !important;
    }
    
    .sidebar-block {
        margin-bottom: 12px !important;
    }
    
    /* Core Audio and Workflow Edge lists in print */
    .skills-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
    }
    
    .skill-pill {
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        font-size: 7.5pt !important;
        padding: 2px 5px !important;
        border-radius: 4px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        font-weight: 500 !important;
    }
    
    /* Education block in print sidebar */
    .edu-block {
        margin-top: 10px !important;
    }
    
    .education-timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .edu-item {
        border-left: 2.5px solid #c5a059 !important;
        padding-left: 8px !important;
        margin-bottom: 0 !important;
    }
    
    .edu-year {
        font-size: 7.5pt !important;
        color: #c5a059 !important;
        font-weight: 700 !important;
    }
    
    .edu-degree {
        font-size: 8.5pt !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 2px 0 !important;
    }
    
    .edu-school {
        font-size: 7.5pt !important;
        color: #d0d0d5 !important;
    }
    
    .edu-badge {
        display: none !important;
    }

    /* RIGHT COLUMN CONTENT LAYOUT */
    .resume-main-content {
        padding: 10px 0 0 0 !important;
    }
    
    .section-title {
        font-size: 11pt !important;
        color: #1a1a1c !important;
        font-weight: 800 !important;
        border-bottom: 2px solid #1a1a1c !important;
        padding-bottom: 3px !important;
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        text-transform: uppercase !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .section-heading-wrapper {
        margin-bottom: 10px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .title-icon {
        display: none !important;
    }
    
    /* Bio layout */
    .profile-card {
        padding: 14px 18px !important;
        margin-bottom: 20px !important;
        background: #fdfcf7 !important;
        border-left: 4px solid #c5a059 !important;
        border-radius: 6px !important;
    }
    
    .profile-bio {
        font-size: 9.5pt !important;
        color: #2b2c30 !important;
        line-height: 1.45 !important;
    }

    /* Projects layout */
    .project-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
        page-break-inside: avoid !important;
    }
    
    .project-card-interactive {
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        border-radius: 6px !important;
        padding: 12px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .project-header {
        margin-bottom: 6px !important;
    }
    
    .project-role-badge {
        font-size: 7.5pt !important;
        padding: 2px 6px !important;
        border-radius: 4px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }
    
    .badge-systems { background: rgba(22, 163, 74, 0.08) !important; color: #16a34a !important; }
    .badge-audio { background: rgba(197, 160, 89, 0.08) !important; color: #a17a36 !important; }
    .badge-live { background: rgba(8, 145, 178, 0.08) !important; color: #0891b2 !important; }
    
    .project-name {
        font-size: 9.5pt !important;
        font-weight: 800 !important;
        color: #1a1a1c !important;
        margin-top: 4px !important;
    }
    
    .project-short {
        font-size: 8.5pt !important;
        color: #495057 !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }
    
    .project-card-footer {
        display: flex !important;
        gap: 6px !important;
        border-top: none !important;
        padding-top: 0 !important;
    }
    
    .skill-tag {
        font-size: 7.5pt !important;
        background: #e9ecef !important;
        color: #495057 !important;
        padding: 2px 6px !important;
        border-radius: 4px !important;
        font-weight: 500 !important;
    }
    
    /* Timeline experience block */
    .timeline {
        position: relative !important;
        padding-left: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .timeline::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        left: 6px !important;
        top: 8px !important;
        bottom: 8px !important;
        width: 2px !important;
        background: #e9ecef !important;
    }
    
    .timeline-item {
        margin-bottom: 18px !important;
        position: relative !important;
        page-break-inside: avoid !important;
    }
    
    .timeline-marker {
        display: block !important;
        position: absolute !important;
        left: -20px !important;
        top: 4px !important;
        width: 14px !important;
        height: 14px !important;
        border-radius: 50% !important;
        background: #c5a059 !important;
        border: 3px solid #ffffff !important;
        box-shadow: none !important;
    }
    
    .marker-audio { background-color: #a17a36 !important; }
    .marker-live { background-color: #0891b2 !important; }
    .marker-systems { background-color: #16a34a !important; }
    
    .timeline-content {
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 14px 18px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.01) !important;
    }
    
    .timeline-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 4px !important;
    }
    
    .role-title {
        font-size: 10.5pt !important;
        font-weight: 800 !important;
        color: #1a1a1c !important;
    }
    
    .timeline-date {
        font-size: 8pt !important;
        font-weight: 700 !important;
        padding: 2px 8px !important;
        border-radius: 4px !important;
        text-transform: uppercase !important;
    }
    
    .date-audio { background: rgba(197, 160, 89, 0.08) !important; color: #a17a36 !important; }
    .date-live { background: rgba(8, 145, 178, 0.08) !important; color: #0891b2 !important; }
    .date-systems { background: rgba(22, 163, 74, 0.08) !important; color: #16a34a !important; }
    
    .org-name {
        font-size: 8.5pt !important;
        font-weight: 700 !important;
        color: #495057 !important;
        margin-bottom: 8px !important;
        display: block !important;
    }
    
    .org-name i {
        color: #c5a059 !important;
        margin-right: 4px !important;
    }
    
    .experience-bullets {
        padding-left: 0 !important;
        margin: 8px 0 0 0 !important;
        list-style: none !important;
    }
    
    .experience-bullets li {
        font-size: 9pt !important;
        color: #333538 !important;
        margin-bottom: 5px !important;
        position: relative !important;
        padding-left: 12px !important;
        line-height: 1.4 !important;
    }
    
    .experience-bullets li::before {
        content: '•' !important;
        position: absolute !important;
        left: 0 !important;
        color: #c5a059 !important;
        font-weight: bold !important;
    }
    
    /* Skills Snapshot in print */
    #skills-snapshot {
        margin-top: 20px !important;
        background: #ffffff !important;
        border: 1px solid #e9ecef !important;
        border-radius: 8px !important;
        padding: 14px 18px !important;
        page-break-inside: avoid !important;
    }
    
    .skills-snapshot-content {
        font-size: 9pt !important;
        color: #333538 !important;
        line-height: 1.5 !important;
    }
    
    .skills-snapshot-content strong {
        color: #a17a36 !important;
        font-weight: 700 !important;
    }
}
