:root {
    --z-base: 0;
    --z-above: 1;
    --z-content: 2;
    --z-interactive: 10;
    --z-floating-low: 997;
    --z-floating: 998;
    --z-mobile-nav: 999;
    --z-header: 1000;
    --z-menu-toggle: 1001;
    --z-modal: 9999;
    --z-fullscreen: 10000;
    --z-preloader: 99999;
    --bg-deep: #0A0A0A;
    --bg-surface: #111111;
    --bg-elevated: #1A1A1A;
    --border-subtle: #1E1E1E;
    --border-default: #333;
    --border-strong: #555;
    --text-primary: #FFF;
    --text-secondary: #888;
    --text-muted: #555;
    --text-accent: #CCC;
    --accent: #4A7CFF;
    --accent-glow: rgba(74, 124, 255, 0.15);
    --vip-accent: #E2B714;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --fs-xs: .75rem;
    --fs-sm: .875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.25rem;
    --fs-5xl: 4rem;
    --lh-tight: 1.1;
    --lh-snug: 1.25;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;
    --ls-tight: -.03em;
    --ls-wide: .08em;
    --ls-wider: .15em;
    --space-xs: .5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
    --space-3xl: 7rem;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --dur-fast: .2s;
    --dur-normal: .4s;
    --dur-slow: .8s;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.text-center {
    text-align: center;
}

.text-center .section-tag,
.text-center .section-title,
.text-center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: var(--lh-normal);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    -webkit-user-select: none;
    user-select: none;
}

input,
textarea,
.selectable-text {
    -webkit-user-select: auto;
    user-select: auto;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    height: 100dvh;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease-out)
}

img,
svg {
    display: block;
    max-width: 100%
}

em {
    font-style: italic;
    color: var(--text-accent);
    background: linear-gradient(135deg, var(--accent), #88ccdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: none
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem)
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: var(--space-sm) 0;
    transition: background var(--dur-normal), border-color var(--dur-normal), opacity 0.8s ease-out;
    border-bottom: 1px solid transparent;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.5s forwards;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#header.scrolled {
    background: var(--bg-deep);
    border-bottom-color: var(--border-subtle)
}

#header::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 50vh;
    background: transparent;
    transition: background var(--dur-normal);
    pointer-events: none;
}

#header.scrolled::before {
    background: var(--bg-deep);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-mark {
    opacity: .7;
    transition: opacity var(--dur-fast)
}

.logo:hover .logo-mark {
    opacity: 1
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase
}

.nav {
    display: flex;
    gap: var(--space-lg)
}

.nav-link {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    font-weight: 500;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--dur-normal) var(--ease-out)
}

.nav-link:hover {
    color: var(--text-primary)
}

.nav-link:hover::after {
    width: 100%
}

.header-cta {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    padding: .6rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    transition: all var(--dur-fast)
}

.header-cta:hover {
    background: var(--accent);
    color: #fff
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: .5rem;
    z-index: var(--z-menu-toggle);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    z-index: var(--z-mobile-nav);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-normal) var(--ease-out)
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: auto
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color var(--dur-fast)
}

.mobile-nav-link:hover {
    color: var(--text-primary)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
    text-decoration: none;
    white-space: nowrap
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent)
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-default)
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.btn-dark {
    background: var(--bg-deep);
    color: #fff;
    border-color: var(--bg-deep)
}

.btn-dark:hover {
    background: transparent;
    color: var(--bg-deep);
    border-color: var(--bg-deep)
}

.btn-outline-dark {
    background: transparent;
    color: var(--bg-deep);
    border-color: var(--border-default)
}

.btn-outline-dark:hover {
    border-color: var(--bg-deep);
    background: var(--bg-deep);
    color: #fff
}

.hero {
    position: relative;
    height: 100vh;
    height: 100lvh;
    display: block;
    overflow: visible;
    background: transparent
}

#mandala-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: fadeInMandala 2s ease-out forwards;
    background-image: url('../images/IMGmap/bg-desktop.webp');
    background-size: 297.25vmin;
    background-position: center;
}

@media (min-width: 768px) {
    #mandala-container {
        background-size: 205vmin;
    }
}

@keyframes fadeInMandala {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#mandala-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: #000;
    opacity: 0;
    animation: fadeInOverlay 2s ease-in-out 4s forwards;
    transform: translateZ(0);
    will-change: opacity;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.7;
    }
}

#mandala-container.fullscreen-mode {
    z-index: var(--z-modal);
    opacity: 1 !important;
    pointer-events: auto;
}

#mandala-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    transition: opacity 0.8s ease-out;
}

.hidden-for-animation {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.8s ease-out !important;
}

.animation-toggle-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: var(--z-floating);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: rgba(20, 22, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s, border-color 0.2s;
    opacity: 0.35;
    transform: translateY(0);
    pointer-events: auto;
}

@media (hover: hover) {
    .animation-toggle-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
        opacity: 1;
    }
}

