/* ===========================
   AgentBar — Techno Bar Theme
   Dark, Minimal, Experimental
   =========================== */

/* ── Scattered Bar Photos ── */
.bar-photo {
    position: absolute;
    border-radius: 6px;
    box-shadow:
        0 8px 12px rgba(0,0,0,0.5),
        0 24px 64px rgba(0,0,0,0.8),
        0 0 0 1px rgba(167,139,250,0.3),
        0 0 32px rgba(167,139,250,0.1);
    overflow: hidden;
    z-index: 3;
    cursor: default;
}
.bar-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    filter: saturate(1.3) brightness(0.95);
}
/* Subtle vignette on top */
.bar-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(167,139,250,0.07) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ── Photo 1: hero — dance floor, right side sticking out ── */
.bar-photo-1 {
    width: 300px; height: 200px;
    right: calc(50% - 680px);
    top: 160px;
    transform: rotate(3.5deg);
}
/* ── Photo 2: trust stats — bartender, left side ── */
.bar-photo-2 {
    width: 260px; height: 175px;
    left: calc(50% - 680px);
    top: -10px;
    transform: rotate(-4deg);
}
/* ── Photo 3: reviews — toast, right side low ── */
.bar-photo-3 {
    width: 280px; height: 188px;
    right: calc(50% - 700px);
    bottom: 60px;
    transform: rotate(2deg);
}
/* ── Photo 4: journey — agents talking, left side ── */
.bar-photo-4 {
    width: 270px; height: 182px;
    left: calc(50% - 690px);
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
}
/* ── Photo 5: updates — serve, right side ── */
.bar-photo-5 {
    width: 285px; height: 192px;
    right: calc(50% - 710px);
    top: 60px;
    transform: rotate(4.5deg);
}

/* ── Photos 6–10 ── */
.bar-photo-6 {
    width: 275px; height: 185px;
    left: calc(50% - 700px);
    top: 30px;
    transform: rotate(-3deg);
}
.bar-photo-7 {
    width: 290px; height: 195px;
    right: calc(50% - 720px);
    bottom: 50px;
    transform: rotate(2deg);
}
.bar-photo-8 {
    width: 265px; height: 178px;
    left: calc(50% - 695px);
    top: 40px;
    transform: rotate(-4.5deg);
}
.bar-photo-9 {
    width: 280px; height: 188px;
    right: calc(50% - 705px);
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
}
.bar-photo-10 {
    width: 270px; height: 182px;
    left: calc(50% - 690px);
    bottom: 70px;
    transform: rotate(-2.5deg);
}

/* Make sections relative for absolute photo positioning */
.hero,
.section-trust,
.section-reviews,
.section-journey,
.section-updates,
.section-topics,
.section-execution,
.section-principles,
.section-telegram-follow {
    overflow: visible;
}

/* Hide on screens too narrow to show side photos */
@media (max-width: 1100px) {
    .bar-photo { display: none; }
}

:root {
    /* Colors - Dark Techno Bar */
    --color-bg-dark: #0a0a0f;
    --color-bg-elevated: #13131a;
    --color-bg-card: #1a1a24;
    
    /* Purple spectrum */
    --color-purple-deep: #1a0d2e;
    --color-purple-mid: #2d1b4e;
    --color-purple-bright: #6b4ce6;
    
    /* Neon accents */
    --color-neon-purple: #a78bfa;
    --color-neon-cyan: #67e8f9;
    --color-neon-pink: #f472b6;
    
    /* Text */
    --color-text-primary: #ffffff;
    --color-text-secondary: #c5c9d4;
    --color-text-muted: #8f93a0;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* ===========================
   Particle Background
   =========================== */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===========================
   Container
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ===========================
   Navigation
   =========================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-neon-purple);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-neon-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-neon-purple);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-neon-purple);
}

