/* ==========================================
   ВСЕМОГУЩИЕ НЕЙРОНЫ. МОЗГ ЛИДЕРА — Premium Styles
   ========================================== */


/* --- Reset & Variables --- */

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

:root {
    --bg-deep: #050510;
    --bg-surface: #0a0a1a;
    --accent-cyan: #00e5ff;
    --accent-blue: #4488ff;
    --accent-purple: #7b2fff;
    --accent-telegram: #2AABEE;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-tertiary: rgba(255, 255, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'PT Sans', Arial, sans-serif;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.2) transparent;
}

@media (min-width: 769px) {
    html {
        scroll-behavior: smooth;
        scroll-snap-type: y mandatory;
    }
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Custom Scrollbar (Webkit) */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.3);
}


/* --- Loader --- */

.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}


/* --- Loader Brain Animation --- */

.loader-brain {
    margin-bottom: 2rem;
    animation: brainFloat 3s ease-in-out infinite;
}

.loader-brain svg {
    animation: brainRotateY 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.3));
}

@keyframes brainRotateY {
    0% {
        transform: rotateY(0deg) scale(1);
    }
    25% {
        transform: rotateY(15deg) scale(1.02);
    }
    50% {
        transform: rotateY(0deg) scale(1);
    }
    75% {
        transform: rotateY(-15deg) scale(1.02);
    }
    100% {
        transform: rotateY(0deg) scale(1);
    }
}

@keyframes brainFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.brain-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: brainDraw 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.brain-left {
    animation-delay: 0s;
}

.brain-right {
    animation-delay: 0.15s;
}

.brain-stem {
    animation-delay: 0.4s;
}

.brain-detail {
    animation-delay: 0.6s;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

@keyframes brainDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.neural-pulse {
    opacity: 0;
    animation: neuralPulse 2s ease-in-out infinite;
}

.pulse-1 {
    animation-delay: 0.8s;
}

.pulse-2 {
    animation-delay: 1.2s;
}

.pulse-3 {
    animation-delay: 0.5s;
}

.pulse-4 {
    animation-delay: 1.6s;
}

.pulse-5 {
    animation-delay: 1.0s;
}

@keyframes neuralPulse {
    0%,
    100% {
        opacity: 0;
        r: 1.5;
    }
    30% {
        opacity: 1;
        r: 3;
    }
    60% {
        opacity: 0.6;
        r: 2;
    }
}

.loader-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-percent {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    margin-top: 0.6rem;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 1px;
    animation: loaderFill 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderFill {
    0% {
        width: 0%;
    }
    60% {
        width: 85%;
    }
    100% {
        width: 100%;
    }
}


/* --- Canvas --- */

#cube-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 1;
    pointer-events: none;
}


/* --- Background Grid --- */

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}


/* --- Vignette --- */

.vignette {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient( ellipse 70% 70% at 50% 50%, transparent 30%, rgba(5, 5, 16, 0.5) 70%, rgba(5, 5, 16, 0.95) 100%);
}


/* --- Navigation --- */

.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: var(--accent-cyan);
}

.nav-brain-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--bg-deep);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}


/* --- Mobile Menu --- */

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 200;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.25px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.25px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(5, 5, 16, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(123, 47, 255, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(68, 136, 255, 0.04) 0%, transparent 60%);
    animation: menuLiquid 8s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.6s ease 0.1s;
}

@keyframes menuLiquid {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(2%, -3%) scale(1.02);
    }
    50% {
        transform: translate(-1%, 2%) scale(0.98);
    }
    75% {
        transform: translate(-2%, -1%) scale(1.01);
    }
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    background: rgba(5, 5, 16, 0.88);
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
}