.animation-toggle-btn:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    opacity: 1;
}

.animation-toggle-btn .icon-close {
    display: none;
}

.animation-toggle-btn.active {
    z-index: var(--z-fullscreen);
}

.animation-toggle-btn.active .icon-eye {
    display: none;
}

.animation-toggle-btn.active .icon-close {
    display: block;
}

.speed-control-wrapper {
    position: fixed;
    bottom: 9rem;
    right: 2rem;
    z-index: var(--z-fullscreen);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all var(--dur-normal) var(--ease-out);
}

.speed-control-wrapper.visible {
    opacity: 0.35;
    pointer-events: auto;
    transform: translateY(0);
}

.speed-control-wrapper.visible:hover,
.speed-control-wrapper.visible:active {
    opacity: 1;
}

.speed-options-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
}

.speed-options-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.speed-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 22, 28, 0.92);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all var(--dur-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-option:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.speed-option.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.speed-toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(20, 22, 28, 0.92);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--dur-normal) var(--ease-out);
}

@media (hover: hover) {
    .speed-toggle-btn:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
    }
}

.speed-toggle-btn.menu-open {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.speed-toggle-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@media (hover: hover) {
    .speed-toggle-btn.active:hover {
        border-color: #fff;
    }
}

.hero-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 5;
    width: 100%;
    text-align: center;
    pointer-events: none;
    will-change: transform, opacity;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.hero-banner.hero-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-50%, calc(-50% - 30px), 0);
}

.hero-banner-bg {
    position: absolute;
    inset: -10px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    z-index: -1;
    opacity: 0;
    transition: opacity 2s ease-out 2.8s;
}

.hero-ready .hero-banner-bg {
    opacity: 1;
}

@keyframes fadeInHeroBg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-banner-text {
    padding: 2rem 2rem;
}

.hero-pretitle {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-ready .hero-pretitle {
    animation: fadeInUp 0.6s ease-out 2.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-course-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: var(--ls-tight);
    color: #fff;
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.hero-ready .hero-course-title {
    animation: fadeInUp 0.7s ease-out 3.1s forwards;
}

.hero-cta-wrapper {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(15px);
}

.hero-ready .hero-cta-wrapper {
    animation: fadeInUp 0.6s ease-out 3.4s forwards;
}

.hero-cta-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    color: var(--text-secondary);
    background: rgba(20, 22, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.intro-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.intro-content {
    max-width: 720px;
    padding: var(--space-xl) 0;
    text-align: center;
    margin: 0 auto;
}

.pre-title {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-lg)
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.proof-strip {
    padding: var(--space-xl) 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: var(--space-lg)
}

.proof-value {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    display: block;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .5rem;
    text-shadow: 0 0 20px var(--accent-glow)
}

.proof-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide)
}

.for-whom-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 10;
}

.whom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    background: transparent;
    border: none
}

.whom-card {
    padding: var(--space-xl);
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.whom-card--yes .whom-heading {
    color: var(--accent)
}

.whom-card--no .whom-heading {
    color: var(--text-accent)
}

.whom-heading {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-md)
}

.whom-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.whom-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-base);
    color: var(--text-accent);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: var(--lh-relaxed)
}

.whom-list li:last-child {
    border-bottom: none
}

.whom-icon {
    flex-shrink: 0;
    margin-top: 2px
}

.whom-icon--yes {
    stroke: var(--accent)
}

.whom-icon--no {
    stroke: rgba(255, 255, 255, 0.5)
}

.ideology {
    padding: var(--space-3xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.section-intro {
    margin-bottom: var(--space-2xl)
}

.section-tag {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: var(--space-md)
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
    font-weight: 700;
    line-height: var(--lh-snug);
    letter-spacing: var(--ls-tight);
    max-width: 800px
}

.section-title em {
    font-style: normal;
    color: var(--accent);
    border-bottom: none
}

.section-lead {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: var(--space-md);
    line-height: var(--lh-relaxed);
    font-weight: 300
}

.ideology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    background: transparent;
    border: none;
}

.ideology-block {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all var(--dur-normal);
}

.ideology-block:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px)
}

.ideology-block--wide {
    grid-column: 1/-1
}

.block-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 800;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
    letter-spacing: -4px;
    transition: color var(--dur-normal)
}

.ideology-block:hover .block-number {
    color: rgba(255, 255, 255, 0.05)
}

.block-top {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-sm)
}

.ideology-icon {
    display: block;
    width: 64px;
    height: 64px;
    color: var(--text-muted);
    transition: all var(--dur-normal)
}

.ideology-block:hover .ideology-icon {
    color: var(--accent)
}

.ideology-icon--xl {
    width: 96px;
    height: 96px;
    margin-top: -16px;
    margin-bottom: -16px;
    margin-left: -8px
}

.depth-card::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -5%;
    width: 110%;
    height: 140px;
    background-image: url('../images/IMGmap/Smoke.webp');
    background-size: cover;
    background-position: center top;
    opacity: 0.25;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to top, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
    transition: opacity var(--dur-normal);
}

