:root {
--bg: #080b12;
--bg2: #0d1220;
--bg3: #111827;
--card: #131c2e;
--card2: #1a2540;
--accent: #00e5ff;
--accent2: #7c3aed;
--accent3: #f59e0b;
--green: #22d3a5;
--red: #f43f5e;
--text: #e2e8f0;
--text2: #94a3b8;
--text3: #64748b;
--border: rgba(0,229,255,0.12);
--border2: rgba(124,58,237,0.2);
--glow: 0 0 20px rgba(0,229,255,0.3);
--glow2: 0 0 30px rgba(124,58,237,0.4);
--radius: 12px;
--radius2: 20px;
--nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
font-family: 'Exo 2', sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
overflow-x: hidden;
line-height: 1.6;
}

/* ===== TOOL BAR ===== */
.tool-bar {
background: linear-gradient(90deg,#0d1220,#111827);
border-bottom: 1px solid var(--border);
padding: 8px 0;
overflow: hidden;
}
.tool-bar-inner {
display: flex;
gap: 8px;
padding: 0 16px;
overflow-x: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.tool-bar-inner::-webkit-scrollbar { display: none; }
.tool-bar-inner a {
white-space: nowrap;
font-size: 11.5px;
color: var(--text2);
text-decoration: none;
padding: 4px 12px;
border-radius: 20px;
border: 1px solid var(--border);
transition: all .25s;
flex-shrink: 0;
}
.tool-bar-inner a:hover, .tool-bar-inner a.active {
color: var(--accent);
border-color: var(--accent);
background: rgba(0,229,255,.06);
box-shadow: var(--glow);
}

/* ===== NAV ===== */
nav {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(8,11,18,.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
height: var(--nav-h);
}
.nav-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 16px;
padding: 0 20px;
height: 100%;
}
.logo {
font-family: 'Orbitron', monospace;
font-size: 18px;
font-weight: 900;
color: var(--accent);
text-decoration: none;
letter-spacing: 1px;
text-shadow: var(--glow);
white-space: nowrap;
flex-shrink: 0;
}
.logo span { color: var(--text2); font-weight: 400; }
.nav-links {
display: flex;
align-items: center;
gap: 4px;
list-style: none;
margin-left: auto;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
display: flex;
align-items: center;
gap: 5px;
font-size: 13px;
color: var(--text2);
text-decoration: none;
padding: 8px 12px;
border-radius: 8px;
transition: all .2s;
white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--accent); background: rgba(0,229,255,.06); }
.nav-links > li > a svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
position: absolute;
top: calc(100% + 8px);
right: 0;
background: var(--bg2);
border: 1px solid var(--border);
border-radius: var(--radius);
min-width: 480px;
padding: 16px;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all .25s;
box-shadow: 0 20px 60px rgba(0,0,0,.6);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4px;
z-index:2000;	
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
font-size: 12px;
color: var(--text2);
text-decoration: none;
padding: 7px 10px;
border-radius: 6px;
display: block;
transition: all .2s;
}
.dropdown a:hover { color: var(--accent); background: rgba(0,229,255,.07); }
.dropdown-title {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text3);
padding: 4px 10px 2px;
grid-column: 1/-1;
font-weight: 600;
}

.nav-cta {
background: var(--accent);
color: #000 !important;
font-weight: 700;
padding: 8px 16px !important;
border-radius: 8px !important;
}
.nav-cta:hover { background: #00b8cc !important; color: #000 !important; }

.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 8px;
margin-left: auto;
background: none;
border: none;
}
.hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--text2);
border-radius: 2px;
transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
display: none;
position: fixed;
top: var(--nav-h);
left: 0; right: 0;
background: var(--bg2);
border-bottom: 1px solid var(--border);
z-index: 999;
padding: 16px 20px;
max-height: calc(100vh - var(--nav-h));
overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
display: block;
font-size: 13px;
color: var(--text2);
text-decoration: none;
padding: 10px 12px;
border-radius: 8px;
transition: all .2s;
border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-menu a:hover { color: var(--accent); background: rgba(0,229,255,.06); }
.mobile-section-title {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text3);
padding: 12px 12px 4px;
font-weight: 700;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
background: var(--bg2);
border-bottom: 1px solid rgba(255,255,255,.04);
padding: 10px 20px;
}
.breadcrumb {
max-width: 1280px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 8px;
font-size: 12.5px;
color: var(--text3);
flex-wrap: wrap;
position:relative;
z-index:1;	
}
.breadcrumb a { color: var(--text2); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text3); font-size: 10px; }
.breadcrumb .current { color: var(--accent); }