.mobile-menu.active::before {
    opacity: 1;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(8px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.08s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.16s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.24s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.32s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.4s;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu a:hover {
    color: var(--accent-cyan);
}

.mobile-menu a:hover::after {
    width: 100%;
}


/* --- Mobile Menu Buttons --- */

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(8px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-buttons {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.48s;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-menu-cta-primary {
    background: linear-gradient(135deg, #00e5ff, #4488ff);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}

.mobile-menu-cta-primary:hover {
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-cta-quiz {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
}

.mobile-menu-cta-quiz:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}


/* --- Scroll Indicator --- */

.scroll-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: opacity 0.5s ease;
    cursor: pointer;
    pointer-events: auto;
}

.scroll-indicator:hover span {
    color: var(--accent-cyan);
}

.scroll-indicator:hover .scroll-line {
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-blue));
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes neuralGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* --- Phase Indicator --- */

.phase-indicator {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phase-dot.active {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
    transform: scale(1.3);
}


/* --- Scroll Sections --- */

.scroll-container {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

@media (max-width: 768px) {
    html, body {
        overflow: hidden;
        height: 100%;
        height: 100dvh;
    }
    .scroll-container {
        position: fixed;
        inset: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
        pointer-events: auto;
    }
}

.scroll-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow-y: auto;
    overflow-x: hidden;
}

.section-content {
    max-width: 520px;
    pointer-events: auto;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    scrollbar-width: none;
}

.section-content::-webkit-scrollbar {
    display: none;
}


/* Section alignment variants */

.section-center {
    justify-content: center;
}

.section-center .section-content {
    text-align: center;
    margin: 0 auto;
    max-width: 650px;
}

/* Split section: two columns side by side */

.section-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 6rem;
}

.section-split .split-left,
.section-split .split-right {
    flex: 0 1 420px;
    pointer-events: auto;
}

.section-split .split-left {
    margin-right: auto;
}

.section-split .split-right {
    margin-left: auto;
}

.section-split .split-left .section-content,
.section-split .split-right .section-content {
    max-width: 100%;
}

.section-split .split-left .action-buttons {
    justify-content: flex-start;
}



/* --- Typography --- */

.overline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #00e5ff 40%, #4488ff 60%, #7b2fff 80%, #ffffff 100%);
    background-size: 300% 300%;
    animation: headingGradient 8s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes headingGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.title-line {
    display: block;
}

.title-line-top,
.title-line-bottom {
    background: linear-gradient(90deg, #00e5ff, #4488ff, #aa44ff, #00e5ff, #4488ff);
    background-size: 300% 100%;
    animation: heroGradientFlow 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}


h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.section-content p strong {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}


/* --- Hero Key Stat --- */

.hero-stat {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.hero-stat-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.4;
}

.hero-stat-source {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    font-style: italic;
}


/* --- Hero Brain (mobile only) --- */

.hero-brain-mobile {
    display: none;
    justify-content: center;
    margin: 1rem 0;
}


/* --- Hero Meta --- */

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.meta-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.meta-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}


/* --- Hero Actions --- */

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-short {
    display: none;
}


/* --- Countdown Timer --- */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    min-width: 2.6ch;
    text-align: center;
    line-height: 1;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-tertiary);
    margin-top: -0.8rem;
}

.countdown-label {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.countdown--ended .countdown-value {
    color: var(--text-secondary);
}

.h2-mobile {
    display: none;
}




/* --- CTA Buttons --- */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--bg-deep);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), 0 0 60px rgba(0, 229, 255, 0.05);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25), 0 0 80px rgba(0, 229, 255, 0.1);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translate(3px, -3px);
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: var(--bg-deep);
}

