@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg-deep: #0A0B0E;
    --bg-surface: rgba(20, 22, 28, 0.7);
    --bg-tertiary: #1A1C23;
    --accent: #00e5ff; /* Cyan */
    --accent-glow: rgba(0, 229, 255, 0.2);
    --accent-magenta: #ff00ff; /* Magenta */
    --magenta-glow: rgba(255, 0, 255, 0.2);
    --text-primary: #E0E2E8;
    --text-secondary: #8A8D98;
    --border-color: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
        url("../images/carbon-fibre.png");
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 80% 10%, rgba(0, 229, 255, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 2px,
            transparent 6px
        );
    mix-blend-mode: overlay;
}

/* --- Layout System --- */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2.5rem;
    position: sticky;
    top: 2rem;
    z-index: 1000;
    background: rgba(18, 19, 24, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-bottom: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-transform: uppercase;
}
.logo span { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }

/* --- Common Button & Nav Styles --- */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-link:hover { color: var(--accent); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.btn-secondary:hover { color: var(--accent); }

.badge {
    display:inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.badge-accent {
    background: rgba(0, 229, 255, 0.08);
    color: var(--accent);
}

/* --- Card base --- */
.panel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.55), inset 0 1px 1px rgba(255,255,255,0.08);
    backdrop-filter: blur(30px) saturate(140%);
    -webkit-backdrop-filter: blur(30px) saturate(140%);
}

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 0;
    min-height: 80vh;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}
.hero-text h1 span { color: var(--accent); display: block; }

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* --- HARDWARE MIXER UI --- */
.mixer-panel {
    background: #1a1b20; /* Deep chassis color */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 820px; /* Prevent clipping */
    box-shadow:
        0 40px 100px rgba(0,0,0,0.8),
        inset 0 1px 1px rgba(255,255,255,0.1), /* Top highlight */
        inset 0 0 0 1px #0a0a0c,      /* Dark rim */
        inset 0 0 30px rgba(0,0,0,0.9); /* Inner shadow depth */
    overflow: hidden;
    transform: perspective(1200px) rotateX(8deg);
    transition: transform 0.5s ease;
    border: 1px solid #000;
    clip-path: polygon(
        15px 0, calc(100% - 15px) 0,
        100% 15px, 100% calc(100% - 15px),
        calc(100% - 15px) 100%, 15px 100%,
        0 calc(100% - 15px), 0 15px
    );
}
.mixer-panel:hover { transform: perspective(1200px) rotateX(1deg); }

.hw-inner-bevel {
    padding: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.2) 100%);
    position: relative;
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.7);
    height: 100%;
}

.hw-logo-section {
    text-align: right;
    padding-right: 20px;
    margin-bottom: 20px;
}

.hw-logo {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}
.hw-logo span {
    color: var(--accent);
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: middle;
    margin: 0 -2px;
    display: inline-block;
    transform: translateY(2px);
    text-shadow: 0 0 10px var(--accent);
}

.hw-layout { display: flex; gap: 15px; }

.hw-section {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.hw-etched-text {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #111216;
    padding: 0 10px;
    font-size: 0.6rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hw-mixer { flex: 1; display: flex; justify-content: space-between; }
.hw-channel { display: flex; flex-direction: column; align-items: center; gap: 15px; }

.hw-scribble {
    background: var(--accent);
    background-image:
        linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 3px 3px;
    width: 65px;
    height: 40px;
    box-shadow:
        inset 0 3px 6px rgba(0,0,0,0.6),
        0 0 20px var(--accent-glow);
    border: 2px solid #111;
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #111;
    font-weight: 900;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}
.hw-scribble i { width: 16px; height: 16px; margin-top: -2px; }
.hw-scribble small { font-size: 0.6rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.5px; }
.hw-ch-num { position: absolute; top: 2px; left: 4px; font-size: 0.5rem; opacity: 0.7; }

.hw-fader-area {
    display: flex;
    height: 220px;
    gap: 12px;
    position: relative;
    margin-top: 35px;
    margin-bottom: 15px;
}

.hw-leds {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 5px 0;
    width: 8px;
}

.hw-leds span {
    width: 100%;
    height: 5px;
    background: #111;
    border-radius: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
}

.hw-leds span.active {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent), inset 0 0 2px #fff;
}
.hw-leds span:nth-child(-n+5).active {
    background: var(--accent-magenta);
    box-shadow: 0 0 6px var(--accent-magenta), inset 0 0 2px #fff;
}
.hw-leds span:nth-child(n+6):nth-child(-n+10).active {
    background: #0055ff;
    box-shadow: 0 0 6px #0055ff, inset 0 0 2px #fff;
}

.hw-fader-track {
    width: 6px;
    background: #050505;
    border-radius: 3px;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.9), 0 1px 0 rgba(255,255,255,0.05);
}

