/* SoundScape Studios - Podcast Production */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --neon-green: #10b981;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --panel-bg: #1e293b;
    --text-light: #f1f5f9;
    --text-medium: #94a3b8;
    --text-dark: #334155;
    --border-color: #475569;
    --glow-blue: rgba(59, 130, 246, 0.5);
    --glow-cyan: rgba(6, 182, 212, 0.5);
    --glow-green: rgba(16, 185, 129, 0.5);
    --gradient-primary: linear-gradient(135deg, #1e3a8a, #3b82f6);
    --gradient-accent: linear-gradient(135deg, #06b6d4, #10b981);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Audio Background */
.audio-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.sound-wave {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 200px;
}

.wave-bar {
    width: 6px;
    background: var(--gradient-accent);
    border-radius: 3px 3px 0 0;
    animation: wave-pulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
    height: var(--height);
}

@keyframes wave-pulse {
    0%, 100% { transform: scaleY(0.3); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.frequency-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0.2;
    animation: grid-flow 4s ease-in-out infinite;
}

.grid-line:nth-child(2) { animation-delay: 1s; }
.grid-line:nth-child(3) { animation-delay: 2s; }
.grid-line:nth-child(4) { animation-delay: 3s; }

@keyframes grid-flow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.4; }
}

/* Tabbed Navigation */
.tab-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-waveform {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 30px;
}

.logo-bar {
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: logo-wave 1.5s ease-in-out infinite;
}

.logo-bar:nth-child(1) { height: 15px; animation-delay: 0s; }
.logo-bar:nth-child(2) { height: 25px; animation-delay: 0.2s; }
.logo-bar:nth-child(3) { height: 20px; animation-delay: 0.4s; }
.logo-bar:nth-child(4) { height: 30px; animation-delay: 0.6s; }

@keyframes logo-wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-menu {
    display: flex;
    gap: 5px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
}

.tab-item:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
}

.tab-item.active {
    background: var(--gradient-primary);
    border-color: var(--secondary-blue);
    box-shadow: 0 4px 20px var(--glow-blue);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.tab-item.active .tab-indicator {
    width: 100%;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.control-btn:hover {
    background: var(--secondary-blue);
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 15px var(--glow-blue);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    cursor: pointer;
}

/* Main Content */
main {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
#home {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--neon-green);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neon-green);
    z-index: 2;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-green);
    opacity: 0.1;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    color: var(--text-light);
}

.title-line.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.pulse-btn {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pulse-btn:hover .btn-wave {
    left: 100%;
}

.pulse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-blue);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.mini-bar {
    width: 3px;
    background: currentColor;
    border-radius: 1px;
    animation: mini-wave 1s ease-in-out infinite;
}

.mini-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.mini-bar:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.mini-bar:nth-child(3) { height: 12px; animation-delay: 0.4s; }

@keyframes mini-wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.studio-setup {
    position: relative;
    width: 400px;
    height: 400px;
}

.microphone {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mic-body {
    width: 40px;
    height: 80px;
    background: linear-gradient(135deg, #374151, #6b7280);
    border-radius: 20px 20px 8px 8px;
    position: relative;
}

.mic-grille {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    background: repeating-linear-gradient(
        0deg,
        var(--border-color) 0px,
        var(--border-color) 2px,
        transparent 2px,
        transparent 4px
    );
    border-radius: 15px;
}

.mic-stand {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100px;
    background: linear-gradient(180deg, #374151, #1f2937);
    border-radius: 3px;
}

.sound-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: ring-expand 2s ease-out infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
    animation-delay: 1s;
}

@keyframes ring-expand {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.mixing-board {
    position: absolute;
    bottom: 50px;
    left: 20px;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.board-surface {
    padding: 10px;
    display: flex;
    gap: 8px;
    height: 100%;
}

.channel-strip {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.knob {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--secondary-blue), var(--primary-blue));
    border-radius: 50%;
    border: 2px solid var(--border-color);
    position: relative;
}

.knob::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--text-light);
    border-radius: 1px;
}

.slider {
    width: 4px;
    height: 30px;
    background: var(--border-color);
    border-radius: 2px;
    position: relative;
}

.slider::after {
    content: '';
    position: absolute;
    top: 40%;
    left: -2px;
    width: 8px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 2px;
}

.headphones {
    position: absolute;
    bottom: 80px;
    right: 30px;
    width: 80px;
    height: 60px;
}

.headphone-band {
    width: 60px;
    height: 30px;
    border: 4px solid var(--border-color);
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    margin: 0 auto;
    background: linear-gradient(135deg, #374151, #6b7280);
}

.ear-cup {
    width: 25px;
    height: 20px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: absolute;
    top: 20px;
}

.ear-cup.left {
    left: 5px;
}

.ear-cup.right {
    right: 5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.services-mixer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-channel {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glow-cyan), transparent);
    transition: left 0.5s ease;
    opacity: 0.1;
}

.service-channel:hover::before {
    left: 100%;
}

.service-channel:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px var(--glow-cyan);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 2.5rem;
}

.service-channel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.channel-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.control-knob {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--secondary-blue), var(--primary-blue));
    border-radius: 50%;
    border: 3px solid var(--border-color);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-knob:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.knob-indicator {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 15px;
    background: var(--text-light);
    border-radius: 2px;
    transform-origin: 50% 20px;
}