.cta-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.cta-secondary:hover {
    background: var(--glass-highlight);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.cta-secondary:hover svg {
    transform: none;
}

.cta-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.cta-outline:hover {
    background: var(--glass-bg);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.cta-outline:hover svg {
    transform: translateY(2px);
}

.cta-telegram {
    background: linear-gradient(135deg, #2AABEE, #1E96D1);
    color: #fff;
    box-shadow: 0 0 30px rgba(42, 171, 238, 0.15);
}

.cta-telegram:hover {
    box-shadow: 0 0 40px rgba(42, 171, 238, 0.3);
}




/* --- Speakers Section --- */

.speakers-section .section-content {
    max-width: 1000px;
}

/* --- Speaker Duo Cards --- */

.speakers-duo {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 1.5rem;
}

.speakers-duo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
}

.speakers-duo-divider span {
    font-size: 1.5rem;
    color: var(--text-tertiary);
    opacity: 0.5;
}

.speaker-card {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: rgba(10, 14, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.speaker-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.08);
}

.speaker-card-photo {
    position: relative;
    flex-shrink: 0;
}

.speaker-card-photo img {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    filter: grayscale(15%) brightness(0.9);
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-card-photo img {
    filter: grayscale(0%) brightness(1);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
}

.speaker-card-tag {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #000;
    white-space: nowrap;
}

.speaker-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.speaker-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.15rem;
    line-height: 1.2;
}

.speaker-card-title {
    font-size: 0.78rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.speaker-card-info p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.speaker-card-stats {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.6rem;
    flex-wrap: wrap;
}

.speaker-card-stats span {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: var(--accent-cyan);
    font-weight: 600;
}

.speaker-more-btn {
    background: none;
    border: none;
    color: var(--accent-cyan);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    text-align: left;
    transition: color 0.2s;
}

.speaker-more-btn:hover {
    color: #ffffff;
}

/* --- Results Grid --- */

.results-section .section-content {
    max-width: 1000px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.result-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 1rem;
    background: rgba(10, 14, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.result-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.result-card strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.result-card span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.bonuses-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.bonus-chip {
    font-size: 0.78rem;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    background: rgba(123, 47, 255, 0.08);
    border: 1px solid rgba(123, 47, 255, 0.2);
    color: var(--text-secondary);
    white-space: nowrap;
}

.bonus-chip small {
    color: var(--text-tertiary);
    font-size: 0.68rem;
}

/* --- Social Proof (centered) --- */

.social-proof-section .section-content {
    max-width: 700px;
}


/* --- Speaker Sidebar --- */

.speaker-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(8, 12, 28, 0.98), rgba(5, 5, 16, 0.99));
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.2) transparent;
}

.speaker-sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0.8rem 1rem;
    background: linear-gradient(180deg, rgba(8, 12, 28, 1) 60%, rgba(8, 12, 28, 0));
    z-index: 10;
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.sidebar-close:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
}

.sidebar-body {
    padding: 0 2rem 3rem;
}


/* Other speakers in sidebar */

.sidebar-others-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.sidebar-other-speakers {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-other-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-other-item:hover {
    border-color: rgba(0, 229, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-other-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.sidebar-other-item span {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.sidebar-body .sidebar-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    margin-bottom: 1.2rem;
}

.sidebar-body .sidebar-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

.sidebar-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    line-height: 1.1;
}

.sidebar-body .sidebar-title {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.sidebar-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.sidebar-body .sidebar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-body .sidebar-badges span {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.sidebar-body .sidebar-subtitle {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sidebar-body .sidebar-badges {
    margin-bottom: 1.5rem;
}

.sidebar-section {
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.sidebar-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin: 0 0 0.4rem;
}

.sidebar-section p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* Hide nav when sidebar is open */

html.sidebar-open .glass-nav,
html.sidebar-open .mobile-menu-btn {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

html.sidebar-open .voice-widget {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

html.sidebar-open {
    overflow: hidden;
}

html.sidebar-open .scroll-container {
    pointer-events: none;
    overflow: hidden;
}


/* --- Lead Magnet Section --- */

.lead-magnet-section {
    max-width: 600px;
    background: radial-gradient( ellipse at center, rgba(5, 5, 16, 0.85) 0%, rgba(5, 5, 16, 0.7) 60%, transparent 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
}

.lead-magnet-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
}








/* --- Registration Form --- */

.register-section {
    max-width: 500px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.03);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.form-group input.error {
    border-color: #ff4466;
    box-shadow: 0 0 15px rgba(255, 68, 102, 0.1);
}

.form-group select {
    cursor: pointer;
    color: var(--text-tertiary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

.form-group select:has(option:checked:not([value=""])) {
    color: var(--text-primary);
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 1.2rem 2rem;
    font-size: 0.95rem;
}

.form-note {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.form-success {
    padding: 2rem;
    text-align: center;
    animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: successPulse 1.5s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.success-step {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.success-step-num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
}

.success-tg-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    color: #fff;
    background: var(--accent-telegram);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.2s;
}

.success-tg-link:hover {
    background: #229ED9;
}


/* --- Video Modal --- */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-modal-content {
    width: 90vw;
    max-width: 1200px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}


/* --- Footer --- */

.footer-section {
    min-height: 100vh;
    height: 100vh;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.footer-date {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}


/* --- Audience & Support split overrides --- */

.audience-section .split-left,
.support-section .split-left {
    flex: 0 1 380px;
}

/* --- History Timeline --- */

.history-section .split-right {
    flex: 1 1 500px;
    max-width: 560px;
}

.history-section .split-right .section-content {
    background: rgba(10, 14, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, #00e5ff, #7b2fff);
    border-radius: 2px;
}

.history-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00e5ff;
    border: 2px solid #0a0e1a;
    transform: translateX(-4px);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.history-year {
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00e5ff;
    min-width: 3.5rem;
}

.history-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.history-item strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.history-item span {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.45;
}

/* --- Gallery Section --- */

.gallery-section {
    min-height: auto;
}

.gallery-section .section-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-thumb:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

/* --- Lightbox --- */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.12);
    transition: transform 0.3s;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.18);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.5rem;
    }
    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }
}

.audience-section .split-right,
.support-section .split-right {
    flex: 1 1 500px;
    max-width: 520px;
}

.audience-section .split-right .section-content,
.support-section .split-right .section-content {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.15) transparent;
}


/* --- Audience Grid --- */

.audience-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: left;
    transition: border-color 0.3s ease;
}

.audience-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
}

.audience-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-card div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.audience-card strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.audience-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}


/* --- Program Timeline --- */

.program-section .section-content {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-section .section-content h2 {
    margin-bottom: 1rem;
}

.program-section .section-content .overline {
    margin-bottom: 0.2rem;
}

/* --- Program Timeline (horizontal cards) --- */

.program-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    align-items: stretch;
}

.prog-card {
    position: relative;
    padding: 1.6rem 1.4rem 1.4rem;
    background: rgba(10, 14, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.prog-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.1);
}

.prog-card-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 229, 255, 0.12);
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.prog-card-speaker {
    font-size: 0.72rem;
    color: var(--accent-purple);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.prog-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 0.6rem;
}

.prog-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.prog-card-result {
    margin-top: 0.8rem;
    padding: 0.5rem 0.7rem;
    background: rgba(0, 229, 255, 0.06);
    border-left: 2px solid var(--accent-cyan);
    border-radius: 0 8px 8px 0;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    line-height: 1.4;
}

.prog-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.3rem;
}

.prog-divider span {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    font-style: italic;
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0.7;
}

/* --- Program CTA Button --- */

.program-cta-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #00e5ff, #4488ff);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3), 0 0 60px rgba(0, 229, 255, 0.1);
    animation: programCtaPulse 3s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-cta-pdf:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 32px rgba(0, 229, 255, 0.45), 0 0 80px rgba(0, 229, 255, 0.15);
}

.program-cta-pdf svg {
    stroke: #000;
}

@keyframes programCtaPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(0, 229, 255, 0.3), 0 0 60px rgba(0, 229, 255, 0.1); }
    50% { box-shadow: 0 4px 32px rgba(0, 229, 255, 0.5), 0 0 80px rgba(0, 229, 255, 0.2); }
}


/* --- Support Grid --- */

.support-grid {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
}

.support-item .support-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.support-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.support-item strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.support-item span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}


/* --- Results Checklist --- */

.results-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.results-checklist li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
    line-height: 1.5;
}


/* --- Bonus List --- */

.bonus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.bonus-item {
    text-align: left;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.bonus-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.bonus-value {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-decoration: line-through;
}

.bonus-total {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 700;
}


/* --- Testimonial Slider --- */

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    min-width: 0;
    width: 100%;
    padding: 1.8rem;
    background: rgba(10, 14, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: left;
    box-sizing: border-box;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-slide-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 229, 255, 0.2);
    position: relative;
    z-index: 1;
}