.hw-fader-cap {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 36px;
    height: 60px;
    background:
        linear-gradient(to right, rgba(255,255,255,0.1) 0%, transparent 10%, transparent 90%, rgba(0,0,0,0.4) 100%),
        linear-gradient(to bottom,
            #e0e0e0 0%,
            #ffffff 10%,
            #a0a0a0 30%,
            #606060 40%,
            #111 48%, #111 52%,
            #606060 60%,
            #909090 70%,
            #ffffff 90%,
            #c0c0c0 100%);
    border-radius: 4px;
    border: 1px solid #333;
    box-shadow:
        -5px 10px 15px rgba(0,0,0,0.6),
        inset 0 1px 0 #fff;
    cursor: grab;
    z-index: 10;
}

.hw-fader-line {
    position: absolute;
    top: 50%;
    left: 4px;
    width: calc(100% - 8px);
    height: 2px;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 0 6px #fff;
    border-radius: 1px;
}

.hw-btn {
    background: #111;
    border: 2px solid #333;
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: all 0.1s;
    font-size: 0.7rem;
}
.hw-btn:active { transform: scale(0.95); box-shadow: inset 0 2px 5px rgba(0,0,0,0.8); }

.hw-active {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow:
        0 0 15px var(--accent-glow),
        inset 0 0 15px rgba(0, 229, 255, 0.2);
    text-shadow: 0 0 5px var(--accent);
}

.hw-btn-mute.hw-active,
.hw-btn-preset:nth-child(2).hw-active,
.hw-btn-square:nth-child(1).hw-active,
.hw-btn-clear.hw-active {
    border-color: var(--accent-magenta);
    color: var(--text-primary);
    box-shadow:
        0 0 15px var(--magenta-glow),
        inset 0 0 15px rgba(255, 0, 255, 0.3);
    text-shadow: 0 0 5px var(--accent-magenta);
}
.hw-btn-mute { width: 65px; height: 35px; }
.hw-btn-mute i { width: 16px; height: 16px; transition: color 0.2s; }
.hw-btn-mute.hw-active i { color: #fff; }

.hw-presets-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 0 10px;
}
.hw-btn-preset {
    width: 45px;
    height: 24px;
    font-weight: 900;
    border-radius: 12px;
}

.hw-right-section {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 320px;
}

.hw-fx { display: flex; gap: 15px; }

.hw-knobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    flex: 1;
    padding: 10px;
}

