@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #0d0d14;
    --bg-secondary: #13131e;
    --bg-card: #181828;
    --bg-card-hover: #1e1e30;
    --accent: #7c3aed;
    --accent-light: #a855f7;
    --accent-glow: rgba(124, 58, 237, 0.3);
    --accent-dim: rgba(124, 58, 237, 0.15);
    --text-primary: #f0f0f8;
    --text-secondary: #8888aa;
    --text-muted: #555570;
    --border: #252535;
    --border-accent: rgba(124, 58, 237, 0.4);
    --wave-1: #7c3aed;
    --wave-2: #a855f7;
    --wave-3: #c084fc;
    --success: #22c55e;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-accent: 0 4px 32px rgba(124, 58, 237, 0.25);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--accent-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wave-3); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--text-primary);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 13, 20, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.logo-waves span {
    width: 3px;
    background: #fff;
    border-radius: 2px;
    animation: logoWave 1.4s ease-in-out infinite;
}
.logo-waves span:nth-child(1) { height: 8px; animation-delay: 0s; }
.logo-waves span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.logo-waves span:nth-child(3) { height: 12px; animation-delay: 0.4s; }
.logo-waves span:nth-child(4) { height: 18px; animation-delay: 0.1s; }
.logo-waves span:nth-child(5) { height: 10px; animation-delay: 0.3s; }

@keyframes logoWave {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.logo-text span { color: var(--accent-light); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-menu .nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 7px 18px;
    margin-left: 8px;
}

.nav-menu .nav-cta:hover {
    background: var(--accent-light);
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 220px;
    padding: 8px;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 0.85rem;
    border-radius: 4px;
    color: var(--text-secondary);
}

.nav-dropdown-menu a:hover { color: var(--text-primary); background: var(--bg-card-hover); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== EQUALIZER DECORATION ===== */
.eq-decoration {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.eq-decoration span {
    width: 4px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
    animation: eqBar 1.8s ease-in-out infinite;
    opacity: 0.7;
}

.eq-decoration span:nth-child(1) { height: 60%; animation-delay: 0s; }
.eq-decoration span:nth-child(2) { height: 90%; animation-delay: 0.15s; }
.eq-decoration span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.eq-decoration span:nth-child(4) { height: 75%; animation-delay: 0.45s; }
.eq-decoration span:nth-child(5) { height: 55%; animation-delay: 0.6s; }
.eq-decoration span:nth-child(6) { height: 95%; animation-delay: 0.75s; }
.eq-decoration span:nth-child(7) { height: 40%; animation-delay: 0.9s; }

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,20,0.97) 40%, rgba(124,58,237,0.12) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-eyebrow-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-light);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== WAVE VISUALIZER ===== */
.wave-visualizer {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 64px;
    margin: 24px 0;
}

.wave-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 3px;
    opacity: 0.6;
    animation: wavePulse 2s ease-in-out infinite;
    max-width: 8px;
}