/* ===== HERO ===== */
.hero {
position: relative;
padding: 80px 20px 60px;
text-align: center;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0,229,255,.07) 0%, transparent 70%),
radial-gradient(ellipse 50% 50% at 80% 80%, rgba(124,58,237,.06) 0%, transparent 70%);
pointer-events: none;
}
.hero-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(0,229,255,.08);
border: 1px solid rgba(0,229,255,.2);
border-radius: 20px;
padding: 6px 16px;
font-size: 12px;
color: var(--accent);
margin-bottom: 24px;
font-weight: 600;
letter-spacing: .5px;
}
.hero h1 {
font-family: 'Orbitron', monospace;
font-size: clamp(28px, 5vw, 58px);
font-weight: 900;
line-height: 1.1;
margin-bottom: 20px;
letter-spacing: -1px;
}
.hero h1 .hl { color: var(--accent); text-shadow: var(--glow); }
.hero p.subtitle {
font-size: clamp(14px, 2vw, 18px);
color: var(--text2);
max-width: 640px;
margin: 0 auto 36px;
font-weight: 300;
}
.hero-btns {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 10px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all .25s;
text-decoration: none;
border: none;
font-family: 'Exo 2', sans-serif;
}
.btn-primary {
background: var(--accent);
color: #000;
box-shadow: 0 4px 20px rgba(0,229,255,.35);
}
.btn-primary:hover { background: #00b8cc; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,255,.5); }
.btn-secondary {
background: transparent;
color: var(--text);
border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-purple {
background: var(--accent2);
color: #fff;
box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-purple:hover { background: #6d28d9; transform: translateY(-2px); }

/* ===== MAIN CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--accent);
font-weight: 700;
margin-bottom: 12px;
}
.section-title {
font-family: 'Orbitron', monospace;
font-size: clamp(22px, 3.5vw, 36px);
font-weight: 700;
margin-bottom: 14px;
line-height: 1.2;
}
.section-sub { color: var(--text2); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* ===== EQ APP ===== */
#eq-app {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: var(--radius2);
overflow: hidden;
box-shadow: 0 0 80px rgba(0,229,255,.06), 0 40px 80px rgba(0,0,0,.4);
}
.eq-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
background: var(--bg3);
border-bottom: 1px solid var(--border);
flex-wrap: wrap;
gap: 12px;
}
.eq-title {
font-family: 'Orbitron', monospace;
font-size: 14px;
font-weight: 700;
color: var(--accent);
display: flex;
align-items: center;
gap: 8px;
}
.eq-title .dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--green);
box-shadow: 0 0 8px var(--green);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%,100% { opacity: 1; }
50% { opacity: .4; }
}