.hw-knob-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}
.hw-knob-wrapper small { font-size: 0.65rem; color: #888; font-weight: 700; text-transform: uppercase;}

.hw-knob-ring {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: conic-gradient(from 225deg, var(--accent) 0deg, var(--accent) 270deg, transparent 270deg);
    -webkit-mask: repeating-conic-gradient(from 0deg, #000 0deg, #000 10deg, transparent 10deg, transparent 15deg);
    mask: repeating-conic-gradient(from 0deg, #000 0deg, #000 10deg, transparent 10deg, transparent 15deg);
    opacity: 0.6;
    z-index: 1;
    filter: drop-shadow(0 0 2px var(--accent));
}

.hw-knob {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #444 0%, #111 100%);
    box-shadow:
        0 10px 20px rgba(0,0,0,0.8),
        inset 0 1px 2px rgba(255,255,255,0.3),
        inset 0 -2px 5px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin-top: 5px;
}
.hw-knob::after {
    content: '';
    position: absolute;
    top: 10%; left: 10%; right: 10%; bottom: 10%;
    border-radius: 50%;
    background: linear-gradient(to bottom, #222, #333);
}

.hw-knob-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 12px;
    background: var(--accent);
    transform-origin: bottom center;
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent);
    z-index: 3;
    pointer-events: none;
}

.hw-fx-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}
.hw-btn-wide { width: 100px; height: 35px; }

.hw-sampler {
    display: flex;
    gap: 15px;
    padding-bottom: 25px;
    align-items: center;
}
.hw-sampler-banks { display: flex; flex-direction: column; gap: 15px; justify-content: center; }
.hw-btn-square { width: 45px; height: 40px; font-weight: bold; }
.hw-sampler-pads { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: 8px; flex: 1; }
.hw-pad-1 { grid-column: 1 / 3; }
.hw-pad-2 { grid-column: 3; }
.hw-pad-3 { grid-column: 1; grid-row: 2 / 4; }
.hw-btn-clear { grid-column: 2; grid-row: 2; font-size: 0.65rem; color: #fff; }
.hw-pad-5 { grid-column: 3; grid-row: 2 / 4; }
.hw-pad-6 { grid-column: 2; grid-row: 3; }
.hw-pad-btn, .hw-btn-clear { width: 100%; height: 100%; min-height: 35px; }
.hw-utility-buttons { display: flex; flex-direction: column; justify-content: space-between; gap: 15px; height: 100%; }
.hw-btn-cough i { width: 18px; height: 18px;}

/* --- Sections --- */
.section { padding: 8rem 0; }
.section-tight { padding: 4.5rem 0; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
.section-desc {
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.addon-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--accent);
    transform: translateY(-5px);
}
.download-label {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.05);
}

.toggle-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-smooth);
}
.toggle-btn.active { background: var(--accent); color: #000; }

.addon-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.addon-info h4 { font-size: 0.9rem; }
.addon-info p { font-size: 0.75rem; color: var(--text-secondary); }

/* --- iOS Glass --- */
.ios-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ios-glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.8),
        0 0 30px rgba(0, 229, 255, 0.1),
        inset 0 1px 1px rgba(255,255,255,0.3);
}
.addon-card.ios-glass-card { background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2)); }
.addon-card.ios-glass-card .addon-info h4 { font-size: 1.1rem; color: #fff; }

/* --- Demo GIF Section (center luxury frame) --- */
.demo-wrap { max-width: 1100px; margin: 0 auto; }
.demo-head { margin-bottom: 2.5rem; }
.demo-kicker {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.demo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 18px;
    box-shadow:
        0 45px 120px rgba(0,0,0,0.85),
        0 0 60px rgba(0, 229, 255, 0.12);
    transform: perspective(1200px) rotateX(6deg);
    transition: transform 0.6s ease;
    border: 1px solid rgba(0, 229, 255, 0.18);
}
.demo-frame:hover { transform: perspective(1200px) rotateX(0deg); }
.demo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 229, 255, 0.18), rgba(255, 0, 255, 0.08), transparent 60%);
    opacity: 0.35;
    pointer-events: none;
}
.demo-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(0,229,255,0.25) 0%, transparent 60%);
    filter: blur(30px);
    opacity: 0.55;
    pointer-events: none;
    animation: demoGlow 6s ease-in-out infinite;
}
@keyframes demoGlow {
    0% { transform: translate(-6%, -2%) scale(1); opacity: 0.35; }
    50% { transform: translate(4%, 4%) scale(1.08); opacity: 0.6; }
    100% { transform: translate(-6%, -2%) scale(1); opacity: 0.35; }
}
.demo-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 6px);
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: scanMove 9s linear infinite;
}
@keyframes scanMove {
    from { transform: translateY(0); }
    to { transform: translateY(48px); }
}
.demo-gif {
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.25);
}
.demo-fallback {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px dashed rgba(0, 229, 255, 0.35);
    background: rgba(0,0,0,0.25);
}

/* --- Before / After showcase --- */
.compare-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.ab-card { padding: 2rem; }

.ab-kicker {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.ab-compare {
    position: relative;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: radial-gradient(circle at 30% 20%, rgba(0,229,255,0.10), transparent 55%),
                radial-gradient(circle at 70% 80%, rgba(255,0,255,0.06), transparent 55%),
                rgba(0,0,0,0.35);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.75), 0 40px 100px rgba(0,0,0,0.6);
}