@keyframes wavePulse {
    0%, 100% { transform: scaleY(0.2); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 0.8; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
}

.btn-outline:hover {
    background: var(--accent-dim);
    color: var(--text-primary);
    border-color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.btn-sm { padding: 8px 18px; font-size: 0.825rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ===== SECTION STRUCTURE ===== */
.section { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 120px 0; }
.section--dark { background: var(--bg-secondary); }
.section--card { background: var(--bg-card); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.section-eyebrow-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-light);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center .section-subtitle { margin: 0 auto; }

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-body { padding: 24px; }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--accent-dim);
    color: var(--accent-light);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.tag:hover { background: var(--accent); color: #fff; }

.card-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-title a { color: var(--text-primary); text-decoration: none; }
.card-title a:hover { color: var(--accent-light); }

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.read-more::after { content: '→'; transition: transform 0.2s; }
.read-more:hover::after { transform: translateX(4px); }
.read-more:hover { color: var(--wave-3); }

/* ===== PODCAST CARD ===== */
.podcast-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.podcast-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.podcast-card-cover {
    width: 120px;
    min-height: 120px;
    object-fit: cover;
}

.podcast-card-body { padding: 20px; }

.podcast-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.podcast-card-show {
    font-size: 0.8rem;
    color: var(--accent-light);
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.podcast-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ===== RATING ===== */
.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-star { color: #f59e0b; font-size: 0.9rem; }
.rating-value { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-left: 6px; }

/* ===== AUDIO PLAYER (DECORATIVE) ===== */
.audio-player {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.audio-play-btn {
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    flex-shrink: 0;
}

.audio-play-btn:hover { background: var(--accent-light); transform: scale(1.05); }

.audio-play-btn svg { fill: #fff; width: 16px; height: 16px; margin-left: 2px; }

.audio-track { flex: 1; }

.audio-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.audio-progress {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 6px;
}

.audio-progress-bar {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== GRIDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }

/* ===== FEATURE LIST ===== */
.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.feature-item:hover { border-color: var(--border-accent); }

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-text p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 32px; }

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar-widget-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.sidebar-widget-body { padding: 20px; }

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-list li a { font-size: 0.875rem; color: var(--text-secondary); }
.sidebar-list li a:hover { color: var(--accent-light); }

.sidebar-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 20px;
}

/* ===== EPISODE LIST ===== */
.episode-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.episode-item:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

.episode-num {
    width: 60px;
    height: 60px;
    background: var(--accent-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-light);
}

.episode-title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.episode-meta { font-size: 0.8rem; color: var(--text-muted); }
.episode-duration { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--text-muted); }

/* ===== STATS ROW ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-item {
    background: var(--bg-card);
    padding: 32px 24px;
    text-align: center;
}

.stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-light);
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.825rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== CATEGORIES GRID ===== */
.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.category-pill:hover,
.category-pill.active {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent-light);
}

.categories-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }
select.form-control option { background: var(--bg-secondary); }

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

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 20px;
    text-align: center;
}

.success-msg.show { display: block; }
.success-msg h4 { color: var(--success); font-size: 1.1rem; margin-bottom: 8px; }
.success-msg p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 140px 0 72px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 600px;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(124,58,237,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    max-width: 700px;
}

.page-hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb-sep { color: var(--text-muted); }

/* ===== ARTICLE CONTENT ===== */
.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 36px 0 14px;
}

.article-content p { margin-bottom: 20px; }

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; }

.article-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    background: var(--accent-dim);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-content strong { color: var(--text-primary); }

.article-content .highlight-box {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 28px 0;
}

.article-content code {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg-card);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--accent-light);
}

/* ===== AUTHOR CARD ===== */
.author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-accent);
}

.author-info h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.author-role { font-size: 0.8rem; color: var(--accent-light); margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.author-bio { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== TESTIMONIALS / REVIEWS ===== */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-top: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.review-author-name { font-weight: 600; font-size: 0.9rem; }
.review-author-title { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SEARCH ===== */
.search-box {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-box:focus-within { border-color: var(--accent); }

.search-box input {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-box input::placeholder { color: var(--text-muted); }

.search-box button {
    background: var(--accent);
    border: none;
    padding: 14px 22px;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.search-box button:hover { background: var(--accent-light); }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.page-link:hover,
.page-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.page-link.prev-next { width: auto; padding: 0 14px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124,58,237,0.1) 100%);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.newsletter-section h2 { font-size: 1.8rem; margin-bottom: 12px; }
.newsletter-section p { color: var(--text-secondary); margin-bottom: 28px; }

.newsletter-form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    gap: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 13px 18px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
    background: var(--accent);
    border: none;
    padding: 13px 22px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover { background: var(--accent-light); }

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.faq-question h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); }

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-light);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 0 0 22px;
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ===== TABLE ===== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    text-align: left;
    padding: 14px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-card-hover); }