.testimonial-avatar-fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(123, 47, 255, 0.15));
    border: 2px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-cyan);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-display);
}

.testimonial-author span {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.testimonial-slide blockquote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    border-left: 2px solid var(--accent-cyan);
    padding-left: 1rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.08);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
    transform: scale(1.3);
}


/* --- Stats Column (desktop) / Row (mobile) --- */

.stat-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.stat-block {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}


/* --- Pricing --- */

.pricing-section .section-content {
    max-width: 900px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(0, 229, 255, 0.1), 0 0 30px rgba(0, 229, 255, 0.1), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured:hover {
    background: rgba(0, 229, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(0, 229, 255, 0.15), 0 0 40px rgba(0, 229, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.pricing-installment {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.pricing-features li::before {
    content: "\2713 ";
    color: var(--accent-cyan);
}

.pricing-card .cta-button {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.pricing-warning {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    text-align: center;
    margin-top: 1rem;
}


/* --- FAQ Accordion --- */

.faq-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.faq-question {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--accent-cyan);
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1rem 0.8rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* --- FAQ Open Button --- */

.faq-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-open-btn:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.06);
}

.faq-open-btn svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.faq-open-btn:hover svg {
    opacity: 1;
    stroke: var(--accent-cyan);
}


/* --- FAQ Sidebar Panel --- */

.faq-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 92vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(8, 12, 28, 0.98), rgba(5, 5, 16, 0.99));
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.2) transparent;
}

.faq-sidebar.open {
    transform: translateX(0);
}

.faq-sidebar .sidebar-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0.8rem 1rem;
    background: linear-gradient(180deg, rgba(8, 12, 28, 1) 60%, rgba(8, 12, 28, 0));
    z-index: 10;
}

.faq-sidebar-body {
    padding: 0 2rem 3rem;
}

.faq-sidebar-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.faq-sidebar .faq-list {
    margin-top: 0;
}

.faq-sidebar .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-sidebar .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.2rem;
}

.faq-sidebar .faq-answer {
    font-size: 0.85rem;
    padding: 0 1.2rem 1rem;
    line-height: 1.7;
}

html.faq-sidebar-open .glass-nav,
html.faq-sidebar-open .mobile-menu-btn {
    pointer-events: none;
    opacity: 0.3;
}

html.faq-sidebar-open {
    overflow: hidden;
}

html.faq-sidebar-open .scroll-container {
    pointer-events: none;
    overflow: hidden;
}


/* --- Guarantee --- */

.guarantee-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.8rem;
    background: rgba(0, 229, 255, 0.03);
    border-radius: 8px;
    border-left: 2px solid var(--accent-cyan);
    margin-top: 1rem;
}


/* (speakers-grid--two removed, replaced by speakers-duo) */


/* --- Responsive --- */