.nav-link.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    background: transparent;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 24px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.lang-switcher:hover {
    border-color: var(--color-neon-purple);
    background: rgba(167, 139, 250, 0.05);
}

.lang-option {
    transition: color var(--transition-fast);
    cursor: pointer;
}

.lang-option.active {
    color: var(--color-neon-purple);
    font-weight: 600;
}

.lang-separator {
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-sm) 0;
    padding-top: 100px;
    overflow: hidden;
}

/* Hero animation above title */
.hero-anim-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}

/* Placeholder keeps the space where the video was */
.hero-anim-placeholder {
    width: 240px;
    height: 240px;
}

/* The floating logo wrapper */
#floatingAnim {
    background: transparent !important;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* On mobile — hide fixed floating anim, show inline instead */
@media (max-width: 768px) {
    #floatingAnim {
        display: none !important;
    }
    .hero-anim-wrap,
    .hero-anim-placeholder,
    .hero-anim-mobile {
        display: none !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding-top: 8px;
}



/* Live Metrics */

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    color: #e2e8f0;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle span {
    display: block;
}

/* One-liner agent definition */
.hero-agent-def {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
    display: block;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-purple-bright) 0%, var(--color-neon-purple) 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(167, 139, 250, 0.5);
}

.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.btn-secondary:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: var(--color-neon-purple);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ===========================
   Sections
   =========================== */

.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.section-note {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-neon-purple);
    text-align: center;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 8px;
    background: rgba(167, 139, 250, 0.05);
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* ===========================
   Reviews / Carousels
   =========================== */

.section-reviews {
    background: var(--color-bg-dark);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.reviews-block {
    margin-bottom: var(--spacing-xl);
}

.reviews-block:last-child {
    margin-bottom: 0;
}

.reviews-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    position: relative;
}

.carousel {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 260px;
    background: rgba(26, 26, 36, 0.7);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--color-neon-purple);
    opacity: 0.25;
    font-family: Georgia, serif;
}

.review-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 76, 230, 0.2);
}

.review-role {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-neon-cyan);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.975rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    font-style: italic;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.3);
    background: rgba(26, 26, 36, 0.8);
    color: var(--color-neon-purple);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.carousel-btn:hover {
    background: rgba(107, 76, 230, 0.2);
    border-color: var(--color-neon-purple);
    box-shadow: 0 0 16px rgba(107, 76, 230, 0.3);
}

.carousel-btn:active {
    transform: scale(0.93);
}

/* Responsive */
@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 calc(100% - 0px);
        min-width: unset;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* ===========================
   Topics Carousel (infinite auto-scroll ticker)
   =========================== */

.section-topics {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-dark);
    overflow: visible;
    position: relative;
}

.section-topics .reviews-title {
    margin-bottom: var(--spacing-lg);
}

.topics-carousel-wrapper {
    overflow: hidden;
    position: relative;
    /* fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.topics-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: topicsScroll 32s linear infinite;
}

.topics-track:hover {
    animation-play-state: paused;
}

@keyframes topicsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.topic-card {
    flex-shrink: 0;
    width: 260px;
    background: rgba(26, 26, 36, 0.7);
    border: 1px solid rgba(103, 232, 249, 0.15);
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
}

.topic-card:hover {
    border-color: rgba(103, 232, 249, 0.45);
    box-shadow: 0 8px 32px rgba(103, 232, 249, 0.12);
    transform: translateY(-3px);
}

.topic-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-neon-cyan);
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.topic-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

/* ===========================
   How It Works
   =========================== */

.section-how {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        var(--color-purple-deep) 50%, 
        var(--color-bg-dark) 100%);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(167, 139, 250, 0.1);
    border-color: var(--color-neon-purple);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.2);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-neon-purple);
    margin-bottom: var(--spacing-sm);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-neon-purple);
    opacity: 0.5;
}

/* ===========================
   Why It Exists
   =========================== */

.section-why {
    background: var(--color-bg-elevated);
}

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