.ab-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.ab-clip {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 55%;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.ab-range {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    width: calc(100% - 28px);
    margin: 0 14px;
    z-index: 4;
    opacity: 0;
    height: 36px;
    cursor: ew-resize;
}

.ab-handle {
    position: absolute;
    top: 0;
    left: 55%;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.15);
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(0,229,255,0.25);
}

.ab-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 30px rgba(0,229,255,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ab-handle i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    width: 22px;
    height: 22px;
    z-index: 2;
}

.ab-label {
    position: absolute;
    top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 4;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ab-label-before { left: 14px; color: rgba(255,255,255,0.8); }
.ab-label-after { right: 14px; color: var(--accent); text-shadow: 0 0 10px rgba(0,229,255,0.35); }

/* --- GoXLR identity section --- */
#goxlr { padding-top: 2rem; }
.goxlr-head {
    max-width: 760px;
    margin: 0 auto 2rem auto;
    text-align: center;
}
.goxlr-lead {
    max-width: 640px;
    line-height: 1.75;
}
.goxlr-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    max-width: 560px;
    margin: 0 auto;
}

.goxlr-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
}
.goxlr-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 229, 255, 0.22);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255,255,255,0.88);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.06);
}
.goxlr-pill i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.goxlr-grid {
    margin-bottom: 2rem;
}
.goxlr-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.goxlr-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    margin-bottom: 0.25rem;
}
.goxlr-card-icon i {
    width: 22px;
    height: 22px;
    color: var(--accent);
}
.goxlr-card h4 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
}
.goxlr-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

.goxlr-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.75rem 2rem;
    border-radius: 20px;
}
.goxlr-cta strong {
    color: #fff;
    font-size: 1rem;
}
.goxlr-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.goxlr-cta-btns .btn-primary,
.goxlr-cta-btns .btn-secondary {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- Download Modal --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 20000;
}
.modal-backdrop.open { display: flex; }
.modal {
    width: min(980px, 100%);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.35));
    box-shadow: 0 60px 180px rgba(0,0,0,0.85), 0 0 50px rgba(0,229,255,0.12);
}
.modal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-title {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}
.modal-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.modal-close:hover { border-color: rgba(0,229,255,0.5); box-shadow: 0 0 18px rgba(0,229,255,0.25); transform: translateY(-1px); }
.modal-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    padding: 18px;
}
.modal-left, .modal-right { padding: 18px; border-radius: 18px; }
.modal-left { background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.06); }
.modal-right { background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.06); }
.modal-subtitle {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.modal-muted { color: var(--text-secondary); line-height: 1.6; font-size: 0.95rem; }
.feature-list { margin-top: 16px; display: grid; gap: 10px; }
.feature-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}
.feature-item b { display: block; font-size: 0.92rem; }
.feature-item span { display: block; color: var(--text-secondary); font-size: 0.82rem; margin-top: 2px; }

.wave-box {
    position: relative;
    width: 100%;
    height: 190px;
    border-radius: 16px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.7);
}
.wave-box canvas { width: 100%; height: 100%; display: block; }
.wave-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}
.wave-labels .before { color: rgba(255,255,255,0.7); }
.wave-labels .after { color: var(--accent); text-shadow: 0 0 10px rgba(0,229,255,0.4); }

.modal-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}
.progress {
    position: relative;
    flex: 1;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}
.progress > div {
    position: absolute;
    inset: 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.7), transparent);
    animation: progressSweep 1.2s linear infinite;
    filter: blur(0.2px);
}
@keyframes progressSweep {
    from { transform: translateX(-90%); }
    to { transform: translateX(230%); }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- Toast Notifications --- */
.toast {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mixer-panel, .panel-card { animation: fadeIn 0.8s ease-out forwards; }

/* --- Update banner --- */
.update-banner {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.12), rgba(255, 0, 255, 0.08));
    border-bottom: 1px solid rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.update-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    position: fixed;
}
.update-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.update-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: updatePulse 1.5s ease-in-out infinite;
}
@keyframes updatePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.update-badge {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
}
.update-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.update-text strong { color: #fff; }
.update-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    text-decoration: none;
}
.update-link:hover { text-shadow: 0 0 10px var(--accent-glow); }
.update-dismiss {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.update-dismiss:hover { border-color: var(--accent); }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.badge-new {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 229, 255, 0.15));
    color: #fff;
    border: 1px solid rgba(255, 0, 255, 0.35);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.15);
}