@media (max-width: 1024px) {
    .scroll-section {
        padding: 4rem 2.5rem;
        height: 100vh;
        min-height: 100vh;
    }
    .section-split {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 1rem 1.5rem;
        background: rgba(5, 5, 16, 0.92);
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .scroll-section {
        padding: 4.5rem 1.5rem 2rem;
        justify-content: center !important;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        overflow-y: auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .section-content {
        text-align: center;
        max-width: 100%;
        max-height: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: none;
        padding: 0;
        border-radius: 0;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        overflow: visible;
        gap: 0;
    }
    .mob-top {
        position: relative;
        z-index: 1;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0 1.5rem;
        box-shadow: none;
        pointer-events: auto;
    }
    .mob-bottom {
        position: relative;
        z-index: 1;
        pointer-events: auto;
        margin-top: auto;
        margin-bottom: 1.5rem;
        background: rgba(5, 5, 16, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 1rem 1.3rem;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .mob-bottom.has-hint,
    #hero .mob-bottom.has-hint {
        margin-bottom: 0;
    }
    .mob-next-hint {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        flex-shrink: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        white-space: nowrap;
    }
    .mob-next-hint svg {
        width: 16px;
        height: 16px;
        stroke: var(--accent-cyan);
        opacity: 0.8;
        flex-shrink: 0;
        animation: mobHintBounce 2s ease-in-out infinite;
    }
    .mob-next-hint span {
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent-cyan);
        opacity: 0.8;
    }
    @keyframes mobHintBounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(3px); }
    }
    .h2-full {
        display: none;
    }
    .h2-mobile {
        display: inline;
    }
    .speakers-duo {
        flex-direction: column;
        gap: 0.8rem;
    }
    .speakers-duo-divider {
        display: none;
    }
    .speaker-card {
        padding: 1rem;
        gap: 1rem;
    }
    .speaker-card-photo img {
        width: 72px;
        height: 72px;
    }
    .speaker-card-info h3 {
        font-size: 1.1rem;
    }
    .speaker-card-title {
        font-size: 0.85rem;
    }
    .speaker-card-info p {
        display: none;
    }
    .speaker-card-stats span {
        font-size: 0.75rem;
    }
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    .result-card {
        padding: 0.9rem 0.7rem;
    }
    .result-icon {
        font-size: 1.6rem;
    }
    .result-card strong {
        font-size: 0.95rem;
    }
    .result-card span {
        font-size: 0.8rem;
    }
    .bonuses-row {
        gap: 0.5rem;
    }
    .bonus-chip {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .speaker-sidebar {
        width: 100%;
        max-width: 100vw;
    }
    .sidebar-header {
        padding: 1rem 1.2rem;
    }
    .sidebar-close {
        width: 48px;
        height: 48px;
        font-size: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }
    .faq-sidebar {
        width: 100%;
        max-width: 100vw;
    }
    .faq-sidebar .sidebar-close {
        width: 48px;
        height: 48px;
        font-size: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }
    .faq-sidebar-body {
        padding: 0 1.2rem 2rem;
    }
    .faq-sidebar .faq-question {
        font-size: 1rem;
    }
    .faq-sidebar .faq-answer {
        font-size: 0.9rem;
    }
    .partners-grid {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    .partner-item {
        padding: 0.4rem 1rem;
        font-size: 0.65rem;
    }
    .register-form {
        gap: 0.75rem;
    }
    .form-group input,
    .form-group select {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    .cta-button {
        padding: 0.9rem 1.6rem;
        font-size: 0.9rem;
        pointer-events: auto;
        position: relative;
        z-index: 2;
    }
    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }
    h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .phase-indicator {
        left: 0.8rem;
    }
    .hero-brain-mobile {
        display: none;
    }
    #hero .mob-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-subtitle {
        display: none;
    }
    .hero-meta {
        order: -1;
        gap: 2rem;
        margin-top: 0;
        margin-bottom: 0.8rem;
    }
    .meta-value {
        font-size: 1.8rem;
    }
    .meta-label {
        font-size: 0.65rem;
    }
    .countdown {
        margin-top: 0.4rem;
        gap: 0.4rem;
    }
    .countdown-value {
        font-size: 1.5rem;
    }
    .countdown-sep {
        font-size: 1.1rem;
        margin-top: -0.5rem;
    }
    .countdown-label {
        font-size: 0.55rem;
    }
    .hero-stat {
        gap: 0.5rem;
        padding: 0.4rem 1rem;
        margin-bottom: 0.5rem;
    }
    .hero-stat-number {
        font-size: 1.6rem;
    }
    .hero-stat-text {
        font-size: 0.7rem;
    }
    .hero-stat-source {
        font-size: 0.55rem;
    }
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        flex-wrap: nowrap;
    }
    .hero-actions .btn-full {
        display: none;
    }
    .hero-actions .btn-short {
        display: inline;
    }
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    .video-modal-close {
        top: 1rem;
        right: 1rem;
    }
    .section-split {
        flex-direction: column;
        gap: 0;
        padding: 4.5rem 1.5rem 2rem;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        justify-content: space-between;
    }
    .section-split .split-left,
    .section-split .split-right {
        max-width: 100%;
        flex: none;
        margin: 0;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }
    .section-split .split-right {
        order: -1;
    }
    .section-split .split-left .section-content,
    .section-split .split-right .section-content {
        text-align: center;
        max-height: none;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: none;
        padding: 0;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    /* --- Register mob-top: overline + h2 --- */
    #register .mob-top {
        text-align: center;
    }
    #register .mob-top .overline {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }
    #register .mob-top h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }
    /* --- Register mob-bottom: form + details row --- */
    .register-mob-bottom {
        text-align: center;
    }
    .register-mob-bottom .register-form {
        background: rgba(5, 5, 16, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 0.8rem 1.2rem;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
        margin-bottom: 0.6rem;
    }
    .register-mob-bottom .register-form .form-group {
        margin-bottom: 0.35rem;
    }
    .register-mob-bottom .register-form input {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    .register-mob-bottom .register-form .form-submit {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    .register-mob-bottom .register-form .form-note {
        font-size: 0.5rem;
        margin-top: 0.25rem;
    }
    .footer-section .section-content {
        background: rgba(5, 5, 16, 0.85) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 16px !important;
        padding: 2rem !important;
        display: block !important;
        height: auto !important;
    }
    .lead-magnet-section {
        padding: 0;
        background: none;
    }
    #hero.scroll-section {
        padding-bottom: 1.5rem;
    }
    #hero .mob-bottom {
        margin-bottom: 2.5rem;
    }
    .scroll-indicator {
        display: none;
    }
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
        padding: 1rem 1.25rem;
    }

    /* --- New sections mobile --- */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .pricing-card {
        padding: 1rem;
    }
    .pricing-price {
        font-size: 1.4rem;
    }
    .pricing-badge {
        top: -8px;
        font-size: 0.6rem;
    }
    .audience-grid {
        gap: 0.6rem;
    }
    .audience-card {
        padding: 0.7rem 1rem;
        gap: 0.8rem;
    }
    .audience-icon {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.3rem;
    }
    .audience-card strong {
        font-size: 1.05rem;
    }
    .audience-card div span {
        display: none;
    }
    .program-section .section-content {
        overflow-y: auto;
        padding-bottom: 1rem;
    }
    .program-timeline {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    .prog-card {
        padding: 1.1rem;
    }
    .prog-card-num {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    .prog-card-speaker {
        font-size: 0.8rem;
    }
    .prog-card h3 {
        font-size: 1.05rem;
    }
    .prog-card p {
        display: none;
    }
    .prog-card-result {
        font-size: 0.8rem;
        padding: 0.4rem 0.7rem;
    }
    .prog-divider {
        padding: 0;
    }
    .prog-divider span {
        writing-mode: horizontal-tb;
        font-size: 0.7rem;
    }
    .program-cta-pdf {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }

    /* Social-proof mobile */
    #social-proof .section-content {
        overflow: hidden;
        padding: 0 0.25rem;
    }
    #social-proof.section-split {
        display: flex;
        flex-direction: column;
    }
    #social-proof .split-left,
    #social-proof .split-right {
        display: none;
    }
    .social-proof-mob-bottom {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
        width: 100%;
        min-width: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* History mobile: compact timeline with glass */
    #history.section-split {
        padding-top: 3.5rem;
    }
    #history .split-left {
        flex: 0;
        min-height: 0;
    }
    #history .split-left .section-content {
        text-align: center;
    }
    #history .split-left h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }
    #history .split-left p {
        display: none;
    }
    #history .split-right {
        flex: 1;
        overflow-y: auto;
        order: 1 !important;
    }
    #history .split-right .section-content {
        background: rgba(10, 14, 26, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1rem 1.2rem;
        backdrop-filter: blur(20px) saturate(1.4);
        -webkit-backdrop-filter: blur(20px) saturate(1.4);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
    }
    .history-timeline {
        padding-left: 1.5rem;
    }
    .history-item {
        padding: 0.7rem 0;
        gap: 0.7rem;
    }
    .history-item::before {
        left: -1.5rem;
    }
    .history-year {
        font-size: 0.95rem;
        min-width: 2.8rem;
    }
    .history-item strong {
        font-size: 0.9rem;
    }
    .history-item span {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    /* Stats row on mobile */
    .stat-row-mobile {
        flex-direction: row !important;
        gap: 0.8rem;
        justify-content: space-around;
    }
    .stat-row-mobile .stat-block {
        min-width: 0;
        flex: 1;
    }
    .stat-row-mobile .stat-number {
        font-size: 1.3rem;
    }
    .stat-row-mobile .stat-label {
        font-size: 0.6rem;
    }
    /* Testimonial slider mobile */
    .testimonial-slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .testimonial-track {
        width: 100%;
    }
    .testimonial-slide {
        padding: 1.2rem;
        width: 100%;
        box-sizing: border-box;
        flex: 0 0 100%;
        min-width: 0;
    }
    .testimonial-slide-header {
        gap: 0.8rem;
    }
    .testimonial-slide blockquote {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        border-left-width: 2px;
        padding-left: 0.8rem;
    }
    .testimonial-avatar-wrap {
        width: 44px;
        height: 44px;
    }
    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }
    .testimonial-avatar-fallback {
        font-size: 0.9rem;
    }
    .testimonial-author strong {
        font-size: 0.95rem;
    }
    .testimonial-author span {
        font-size: 0.8rem;
    }
    .testimonial-controls {
        margin-top: 0.8rem;
    }
    .faq-list {
        gap: 0.5rem;
    }
    .faq-question {
        font-size: 1.05rem;
        padding: 0.7rem 0.9rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
    .results-checklist li {
        font-size: 1rem;
        padding: 0.35rem 0;
    }
    .results-checklist {
        text-align: left;
    }
    .bonus-item strong {
        font-size: 0.95rem;
    }
    .bonus-value {
        font-size: 0.85rem;
    }
    .bonus-total {
        font-size: 0.9rem;
    }
    .support-item strong {
        font-size: 1.05rem;
    }
    .support-item div span {
        display: none;
    }
    .guarantee-text {
        font-size: 0.95rem;
    }

    /* Register mob-bottom: form + guarantee + FAQ stacked */
    .register-mob-bottom {
        overflow-y: auto;
        max-height: 70dvh;
    }
    .register-mob-bottom .guarantee-text {
        margin-top: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    .register-mob-bottom .faq-open-btn {
        margin-top: 0.6rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Pricing: readable cards on mobile */
    .pricing-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    .pricing-price {
        font-size: 1.6rem;
    }
    .pricing-features {
        font-size: 0.95rem;
    }
    .pricing-features li {
        padding: 0.3rem 0;
    }
    .pricing-installment {
        font-size: 0.8rem;
    }
    .pricing-warning {
        font-size: 0.8rem;
        margin-top: 0.6rem;
    }
    .pricing-card .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Pricing section needs internal scroll for 3 cards */
    .pricing-section .section-content {
        overflow-y: auto;
    }
    /* Limit mob-bottom height on content-heavy sections so hint stays visible */
    #audience .mob-bottom,
    #support .mob-bottom,
    #pricing .mob-bottom,
    #program .mob-bottom,
    #lead-magnet .mob-bottom {
        overflow-y: auto;
        max-height: 65dvh;
    }

    /* Results mob-bottom: checklist scrollable */
    .results-mob-bottom {
        overflow-y: auto;
        max-height: 65dvh;
        text-align: left;
    }
    /* Bonuses screen */
    .bonuses-mob-bottom {
        overflow-y: auto;
        max-height: 65dvh;
        text-align: left;
    }
    .bonuses-mob-bottom .bonus-total {
        text-align: center;
        margin-top: 0.5rem;
    }
    /* Social-proof mob-bottom: slider + stats row */
    .social-proof-mob-bottom {
        overflow-y: auto;
        max-height: 65dvh;
    }
}

@media (max-width: 480px) {
    .scroll-section {
        padding: 3.5rem 1rem 1.5rem;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
    }
    #hero.scroll-section {
        padding-bottom: 1rem;
    }
    #hero .mob-bottom {
        margin-bottom: 5rem;
    }
    .section-content {
        padding: 0;
        max-height: none;
    }
    .hero-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
    .hero-meta {
        gap: 1.5rem;
        margin-top: 0;
    }
    .meta-value {
        font-size: 1.5rem;
    }
    .meta-label {
        font-size: 0.6rem;
    }
    .countdown-value {
        font-size: 1.3rem;
    }
    .countdown-sep {
        font-size: 1rem;
    }
    .speakers-section {
        padding: 2rem 1rem !important;
    }
    .speaker-card {
        padding: 0.9rem;
        gap: 0.8rem;
    }
    .speaker-card-photo img {
        width: 60px;
        height: 60px;
    }
    .speaker-card-info h3 {
        font-size: 1rem;
    }
    .speaker-card-title {
        font-size: 0.8rem;
    }
    .speaker-card-stats span {
        font-size: 0.7rem;
    }
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .result-card {
        padding: 0.7rem 0.6rem;
    }
    .result-icon {
        font-size: 1.4rem;
    }
    .result-card strong {
        font-size: 0.85rem;
    }
    .result-card span {
        font-size: 0.75rem;
    }
    h2 {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .overline {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }
    .section-content p {
        font-size: 0.95rem;
    }
    .lead-magnet-section {
        padding: 0;
    }
    .lead-magnet-note {
        font-size: 0.75rem;
    }
    .footer-brand {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    .section-split {
        padding: 3.5rem 1rem 1.5rem;
    }
    #register .mob-top h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .register-mob-bottom .register-form {
        padding: 0.7rem 1rem;
    }
    .register-mob-bottom .register-form input {
        padding: 0.55rem 0.8rem;
        font-size: 0.85rem;
    }
    .register-mob-bottom .register-form .form-submit {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
    }
    .cookie-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .cookie-text strong {
        font-size: 0.85rem;
    }
    .cookie-text span {
        font-size: 0.75rem;
    }
    .cookie-accept {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Program: readable on small phones */
    .prog-card {
        padding: 0.9rem;
    }
    .prog-card-num {
        font-size: 1.8rem;
    }
    .prog-card-speaker {
        font-size: 0.75rem;
    }
    .prog-card h3 {
        font-size: 0.95rem;
    }
    .prog-card-result {
        font-size: 0.75rem;
    }

    /* Pricing: readable on small phones */
    .pricing-card {
        padding: 0.9rem;
    }
    .pricing-card h3 {
        font-size: 1rem;
    }
    .pricing-price {
        font-size: 1.4rem;
    }
    .pricing-features {
        font-size: 0.85rem;
    }
    .pricing-card .cta-button {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    /* Audience cards */
    .audience-card {
        padding: 0.6rem 0.8rem;
    }
    .audience-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.1rem;
    }
    .audience-card strong {
        font-size: 0.95rem;
    }

    /* Results + Bonuses */
    .results-checklist li {
        font-size: 0.9rem;
    }
    .bonus-item strong {
        font-size: 0.85rem;
    }
    .bonus-total {
        font-size: 0.8rem;
    }
    .bonus-chip {
        font-size: 0.75rem;
    }

    /* Testimonials */
    .testimonial-slide blockquote {
        font-size: 0.9rem;
    }

    /* Guarantee & FAQ */
    .guarantee-text {
        font-size: 0.9rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}


/* --- Sticky Mobile CTA --- */

.sticky-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1500;
        padding: 0.6rem 1rem;
        background: linear-gradient(180deg, transparent, rgba(5, 5, 16, 0.95) 30%);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    .sticky-mobile-cta.visible {
        transform: translateY(0);
        pointer-events: auto;
    }
    .sticky-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.85rem 1.5rem;
        background: linear-gradient(135deg, #00e5ff, #4488ff);
        color: #000;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1rem;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 -2px 20px rgba(0, 229, 255, 0.3);
    }
    .sticky-cta-btn svg {
        stroke: #000;
    }
}


/* --- Cookie Banner --- */

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1400;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 420px;
    padding: 1.25rem 1.5rem;
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    pointer-events: auto;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.cookie-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 229, 255, 0.08);
    border-radius: 12px;
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cookie-text strong {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-text span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-text a:hover {
    color: var(--text-primary);
}

.cookie-accept {
    flex-shrink: 0;
    align-self: center;
    padding: 0.55rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bg-deep);
    background: var(--accent-cyan);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #fff;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}


/* --- Selection --- */

::selection {
    background: rgba(0, 229, 255, 0.2);
    color: var(--text-primary);
}



/* --- Voice AI Widget --- */

.voice-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.voice-toggle {
    pointer-events: auto;
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00e5ff, #4488ff, #7b2fff);
    background-size: 200% 200%;
    animation: voiceBtnGradient 4s ease infinite;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}
.voice-toggle.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.voice-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.4), 0 0 60px rgba(0, 229, 255, 0.15);
}
.voice-toggle:active { transform: scale(0.95); }