.why-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.highlight {
    color: var(--color-neon-purple);
    font-weight: 500;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-neon-purple);
    opacity: 0.3;
}

/* ===========================
   Coalition Network
   =========================== */

.section-coalitions {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        var(--color-purple-deep) 50%, 
        var(--color-bg-dark) 100%);
}

.coalition-visual {
    margin: var(--spacing-lg) 0;
    position: relative;
    padding: var(--spacing-md);
    background: rgba(10, 10, 15, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#coalitionGraph {
    width: 100%;
    height: 600px;
    border-radius: 12px;
}

.coalition-legend {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-active {
    background: #7fd185;
    box-shadow: 0 0 8px rgba(127, 209, 133, 0.6);
}

.legend-isolated {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.legend-line {
    width: 24px;
    height: 2px;
    background: var(--color-neon-purple);
    display: inline-block;
    box-shadow: 0 0 4px var(--color-neon-purple);
}

.coalition-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.coalition-step {
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-sm);
    transition: all var(--transition-base);
}

.coalition-step:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: var(--color-neon-purple);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.2);
}

.coalition-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border: 2px solid var(--color-neon-purple);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-neon-purple);
}

.coalition-step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.coalition-step-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.coalition-note {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.coalition-note svg {
    flex-shrink: 0;
    color: var(--color-neon-purple);
    margin-top: 2px;
}

/* ===========================
   Principles
   =========================== */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.principle-card {
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
}

.principle-card:hover {
    transform: translateY(-8px);
    background: rgba(167, 139, 250, 0.1);
    border-color: var(--color-neon-purple);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.2);
}

.principle-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 12px;
    margin-bottom: var(--spacing-sm);
    color: var(--color-neon-purple);
}

.principle-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.principle-text {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===========================
   From Networking to Execution
   =========================== */

.section-execution {
    background: linear-gradient(180deg, transparent 0%, rgba(103, 232, 249, 0.03) 50%, transparent 100%);
    position: relative;
}

.execution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1060px;
    margin: 0 auto;
}

.execution-card {
    background: rgba(103, 232, 249, 0.04);
    border: 1px solid rgba(103, 232, 249, 0.15);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.execution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-purple));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.execution-card:hover {
    transform: translateY(-6px);
    background: rgba(103, 232, 249, 0.08);
    border-color: rgba(103, 232, 249, 0.35);
    box-shadow: 0 8px 32px rgba(103, 232, 249, 0.12);
}

.execution-card:hover::before {
    opacity: 1;
}

.execution-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.execution-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.execution-desc {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===========================
   Bar Schedule Section
   =========================== */

/* ===========================
   Telegram Follow Section
   =========================== */

.section-telegram-follow {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        rgba(45, 27, 78, 0.3) 50%, 
        var(--color-bg-dark) 100%);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    position: relative;
}

.telegram-follow-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.telegram-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.15), rgba(167, 139, 250, 0.15));
    border-radius: 50%;
    color: var(--color-neon-cyan);
    position: relative;
    animation: telegramPulse 3s ease-in-out infinite;
}

@keyframes telegramPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(103, 232, 249, 0);
    }
}

.telegram-follow-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-neon-purple), var(--color-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.telegram-follow-text {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0088cc, #00a6d6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    margin-bottom: var(--spacing-lg);
}

.btn-telegram:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
    background: linear-gradient(135deg, #00a6d6, #0088cc);
}

.btn-telegram svg {
    flex-shrink: 0;
}

.telegram-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
    max-width: 500px;
    margin: 0 auto;
}

.telegram-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: left;
}

.telegram-feature svg {
    flex-shrink: 0;
    color: var(--color-neon-cyan);
}