.control-slider {
    flex: 1;
    height: 80px;
    position: relative;
}

.slider-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: var(--border-color);
    border-radius: 3px;
}

.slider-handle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 6px;
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-handle:hover {
    background: var(--neon-green);
    box-shadow: 0 0 15px var(--glow-green);
}

.channel-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: rgba(6, 182, 212, 0.2);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Portfolio Section */
#portfolio {
    background: var(--darker-bg);
}

.portfolio-player {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.playlist {
    padding: 30px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--secondary-blue);
}

.playlist-item.active {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--accent-cyan);
}

.track-artwork {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-item:hover .play-overlay {
    opacity: 1;
}

.play-button {
    color: var(--text-light);
    font-size: 1.5rem;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.track-info p {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.track-stats {
    display: flex;
    gap: 20px;
}

.stat {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.track-waveform {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    width: 80px;
}

.waveform-bar {
    width: 8px;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.playlist-item:hover .waveform-bar {
    animation: waveform-dance 1s ease-in-out infinite;
}

@keyframes waveform-dance {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.player-controls {
    background: rgba(15, 23, 42, 0.8);
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
}

.main-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.control-button {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-button:hover {
    background: var(--secondary-blue);
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 20px var(--glow-blue);
}

.play-pause {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.progress-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-display {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-medium);
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-track {
    width: 100%;
    height: 100%;
    background: var(--border-color);
    border-radius: 3px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--accent-cyan);
    border-radius: 50%;
    border: 2px solid var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-handle:hover {
    background: var(--neon-green);
    box-shadow: 0 0 15px var(--glow-green);
}

.additional-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-bar {
    width: 80px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-track {
    width: 100%;
    height: 100%;
    background: var(--border-color);
    border-radius: 2px;
}

.volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Process Section */
#process {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    z-index: 1;
}

.track-line {
    width: 100%;
    height: 100%;
    background: var(--border-color);
    border-radius: 2px;
}

.track-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: progress-flow 3s ease-in-out infinite;
}

@keyframes progress-flow {
    0%, 100% { height: 60%; }
    50% { height: 80%; }
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-marker {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 40px;
    flex-shrink: 0;
}

.marker-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.marker-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: 0 4px 20px var(--glow-blue);
}

.step-content {
    flex: 1;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail {
    background: rgba(16, 185, 129, 0.2);
    color: var(--neon-green);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Team Section */
#team {
    background: var(--darker-bg);
}

.team-studio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    transition: all 0.3s ease;
}

.member-booth {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.member-booth:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px var(--glow-cyan);
}

.booth-window {
    background: rgba(15, 23, 42, 0.9);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    box-shadow: 0 4px 20px var(--glow-blue);
}

.avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
}

.avatar-status.online {
    background: var(--neon-green);
    animation: status-pulse 2s ease-in-out infinite;
}

.avatar-status.busy {
    background: #ef4444;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.booth-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.control-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.control-light.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.member-role {
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background: rgba(59, 130, 246, 0.2);
    color: var(--secondary-blue);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.contact-studio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.recording-booth {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.booth-header {
    background: rgba(15, 23, 42, 0.9);
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
}

.recording-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rec-light {
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: rec-blink 1s ease-in-out infinite;
}

@keyframes rec-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.recording-indicator span {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--neon-green);
    font-size: 0.9rem;
}

.contact-form {
    padding: 40px 30px;
}

.form-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.form-channel {
    position: relative;
}

.form-channel.full-width {
    grid-column: 1 / -1;
}

.channel-label {
    display: block;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.audio-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.audio-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.audio-input::placeholder {
    color: var(--text-medium);
}

.input-meter {
    display: flex;
    gap: 2px;
    margin-top: 8px;
    height: 4px;
}

.meter-bar {
    flex: 1;
    background: var(--border-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.audio-input:focus ~ .input-meter .meter-bar:nth-child(1),
.audio-input:focus ~ .input-meter .meter-bar:nth-child(2) {
    background: var(--neon-green);
}

.audio-input:valid ~ .input-meter .meter-bar:nth-child(1),
.audio-input:valid ~ .input-meter .meter-bar:nth-child(2),
.audio-input:valid ~ .input-meter .meter-bar:nth-child(3) {
    background: var(--accent-cyan);
}

.form-controls {
    text-align: center;
}

.record-button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.record-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-blue);
}

.button-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: rec-pulse 1s ease-in-out infinite;
}

@keyframes rec-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.button-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.wave-line {
    width: 3px;
    background: currentColor;
    border-radius: 1px;
    animation: button-wave 1s ease-in-out infinite;
}

.wave-line:nth-child(1) { height: 8px; animation-delay: 0s; }
.wave-line:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.wave-line:nth-child(3) { height: 12px; animation-delay: 0.4s; }

@keyframes button-wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-panel {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.panel-header {
    background: rgba(15, 23, 42, 0.9);
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

.status-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-green);
    animation: status-glow 2s ease-in-out infinite;
}

@keyframes status-glow {
    0%, 100% { box-shadow: 0 0 5px var(--glow-green); }
    50% { box-shadow: 0 0 15px var(--glow-green); }
}

.info-content {
    padding: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

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

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-medium);
    line-height: 1.5;
}

.studio-visualization {
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
}

.viz-header {
    background: rgba(30, 41, 59, 0.8);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.viz-content {
    padding: 30px 20px;
    text-align: center;
}

.frequency-display {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 80px;
    margin-bottom: 20px;
}

.freq-bar {
    width: 8px;
    background: var(--gradient-accent);
    border-radius: 4px 4px 0 0;
    animation: freq-dance 1.5s ease-in-out infinite;
}

.freq-bar:nth-child(1) { animation-delay: 0s; }
.freq-bar:nth-child(2) { animation-delay: 0.1s; }
.freq-bar:nth-child(3) { animation-delay: 0.2s; }
.freq-bar:nth-child(4) { animation-delay: 0.3s; }
.freq-bar:nth-child(5) { animation-delay: 0.4s; }
.freq-bar:nth-child(6) { animation-delay: 0.5s; }
.freq-bar:nth-child(7) { animation-delay: 0.6s; }
.freq-bar:nth-child(8) { animation-delay: 0.7s; }

@keyframes freq-dance {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

.viz-status {
    color: var(--neon-green);
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 10px 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .tab-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-label {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-mixer {
        grid-template-columns: 1fr;
    }

    .contact-studio {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-channels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-studio {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
    }

    .process-step:nth-child(even) {
        flex-direction: column !important;
    }

    .step-marker {
        margin: 20px 0;
    }

    .timeline-track {
        left: 40px;
        transform: none;
    }

    .section {
        padding: 60px 0;
    }

    main {
        padding-top: 120px;
    }
}

/* 404 Page Styles */
body.error-page {
    background-color: var(--darker-bg);
    color: var(--text-light);
    font-family: 'Orbitron', 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.error-container {
    max-width: 600px;
    width: 100%;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--glow-cyan);
    opacity: 0.2;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.btn-primary:hover::before {
    opacity: 0.5;
}

/* Animated bars */
.error-visualizer {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.error-waves {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 60px;
}

.error-bar {
    width: 6px;
    background: var(--accent-cyan);
    animation: wavePulse 1s infinite ease-in-out;
    animation-delay: var(--delay);
    border-radius: 4px;
}

@keyframes wavePulse {
    0%, 100% {
        height: 20%;
        opacity: 0.4;
    }
    50% {
        height: 100%;
        opacity: 1;
    }
}