.depth-card:hover::before {
    opacity: 0.4;
}

.block-content {
    position: relative;
    z-index: 2
}

.block-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: var(--ls-tight)
}

.block-text {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 600px;
    margin-bottom: var(--space-sm)
}

.block-text:last-child {
    margin-bottom: 0
}

.block-text--accent {
    color: var(--text-accent)
}

.block-text em {
    color: var(--accent);
    border-bottom: none
}

.outcomes-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.outcome-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl) var(--space-md);
    transition: all var(--dur-normal);
    display: flex;
    flex-direction: column;
}

.outcome-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px)
}

.outcome-icon {
    width: 64px;
    height: 64px;
    color: var(--accent);
    margin-bottom: var(--space-lg);
    margin-left: 12px;
    filter: drop-shadow(0 0 12px var(--accent-glow));
    flex-shrink: 0;
}

.outcome-card h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.outcome-card p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}

.program-section {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--bg-surface)
}

.roadmap-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: var(--space-2xl);
    scrollbar-width: none;
    transform: translateZ(0);
}

.roadmap-container::-webkit-scrollbar {
    display: none;
}

.roadmap-svg {
    min-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
    transform: translateZ(0);
}

.swipe-hint {
    display: none;
    position: absolute;
    right: 35px;
    bottom: 20px;
    z-index: 10;
    pointer-events: none !important;
    transition: opacity 0.4s ease;
    color: var(--text-primary);
    opacity: 0.8;
}

#svg-click-hint,
.swipe-hint * {
    pointer-events: none !important;
}

.swipe-hand {
    animation: swipeHandAnim 3s infinite ease-in-out;
}

@keyframes swipeHandAnim {

    0%,
    100% {
        transform: translateX(-20px);
    }

    50% {
        transform: translateX(20px);
    }
}

.swipe-hint.hidden {
    opacity: 0 !important;
}

@keyframes swipePulse {

    0%,
    100% {
        transform: translate(0, -50%);
        opacity: 0.8;
    }

    50% {
        transform: translate(10px, -50%);
        opacity: 1;
    }
}

@media (max-width: 850px) {
    .swipe-hint {
        display: flex;
    }
}

.program-level {
    margin-bottom: var(--space-2xl)
}

.program-level:last-child {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .program-section {
        padding: var(--space-3xl) 0;
    }

    .roadmap-wrapper {
        margin-left: calc(-1 * clamp(1.5rem, 5vw, 4rem));
        margin-right: calc(-1 * clamp(1.5rem, 5vw, 4rem));
    }

    .roadmap-container {
        padding: 0 clamp(1.5rem, 5vw, 4rem);
    }

    .modules-grid {
        margin-left: calc(-1 * clamp(1.5rem, 5vw, 4rem));
        margin-right: calc(-1 * clamp(1.5rem, 5vw, 4rem));
    }

    .module-card {
        padding: var(--space-lg) clamp(1.5rem, 5vw, 4rem);
    }

    .level-header {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.level-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent
}

.level-badge {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    letter-spacing: var(--ls-tight);
    display: flex;
    align-items: center;
    gap: var(--space-sm)
}

.level-num {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--accent);
    margin-right: var(--space-xs)
}

.level-stats {
    font-size: var(--fs-sm);
    color: var(--text-secondary)
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1px;
    background: var(--border-subtle)
}

.module-card {
    background: var(--bg-deep);
    padding: var(--space-xl);
    transition: background var(--dur-normal), transform var(--dur-normal), border-color var(--dur-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.module-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px)
}

.module-title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    letter-spacing: var(--ls-tight);
    line-height: var(--lh-snug)
}

.module-desc {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-sm)
}

.module-meta {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: var(--ls-wide)
}

.author-section {
    padding: var(--space-xl) 0 var(--space-3xl);
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.author-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: center
}

.author-visual {
    text-align: center
}

.author-avatar-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.author-avatar {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

.bagua-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 260px;
    pointer-events: none;
    z-index: 1;
    animation: spinSlow 120s linear infinite;
    overflow: visible;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.author-info {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: var(--space-xl);
    position: relative;
}

.glass-panel {
    background: rgba(30, 30, 35, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.author-initials {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--accent)
}

.author-stats-row {
    display: flex;
    gap: var(--space-lg);
    justify-content: center
}

.author-stat {
    text-align: center
}

.author-stat-val {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    display: block;
    color: var(--accent)
}

.author-stat-lbl {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide)
}

.author-bio {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-sm)
}

.reviews-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 10;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
    background: transparent;
    border: none
}

.review-card {
    background: var(--bg-deep);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: var(--space-xl);
    padding-top: 3.5rem;
    transition: all var(--dur-normal);
}

.review-card:hover {
    border-color: var(--border-default);
    transform: translateY(-2px)
}