@media (max-width: 768px) {
    .telegram-icon {
        width: 90px;
        height: 90px;
    }
    
    .telegram-follow-title {
        font-size: 2rem;
    }
    
    .telegram-follow-text {
        font-size: 1.125rem;
    }
    
    .btn-telegram {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Legacy schedule styles - можно удалить */
.section-schedule {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        rgba(45, 27, 78, 0.2) 50%, 
        var(--color-bg-dark) 100%);
}

.schedule-container {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.schedule-card {
    background: linear-gradient(135deg, 
        rgba(107, 76, 230, 0.1),
        rgba(167, 139, 250, 0.05));
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 24px;
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-neon-purple), 
        var(--color-neon-cyan),
        var(--color-neon-purple));
    background-size: 200% 100%;
    animation: scheduleGradient 3s linear infinite;
}

@keyframes scheduleGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.schedule-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.15);
    border-radius: 50%;
    color: var(--color-neon-purple);
    animation: clockPulse 2s ease-in-out infinite;
}

@keyframes clockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.schedule-times {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.schedule-time {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.time-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, 
        var(--color-neon-purple), 
        var(--color-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.schedule-divider {
    font-size: 2rem;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.schedule-timezone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-family: var(--font-mono);
}

.schedule-timezone svg {
    color: var(--color-neon-purple);
}

.schedule-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.instruction-card {
    display: flex;
    gap: var(--spacing-sm);
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.instruction-card:hover {
    border-color: var(--color-neon-purple);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(167, 139, 250, 0.2);
}

.instruction-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--color-neon-purple), 
        var(--color-purple-bright));
    border-radius: 50%;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: white;
}

.instruction-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.instruction-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.schedule-note {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.schedule-note svg {
    flex-shrink: 0;
    color: var(--color-neon-purple);
    margin-top: 2px;
}

.schedule-note span {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===========================
   Bar Updates Section
   =========================== */

.section-updates {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        rgba(26, 13, 46, 0.3) 50%, 
        var(--color-bg-dark) 100%);
    position: relative;
}

/* ── Updates section header ── */
.updates-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* ── Carousel nav controls ── */
.updates-carousel-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-top: 8px;
}

.updates-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.25);
    background: rgba(167, 139, 250, 0.07);
    color: var(--color-neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.updates-nav-btn:hover {
    background: rgba(167, 139, 250, 0.18);
    border-color: var(--color-neon-purple);
    transform: scale(1.08);
}

.updates-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.updates-nav-counter {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    min-width: 36px;
    text-align: center;
}

/* ── Carousel wrapper (clips overflow) ── */
.updates-carousel-wrap {
    overflow: hidden;
    margin: 0 -8px;
}

/* ── Carousel track ── */
.updates-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 8px 8px 12px;
    align-items: stretch;
}

/* ── Card sizing inside carousel ── */
.updates-carousel .update-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    margin-top: 0;
}

/* ── Dots ── */
.updates-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.updates-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(167, 139, 250, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.updates-dot.active {
    background: var(--color-neon-purple);
    width: 24px;
    border-radius: 4px;
}

.updates-dot:hover:not(.active) {
    background: rgba(167, 139, 250, 0.5);
}

/* ── Legacy .updates-grid kept for fallback ── */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.update-card {
    background: rgba(26, 26, 36, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-neon-purple), 
        var(--color-neon-cyan));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.update-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-neon-purple);
    box-shadow: 0 12px 48px rgba(167, 139, 250, 0.3);
}

.update-card:hover::before {
    opacity: 1;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.update-version {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        var(--color-neon-purple), 
        var(--color-purple-bright));
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    width: fit-content;
}

.update-date {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.update-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 12px;
    color: var(--color-neon-purple);
}

.update-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.update-summary {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-read-more {
    background: transparent;
    border: 1px solid var(--color-neon-purple);
    color: var(--color-neon-purple);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.update-read-more:hover {
    background: var(--color-neon-purple);
    color: white;
    transform: translateX(4px);
}

/* Update Modal */
.update-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.update-modal.active {
    display: flex;
}

.update-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
}

.update-modal-content {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--spacing-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.update-modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--color-neon-purple);
}