/* File upload */
.upload-zone {
padding: 40px 20px;
text-align: center;
border: 2px dashed var(--border);
border-radius: var(--radius);
margin: 20px;
cursor: pointer;
transition: all .3s;
position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
border-color: var(--accent);
background: rgba(0,229,255,.04);
}
.upload-zone input[type=file] {
position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-icon {
font-size: 40px;
margin-bottom: 12px;
display: block;
}
.upload-zone h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.upload-zone p { font-size: 13px; color: var(--text3); }
.upload-zone .supported { font-size: 11px; color: var(--text3); margin-top: 8px; }

/* Player Controls */
.player-bar {
display: none;
align-items: center;
gap: 12px;
padding: 12px 20px;
background: var(--bg3);
border-bottom: 1px solid var(--border);
flex-wrap: wrap;
}
.player-bar.visible { display: flex; }
.track-info { flex: 1; min-width: 120px; }
.track-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.track-duration { font-size: 11px; color: var(--text3); }
.transport { display: flex; align-items: center; gap: 8px; }
.transport-btn {
width: 36px; height: 36px;
border-radius: 50%;
border: 1px solid var(--border);
background: var(--card2);
color: var(--text2);
cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: all .2s;
font-size: 14px;
flex-shrink: 0;
}
.transport-btn:hover { border-color: var(--accent); color: var(--accent); }
.transport-btn.play-btn {
width: 44px; height: 44px;
background: var(--accent);
color: #000;
border-color: var(--accent);
font-size: 16px;
}
.transport-btn.play-btn:hover { background: #00b8cc; }

.progress-wrap {
flex: 1;
display: flex;
align-items: center;
gap: 8px;
min-width: 120px;
}
.progress-bar-outer {
flex: 1;
height: 6px;
background: var(--bg3);
border-radius: 3px;
cursor: pointer;
position: relative;
overflow: visible;
}
.progress-bar-fill {
height: 100%;
background: linear-gradient(90deg, var(--accent2), var(--accent));
border-radius: 3px;
transition: width .1s;
position: relative;
}
.progress-bar-fill::after {
content: '';
position: absolute;
right: -6px;
top: 50%;
transform: translateY(-50%);
width: 12px; height: 12px;
background: var(--accent);
border-radius: 50%;
border: 2px solid var(--bg);
opacity: 0;
transition: opacity .2s;
}
.progress-bar-outer:hover .progress-bar-fill::after { opacity: 1; }
.time-label { font-size: 11px; color: var(--text3); white-space: nowrap; min-width: 40px; }

.vol-wrap { display: flex; align-items: center; gap: 6px; min-width: 100px; }
.vol-icon { font-size: 14px; color: var(--text3); cursor: pointer; }

/* Visualizer Canvas */
.visualizer-wrap {
padding: 0 20px 0;
position: relative;
}
#vis-canvas {
width: 100%;
height: 120px;
border-radius: var(--radius);
background: var(--bg3);
border: 1px solid var(--border);
display: block;
}
.vis-mode-bar {
display: flex;
gap: 6px;
padding: 10px 20px 0;
flex-wrap: wrap;
}
.vis-btn {
font-size: 11px;
padding: 4px 12px;
border-radius: 20px;
border: 1px solid var(--border);
background: transparent;
color: var(--text3);
cursor: pointer;
transition: all .2s;
font-family: 'Exo 2', sans-serif;
}
.vis-btn.active, .vis-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,255,.06); }

/* Waveform */
#waveform-canvas {
width: 100%;
height: 70px;
border-radius: var(--radius);
background: var(--bg3);
border: 1px solid var(--border);
display: block;
margin: 8px 20px 0;
width: calc(100% - 40px);
}

/* EQ Bands */
.eq-bands-wrap {
padding: 20px;
}
.eq-bands-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
flex-wrap: wrap;
gap: 10px;
}
.eq-bands-title {
font-family: 'Orbitron', monospace;
font-size: 12px;
color: var(--text2);
font-weight: 600;
letter-spacing: 1px;
}
.eq-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.eq-btn {
font-size: 11px;
padding: 5px 12px;
border-radius: 6px;
border: 1px solid var(--border);
background: var(--card);
color: var(--text2);
cursor: pointer;
transition: all .2s;
font-family: 'Exo 2', sans-serif;
}
.eq-btn:hover { border-color: var(--accent); color: var(--accent); }
.eq-btn.danger:hover { border-color: var(--red); color: var(--red); }