/* --- Trust highlights (facts, not vanity metrics) --- */
.trust-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 0 auto 2rem auto;
    max-width: 1100px;
    padding: 0 1rem;
}
.trust-highlight {
    text-align: left;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.trust-highlight i {
    width: 22px;
    height: 22px;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.trust-highlight h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}
.trust-highlight p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.section-head-center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}
.section-desc-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --- What's new grid --- */
.whatsnew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.whatsnew-grid--four {
    grid-template-columns: repeat(2, 1fr);
    max-width: 920px;
    margin: 0 auto;
    gap: 1rem;
}
.whatsnew-grid--four .whatsnew-card {
    min-height: auto;
    padding: 1.35rem 1.5rem;
}
.whatsnew-grid--four .whatsnew-card p {
    font-size: 0.85rem;
    line-height: 1.45;
}
.whatsnew-grid--four .whatsnew-card h4 {
    font-size: 0.98rem;
}
.hub-features-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}
.specs-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}
.whatsnew-card {
    padding: 1.75rem;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 180px;
}
.whatsnew-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.25);
    margin-bottom: 0.25rem;
}
.whatsnew-icon i { width: 20px; height: 20px; color: var(--accent); }
.whatsnew-card h4 { color: #fff; font-size: 1.05rem; margin: 0; }
.whatsnew-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
    flex: 1;
}
.whatsnew-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 229, 255, 0.35);
}
.whatsnew-tag-accent {
    background: rgba(255, 0, 255, 0.12);
    color: #f0a0ff;
    border-color: rgba(255, 0, 255, 0.35);
}

/* --- Studio Pulse --- */
.studio-pulse-wrap {
    padding: 2rem 2.25rem;
    border-radius: 28px;
}
.studio-pulse-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.studio-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 80, 80, 0.4);
    background: rgba(255, 80, 80, 0.08);
    color: #ff9a9a;
}
.studio-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 10px #ff4444;
    animation: updatePulse 1.2s ease-in-out infinite;
}
.studio-mode-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 5px;
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1rem;
}
.studio-mode-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.studio-mode-btn.active {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 16px var(--accent-glow);
}
.studio-canvas-wrap {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
}
.studio-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}
.studio-channels {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}
.studio-channels span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.studio-channels i { width: 14px; height: 14px; color: var(--accent); }