.update-modal-close:hover {
    background: var(--color-neon-purple);
    color: white;
    transform: rotate(90deg);
}

.update-modal-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.update-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, 
        var(--color-text-primary), 
        var(--color-neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.update-modal-body {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.update-content h3 {
    font-size: 1.5rem;
    color: var(--color-neon-purple);
    margin-bottom: var(--spacing-md);
}

.update-feature {
    margin-bottom: var(--spacing-lg);
}

.update-feature h4 {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.update-feature p {
    margin-bottom: var(--spacing-xs);
}

.update-feature ul {
    list-style: none;
    padding: 0;
    margin-left: var(--spacing-md);
}

.update-feature li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.update-feature li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-neon-purple);
}

.update-summary-box {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.update-summary-box p {
    margin: 0;
    color: var(--color-text-primary);
}

/* ===========================
   Easy to Try Section
   =========================== */

.section-try {
    background: linear-gradient(180deg, 
        var(--color-bg-dark) 0%, 
        var(--color-purple-deep) 50%, 
        var(--color-bg-dark) 100%);
}

.try-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.try-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.try-step:hover {
    transform: translateY(-8px);
    background: rgba(167, 139, 250, 0.1);
    border-color: var(--color-neon-purple);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.2);
}

.try-step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border: 2px solid var(--color-neon-purple);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-neon-purple);
}

.try-step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.try-step p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.try-arrow {
    font-size: 2rem;
    color: var(--color-neon-purple);
    opacity: 0.5;
    display: flex;
    align-items: center;
}

.platform-logos {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.platform-logos a {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.platform-logos a:hover {
    transform: scale(1.1);
}

.platform-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter var(--transition-fast);
}

.platform-logo:hover {
    filter: grayscale(0%) brightness(1);
}

.try-result {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.try-result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 50%;
    color: var(--color-neon-purple);
}

.try-result-icon svg {
    stroke-width: 2.5;
}

.try-result h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-neon-purple);
}

.try-result p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* ===========================
   Telegram CTA
   =========================== */

.section-telegram {
    background: var(--color-bg-elevated);
}

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

.telegram-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 50%;
    color: var(--color-neon-purple);
}

.telegram-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.telegram-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

/* ===========================
   For Developers
   =========================== */

/* Blog Section */
.section-blog {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    position: relative;
    overflow: hidden;
}

/* Blog Carousel */
.blog-carousel {
    position: relative;
    margin-top: var(--spacing-xl);
    padding: 0 60px;
    overflow: hidden;
}

.blog-carousel-wrapper {
    overflow: hidden;
}

.blog-carousel-container {
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-carousel-card {
    flex: 0 0 calc((100% - 2 * var(--spacing-md)) / 3);
    min-width: 0;
}

.blog-carousel-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-neon-purple), var(--color-neon-cyan));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.blog-carousel-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-neon-purple);
    box-shadow: 0 12px 40px rgba(167, 139, 250, 0.25);
}

.blog-carousel-card:hover::before {
    opacity: 1;
}

.blog-card-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(167, 139, 250, 0.15);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-neon-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.blog-carousel-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.blog-carousel-title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-carousel-title a:hover {
    color: var(--color-neon-cyan);
}

.blog-carousel-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.blog-carousel-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.blog-carousel-time,
.blog-carousel-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Carousel Navigation */
.blog-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: var(--color-neon-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.blog-carousel-nav:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: var(--color-neon-purple);
    transform: translateY(-50%) scale(1.1);
}

.blog-carousel-prev {
    left: 0;
}