.bands-container {
display: grid;
grid-template-columns: repeat(10, 1fr);
gap: 8px;
background: var(--bg3);
padding: 16px 12px;
border-radius: var(--radius);
border: 1px solid var(--border);
}
.band-col {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
}
.band-db {
font-size: 10px;
color: var(--accent);
font-weight: 700;
height: 16px;
font-family: 'Orbitron', monospace;
text-align: center;
}
.band-slider-wrap {
height: 160px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.band-slider {
-webkit-appearance: none;
appearance: none;
writing-mode: vertical-lr;
direction: rtl;
width: 160px;
height: 28px;
background: transparent;
cursor: pointer;
transform: rotate(0deg);
}
/* Vertical slider via transform trick */
.band-slider-wrap .vs {
writing-mode: vertical-lr;
-webkit-appearance: none;
appearance: none;
width: 28px;
height: 150px;
background: transparent;
cursor: pointer;
}
.band-slider-wrap .vs::-webkit-slider-runnable-track {
width: 4px;
height: 150px;
background: linear-gradient(to bottom, var(--bg3) 0%, var(--border) 100%);
border-radius: 2px;
}
.band-slider-wrap .vs::-webkit-slider-thumb {
-webkit-appearance: none;
width: 18px; height: 18px;
border-radius: 50%;
background: var(--accent);
cursor: pointer;
border: 2px solid var(--bg);
box-shadow: 0 0 8px rgba(0,229,255,.5);
transition: box-shadow .2s;
margin-left: -7px;
}
.band-slider-wrap .vs::-webkit-slider-thumb:hover {
box-shadow: 0 0 16px rgba(0,229,255,.8);
}
.band-slider-wrap .vs::-moz-range-track {
width: 4px; height: 150px;
background: var(--border);
border-radius: 2px;
}
.band-slider-wrap .vs::-moz-range-thumb {
width: 18px; height: 18px;
border-radius: 50%;
background: var(--accent);
border: 2px solid var(--bg);
cursor: pointer;
}
.band-freq {
font-size: 9.5px;
color: var(--text3);
text-align: center;
font-weight: 600;
letter-spacing: .3px;
}

/* Center line indicator */
.bands-container { position: relative; }

/* Presets */
.presets-wrap {
padding: 0 20px 16px;
}
.presets-title {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text3);
font-weight: 700;
margin-bottom: 10px;
}
.presets-grid {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.preset-chip {
font-size: 12px;
padding: 6px 14px;
border-radius: 20px;
border: 1px solid var(--border);
background: var(--card);
color: var(--text2);
cursor: pointer;
transition: all .2s;
font-family: 'Exo 2', sans-serif;
}
.preset-chip:hover, .preset-chip.active {
border-color: var(--accent);
color: var(--accent);
background: rgba(0,229,255,.06);
}

/* Advanced Controls */
.adv-controls {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 16px;
padding: 0 20px 20px;
}
.adv-card {
background: var(--bg3);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 14px;
}
.adv-card h4 {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text3);
font-weight: 700;
margin-bottom: 12px;
}
.knob-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.knob-label { font-size: 12px; color: var(--text2); flex: 1; }
.knob-val { font-size: 11px; color: var(--accent); font-family: 'Orbitron', monospace; min-width: 36px; text-align: right; }
.range-input {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 4px;
border-radius: 2px;
background: var(--border);
outline: none;
cursor: pointer;
}
.range-input::-webkit-slider-thumb {
-webkit-appearance: none;
width: 14px; height: 14px;
border-radius: 50%;
background: var(--accent2);
border: 2px solid var(--bg);
cursor: pointer;
box-shadow: 0 0 6px rgba(124,58,237,.5);
}
.range-input::-moz-range-thumb {
width: 14px; height: 14px;
border-radius: 50%;
background: var(--accent2);
border: 2px solid var(--bg);
cursor: pointer;
}