/* ===== TAGS ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-text { font-size: 1.2rem; }
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }

.footer-contact-item {
    display: flex;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    align-items: flex-start;
}

.footer-contact-icon { color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--accent-light); }

.social-links { display: flex; gap: 10px; }

.social-link {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent-light);
}

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin: 48px 0 16px;
    color: var(--text-primary);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.policy-content h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--text-primary); }
.policy-content p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--accent-light); }
.policy-content a:hover { color: var(--wave-3); }

.policy-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
}

.policy-meta-sep { color: var(--border); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border-accent);
    padding: 20px 24px;
    display: none;
}

.cookie-banner.show { display: flex; }

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text { font-size: 0.875rem; color: var(--text-secondary); }
.cookie-text a { color: var(--accent-light); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== MAP / CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--accent-light);
}

.contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; }
.contact-info-value a { color: var(--text-primary); }
.contact-info-value a:hover { color: var(--accent-light); }

/* ===== SITEMAP ===== */
.sitemap-section { margin-bottom: 48px; }
.sitemap-section h2 { font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sitemap-links { display: flex; flex-direction: column; gap: 8px; }
.sitemap-links a { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.sitemap-links a::before { content: '—'; color: var(--accent); font-size: 0.8rem; }
.sitemap-links a:hover { color: var(--accent-light); }

/* ===== 404 ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.error-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 24px;
}

.error-page h1 { font-size: 2rem; margin-bottom: 12px; }
.error-page p { color: var(--text-secondary); margin-bottom: 32px; max-width: 400px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE MENU ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: var(--radius);
    text-decoration: none;
}

.mobile-nav a:hover { background: var(--bg-card); color: var(--text-primary); }

/* ===== SEARCH FILTER TABS ===== */
.filter-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: fit-content;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--accent);
    color: #fff;
}

/* ===== PROGRESS BARS ===== */
.progress-item { margin-bottom: 16px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.825rem; color: var(--text-secondary); margin-bottom: 8px; }
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 3px; transition: width 1s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu, .nav-dropdown { display: none; }
    .hamburger { display: flex; }
    .grid-3, .grid-2, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .podcast-card { grid-template-columns: 1fr; }
    .podcast-card-cover { width: 100%; min-height: 200px; }
    .episode-item { grid-template-columns: 50px 1fr; }
    .episode-duration { display: none; }
    .newsletter-section { padding: 32px 20px; }
    .newsletter-form { flex-direction: column; border-radius: var(--radius); }
    .newsletter-form input { border-radius: var(--radius) var(--radius) 0 0; }
    .newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===== POLICY PAGES ===== */
.policy-hero {
    padding: 120px 0 56px;
    border-bottom: 1px solid var(--border);
}

.policy-hero-inner { max-width: 760px; }

.policy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}
.policy-breadcrumb a { color: var(--accent-light); }
.policy-breadcrumb a:hover { color: var(--wave-3); }
.policy-breadcrumb span { color: var(--text-muted); }

.policy-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.policy-meta {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: 'JetBrains Mono', monospace;
}

.policy-body { padding: 64px 0 96px; }

.policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: start;
}

/* TOC sidebar */
.policy-toc {
    position: sticky;
    top: 90px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
}

.policy-toc h3 {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 16px;
    font-weight: 600;
}

.policy-toc ul { display: flex; flex-direction: column; gap: 4px; }

.policy-toc a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 6px 10px;
    border-radius: 6px;
    line-height: 1.4;
    transition: background 0.2s, color 0.2s;
    font-family: 'Inter', sans-serif;
}

.policy-toc a:hover {
    background: var(--accent-dim);
    color: var(--accent-light);
}

/* Policy content */
.policy-content { min-width: 0; }

.policy-intro-box {
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-bottom: 40px;
}

.policy-intro-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.policy-intro-warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.06);
}

.policy-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.45rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    scroll-margin-top: 90px;
}

.policy-section h3 {
    font-size: 1.05rem;
    margin: 28px 0 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
    margin: 12px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-section ul li {
    color: var(--text-secondary);
    font-size: 0.93rem;
    padding-left: 20px;
    position: relative;
    line-height: 1.7;
}

.policy-section ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.policy-contact-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 16px;
}