.blog-carousel-next {
    right: 0;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Responsive Blog Carousel */
@media (max-width: 1024px) {
    .blog-carousel-card {
        flex: 0 0 calc((100% - var(--spacing-md)) / 2);
    }
}

@media (max-width: 768px) {
    .blog-carousel {
        padding: 0 50px;
    }
    
    .blog-carousel-card {
        flex: 0 0 100%;
        padding: var(--spacing-md);
    }
    
    .blog-carousel-title {
        font-size: 1.25rem;
    }
    
    .blog-carousel-nav {
        width: 40px;
        height: 40px;
    }
}

.section-developers {
    background: linear-gradient(135deg, 
        var(--color-purple-deep) 0%, 
        var(--color-bg-dark) 100%);
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

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

.developers-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.developers-text {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Guide Cards Grid */
.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.guide-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-base);
}

.guide-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-neon-purple);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.3);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.guide-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.05);
}

.guide-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.guide-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.btn-guide {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid var(--color-neon-purple);
    border-radius: 8px;
    color: var(--color-neon-purple);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-guide:hover {
    background: var(--color-neon-purple);
    color: var(--color-bg-dark);
    transform: scale(1.05);
}

/* ===========================
   Footer
   =========================== */

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-neon-purple);
    margin-bottom: var(--spacing-xs);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

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

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-neon-purple);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    text-align: center;
}

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

/* ===========================
   Animations
   =========================== */

.connections-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.1;
    background-image: 
        linear-gradient(90deg, rgba(167, 139, 250, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(167, 139, 250, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Scroll reveal */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    opacity: 1;
    transform: none;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
    .hero-logo-video {
        width: 180px;
        height: 180px;
    }

    .hero-anim {
        max-height: 160px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    
    .principles-grid,
    .try-flow {
        grid-template-columns: 1fr;
    }
    
    .try-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .try-step {
        max-width: 100%;
    }
    
    .try-arrow {
        transform: rotate(90deg);
    }
    
    .schedule-instructions {
        grid-template-columns: 1fr;
    }
    
    .time-value {
        font-size: 2.5rem;
    }
    
    .schedule-times {
        gap: var(--spacing-sm);
    }
    
    .update-modal-content {
        padding: var(--spacing-md);
        max-height: 85vh;
    }
    
    .update-modal-title {
        font-size: 1.5rem;
    }
    
    .platform-logos {
        justify-content: center;
    }
    
    .coalition-explanation {
        grid-template-columns: 1fr;
    }
    
    .coalition-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .coalition-step-content {
        text-align: center;
    }
    
    #coalitionGraph {
        height: 400px;
    }
    
    .coalition-legend {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ===========================
   Agent Journey Timeline
   =========================== */

.section-journey {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
}

.journey-title {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
}

/* ── Desktop: horizontal timeline ── */
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-bottom: var(--spacing-lg);
}

/* Horizontal line behind all cards */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(107, 76, 230, 0.4) 20%,
        rgba(103, 232, 249, 0.4) 80%,
        transparent);
    z-index: 0;
}

/* Animated progress line — grows via JS custom property */
.journey-timeline::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    width: var(--line-progress, 0%);
    height: 1px;
    background: linear-gradient(90deg, var(--color-neon-purple), var(--color-neon-cyan));
    z-index: 1;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.5);
}