/* --- Trust panel --- */
.trust-panel {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 24px;
    align-items: center;
}
.trust-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.45;
}
.trust-list li i {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.trust-list strong { color: #fff; display: block; margin-bottom: 2px; }

/* --- Marketing zig-zag showcase --- */
.mkt-section {
    padding-top: 5rem;
    padding-bottom: 2rem;
    overflow: hidden;
}
.mkt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto 5rem auto;
    padding: 0 1rem;
}
.mkt-row--flip .mkt-visual {
    order: -1;
}
.mkt-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mkt-tag {
    display: inline-block;
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.06);
}
.mkt-copy h3 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
}
.mkt-copy p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
}
.mkt-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: grid;
    gap: 10px;
}
.mkt-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}
.mkt-list i {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}
.mkt-cta {
    width: fit-content;
    margin-top: 0.5rem;
    text-decoration: none;
}
.mkt-visual {
    position: relative;
    animation: mktFloat 7s ease-in-out infinite;
}
.mkt-row:nth-child(3) .mkt-visual { animation-delay: -2s; }
.mkt-row:nth-child(4) .mkt-visual { animation-delay: -4s; }
@keyframes mktFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.mkt-visual--glow::before {
    content: '';
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(255, 0, 255, 0.08) 40%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: mktGlow 5s ease-in-out infinite;
}
@keyframes mktGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}
.mkt-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.75),
        0 0 40px rgba(0, 229, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: #0a0a0c;
    transform: perspective(900px) rotateY(-4deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s ease;
}
.mkt-row--flip .mkt-frame {
    transform: perspective(900px) rotateY(4deg);
}
.mkt-frame:hover {
    transform: perspective(900px) rotateY(0deg) scale(1.02);
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.85),
        0 0 60px rgba(0, 229, 255, 0.2);
}
.mkt-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    vertical-align: middle;
}
.mkt-frame--wide img {
    min-height: 320px;
    object-position: center 40%;
}
.mkt-row.reveal.active .mkt-copy {
    animation: mktSlideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.mkt-row.reveal.active .mkt-visual {
    animation: mktSlideIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.12s forwards, mktFloat 7s ease-in-out 1s infinite;
}
.mkt-row--flip.reveal.active .mkt-copy {
    animation-delay: 0.12s;
}
.mkt-row--flip.reveal.active .mkt-visual {
    animation-delay: 0s;
}
@keyframes mktSlideIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Google-style SERP + sitelinks --- */
.serp-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.serp-card {
    background: #1e1f22;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 18px 20px 8px 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.serp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.serp-favicon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.serp-favicon i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}
.serp-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.serp-site-name {
    font-size: 0.88rem;
    color: #e8eaed;
    font-weight: 400;
    line-height: 1.3;
}
.serp-url {
    font-size: 0.8rem;
    color: #9aa0a6;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.serp-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.35;
    color: #8ab4f8;
    text-decoration: none;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.serp-title:hover {
    text-decoration: underline;
    color: #aecbfa;
}
.serp-snippet {
    font-size: 0.88rem;
    line-height: 1.58;
    color: #bdc1c6;
    margin: 0 0 16px 0;
}
.serp-snippet strong {
    color: #e8eaed;
    font-weight: 600;
}
.serp-sitelinks {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.serp-sitelink {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 4px 14px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease;
}
.serp-sitelink:last-of-type {
    border-bottom: none;
}
.serp-sitelink:hover {
    background: rgba(138, 180, 248, 0.06);
}
.serp-sitelink:hover .serp-sitelink-title {
    text-decoration: underline;
}
.serp-chevron {
    flex-shrink: 0;
    width: 20px;
    color: #9aa0a6;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 300;
    user-select: none;
}
.serp-sitelink-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.serp-sitelink-title {
    font-size: 1.05rem;
    font-weight: 400;
    color: #8ab4f8;
    line-height: 1.35;
}
.serp-sitelink-desc {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #bdc1c6;
}
.serp-more {
    display: inline-block;
    margin: 12px 0 10px 32px;
    font-size: 0.88rem;
    color: #8ab4f8;
    text-decoration: none;
}
.serp-more:hover {
    text-decoration: underline;
    color: #aecbfa;
}

/* Responsive */
@media (max-width: 1024px) {
    header { padding: 0.6rem 1.2rem; border-radius: 26px; top: 1rem; }
    nav ul { gap: 1.2rem; }
    .hero { grid-template-columns: 1fr; padding: 3rem 0; }
    .mixer-panel { min-width: unset; transform: none; }
    .modal-body { grid-template-columns: 1fr; }
    .goxlr-cta { flex-direction: column; align-items: flex-start; }
    .mkt-row,
    .mkt-row--flip {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mkt-row--flip .mkt-visual { order: 0; }
    .mkt-frame,
    .mkt-row--flip .mkt-frame { transform: none; }
    .whatsnew-grid--four { grid-template-columns: 1fr; }
    .hub-features-grid { grid-template-columns: 1fr; }
    .trust-highlights { grid-template-columns: repeat(2, 1fr); }
    .trust-panel { grid-template-columns: 1fr; }
    .update-banner-inner { padding: 10px 1rem; }
}
@media (max-width: 600px) {
    .trust-highlights { grid-template-columns: 1fr; }
    nav ul { display: none; }
}

/* --- Site info section --- */
.site-info-section {
    padding-top: 2rem;
}
.site-info-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.site-info-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    line-height: 1.7;
}
.site-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}
.site-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.site-info-card p:last-child {
    margin-bottom: 0;
}
.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.75rem;
}
.seo-tag {
    font-size: 0.72rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.footer-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    grid-column: 1 / -1;
}
.footer-meta p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 100%;
}
@media (max-width: 768px) {
    footer[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}