.review-badge {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    background: linear-gradient(135deg, var(--accent), #88ccdd);
    color: #0A0A0A;
    font-size: var(--fs-xs);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    padding: .4rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--accent-glow);
    z-index: 10;
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

.review-text {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
    font-style: italic
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm)
}

.review-ava {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0
}

.review-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-sm);
    display: block
}

.review-role {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    letter-spacing: var(--ls-wide)
}

.reviews-cta {
    text-align: center;
    margin-top: var(--space-xl)
}

.reviews-page-hero {
    padding: 8rem 0 var(--space-xl);
    border-bottom: 1px solid var(--border-subtle)
}

.reviews-page-hero .section-lead {
    margin-top: var(--space-md)
}

.reviews-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle)
}

.review-card--clickable {
    background: var(--bg-deep);
    padding: var(--space-xl);
    cursor: pointer;
    transition: background var(--dur-normal), transform var(--dur-normal);
    position: relative
}

.review-card--clickable:hover {
    background: var(--bg-surface);
    transform: translateY(-2px)
}

.review-text--short {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    font-style: italic
}

.review-expand {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--accent);
    letter-spacing: var(--ls-wide);
    display: block;
    margin-top: var(--space-sm);
    transition: opacity var(--dur-fast)
}

.review-card--clickable:hover .review-expand {
    opacity: .7
}

.review-date {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: var(--space-xs)
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease-out)
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto
}

.modal-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(.95);
    transition: all .4s var(--ease-out)
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1)
}

.modal-close {
    position: sticky;
    top: 1rem;
    margin-left: auto;
    margin-right: 1rem;
    margin-top: 1rem;
    margin-bottom: calc(-36px - 1rem);
    background: var(--bg-deep);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all var(--dur-fast);
    z-index: 100
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-surface);
    border-color: var(--border-default)
}

.modal-body {
    padding: var(--space-xl) var(--space-xl) var(--space-md)
}

.modal-body p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    font-style: italic
}

.modal-body p:last-child {
    margin-bottom: 0
}

.all-reviews-card {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.all-reviews-body {
    overflow-y: auto;
    flex-grow: 1;
    padding: 3rem var(--space-xl) var(--space-lg);
}

.modal-footer {
    padding: var(--space-md) var(--space-xl) var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.reviews-grid-auto {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.author-modal-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.5rem
}

.author-modal-avatar {
    width: 100px;
    height: 100px;
    margin: 0;
    flex-shrink: 0
}

.author-modal-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.8
}

.author-name {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    margin-bottom: 0.5rem;
    color: var(--text-primary)
}

.author-role {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: 1rem
}

.author-stats-row.modal-stats {
    gap: 1.5rem;
    justify-content: flex-start
}

.author-stat.modal-stat {
    text-align: left
}

.author-stat.modal-stat .author-stat-val {
    font-size: var(--fs-lg)
}

.author-modal-content {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed)
}

.author-modal-content p {
    margin-bottom: 1rem
}

.author-modal-content h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    margin-bottom: 1rem;
    margin-top: 2rem
}

.author-modal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem
}

.author-modal-content li {
    margin-bottom: 0.5rem
}

.mod-modal-body {
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mod-meta {
    font-family: var(--font-mono);
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem
}

.mod-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    color: var(--text-primary)
}

.mod-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem
}

.mod-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem
}

.mod-why-title {
    color: #a5d6a7;
    font-size: 1.1rem;
    margin-bottom: 0.5rem
}

.mod-why-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    border-left: 3px solid #a5d6a7;
    padding-left: 1rem
}

.mod-image {
    position: relative;
    z-index: 0;
    pointer-events: none;
    margin: 0;
}

.mod-image img {
    width: 110%;
    max-width: 110%;
    margin-left: -5%;
    margin-top: -5%;
    margin-bottom: -5%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .mod-image img {
        width: 120%;
        max-width: 120%;
        margin-left: -10%;
        margin-top: -10%;
    }
}

@media (max-width: 350px) {
    .mod-image img {
        width: 130%;
        max-width: 130%;
        margin-left: -15%;
    }
}

.submit-review-section {
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--border-subtle)
}

.submit-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.review-form textarea {
    min-height: 120px
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    transition: color var(--dur-fast)
}

.back-link:hover {
    color: var(--accent)
}

.pricing-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.pricing-section::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: 0;
    width: 100%;
    height: 700px;
    background-image: url('../images/IMGmap/Smoke.webp');
    background-size: cover;
    background-position: center top;
    pointer-events: none;
    z-index: 1;
}

.pricing-section>.container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
    align-items: stretch;
}

.price-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-xl);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: all var(--dur-normal);
    position: relative;
    height: 100%;
}

.price-card:hover {
    border-color: var(--border-default);
    transform: translateY(-2px)
}

.price-card--featured {
    background: linear-gradient(145deg, rgba(74, 124, 255, 0.05), var(--bg-surface));
    border: 1px solid rgba(74, 124, 255, 0.4)
}