.policy-contact-info p {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.policy-contact-info p:last-child { margin-bottom: 0; }

/* Cookie table */
.cookie-table-wrap {
    overflow-x: auto;
    margin: 16px 0 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.cookie-table thead { background: var(--bg-secondary); }

.cookie-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-table td {
    padding: 11px 16px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: top;
    line-height: 1.5;
}

.cookie-table td:first-child {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-light);
    white-space: nowrap;
}

.cookie-table tr:hover td { background: rgba(124,58,237,0.04); }

/* ===== SITEMAP PAGE ===== */
.sitemap-body { padding: 64px 0 96px; }

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.sitemap-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.sitemap-group:hover { border-color: var(--border-accent); }

.sitemap-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.sitemap-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}

.sitemap-group-header h2 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

.sitemap-links { padding: 12px 0; }

.sitemap-links li { border-bottom: 1px solid rgba(37,37,53,0.6); }
.sitemap-links li:last-child { border-bottom: none; }

.sitemap-links a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 24px;
    transition: background 0.2s;
    color: inherit;
}

.sitemap-links a:hover { background: var(--accent-dim); }

.sitemap-link-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-light);
}

.sitemap-links a:hover .sitemap-link-title { color: var(--wave-3); }

.sitemap-link-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.sitemap-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.sitemap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sitemap-stat .stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.sitemap-stat .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 60px;
    margin-bottom: 32px;
}

.error-waveform span {
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.4;
    animation: errorWave 1.8s ease-in-out infinite;
}

.error-waveform span:nth-child(1)  { height: 20px; animation-delay: 0s; }
.error-waveform span:nth-child(2)  { height: 35px; animation-delay: 0.1s; }
.error-waveform span:nth-child(3)  { height: 50px; animation-delay: 0.2s; }
.error-waveform span:nth-child(4)  { height: 40px; animation-delay: 0.3s; }
.error-waveform span:nth-child(5)  { height: 55px; animation-delay: 0.4s; }
.error-waveform span:nth-child(6)  { height: 30px; animation-delay: 0.5s; }
.error-waveform span:nth-child(7)  { height: 60px; animation-delay: 0.6s; }
.error-waveform span:nth-child(8)  { height: 45px; animation-delay: 0.5s; }
.error-waveform span:nth-child(9)  { height: 55px; animation-delay: 0.4s; }
.error-waveform span:nth-child(10) { height: 35px; animation-delay: 0.3s; }
.error-waveform span:nth-child(11) { height: 48px; animation-delay: 0.2s; }
.error-waveform span:nth-child(12) { height: 28px; animation-delay: 0.1s; }
.error-waveform span:nth-child(13) { height: 40px; animation-delay: 0s; }
.error-waveform span:nth-child(14) { height: 22px; animation-delay: 0.1s; }
.error-waveform span:nth-child(15) { height: 15px; animation-delay: 0.2s; }

@keyframes errorWave {
    0%, 100% { opacity: 0.15; transform: scaleY(0.6); }
    50%       { opacity: 0.7;  transform: scaleY(1); }
}

.error-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.error-page h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 16px;
}

.error-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.error-suggestions h3 {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 20px;
    font-weight: 500;
}

.error-suggestion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.error-suggestion-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.error-suggestion-card svg { color: var(--accent-light); flex-shrink: 0; }

.error-suggestion-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

/* ===== STANDALONE PAGE NAV TOGGLE ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: all 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 20, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px 24px;
        backdrop-filter: blur(20px);
    }

    .main-nav.open { display: block; }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 6px;
        font-size: 0.95rem;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: var(--accent-dim);
    }

    .main-nav .nav-cta {
        margin-top: 8px;
        text-align: center;
    }
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
    .policy-layout { grid-template-columns: 1fr; }
    .policy-toc { position: static; }
    .sitemap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .error-suggestion-grid { grid-template-columns: 1fr; }
    .cookie-table { font-size: 0.78rem; }
    .policy-hero { padding: 100px 0 40px; }
}