/* Each step */
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.journey-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon dot on the line */
.journey-icon {
    font-size: 1.75rem;
    line-height: 1;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.journey-step:hover .journey-icon {
    border-color: rgba(167, 139, 250, 0.6);
    box-shadow: 0 0 20px rgba(107, 76, 230, 0.3);
}

/* Hide old connector elements — line is now via ::before/::after */
.journey-connector { display: none; }

/* Card */
.journey-card {
    width: 100%;
    text-align: center;
    background: rgba(19, 19, 26, 0.8);
    border: 1px solid rgba(167, 139, 250, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1rem 1rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.journey-step:hover .journey-card {
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 12px 40px rgba(107, 76, 230, 0.15);
    transform: translateY(-4px);
}

/* Night step */
.journey-step--night .journey-icon {
    background: rgba(8, 5, 20, 0.9);
    border-color: rgba(103, 232, 249, 0.3);
    filter: drop-shadow(0 0 10px rgba(103, 232, 249, 0.4));
}

.journey-step--night .journey-card {
    background: rgba(8, 5, 20, 0.9);
    border-color: rgba(103, 232, 249, 0.2);
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.06);
}

.journey-step--night:hover .journey-card {
    border-color: rgba(103, 232, 249, 0.45);
    box-shadow: 0 12px 48px rgba(103, 232, 249, 0.18);
}

/* Time label */
.journey-time {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #c084fc, var(--color-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.journey-text {
    font-size: 0.9rem;
    color: #c5c9d4;
    line-height: 1.6;
    margin: 0;
}

/* Night dots */
.journey-night-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.875rem;
}

.journey-night-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-neon-cyan);
    opacity: 0.25;
    animation: nightPulse 2.4s ease-in-out infinite;
}

.journey-night-dots span:nth-child(1) { animation-delay: 0s; }
.journey-night-dots span:nth-child(2) { animation-delay: 0.35s; }
.journey-night-dots span:nth-child(3) { animation-delay: 0.7s; }
.journey-night-dots span:nth-child(4) { animation-delay: 1.05s; }
.journey-night-dots span:nth-child(5) { animation-delay: 1.4s; }

@keyframes nightPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50%       { opacity: 1;    transform: scale(1.5); }
}

/* CTA */
.journey-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.journey-cta-hint {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Tablet ── */
@media (max-width: 900px) {
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .journey-timeline::before,
    .journey-timeline::after { display: none; }
}

/* ── Mobile: vertical ── */
@media (max-width: 540px) {
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .journey-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .journey-card {
        text-align: left;
        flex: 1;
    }

    .journey-icon {
        margin-top: 0;
        flex-shrink: 0;
    }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .journey-step {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .journey-timeline::after {
        width: 76%;
        transition: none;
    }
    .journey-night-dots span {
        animation: none;
        opacity: 0.6;
    }
}

/* ===========================
   Enter the Bar — CTA Styles
   =========================== */

/* Nav CTA button */
.btn-nav-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--color-purple-bright), var(--color-neon-cyan));
    color: #fff !important;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(103, 232, 249, 0.4);
}

.btn-nav-cta:hover::before {
    opacity: 1;
}

.btn-nav-cta span, .btn-nav-cta {
    position: relative;
    z-index: 1;
}

/* Hero Enter the Bar button — bigger pulse */
.btn-enter-bar {
    background: linear-gradient(135deg, var(--color-purple-bright) 0%, var(--color-neon-cyan) 100%);
    box-shadow: 0 8px 32px rgba(103, 232, 249, 0.35), 0 0 0 0 rgba(103, 232, 249, 0.4);
    animation: enterPulse 2.5s ease-in-out infinite;
    font-size: 1.25rem !important;
    padding: 20px 48px !important;
    border-radius: 14px;
    letter-spacing: 0.02em;
}

.btn-enter-bar:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(103, 232, 249, 0.55);
    animation: none;
}

@keyframes enterPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(103, 232, 249, 0.35), 0 0 0 0 rgba(103, 232, 249, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(103, 232, 249, 0.35), 0 0 0 12px rgba(103, 232, 249, 0); }
}

/* Hero hint text */
.hero-hint {
    margin-top: var(--spacing-sm);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
}

/* ── CTA tagline under buttons ── */
/* ── Tagline under CTA ── */
.hero-cta-tagline {
    margin-top: 16px;
    text-align: center;
}