.price-card--featured:hover {
    border-color: var(--accent)
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    background: linear-gradient(135deg, var(--accent), #88ccdd);
    color: #0A0A0A;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    padding: .4rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--accent-glow)
}

.price-card--vip {
    border-color: rgba(226, 183, 20, 0.3);
}

.price-card--vip:hover {
    border-color: rgba(226, 183, 20, 0.6);
    box-shadow: 0 10px 40px rgba(226, 183, 20, 0.1);
}

.price-card--vip .price-tier {
    color: var(--vip-accent);
}

.price-card--vip .price-amount {
    color: var(--vip-accent);
    text-shadow: 0 0 20px rgba(226, 183, 20, 0.15);
}

.price-card--vip .price-badge {
    background: linear-gradient(135deg, #FFE169, var(--vip-accent));
    box-shadow: 0 4px 15px rgba(226, 183, 20, 0.2);
}

.price-card--vip .btn {
    border-color: var(--vip-accent);
    color: var(--vip-accent);
}

.price-card--vip .btn:hover {
    background: rgba(226, 183, 20, 0.1);
}

.price-card-left {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    height: 230px;
    display: flex;
    flex-direction: column;
}

.price-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    margin-top: auto;
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
    font-weight: 500;
    opacity: 0.6;
    height: 20px;
    display: block;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-md);
    margin-top: auto;
    line-height: 1;
}

.price-card--featured .price-amount {
    margin-bottom: 0
}

.price-desc {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    height: 5.5rem;
    display: flex;
    align-items: flex-start
}

.price-features {
    list-style: none;
    margin-bottom: auto;
    padding-bottom: var(--space-lg)
}

.price-features li {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    padding: .8rem 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: .5rem
}

.price-features li::before {
    content: '\2713';
    color: var(--accent);
    font-family: var(--font-mono)
}

.price-features li:last-child {
    border-bottom: none
}

.price-card-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    margin-top: 0
}

.price-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto
}

.price-seats-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-seats-info strong {
    color: #fff;
}

.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 10;
}

.faq-section .section-intro {
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.faq-item:last-child {
    border-bottom: none
}

.faq-q {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 600;
    padding: var(--space-md) 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--dur-fast)
}

.faq-q:hover {
    color: var(--accent)
}

.faq-q::after {
    content: '+';
    font-size: var(--fs-xl);
    color: var(--text-muted);
    transition: transform var(--dur-fast)
}

details[open] .faq-q::after {
    transform: rotate(45deg);
    color: var(--accent)
}

.faq-a {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    padding: 0 0 var(--space-md);
    max-width: 680px
}

.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
}

.contact-lead {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    margin-top: var(--space-md);
    line-height: var(--lh-relaxed)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.form-group label {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    color: var(--text-muted)
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    padding: .8rem 1rem;
    transition: border-color var(--dur-fast);
    outline: none;
    border-radius: 0
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent)
}

.form-group select {
    appearance: none;
    cursor: pointer
}

.form-group textarea {
    resize: vertical;
    min-height: 80px
}

.form-submit {
    width: 100%
}

.back-to-top {
    position: fixed;
    bottom: 9rem;
    right: 2rem;
    z-index: var(--z-floating);
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: rgba(20, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out), color 0.2s, border-color 0.2s;
}

.back-to-top.visible {
    opacity: 0.35;
    pointer-events: auto;
}

.back-to-top *,
.animation-toggle-btn *,
.audio-toggle-btn *,
.speed-toggle-btn *,
.speed-option * {
    pointer-events: none;
}

@media (hover: hover) {
    .back-to-top:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
        opacity: 1;
    }
}

.back-to-top:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    opacity: 1;
}

#footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: start;
    gap: var(--space-2xl)
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: .5rem
}

.footer-copy {
    font-size: var(--fs-xs);
    color: var(--text-primary);
    opacity: 0.85;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs)
}

.footer-nav a {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: color var(--dur-fast)
}

.footer-nav a:hover {
    color: var(--accent)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs)
}

.footer-links a {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    transition: color var(--dur-fast)
}

.footer-links a:hover {
    color: var(--accent)
}

body.f11-fullscreen .speed-control-wrapper,
body.f11-fullscreen #animation-toggle-btn.active {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.5s ease-out !important;
}

body.f11-fullscreen.show-ui .speed-control-wrapper,
body.f11-fullscreen.show-ui #animation-toggle-btn.active {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

@media(max-width:1023px) {

    .nav,
    .header-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 480px) {
    .header-logo img {
        height: 36px
    }

    .hero-title {
        font-size: 2.5rem
    }

    .hero-subtitle {
        font-size: 1.1rem
    }

    .stat-number {
        font-size: 2.5rem
    }
}

body[style*="overflow: hidden"] {
    touch-action: none !important;
    overscroll-behavior: none !important;
}

body[style*="overflow: hidden"] .modal-overlay.active {
    touch-action: none !important;
    overscroll-behavior: none !important;
}