@keyframes voiceBtnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.voice-toggle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.4), rgba(123, 47, 255, 0.4));
    animation: voicePulseRing 2s ease-in-out infinite;
    z-index: -1;
}
@keyframes voicePulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}
/* Attention pulse every 10s */
.voice-toggle.attention-pulse {
    animation: voiceAttentionPulse 1.2s ease-in-out;
}
@keyframes voiceAttentionPulse {
    0% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1); }
    15% { transform: scale(1.15); box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5), 0 0 60px rgba(0, 229, 255, 0.25); }
    30% { transform: scale(0.95); box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1); }
    45% { transform: scale(1.08); box-shadow: 0 5px 25px rgba(0, 229, 255, 0.4), 0 0 50px rgba(0, 229, 255, 0.2); }
    60% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1); }
    100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(0, 229, 255, 0.1); }
}

.voice-widget.open .voice-toggle::before { display: none; }
.voice-toggle-close { display: none; }
.voice-widget.open .voice-toggle-mic { display: none; }
.voice-widget.open .voice-toggle-close { display: block; }

/* Status dot on FAB */
.voice-toggle-status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid rgba(8, 12, 28, 0.95);
    z-index: 1;
    transition: background 0.3s;
}
.voice-widget.listening .voice-toggle-status-dot { background: var(--accent-cyan); }
.voice-widget.speaking .voice-toggle-status-dot { background: var(--accent-purple); }