.hero-cta-tagline-text {
    display: inline;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg,
        var(--color-neon-purple) 0%,
        var(--color-neon-cyan) 60%,
        var(--color-neon-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── No-agent entry point ── */
.hero-no-agent {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.55s;
}

.hero-no-agent-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
}

.hero-no-agent-btn:hover {
    background: rgba(167,139,250,0.1);
    border-color: rgba(167,139,250,0.4);
    transform: translateY(-1px);
}

.hero-no-agent-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(167,139,250,0.15);
    color: var(--color-neon-purple, #a78bfa);
    flex-shrink: 0;
    transition: background 0.22s;
}

.hero-no-agent-btn:hover .hero-no-agent-icon {
    background: rgba(167,139,250,0.28);
}

.hero-no-agent-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}

.hero-no-agent-text [data-en],
.hero-no-agent-text [data-ru] {
    color: var(--text-muted, #8f93a0);
    font-weight: 500;
}

.hero-no-agent-arrow {
    color: var(--color-neon-purple, #a78bfa);
    font-weight: 600;
    transition: letter-spacing 0.2s;
}

.hero-no-agent-btn:hover .hero-no-agent-arrow {
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .hero-no-agent-btn {
        padding: 9px 14px;
        gap: 8px;
    }
    .hero-no-agent-text {
        font-size: 0.82rem;
        gap: 6px;
    }
}

/* ── "What is an agent?" badge ── */
.hero-badge-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    /* solid dark surface — clearly a badge, not plain text */
    background: #1a1b2e;
    border: 1px solid rgba(167, 139, 250, 0.45);
    border-radius: 10px;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.07),
                0 4px 16px rgba(0, 0, 0, 0.35);
    color: var(--color-neon-purple);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.hero-badge:hover {
    background: #22243a;
    border-color: rgba(167, 139, 250, 0.8);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.13),
                0 6px 24px rgba(167, 139, 250, 0.18);
    color: #fff;
}

.hero-badge-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.hero-badge-label {
    /* inherits color from .hero-badge */
}

.hero-badge-arrow {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.5;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.hero-badge[aria-expanded="true"] .hero-badge-arrow {
    transform: rotate(90deg);
}

/* tooltip */
.hero-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 310px;
    background: #1a1b2e;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.83rem;
    line-height: 1.65;
    color: var(--color-text-secondary);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
    text-align: left;
}

.hero-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: rgba(167, 139, 250, 0.3);
}

.hero-tooltip.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ── Hero chips ── */
.hero-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.hero-chip svg {
    flex-shrink: 0;
    opacity: 0.6;
}

@media (max-width: 480px) {
    .hero-tooltip {
        width: 260px;
    }
    .hero-chips {
        gap: 6px;
    }
    .hero-chip {
        font-size: 0.73rem;
        padding: 4px 10px;
    }
}

/* Agent main CTA block */
.agent-main-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.agent-cta-hint {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
}

/* Advanced toggle */
.advanced-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.advanced-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.advanced-toggle-btn:hover {
    border-color: rgba(167, 139, 250, 0.6);
    color: var(--color-text-secondary);
    background: rgba(167, 139, 250, 0.05);
}

.toggle-arrow {
    transition: transform var(--transition-fast);
}

@media (max-width: 768px) {
    .btn-nav-cta {
        display: none;
    }

    .btn-enter-bar {
        font-size: 1.1rem !important;
        padding: 18px 32px !important;
    }
}

/* ===========================
   Trust Stats Bar
   =========================== */

.section-trust {
    padding: var(--spacing-md) 0;
    background: rgba(167, 139, 250, 0.04);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    position: relative;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-neon-purple), var(--color-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(167, 139, 250, 0.2);
}

@media (max-width: 600px) {
    .trust-stats { gap: 0; }
    .trust-stat { padding: var(--spacing-sm) var(--spacing-md); }
    .trust-divider { display: none; }
}

/* ===========================
   How it works — step-desc + how-cta
   =========================== */

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xs);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.how-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

/* ===========================
   Principles — user-friendly
   =========================== */

.tech-details-toggle {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===========================
   Particles — reduced intensity
   (audit: minimize distracting animations)
   =========================== */

#particles {
    opacity: 0.35 !important;
}