/* Toggle switch */
.toggle-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.toggle-label { font-size: 12px; color: var(--text2); }
.toggle {
position: relative;
width: 40px; height: 22px;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.slider-toggle {
position: absolute; inset: 0;
background: var(--border);
border-radius: 11px;
cursor: pointer;
transition: .3s;
}
.slider-toggle::before {
content: '';
position: absolute;
left: 3px; top: 3px;
width: 16px; height: 16px;
border-radius: 50%;
background: var(--text3);
transition: .3s;
}
.toggle input:checked + .slider-toggle { background: var(--accent2); }
.toggle input:checked + .slider-toggle::before {
transform: translateX(18px);
background: #fff;
}

/* Select */
.eq-select {
width: 100%;
background: var(--card);
border: 1px solid var(--border);
border-radius: 6px;
color: var(--text2);
font-size: 12px;
padding: 7px 10px;
cursor: pointer;
outline: none;
font-family: 'Exo 2', sans-serif;
}
.eq-select:focus { border-color: var(--accent); }

/* Export */
.export-bar {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 20px;
background: var(--bg3);
border-top: 1px solid var(--border);
flex-wrap: wrap;
}
.export-bar .label { font-size: 12px; color: var(--text3); flex: 1; }
.status-pill {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
padding: 4px 12px;
border-radius: 20px;
background: rgba(34,211,165,.1);
color: var(--green);
border: 1px solid rgba(34,211,165,.2);
}

/* Error / validation toast */
.toast-wrap {
position: fixed;
bottom: 80px;
right: 20px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 8px;
pointer-events: none;
}
.toast {
padding: 10px 16px;
border-radius: 8px;
font-size: 13px;
max-width: 300px;
pointer-events: auto;
animation: slideInRight .3s ease;
backdrop-filter: blur(8px);
}
.toast.error { background: rgba(244,63,94,.15); border: 1px solid rgba(244,63,94,.3); color: #f43f5e; }
.toast.success { background: rgba(34,211,165,.15); border: 1px solid rgba(34,211,165,.3); color: var(--green); }
.toast.info { background: rgba(0,229,255,.1); border: 1px solid rgba(0,229,255,.2); color: var(--accent); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===== FEATURES ===== */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.feature-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius2);
padding: 28px 24px;
transition: all .3s;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent2), var(--accent));
opacity: 0;
transition: opacity .3s;
}
.feature-card:hover { border-color: rgba(0,229,255,.25); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.3), var(--glow); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
width: 48px; height: 48px;
border-radius: 12px;
background: linear-gradient(135deg, rgba(0,229,255,.15), rgba(124,58,237,.15));
display: flex; align-items: center; justify-content: center;
font-size: 22px;
margin-bottom: 16px;
border: 1px solid var(--border);
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 13px; color: var(--text3); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px;
}
.step-card {
text-align: center;
padding: 32px 20px;
background: var(--card);
border-radius: var(--radius2);
border: 1px solid var(--border);
position: relative;
transition: all .3s;
}
.step-card:hover { border-color: rgba(0,229,255,.2); transform: translateY(-4px); }
.step-num {
width: 52px; height: 52px;
border-radius: 50%;
background: linear-gradient(135deg, var(--accent2), var(--accent));
display: flex; align-items: center; justify-content: center;
font-family: 'Orbitron', monospace;
font-size: 18px;
font-weight: 900;
margin: 0 auto 16px;
box-shadow: 0 8px 24px rgba(0,229,255,.3);
}
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text3); }