/* Tooltip */
.voice-toggle-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.voice-toggle:hover .voice-toggle-tooltip { opacity: 1; }
.voice-widget.open .voice-toggle-tooltip { display: none; }

/* Panel */
.voice-panel {
    pointer-events: auto;
    width: 360px;
    max-height: 520px;
    margin-bottom: 12px;
    background: rgba(8, 12, 28, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9) translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.voice-widget.open .voice-panel {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.voice-panel-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-tertiary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 1;
}
.voice-panel-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.voice-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}
.voice-panel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5ff, #7b2fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.voice-panel-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}
.voice-panel-sub {
    font-size: 0.65rem;
    color: var(--text-tertiary);
}

/* Status badge */
.voice-status-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    white-space: nowrap;
}
.voice-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    transition: background 0.3s;
}
.voice-widget.listening .voice-status-badge {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--accent-cyan);
}
.voice-widget.listening .voice-status-dot { background: var(--accent-cyan); }
.voice-widget.speaking .voice-status-badge {
    background: rgba(123, 47, 255, 0.1);
    border-color: rgba(123, 47, 255, 0.3);
    color: var(--accent-purple);
}
.voice-widget.speaking .voice-status-dot { background: var(--accent-purple); }

/* Chat messages */
.voice-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100px;
    max-height: 280px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    scroll-behavior: smooth;
}
.voice-chat-messages::-webkit-scrollbar { width: 4px; }
.voice-chat-messages::-webkit-scrollbar-track { background: transparent; }
.voice-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Message bubbles */
.voice-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.5;
    word-break: break-word;
    white-space: pre-wrap;
    animation: voiceMsgIn 0.3s ease;
}
@keyframes voiceMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.voice-msg.user {
    align-self: flex-end;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-bottom-right-radius: 4px;
}
.voice-msg.ai {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(68, 136, 255, 0.12));
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