body[style*="overflow: hidden"] .modal-overlay.active .modal-card,
body[style*="overflow: hidden"] .modal-overlay.active .all-reviews-card {
    touch-action: pan-y !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
}

@supports (height: 100dvh) {
    .modal-overlay {
        height: 100dvh !important;
    }

    @media (max-width: 768px) {

        .modal-overlay .modal-card,
        .modal-overlay .all-reviews-card {
            max-height: 100dvh !important;
        }
    }
}

@media(max-width:768px) {
    :root {
        --space-3xl: 4rem;
        --space-2xl: 3rem;
        --space-xl: 2rem;
        --space-lg: 1.5rem;
    }

    .intro-section {
        padding: var(--space-xl) 0
    }

    .intro-content {
        padding: var(--space-md) 0
    }

    .author-modal-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem
    }

    .author-stats-row.modal-stats {
        justify-content: center
    }

    .author-stat.modal-stat {
        text-align: center
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .whom-grid,
    .ideology-grid,
    .contact-grid,
    .author-grid,
    .reviews-grid,
    .reviews-all-grid,
    .pricing-grid,
    .modules-grid {
        grid-template-columns: 1fr
    }

    .price-card,
    .review-card,
    .start-info-box.pricing-footer {
        padding: 1.5rem;
        padding-top: 3rem;
    }

    .btn {
        padding: 1rem;
        white-space: normal;
        text-align: center
    }

    .price-badge {
        white-space: normal;
        text-align: center;
        width: 90%;
        max-width: 280px;
    }

    .modal-overlay {
        padding: 0
    }

    .modal-card,
    .all-reviews-card {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none
    }

    .all-reviews-body {
        padding: 4rem var(--space-md) var(--space-md)
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg)
    }

    .footer-nav,
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-sm)
    }

    .section-title {
        font-size: var(--fs-2xl)
    }

    .level-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem
    }

    .contact-grid {
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        gap: var(--space-xl)
    }

    .faq-q {
        font-size: var(--fs-base);
        font-weight: 500;
        padding: var(--space-sm) 0;
        align-items: flex-start;
        gap: 1rem
    }

    .faq-q::after {
        flex-shrink: 0;
        margin-top: 2px
    }

    .faq-a {
        font-size: var(--fs-sm)
    }

    .hero-course-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .hero-pretitle {
        font-size: var(--fs-xs);
    }

    .hero-banner-text {
        padding: 1.5rem 1.5rem;
    }

    #mandala-container svg {
        transform: scale(1.45);
        transform-origin: center center;
    }

    .hero-cta-btn {
        padding: 0.6rem 1.5rem;
        font-size: var(--fs-xs);
    }

    .animation-toggle-btn {
        bottom: 4.5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .speed-control-wrapper {
        bottom: 7.5rem;
        right: 1rem;
    }

    .speed-toggle-btn {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .back-to-top {
        bottom: 7.5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    padding-left: 96px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(74, 124, 255, 0.1) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -96px;
    width: 88px;
    height: 88px;
    background: var(--bg-deep);
    border: 2px solid var(--border-default);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #fff;
    transition: all var(--dur-normal);
}

.timeline-item[style*="--badge-color"] .timeline-badge {
    border-color: color-mix(in srgb, var(--badge-color) 40%, var(--border-default));
}

.timeline-badge .badge-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.timeline-garland {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-25%);
    z-index: 10;
    pointer-events: none;
}

.timeline-content {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 64px var(--space-xl) var(--space-xl) var(--space-xl);
    position: relative;
    transition: all var(--dur-normal);
}

.timeline-content.has-garland {
    padding-top: calc(12% + 10px) !important;
}

.timeline-content.frosty-effect {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.15);
    padding-top: 70px;
}

.timeline-bg-image {
    width: 45%;
}

@keyframes tree-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.8)) drop-shadow(0 0 30px rgba(0, 210, 255, 0.4));
    }
}

.timeline-text-content {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

.timeline-content.frosty-effect:hover {
    background-color: var(--bg-surface);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.25);
}

.timeline-date {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: #fff;
    line-height: var(--lh-snug);
}

.timeline-meta {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-family: var(--font-mono);
}

.timeline-desc {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--lh-relaxed);
}

@media(max-width: 768px) {
    .timeline-container {
        padding-left: 0;
    }

    .timeline-container::before {
        left: 28px;
        z-index: 0;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }

    .timeline-text-content {
        max-width: 75%;
    }

    .timeline-badge {
        position: relative;
        left: 0;
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 1rem;
        z-index: 2;
    }

    .timeline-bg-image {
        width: 35% !important;
    }

    .timeline-badge .badge-text {
        font-size: 0.65rem;
    }

    .timeline-badge svg {
        width: 24px;
        height: 24px;
    }

    .timeline-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .timeline-date {
        font-size: var(--fs-xs);
        margin-bottom: 0.5rem;
    }

    .timeline-meta {
        font-size: var(--fs-xs);
        margin-bottom: 1rem;
    }

    .timeline-desc {
        font-size: var(--fs-sm);
    }
}