/* ===== SEO ARTICLE ===== */
.article-wrap {
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius2);
padding: 36px;
}
.article-wrap h2 {
font-family: 'Orbitron', monospace;
font-size: 20px;
font-weight: 700;
margin-bottom: 16px;
color: var(--accent);
}
.article-wrap p { font-size: 14px; color: var(--text2); margin-bottom: 14px; line-height: 1.8; }
.article-wrap ul { padding-left: 20px; color: var(--text2); font-size: 14px; }
.article-wrap li { margin-bottom: 6px; line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
border: 1px solid var(--border);
border-radius: var(--radius);
margin-bottom: 12px;
overflow: hidden;
transition: border-color .2s;
}
.faq-item.open { border-color: rgba(0,229,255,.25); }
.faq-q {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
color: var(--text);
background: var(--card);
transition: background .2s;
gap: 12px;
}
.faq-q:hover { background: var(--card2); }
.faq-q svg {
width: 18px; height: 18px;
color: var(--text3);
flex-shrink: 0;
transition: transform .3s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--accent); }
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height .4s ease;
background: var(--bg3);
}
.faq-a p {
padding: 16px 20px;
font-size: 13.5px;
color: var(--text2);
line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ===== CTA ===== */
.cta-section {
background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(0,229,255,.06));
border: 1px solid var(--border2);
border-radius: var(--radius2);
padding: 56px 40px;
text-align: center;
}
.cta-section h2 {
font-family: 'Orbitron', monospace;
font-size: clamp(20px, 3vw, 32px);
font-weight: 900;
margin-bottom: 14px;
}
.cta-section p { color: var(--text2); margin-bottom: 28px; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
background: var(--bg2);
border-top: 1px solid var(--border);
padding: 48px 20px 24px;
margin-top: 80px;
}
.footer-inner {
max-width: 1280px;
margin: 0 auto;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr repeat(2, 1fr);
gap: 40px;
margin-bottom: 36px;
}
.footer-brand p { font-size: 13px; color: var(--text3); margin-top: 12px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
font-family: 'Orbitron', monospace;
font-size: 11px;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 16px;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.footer-links a, .footer-col a {
font-size: 12px;
color: var(--text3);
text-decoration: none;
padding: 5px 0;
display: block;
transition: color .2s;
}
.footer-links a:hover, .footer-col a:hover { color: var(--accent); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,.06);
padding-top: 24px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: var(--text3); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--accent); }
.disclaimer {
font-size: 11px;
color: var(--text3);
border-top: 1px solid rgba(255,255,255,.04);
padding-top: 16px;
margin-top: 16px;
line-height: 1.7;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
position: fixed;
bottom: 0; left: 0; right: 0;
z-index: 9990;
background: var(--bg2);
border-top: 1px solid var(--border);
padding: 14px 20px;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
box-shadow: 0 -8px 30px rgba(0,0,0,.4);
}
.cookie-banner p { font-size: 13px; color: var(--text2); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--accent); }
.cookie-banner-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
font-size: 12px;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
font-family: 'Exo 2', sans-serif;
font-weight: 600;
transition: all .2s;
border: none;
}
.cookie-accept { background: var(--accent); color: #000; }
.cookie-accept:hover { background: #00b8cc; }
.cookie-dismiss { background: var(--card); color: var(--text2); border: 1px solid var(--border); }
.cookie-dismiss:hover { border-color: var(--accent); color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.nav-links { display: none; }
.hamburger { display: flex; }
.bands-container { grid-template-columns: repeat(5, 1fr); }
.footer-grid { grid-template-columns: 1fr; gap: 28px; }
.adv-controls { grid-template-columns: 1fr 1fr; }
.cta-section { padding: 36px 20px; }
}
@media (max-width: 480px) {
.bands-container { grid-template-columns: repeat(5, 1fr); gap: 4px; }
.band-slider-wrap .vs { height: 110px; }
.band-slider-wrap .vs::-webkit-slider-runnable-track { height: 110px; }
.adv-controls { grid-template-columns: 1fr; }
.hero { padding: 50px 16px 40px; }
.export-bar { flex-direction: column; align-items: flex-start; }
.article-wrap { padding: 20px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Utility */
.hidden { display: none !important; }
.mt-4 { margin-top: 16px; }
.text-accent { color: var(--accent); }
.bg-section-alt { background: var(--bg2); }

/* Recording pulse */
.rec-dot {
width: 10px; height: 10px;
border-radius: 50%;
background: var(--red);
box-shadow: 0 0 8px var(--red);
display: inline-block;
animation: pulse 1s infinite;
}

/* Meter bars */
.meter-bars {
display: flex;
align-items: flex-end;
gap: 2px;
height: 30px;
}
.meter-bar {
flex: 1;
border-radius: 2px 2px 0 0;
transition: height .08s;
background: linear-gradient(to top, var(--green), var(--accent));
min-height: 2px;
}

/* Scrolling announcement */
.marquee-wrap { overflow: hidden; background: rgba(0,229,255,.05); border-bottom: 1px solid var(--border); padding: 6px 0; }
.marquee-inner {
display: flex;
gap: 32px;
animation: marquee 30s linear infinite;
white-space: nowrap;
}
.marquee-inner span { font-size: 11.5px; color: var(--text3); }
.marquee-inner span b { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