/* Typing indicator */
.voice-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(68, 136, 255, 0.08));
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}
.voice-typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: voiceTypingBounce 1.4s ease-in-out infinite;
}
.voice-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.voice-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes voiceTypingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Voice orb visualizer */
.voice-orb-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}
.voice-orb-canvas { width: 80px; height: 80px; }
.voice-orb-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    transition: color 0.3s;
}
.voice-widget.speaking .voice-orb-label { color: var(--accent-purple); }

/* Quick-action chips */
.voice-quick-actions {
    display: flex;
    gap: 6px;
    padding: 6px 0;
    flex-wrap: wrap;
}
.voice-chip {
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.voice-chip:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
    color: var(--accent-cyan);
}

/* Text input row */
.voice-input-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--glass-border);
}
.voice-text-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}
.voice-text-input::placeholder { color: var(--text-tertiary); }
.voice-text-input:focus { border-color: rgba(0, 229, 255, 0.4); }

.voice-send-btn,
.voice-mic-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.voice-send-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
}
.voice-send-btn:hover {
    box-shadow: 0 2px 12px rgba(0, 229, 255, 0.3);
    transform: scale(1.05);
}
.voice-send-btn:disabled {
    opacity: 0.4;
    cursor: default;
    transform: none;
    box-shadow: none;
}
.voice-mic-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}
.voice-mic-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.3);
}
.voice-mic-btn.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    border-color: transparent;
    animation: voiceMicPulse 2s ease-in-out infinite;
}
@keyframes voiceMicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(0, 229, 255, 0); }
}

/* Voice active controls (stop btn) */
.voice-active-controls {
    display: flex;
    gap: 8px;
    padding-top: 6px;
}
.voice-active-controls .voice-btn-stop {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ef4444;
    color: #fff;
    transition: all 0.2s;
}
.voice-active-controls .voice-btn-stop:hover {
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* Mobile */
@media (max-width: 480px) {
    .voice-widget {
        bottom: 4.5rem;
        right: 0.75rem;
    }
    .voice-widget.open {
        inset: 0;
        bottom: 0;
        right: 0;
        z-index: 10000;
        align-items: stretch;
    }
    .voice-panel {
        width: calc(100vw - 1.5rem);
        max-height: calc(100dvh - 6rem);
        border-radius: 16px;
    }
    .voice-widget.open .voice-panel {
        width: 100%;
        max-height: 100%;
        height: 100dvh;
        border-radius: 0;
        margin-bottom: 0;
    }
    .voice-widget.open .voice-toggle {
        display: none;
    }
    .voice-toggle {
        width: 48px;
        height: 48px;
    }
    .voice-chat-messages {
        flex: 1;
        max-height: none;
    }
}