.start-info-box.pricing-footer {
    max-width: 800px;
    margin: var(--space-xl) auto 0;
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: var(--space-xl);
    text-align: center;
}

.start-info-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    letter-spacing: var(--ls-tight);
}

.start-info-subtitle {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-mono);
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
}

.countdown-separator {
    font-family: var(--font-mono);
    font-size: var(--fs-2xl);
    color: var(--border-subtle);
    font-weight: 300;
    margin-top: -1.5rem;
}

@media(max-width: 480px) {
    .countdown-wrapper {
        gap: 0.25rem;
    }

    .countdown-item {
        padding: 0.4rem 0.4rem;
        min-width: 50px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: var(--fs-xl);
    }

    .countdown-separator {
        font-size: var(--fs-lg);
        margin-top: -1rem;
    }

    .countdown-item:nth-child(5) .countdown-label {
        font-size: 0;
    }

    .countdown-item:nth-child(5) .countdown-label::after {
        content: "мин";
        font-size: var(--fs-xs);
    }

    .countdown-item:nth-child(7) .countdown-label {
        font-size: 0;
    }

    .countdown-item:nth-child(7) .countdown-label::after {
        content: "сек";
        font-size: var(--fs-xs);
    }
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.pain-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: transform var(--dur-normal), border-color var(--dur-normal);
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.pain-card-number {
    font-family: var(--font-mono);
    font-size: 8rem;
    font-weight: 800;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    bottom: -12px;
    right: -4px;
    pointer-events: none;
    letter-spacing: -4px;
    z-index: 0;
}

.pain-card-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pain-title-index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 1px;
}

.pain-card-text {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
}

.mod-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    font-size: 10px;
    cursor: help;
    margin-left: 6px;
    -webkit-tap-highlight-color: transparent;
}

.mod-tooltip-wrapper span {
    display: block;
    transform: translateY(0);
    line-height: 1;
}

.mod-tooltip-text {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-85%);
    width: 220px;
    white-space: normal;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    z-index: 100;
    text-align: left;
    line-height: 1.4;
}

.mod-tooltip-wrapper:hover .mod-tooltip-text,
.mod-tooltip-wrapper:active .mod-tooltip-text,
.mod-tooltip-wrapper:focus .mod-tooltip-text {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 8px);
}

@media (max-width: 600px) {
    .mod-tooltip-text {
        transform: translateX(-30%);
        width: 180px;
    }
}

#cat-helper {
    position: fixed;
    bottom: 0;
    right: 3.5rem;
    width: 110px;
    height: auto;
    z-index: var(--z-floating-low);
    pointer-events: none;
    transform: translateY(150%);
}

#cat-helper.cat-run {
    animation: peekCat 3.5s ease-out 0.5s forwards;
}

@media (min-width: 769px) {
    #cat-helper {
        bottom: 0;
        width: 135px;
        right: 4.5rem;
    }
}

@keyframes peekCat {
    0% {
        transform: translate(-40px, 150%);
        opacity: 0;
    }

    10% {
        transform: translate(0, 0);
        opacity: 1;
    }

    73% {
        transform: translate(0, 0);
        opacity: 1;
    }

    88%,
    100% {
        transform: translate(-40px, 150%);
        opacity: 0;
    }
}

.song-info-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    height: 44px;
    background: rgba(20, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    display: flex;
    align-items: center;
    z-index: var(--z-floating-low);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    max-width: 44px;
    transition: max-width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}

.song-info-widget.show {
    opacity: 1;
    max-width: 450px;
}

.song-info-content {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 52px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-sans);
}

.song-info-title {
    color: #fff;
    margin-left: 12px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.music-bars {
    display: flex;
    align-items: flex-end;
    height: 12px;
    gap: 2px;
    flex-shrink: 0;
}

.music-bars span {
    width: 3px;
    background-color: var(--accent);
    border-radius: 1px;
    animation: musicBar 1s ease-in-out infinite alternate;
}

.music-bars span:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.music-bars span:nth-child(2) {
    height: 80%;
    animation-delay: 0.3s;
}

.music-bars span:nth-child(3) {
    height: 60%;
    animation-delay: 0.5s;
}

.music-bars span:nth-child(4) {
    height: 100%;
    animation-delay: 0.2s;
}

@keyframes musicBar {
    0% {
        height: 20%;
    }

    100% {
        height: 100%;
    }
}

@media(max-width: 768px) {
    .song-info-widget {
        bottom: 1.5rem;
        right: 1rem;
        height: 40px;
        border-radius: 20px;
        max-width: 40px;
    }

    .song-info-widget.show {
        max-width: calc(100vw - 2rem);
    }

    .song-info-content {
        padding-right: 48px;
        padding-left: 15px;
        font-size: 0.7rem;
    }
}

.audio-toggle-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-floating);
    background: rgba(20, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s var(--ease-out), color 0.2s, border-color 0.2s, background-color 0.2s;
    opacity: 0.35;
    pointer-events: auto;
}

@media (hover: hover) {
    .audio-toggle-btn:hover {
        opacity: 1;
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.audio-toggle-btn:active {
    opacity: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.audio-toggle-btn.in-fullscreen {
    z-index: var(--z-fullscreen);
}

.audio-toggle-btn.cat-run-attention {
    animation: btnAttentionWhite 3.5s ease-out 0.5s;
}

@keyframes btnAttentionWhite {

    0%,
    9% {}

    10% {
        opacity: 1;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    15% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    20% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    25% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        opacity: 1;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
    }

    30%,
    73% {
        opacity: 1;
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        color: #fff;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }

    88%,
    100% {
        opacity: 0.35;
        background: rgba(20, 20, 28, 0.92);
        border-color: rgba(255, 255, 255, 0.12);
        color: var(--text-secondary);
    }
}

.audio-toggle-btn.playing {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.audio-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.audio-icon-mute {
    opacity: 1;
    transform: scale(1);
}

.audio-icon-play {
    opacity: 0;
    transform: scale(0.8);
}

.audio-toggle-btn.playing .audio-icon-mute {
    opacity: 0;
    transform: scale(0.8);
}

.audio-toggle-btn.playing .audio-icon-play {
    opacity: 1;
    transform: scale(1);
}

@media(max-width: 768px) {
    .audio-toggle-btn {
        bottom: 1.5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

.logo-img {
    height: 52px;
    width: auto;
}

.mobile-nav-link.highlight {
    color: var(--accent);
}

.intro-container-z2 {
    position: relative;
    z-index: 2;
}

.mt-negative-30 {
    margin-top: -30px;
}

.mb-space-md {
    margin-bottom: var(--space-md);
}

.section-lead-custom {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.evolution-container-custom {
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.evolution-svg-custom {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.pain-section-custom {
    padding: var(--space-3xl) 0;
    background: var(--bg-deep);
    position: relative;
    z-index: 10;
}

.depth-section-custom {
    padding: var(--space-3xl) 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 10;
}

.ideology-icon-mb-12 {
    margin-bottom: -12px;
}

.ideology-icon-mb-24 {
    margin-bottom: -24px;
}

.ideology-icon-mb-8 {
    margin-bottom: -8px;
}

.ideology-icon-mb-11 {
    margin-bottom: -11px;
}

.outcome-icon-scale-1-3 {
    transform: scale(1.3);
}

.outcome-icon-scale-1-15 {
    transform: scale(1.15);
}

.program-section-custom {
    background: linear-gradient(to bottom, var(--bg-surface) 0%, var(--bg-deep) 100%);
    position: relative;
    z-index: 10;
}

.roadmap-wrapper-custom {
    position: relative;
}

.timeline-mt-3xl {
    margin-top: var(--space-3xl);
}

.section-divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 20;
    background: var(--bg-deep);
}

.divider-line-right {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05));
}

.divider-icon {
    margin: 0 20px;
}

.divider-line-left {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.05));
}

.author-img-custom {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.85;
}

.author-actions-custom {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.author-social-links-custom {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link-custom {
    color: var(--text-muted);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-custom:hover {
    color: var(--primary-color);
}

.timer-finished-title-custom {
    color: var(--vip-accent);
}

.timer-finished-subtitle-custom {
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.timer-actions-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-tg-btn-custom {
    background: var(--vip-accent);
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
}

.timer-email-btn-custom {
    padding: 1rem 1.5rem;
}

.roadmap-modal-content-custom {
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}

.footer-legal-links a {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: var(--text-primary);
    text-decoration-color: var(--text-primary);
}

.form-consent-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-consent-text a {
    color: var(--text-secondary);
    text-decoration: underline;
}

.form-consent-text a:hover {
    color: var(--accent);
}

.legal-modal-container {
    max-width: 800px;
}

.legal-modal-body h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.legal-modal-body p {
    margin-bottom: 1rem;
}

.hero-actions-custom {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.global-preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: var(--z-preloader);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.global-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: 200px;
    opacity: 0.8;
    animation: preloaderPulse 2s infinite ease-in-out;
}

.preloader-text-wrapper {
    height: 20px;
    overflow: hidden;
    position: relative;
}

.preloader-text {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.preloader-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@media (max-width: 900px) {

    #mandala-container svg,
    #mandala-container * {
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .timeline-content.frosty-effect,
    .glass-panel {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: rgba(20, 20, 20, 0.98) !important;
    }
}

[id^="H"][id$="-number-bg"],
[id^="H"][id$="-glyph-bg"],
[id^="H"][id$="-thin-lines"],
[id^="H"][id$="-hexagram-lines"] {
    opacity: 0.1;
    transition: opacity 1.5s ease-out;
}

.gate-active {
    opacity: 1 !important;
    transition: opacity 0.1s ease-in !important;
}