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

:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: #000;
    color: #fff;
    cursor: none;
}

/* Custom Cursor */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    background: #fff;
    transition: transform 0.15s var(--ease-out-expo);
}

#cursorRing {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s var(--ease-out-expo), width 0.2s, height 0.2s;
    opacity: 0.5;
}

#cursorRing.hover {
    width: 60px;
    height: 60px;
    opacity: 1;
}

/* Canvas Background - Only in Section 1 */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Section 1 - Hero with canvas background */
#section-1 {
    overflow: hidden;
    position: relative;
}

/* Boundary line between section 1 and 2 */
#section-1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent) 20%,
        var(--logo-dot-color, #00ff88) 50%,
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent) 80%,
        transparent 100%);
    box-shadow: 0 0 20px color-mix(in srgb, var(--logo-dot-color, #00ff88) 40%, transparent),
                0 0 40px color-mix(in srgb, var(--logo-dot-color, #00ff88) 20%, transparent);
    animation: sectionBoundaryPulse 3s ease-in-out infinite;
}

@keyframes sectionBoundaryPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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

.nav-dot.active {
    width: 32px;
    border-radius: 4px;
    background: #fff;
}

/* Sections */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    content-visibility: auto; /* CSS containment for performance */
    contain-intrinsic-size: auto 100vh; /* Maintain layout during lazy load */
}

/* Lazy loading states with dynamic entry animations */
.section:not(.section-loaded) {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    filter: blur(10px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo),
                filter 0.8s var(--ease-out-expo);
}

.section.section-loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Alternate entry directions for visual variety */
.section:nth-child(even):not(.section-loaded) {
    transform: translateY(80px) scale(0.95) translateX(-30px);
}

.section:nth-child(odd):not(.section-loaded):not(#section-1) {
    transform: translateY(80px) scale(0.95) translateX(30px);
}

.section.section-loading {
    opacity: 0.3;
    pointer-events: none;
}

.section-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
}

/* Section 1: Hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) forwards 0.3s;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.badge-logo-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--logo-dot-color, #00ff88);
    flex-shrink: 0;
    background: transparent;
    animation: heartbeat 2s ease-in-out infinite;
    transition: border-color 0.4s var(--ease-out-expo);
}

.badge-logo-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--logo-dot-color, #00ff88);
    animation: heartbeat-inner 2s ease-in-out infinite;
    transition: background-color 0.4s var(--ease-out-expo);
}

.hero-badge:hover .badge-logo-dot {
    border-color: #000;
}

.hero-badge:hover .badge-logo-dot::before {
    background: #000;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    10% {
        transform: scale(1.15);
        opacity: 0.9;
    }
    20% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.15);
        opacity: 0.9;
    }
    40%, 100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes heartbeat-inner {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    10% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    20% {
        transform: translate(-50%, -50%) scale(1);
    }
    30% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    40%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

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

h1 {
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    opacity: 0;
    animation: titleReveal 1.2s var(--ease-out-expo) forwards 0.5s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.outline-text {
    -webkit-text-stroke: 2px currentColor;
    -webkit-text-fill-color: transparent;
    text-stroke: 2px currentColor;
    text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) forwards 0.8s;
    max-width: 800px;
    margin-bottom: 60px;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) forwards 1.2s;
}

.format-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
}

.format-card::before {
    content: attr(data-number);
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.3;
}

.format-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.format-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.format-desc {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

.scroll-hint {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s, float 2s ease-in-out infinite 3s;
    z-index: 10;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
}

.scroll-arrow {
    font-size: 24px;
}

/* Section 2: What is Generative AI */
h2 {
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.lead-text {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 5%, transparent), transparent 70%);
    border-radius: 16px;
    transition: all 0.6s var(--ease-out-expo);
}

.feature-item:hover .feature-icon {
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent), transparent 70%);
}

.icon-shape {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 70%);
    border-radius: 16px;
}

/* Premium SVG icons - generated dynamically */
.premium-icon-svg {
    filter: drop-shadow(0 8px 20px color-mix(in srgb, var(--logo-dot-color, #00ff88) 15%, transparent));
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .premium-icon-svg,
.case-card:hover .premium-icon-svg,
.tech-block:hover .premium-icon-svg,
.value-card:hover .premium-icon-svg {
    filter: drop-shadow(0 12px 32px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent));
}

/* Smooth hover scale for icons */
.feature-item:hover .icon-shape,
.case-card:hover .icon-shape,
.tech-block:hover .icon-shape {
    transform: scale(1.02);
}

.icon-shape {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

/* Section 3: Applications */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.case-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.case-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.case-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 5%, transparent), transparent 70%);
    border-radius: 16px;
    transition: all 0.6s var(--ease-out-expo);
}

.case-card:hover .case-icon {
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent), transparent 70%);
}

.case-icon .icon-shape {
    width: 100%;
    height: 100%;
}

/* Premium organic icons - generated dynamically with SVG */

.case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.case-desc {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-result {
    font-size: 24px;
    font-weight: 800;
    color: var(--logo-dot-color, #00ff88);
}

/* Section 4: Technology */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

.tech-block {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.tech-block h3 {
    font-size: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tech-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 5%, transparent), transparent 70%);
    border-radius: 12px;
    transition: all 0.6s var(--ease-out-expo);
}

.tech-block:hover .tech-icon {
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent), transparent 70%);
}

.tech-icon .icon-shape {
    width: 100%;
    height: 100%;
}

/* Premium organic blob icons with gradients and glow */

.tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.quote-block {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    position: relative;
}

.quote-mark {
    font-size: 120px;
    line-height: 1;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 40px;
}

.quote-text {
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Section 5: CTA */
.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.cta-step {
    text-align: left;
}

.cta-step-number {
    font-size: 48px;
    font-weight: 900;
    opacity: 0.2;
    margin-bottom: 16px;
}

.cta-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-step-desc {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 24px 48px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none;
}

.cta-button-primary {
    background: #fff;
    color: #000;
}

.cta-button-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
    background: #000;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-info {
    font-size: 16px;
    opacity: 0.7;
    margin-top: 20px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-color: #fff;
}

/* Seed Badge (inline with heartbeat dot) */
.seed-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.seed-badge:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.seed-dot {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--logo-dot-color, #00ff88);
    background: transparent;
    flex-shrink: 0;
    animation: heartbeat 2s ease-in-out infinite;
    transition: border-color 0.4s var(--ease-out-expo);
}

.seed-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--logo-dot-color, #00ff88);
    animation: heartbeat-inner 2s ease-in-out infinite;
    transition: background-color 0.4s var(--ease-out-expo);
}

.seed-badge:hover .seed-dot {
    border-color: #000;
}

.seed-badge:hover .seed-dot::before {
    background: #000;
}

.seed-number {
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.5s var(--ease-out-expo);
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    color: var(--logo-dot-color, #00ff88);
}

.seed-badge.revealed .seed-number {
    max-width: 120px;
    opacity: 1;
    margin-left: 4px;
}

.seed-badge:hover.revealed .seed-number {
    color: #000;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 0;
}

.footer-logo-dot {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--logo-dot-color, #00ff88);
    background: transparent;
    animation: heartbeat 2s ease-in-out infinite;
}

.footer-logo-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--logo-dot-color, #00ff88);
    animation: heartbeat-inner 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

@keyframes blink-inner {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.7);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    .formats-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 4: Scale & Volume - Ticker Animation */
.section-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.scale-header {
    text-align: left;
    margin-bottom: 60px;
}

.scale-header h2 {
    margin-bottom: 20px;
}

.cases-ticker-container {
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    padding: 40px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.ticker-row {
    display: flex;
    white-space: nowrap;
    margin-bottom: 20px;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 24px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ticker-row-1 .ticker-content {
    animation: tickerScroll1 60s linear infinite;
}

.ticker-row-2 .ticker-content {
    animation: tickerScroll2 70s linear infinite;
}

.ticker-row-3 .ticker-content {
    animation: tickerScroll3 65s linear infinite;
}

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

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

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

.ticker-item {
    display: inline-block;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: default;
}

.ticker-item:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: none;
}

.ticker-item.featured {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.scale-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    text-align: center;
}

.scale-stat {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.scale-stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.scale-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scale-label {
    font-size: 16px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .scale-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ticker-item {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* New Technology Section - Premium Vertical Layout */
.section-tech-full {
    min-height: auto;
}

.section-content-wide {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
}

.tech-main-title {
    text-align: center;
    margin-bottom: 100px;
}

.tech-sections-vertical {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.tech-section-large {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
}

.tech-number-huge {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    position: sticky;
    top: 120px;
}

.tech-section-content {
    padding-top: 20px;
}

.tech-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

/* 01 - Tech Stack Grid */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tech-category {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-category-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 16px;
}

.tech-items {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

/* 02 - Integrations */
.integration-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.integration-cat {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.integration-cat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.integration-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.integration-examples {
    font-size: 14px;
    opacity: 0.6;
}

/* 03 - Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    padding: 32px 0;
}

.process-step {
    min-width: 240px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.process-duration {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 12px;
}

.process-stage {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-description {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

.process-arrow {
    font-size: 32px;
    opacity: 0.3;
    flex-shrink: 0;
}

/* 04 - Results */
.results-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.result-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.result-metric {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-desc {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .tech-section-large {
        grid-template-columns: 120px 1fr;
        gap: 40px;
    }

    .tech-number-huge {
        font-size: 80px;
    }

    .tech-stack-grid,
    .integration-categories {
        grid-template-columns: 1fr;
    }

    .results-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .tech-section-large {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tech-number-huge {
        position: relative;
        top: 0;
        font-size: 60px;
    }

    .tech-sections-vertical {
        gap: 80px;
    }

    .results-grid-large {
        grid-template-columns: 1fr;
    }
}

/* Section 5: AI Team Augmentation - Premium Minimal */
.aug-hero {
    margin: 100px 0 120px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
    justify-items: start;
}

.aug-comparison {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(30px, 5vw, 60px);
    flex-wrap: wrap;
}

.comparison-old,
.comparison-new {
    text-align: center;
}

.comparison-number-outline {
    font-size: clamp(90px, 16vw, 180px);
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.5);
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    opacity: 0.8;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.comparison-number-solid {
    font-size: clamp(100px, 18vw, 200px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--logo-dot-color, #00ff88), color-mix(in srgb, var(--logo-dot-color, #00ff88) 70%, transparent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(0, 255, 136, 0.4));
}

.comparison-label {
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 140px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.comparison-label-accent {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 700;
    color: var(--logo-dot-color, #00ff88);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 140px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.comparison-vs {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 300;
    opacity: 0.5;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* Professions Circle */
.professions-circle {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
}

.professions-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px color-mix(in srgb, var(--logo-dot-color, #00ff88) 15%, transparent));
}

.sector {
    transition: all 0.8s var(--ease-out-expo);
    stroke-width: 1;
}

.sector.active {
    fill: color-mix(in srgb, var(--logo-dot-color, #00ff88) 12%, transparent) !important;
    stroke: color-mix(in srgb, var(--logo-dot-color, #00ff88) 40%, transparent);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 20px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent));
}

.sector.dimmed {
    fill: rgba(255, 255, 255, 0.01) !important;
    stroke: rgba(255, 255, 255, 0.05);
    opacity: 0.4;
}

.pendulum-dot,
.pendulum-dot-ring1,
.pendulum-dot-ring2 {
    /* No transition - dot stays fixed */
}

.pendulum-dot {
    fill: var(--logo-dot-color, #00ff88);
    filter: drop-shadow(0 0 12px color-mix(in srgb, var(--logo-dot-color, #00ff88) 50%, transparent));
}

.pendulum-dot-ring1,
.pendulum-dot-ring2 {
    stroke: var(--logo-dot-color, #00ff88);
}

#sectors-group {
    transition: transform 1.2s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    transform-origin: 200px 200px;
}

.profession-label-active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 32px;
    background: color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--logo-dot-color, #00ff88) 40%, transparent);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: var(--logo-dot-color, #00ff88);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px color-mix(in srgb, var(--logo-dot-color, #00ff88) 25%, transparent);
    z-index: 10;
    pointer-events: none;
}

.profession-text {
    display: block;
    transition: opacity 0.3s ease;
}

.aug-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
    text-align: center;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 8%, transparent), transparent 70%);
    border-radius: 20px;
    transition: all 0.6s var(--ease-out-expo);
}

.value-card:hover .value-icon {
    background: radial-gradient(circle at center, color-mix(in srgb, var(--logo-dot-color, #00ff88) 15%, transparent), transparent 70%);
}

.value-icon .icon-shape {
    width: 100%;
    height: 100%;
}

.value-card:hover .icon-shape {
    transform: scale(1.05);
}

.value-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.value-desc {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .aug-value-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .aug-hero {
        margin: 60px 0 80px 0;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .aug-comparison {
        align-items: center;
    }

    .professions-circle {
        max-width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .profession-label-active {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* ========================================
   HIGHLIGHTS GALLERY - Apple-inspired
   ======================================== */

/* Section */
.section-highlights {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 120px 0; /* Extra bottom padding for sticky controls */
    position: relative; /* Container for sticky controls */
    scroll-snap-align: start; /* Keep snap alignment */
    scroll-snap-stop: always; /* Force stop on this section */
    overscroll-behavior: contain; /* Prevent scroll chaining */
}

/* Header */
.highlights-header {
    text-align: left;
    margin-bottom: 60px;
}

.highlights-headline {
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.highlights-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    opacity: 0.7;
    max-width: 800px;
    margin: 0;
    line-height: 1.5;
}

/* Controls Wrapper - Sticky at bottom */
.highlights-controls-wrapper {
    position: sticky;
    bottom: 30px; /* Distance from bottom of viewport */
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    pointer-events: none; /* Allow clicks through wrapper */
}

.highlights-controls-wrapper > * {
    pointer-events: auto; /* Re-enable clicks on children */
}

.highlights-controls {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    touch-action: none; /* Prevent scroll on touch */
}

/* Play/Pause Button */
.highlights-play-pause {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    touch-action: none; /* Prevent scroll on touch */
}

.highlights-play-pause:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.highlights-play-pause svg {
    width: 24px;
    height: 24px;
    fill: white;
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.highlights-play-pause[data-state="paused"] .play-icon {
    opacity: 1;
    transform: scale(1);
}

.highlights-play-pause[data-state="paused"] .pause-icon {
    opacity: 0;
    transform: scale(0.8);
}

.highlights-play-pause[data-state="playing"] .play-icon {
    opacity: 0;
    transform: scale(0.8);
}

.highlights-play-pause[data-state="playing"] .pause-icon {
    opacity: 1;
    transform: scale(1);
}

/* Dotnav */
.highlights-dotnav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dotnav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: visible;
    touch-action: none; /* Prevent scroll on touch */
}

.dotnav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dotnav-dot:hover::before {
    opacity: 1;
}

/* Active dot becomes a progress bar */
.dotnav-dot.active {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 16px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent);
    overflow: hidden;
}

.dotnav-dot.active::before {
    display: none;
}

/* Progress fill inside active dot */
.dotnav-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        var(--logo-dot-color, #00ff88),
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 70%, white));
    border-radius: 2px;
    transition: width 0.1s linear;
    opacity: 0;
}

.dotnav-dot.active .dotnav-progress {
    opacity: 1;
}

/* Gallery Container */
.highlights-gallery {
    position: relative;
    width: 100%;
    overflow: visible; /* Show peek of adjacent slides */
    border-radius: 24px;
    padding: 0 40px; /* Space for peeking slides */
}

/* Track */
.highlights-track {
    display: flex;
    gap: 24px; /* Space between cards */
    transition: transform 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    will-change: transform;
}

/* Card - 85% width to show peek */
.highlight-card {
    flex: 0 0 85%; /* Flexbox gap handles spacing automatically */
    width: 85%;
    min-height: 600px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transform: scale(0.92);
    transition: all 0.8s var(--ease-out-expo);
    cursor: pointer;
    touch-action: pan-y; /* Allow vertical scroll but prevent other gestures */
}

.highlight-card.active {
    opacity: 1;
    transform: scale(1);
    cursor: default;
}

.highlight-card:not(.active):hover {
    opacity: 0.9;
    transform: scale(0.95);
}

/* Card with background image */
.highlight-card-with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Video background for highlight cards */
.highlight-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.highlight-card.active .highlight-video {
    opacity: 1;
}

.highlight-card-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.highlight-card-with-bg .highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-card-with-bg .highlight-caption p {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.highlight-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Comparison Visual (Slide 1) */
.aug-comparison-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 5vw, 60px);
    flex-wrap: wrap;
    width: 100%;
}

/* Professions Circle Wrapper (Slide 2) */
.professions-circle-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.professions-circle-wrapper .professions-circle {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

/* Value Visual (Slides 3-5) */
.value-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.value-icon-large {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon-large .icon-shape {
    width: 100%;
    height: 100%;
    opacity: 0.9;
    filter: drop-shadow(0 0 40px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent));
}

/* Caption */
.highlight-caption {
    text-align: center;
    max-width: 700px;
}

.highlight-caption-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--logo-dot-color, #00ff88), color-mix(in srgb, var(--logo-dot-color, #00ff88) 70%, transparent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-caption p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    opacity: 0.8;
}

/* Slides 3-5: Premium cinematic text design */
.highlight-card[data-slide="2"] .highlight-content,
.highlight-card[data-slide="3"] .highlight-content,
.highlight-card[data-slide="4"] .highlight-content {
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 100%;
    padding-bottom: 40px;
}

.highlight-card[data-slide="2"] .highlight-caption,
.highlight-card[data-slide="3"] .highlight-caption,
.highlight-card[data-slide="4"] .highlight-caption {
    text-align: left;
    max-width: 720px;
    position: relative;
    padding-left: 32px;
}

/* Accent line on the left */
.highlight-card[data-slide="2"] .highlight-caption::before,
.highlight-card[data-slide="3"] .highlight-caption::before,
.highlight-card[data-slide="4"] .highlight-caption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--logo-dot-color, #00ff88),
        transparent
    );
    border-radius: 2px;
}

.highlight-card[data-slide="2"] .highlight-caption-title,
.highlight-card[data-slide="3"] .highlight-caption-title,
.highlight-card[data-slide="4"] .highlight-caption-title {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.highlight-card[data-slide="2"] .highlight-caption p,
.highlight-card[data-slide="3"] .highlight-caption p,
.highlight-card[data-slide="4"] .highlight-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 1);
    max-width: 600px;
}

/* Hide icons on slides 3-5 */
.highlight-card[data-slide="2"] .value-visual,
.highlight-card[data-slide="3"] .value-visual,
.highlight-card[data-slide="4"] .value-visual {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-highlights {
        padding: 60px 0 100px 0;
    }

    .highlights-controls-wrapper {
        bottom: 20px;
    }

    .highlights-gallery {
        padding: 0 20px;
    }

    .highlights-track {
        gap: 16px;
    }

    .highlight-card {
        flex: 0 0 90%; /* Flexbox gap handles spacing */
        width: 90%;
        min-height: 500px;
        padding: 40px 24px;
    }

    .highlights-controls {
        gap: 16px;
        padding: 10px 20px;
    }

    .highlights-play-pause {
        width: 40px;
        height: 40px;
    }

    .value-icon-large {
        width: 150px;
        height: 150px;
    }

    .professions-circle-wrapper .professions-circle {
        max-width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    /* Keep mandatory scroll-snap for proper section navigation */
    html {
        scroll-snap-type: y mandatory;
    }

    /* Prevent controls from triggering snap */
    .highlights-controls-wrapper,
    .highlights-controls,
    .highlights-play-pause,
    .dotnav-dot {
        scroll-snap-align: none;
    }

    .section-highlights {
        padding: 40px 0 80px 0;
    }

    .highlights-header {
        margin-bottom: 40px;
    }

    .highlights-headline {
        font-size: clamp(32px, 8vw, 48px);
    }

    .highlights-subtitle {
        font-size: clamp(16px, 3vw, 20px);
    }

    .highlights-controls-wrapper {
        bottom: 16px;
        margin-top: 30px;
        gap: 12px;
    }

    .highlights-gallery {
        padding: 0 16px;
    }

    .highlights-track {
        gap: 12px;
    }

    .highlight-card {
        flex: 0 0 92%; /* Flexbox gap handles spacing */
        width: 92%;
        min-height: 450px;
        padding: 30px 20px;
    }

    .highlights-dotnav {
        gap: 8px;
    }

    .dotnav-dot {
        width: 8px;
        height: 8px;
    }

    .dotnav-dot.active {
        width: 40px;
        height: 3px;
    }

    .highlight-content {
        gap: 30px;
    }

    /* Slides 3-5: Mobile adjustments */
    .highlight-card[data-slide="2"] .highlight-content,
    .highlight-card[data-slide="3"] .highlight-content,
    .highlight-card[data-slide="4"] .highlight-content {
        padding-bottom: 20px;
    }

    .highlight-card[data-slide="2"] .highlight-caption,
    .highlight-card[data-slide="3"] .highlight-caption,
    .highlight-card[data-slide="4"] .highlight-caption {
        padding-left: 20px;
    }

    .highlight-card[data-slide="2"] .highlight-caption-title,
    .highlight-card[data-slide="3"] .highlight-caption-title,
    .highlight-card[data-slide="4"] .highlight-caption-title {
        font-size: clamp(32px, 8vw, 56px);
        margin-bottom: 16px;
    }

    .highlight-card[data-slide="2"] .highlight-caption p,
    .highlight-card[data-slide="3"] .highlight-caption p,
    .highlight-card[data-slide="4"] .highlight-caption p {
        font-size: clamp(16px, 4vw, 20px);
    }

    .value-icon-large {
        width: 120px;
        height: 120px;
    }

    .professions-circle-wrapper .professions-circle {
        max-width: 300px;
        height: 300px;
    }

    .aug-comparison-visual {
        gap: 20px;
    }
}

/* ========== COMPREHENSIVE MOBILE OPTIMIZATION ========== */

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto !important;
    }

    #cursor,
    #cursorRing {
        display: none !important;
    }
}

/* Mobile-specific improvements (≤480px - Small phones) */
@media (max-width: 480px) {
    /* Keep mandatory scroll-snap for proper section navigation */
    html {
        scroll-snap-type: y mandatory;
    }

    /* General spacing */
    .section {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-content {
        padding: 0;
    }

    /* Navigation - extra compact for small screens */
    .nav {
        top: 12px; /* Even higher */
        padding: 2px 4px; /* Extra thin */
        gap: 2px; /* Minimal gap */
        background: rgba(255, 255, 255, 0.015);
        backdrop-filter: blur(10px);
    }

    /* Even smaller dots for small phones */
    .nav-dot {
        width: 28px; /* Minimum practical touch target */
        height: 28px;
    }

    /* Active dot - hide default background, show only line */
    .nav-dot.active {
        background: transparent !important;
        width: 28px; /* Keep touch area consistent */
    }

    /* Nav dots inherit from @media (max-width: 768px) */
    .nav-dot::before {
        width: 4px; /* Extra small dot */
        height: 4px;
    }

    .nav-dot.active::before {
        width: 16px; /* Shorter line for small screens */
        height: 2px;
    }

    /* Hero section */
    h1 {
        font-size: clamp(36px, 12vw, 72px);
        line-height: 1;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 16px 6px 10px;
        margin-bottom: 30px;
    }

    .badge-logo-dot {
        width: 16px;
        height: 16px;
    }

    /* Formats grid */
    .formats-grid {
        gap: 16px;
        margin-bottom: 40px;
    }

    .format-card {
        padding: 24px;
        min-height: auto;
    }

    .format-card::before {
        font-size: 48px;
    }

    .format-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .format-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Section 2 - Two column */
    h2 {
        font-size: clamp(32px, 10vw, 56px);
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .lead-text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .features-list {
        gap: 24px;
    }

    .feature-item {
        gap: 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-text h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .feature-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Cases grid */
    .cases-grid {
        gap: 16px;
        margin-top: 40px;
    }

    .case-card {
        padding: 24px;
        min-height: auto;
    }

    .case-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .case-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .case-desc {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .case-result {
        font-size: 20px;
    }

    /* Ticker section */
    .scale-header h2 {
        font-size: clamp(32px, 10vw, 56px);
    }

    .ticker-row {
        margin-bottom: 12px;
    }

    .ticker-content {
        gap: 12px;
    }

    .ticker-item {
        font-size: 12px;
        padding: 10px 16px;
        white-space: nowrap;
    }

    /* CTA section */
    .cta-content {
        padding: 0;
    }

    .cta-steps {
        gap: 24px;
        margin: 40px 0;
    }

    .cta-step {
        text-align: center;
    }

    .cta-step-number {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .cta-step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cta-step-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 30px;
    }

    .cta-button {
        width: 100%;
        padding: 18px 32px;
        font-size: 16px;
        justify-content: center;
    }

    .contact-info {
        font-size: 14px;
        line-height: 1.8;
    }

    /* Scroll hint */
    .scroll-hint {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 11px;
    }

    /* Seed badge */
    .seed-badge {
        font-size: 13px;
        padding: 4px 12px;
    }

    .seed-dot {
        width: 6px;
        height: 6px;
    }

    /* Professions pendulum */
    .profession-label-active {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Highlights controls - mobile fix */
    .highlights-controls-wrapper {
        position: relative; /* Sticky может глючить на малых экранах */
        bottom: auto;
        margin-top: 30px;
        padding-bottom: 20px;
    }

    .highlights-controls {
        gap: 16px;
        padding: 10px 16px;
    }

    .highlights-play-pause {
        width: 44px;
        height: 44px;
    }

    .highlights-play-pause svg {
        width: 20px;
        height: 20px;
    }

    .highlights-dotnav {
        gap: 6px;
    }

    /* Dots с правильными touch targets (повторяет стили из @media max-width: 768px) */
    .dotnav-dot {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
    }

    .dotnav-dot::before {
        display: none !important;
    }

    .dotnav-dot::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        pointer-events: none;
        transition: all 0.3s var(--ease-out-expo);
    }

    .dotnav-dot.active {
        width: auto;
        min-width: 54px; /* Чуть меньше для малых экранов */
        height: 44px;
    }

    .dotnav-dot.active::after {
        width: 36px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 12px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent);
    }

    .dotnav-dot.active .dotnav-progress {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0%;
        max-width: 36px;
        height: 3px;
        z-index: 1;
    }
}

/* Landscape mobile optimization (≤768px height) */
@media (max-height: 768px) and (orientation: landscape) {
    .section {
        min-height: auto;
        padding: 60px 40px;
    }

    h1 {
        font-size: clamp(36px, 8vw, 64px);
        margin-bottom: 20px;
    }

    .formats-grid {
        margin-bottom: 40px;
    }

    .scroll-hint {
        display: none;
    }
}

/* Safe area insets for iOS notch/home indicator */
@supports (padding: max(0px)) {
    .section {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(60px, env(safe-area-inset-bottom));
    }

    .nav {
        top: max(20px, env(safe-area-inset-top));
    }

    .highlights-controls-wrapper {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
}

/* Prevent text selection on interactive elements */
@media (max-width: 768px) {
    .format-card,
    .case-card,
    .ticker-item,
    .cta-button,
    .nav-dot,
    .dotnav-dot {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        -webkit-touch-callout: none;
        user-select: none;
    }
}

/* Improve touch targets for better UX */
@media (max-width: 768px) {
    /* Compact navigation bar */
    .nav {
        top: 16px; /* Higher position */
        padding: 2px 6px; /* Thinner padding */
        gap: 3px; /* Tighter gap */
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(12px);
    }

    /* Navigation dots - touch-friendly with visual inside */
    .nav-dot {
        width: 32px; /* Smaller touch area */
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        position: relative;
    }

    /* Visual dot inside touch area */
    .nav-dot::before {
        content: '';
        position: absolute;
        width: 5px; /* Smaller dot */
        height: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    /* Active dot - hide default background, show only line */
    .nav-dot.active {
        background: transparent !important;
        width: 32px; /* Keep touch area consistent */
        border-radius: 0;
    }

    /* Active dot becomes horizontal line */
    .nav-dot.active::before {
        width: 20px; /* Shorter line */
        height: 2px;
        border-radius: 1px;
        background: #fff;
    }

    /* Dotnav - увеличиваем touch area без изменения визуального размера */
    .dotnav-dot {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important; /* Убираем фон с самого элемента */
    }

    /* Отключаем hover эффект на мобильных */
    .dotnav-dot::before {
        display: none !important;
    }

    /* Визуальная точка внутри touch area */
    .dotnav-dot::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        pointer-events: none;
        transition: all 0.3s var(--ease-out-expo);
    }

    .dotnav-dot.active {
        width: auto;
        min-width: 60px; /* Минимальная ширина для активной полоски */
        height: 44px;
    }

    .dotnav-dot.active::after {
        width: 40px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 16px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent);
    }

    /* Progress bar для активной точки */
    .dotnav-dot.active .dotnav-progress {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0%;
        max-width: 40px;
        height: 3px;
        z-index: 1;
    }

    /* Play/Pause уже 40px, добавим немного padding */
    .highlights-play-pause {
        padding: 2px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-snap-type: none;
    }
}

/* ========================================
   DETAILED CASE STUDY
   ======================================== */

.case-stories {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-stories-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 48px;
    text-align: left;
}

/* Case Tabs Navigation - Now inside header */
.case-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-tab {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    font-family: 'Space Grotesk', sans-serif;
}

.case-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.case-tab.active {
    background: color-mix(in srgb, var(--logo-dot-color, #00ff88) 15%, transparent);
    border-color: var(--logo-dot-color, #00ff88);
    color: #ffffff;
}

/* Case Stories Container */
.case-stories-container {
    position: relative;
    min-height: 600px;
}

.case-story {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(20px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.case-story.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.case-story:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.case-story-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-story-industry {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: none; /* Hidden as tabs now replace this */
}

.case-story-metric {
    padding: 8px 20px;
    background: color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 800;
    color: var(--logo-dot-color, #00ff88);
    white-space: nowrap;
}

.case-story-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.case-story-section {
    position: relative;
    padding-left: 24px;
}

.case-story-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: calc(100% - 4px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 2px;
}

.case-story-section:nth-child(2)::before {
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 50%, transparent),
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent)
    );
}

.case-story-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 12px;
}

.case-story-section p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

.case-story-timeline {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 600;
}

.timeline-item {
    opacity: 0.8;
    white-space: nowrap;
}

.timeline-separator {
    opacity: 0.3;
    font-weight: 400;
}

@media (max-width: 768px) {
    .case-stories {
        margin-top: 60px;
        padding-top: 60px;
    }

    .case-stories-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .case-story-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .case-story-content {
        padding: 32px 24px;
        gap: 32px;
    }

    .case-story-timeline {
        padding: 24px;
        font-size: 13px;
        gap: 12px;
    }
}

/* ========================================
   CTA URGENCY BLOCK
   ======================================== */

.cta-urgency {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 20px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 8%, transparent),
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 3%, transparent)
    );
    border: 1px solid color-mix(in srgb, var(--logo-dot-color, #00ff88) 20%, transparent);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 10%, transparent),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .cta-urgency {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ========================================
   AI CONSULTANT SECTION
   ======================================== */

.section-ai-consultant {
    position: relative;
    overflow: hidden;
}

/* AI Consultant Canvas Background */
.ai-consultant-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.35;
    filter: blur(140px) saturate(1.2);
    pointer-events: none;
    mix-blend-mode: normal;
    animation: gradientPulse 15s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(140px) saturate(1.2);
    }
    50% {
        opacity: 0.45;
        filter: blur(120px) saturate(1.4);
    }
}

.section-ai-consultant .section-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.section-ai-consultant h2 {
    text-align: center;
    margin-bottom: 60px;
}

/* AI Chat Container */
.ai-chat-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Answer Display Area */
.ai-answer-display {
    min-height: 300px;
    max-height: 400px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow-y: auto;
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.ai-answer-display.has-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: color-mix(in srgb, var(--logo-dot-color, #00ff88) 12%, transparent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                0 0 40px color-mix(in srgb, var(--logo-dot-color, #00ff88) 6%, transparent);
}

/* Chat Expanded Mode */
.ai-answer-display.chat-expanded {
    max-height: 600px;
    min-height: 500px;
}

/* Add padding when button is visible */
.ai-answer-display.has-content {
    padding-top: 64px;
}

/* Custom scrollbar for answer display */
.ai-answer-display::-webkit-scrollbar {
    width: 8px;
}

.ai-answer-display::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.ai-answer-display::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.ai-answer-display::-webkit-scrollbar-thumb:hover {
    background: var(--logo-dot-color, #00ff88);
}

/* Firefox scrollbar */
.ai-answer-display {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) rgba(255, 255, 255, 0.03);
}

/* Chat Toggle Button */
.ai-chat-toggle-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.ai-chat-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--logo-dot-color, #00ff88);
    color: var(--logo-dot-color, #00ff88);
    transform: translateY(-2px);
}

.ai-chat-toggle-btn:active {
    transform: translateY(0);
}

.ai-answer-display.has-content .ai-chat-toggle-btn {
    display: flex;
}

.ai-answer-display.chat-expanded .ai-chat-toggle-btn {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--logo-dot-color, #00ff88);
    color: var(--logo-dot-color, #00ff88);
}

.ai-answer-display.chat-expanded .ai-chat-toggle-btn svg {
    transform: scaleY(-1);
}

.ai-chat-toggle-btn svg {
    transition: transform 0.3s ease;
}

.ai-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0.5;
    text-align: center;
    min-height: 200px;
}

.ai-placeholder.hidden {
    display: none;
}

/* AI Brain Container - Main Animation Hub */
.ai-brain-container {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Core Neural Network Center */
.ai-core {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--logo-dot-color, #00ff88);
    box-shadow: 0 0 20px color-mix(in srgb, var(--logo-dot-color, #00ff88) 60%, transparent),
                0 0 40px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent);
    animation: aiCoreGlow 2s ease-in-out infinite;
    z-index: 10;
}

.ai-core-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    animation: aiCoreInnerPulse 1.5s ease-in-out infinite;
}

.ai-core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--logo-dot-color, #00ff88);
    animation: aiCorePulseExpand 2s ease-out infinite;
}

/* Orbital Rings */
.ai-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.3;
}

.ai-orbit-1 {
    width: 60px;
    height: 60px;
    border-color: var(--logo-dot-color, #00ff88);
    animation: aiOrbitRotate1 4s linear infinite;
}

.ai-orbit-2 {
    width: 90px;
    height: 90px;
    border-color: color-mix(in srgb, var(--logo-dot-color, #00ff88) 70%, transparent);
    animation: aiOrbitRotate2 6s linear infinite reverse;
    border-style: dashed;
}

.ai-orbit-3 {
    width: 120px;
    height: 120px;
    border-color: color-mix(in srgb, var(--logo-dot-color, #00ff88) 50%, transparent);
    animation: aiOrbitRotate3 8s linear infinite;
}

/* Neural Particles */
.ai-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--logo-dot-color, #00ff88);
    box-shadow: 0 0 8px color-mix(in srgb, var(--logo-dot-color, #00ff88) 80%, transparent);
}

.ai-particle-1 {
    animation: aiParticleOrbit1 3s linear infinite;
}

.ai-particle-2 {
    animation: aiParticleOrbit2 3s linear infinite;
    animation-delay: -0.375s;
}

.ai-particle-3 {
    animation: aiParticleOrbit3 3s linear infinite;
    animation-delay: -0.75s;
}

.ai-particle-4 {
    animation: aiParticleOrbit4 3s linear infinite;
    animation-delay: -1.125s;
}

.ai-particle-5 {
    animation: aiParticleOrbit5 4.5s linear infinite;
}

.ai-particle-6 {
    animation: aiParticleOrbit6 4.5s linear infinite;
    animation-delay: -1.5s;
}

.ai-particle-7 {
    animation: aiParticleOrbit7 4.5s linear infinite;
    animation-delay: -3s;
}

.ai-particle-8 {
    animation: aiParticleOrbit8 6s linear infinite;
}

/* Energy Waves */
.ai-wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--logo-dot-color, #00ff88);
    opacity: 0;
    animation: aiWaveExpand 3s ease-out infinite;
}

.ai-wave-1 {
    width: 30px;
    height: 30px;
    animation-delay: 0s;
}

.ai-wave-2 {
    width: 30px;
    height: 30px;
    animation-delay: 1s;
}

.ai-wave-3 {
    width: 30px;
    height: 30px;
    animation-delay: 2s;
}

/* AI Thinking Text with Wave Effect */
.ai-thinking-text {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 12px;
}

.ai-text-word {
    display: inline-block;
    white-space: nowrap;
}

.ai-text-char {
    display: inline-block;
    animation: aiTextWave 3s ease-in-out infinite;
}

/* Wave delays for each word */
.ai-text-word:nth-child(1) .ai-text-char:nth-child(1) { animation-delay: 0s; }
.ai-text-word:nth-child(1) .ai-text-char:nth-child(2) { animation-delay: 0.05s; }
.ai-text-word:nth-child(1) .ai-text-char:nth-child(3) { animation-delay: 0.1s; }
.ai-text-word:nth-child(1) .ai-text-char:nth-child(4) { animation-delay: 0.15s; }
.ai-text-word:nth-child(1) .ai-text-char:nth-child(5) { animation-delay: 0.2s; }
.ai-text-word:nth-child(1) .ai-text-char:nth-child(6) { animation-delay: 0.25s; }
.ai-text-word:nth-child(1) .ai-text-char:nth-child(7) { animation-delay: 0.3s; }

.ai-text-word:nth-child(2) .ai-text-char:nth-child(1) { animation-delay: 0.35s; }
.ai-text-word:nth-child(2) .ai-text-char:nth-child(2) { animation-delay: 0.4s; }
.ai-text-word:nth-child(2) .ai-text-char:nth-child(3) { animation-delay: 0.45s; }
.ai-text-word:nth-child(2) .ai-text-char:nth-child(4) { animation-delay: 0.5s; }
.ai-text-word:nth-child(2) .ai-text-char:nth-child(5) { animation-delay: 0.55s; }
.ai-text-word:nth-child(2) .ai-text-char:nth-child(6) { animation-delay: 0.6s; }

.ai-text-word:nth-child(3) .ai-text-char:nth-child(1) { animation-delay: 0.65s; }
.ai-text-word:nth-child(3) .ai-text-char:nth-child(2) { animation-delay: 0.7s; }
.ai-text-word:nth-child(3) .ai-text-char:nth-child(3) { animation-delay: 0.75s; }

.ai-text-word:nth-child(4) .ai-text-char:nth-child(1) { animation-delay: 0.8s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(2) { animation-delay: 0.85s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(3) { animation-delay: 0.9s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(4) { animation-delay: 0.95s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(5) { animation-delay: 1s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(6) { animation-delay: 1.05s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(7) { animation-delay: 1.1s; }
.ai-text-word:nth-child(4) .ai-text-char:nth-child(8) { animation-delay: 1.15s; }

.ai-text-word:nth-child(5) .ai-text-char:nth-child(1) { animation-delay: 1.2s; }
.ai-text-word:nth-child(5) .ai-text-char:nth-child(2) { animation-delay: 1.25s; }

.ai-text-word:nth-child(6) .ai-text-char:nth-child(1) { animation-delay: 1.3s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(2) { animation-delay: 1.35s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(3) { animation-delay: 1.4s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(4) { animation-delay: 1.45s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(5) { animation-delay: 1.5s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(6) { animation-delay: 1.55s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(7) { animation-delay: 1.6s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(8) { animation-delay: 1.65s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(9) { animation-delay: 1.7s; }
.ai-text-word:nth-child(6) .ai-text-char:nth-child(10) { animation-delay: 1.75s; }

.ai-text-word:nth-child(7) .ai-text-char:nth-child(1) { animation-delay: 1.8s; }
.ai-text-word:nth-child(7) .ai-text-char:nth-child(2) { animation-delay: 1.85s; }
.ai-text-word:nth-child(7) .ai-text-char:nth-child(3) { animation-delay: 1.9s; }
.ai-text-word:nth-child(7) .ai-text-char:nth-child(4) { animation-delay: 1.95s; }

/* ============================================
   AI THINKING KEYFRAME ANIMATIONS
   ============================================ */

/* Core Glow */
@keyframes aiCoreGlow {
    0%, 100% {
        box-shadow: 0 0 20px color-mix(in srgb, var(--logo-dot-color, #00ff88) 60%, transparent),
                    0 0 40px color-mix(in srgb, var(--logo-dot-color, #00ff88) 30%, transparent);
    }
    50% {
        box-shadow: 0 0 30px color-mix(in srgb, var(--logo-dot-color, #00ff88) 80%, transparent),
                    0 0 60px color-mix(in srgb, var(--logo-dot-color, #00ff88) 50%, transparent),
                    0 0 80px color-mix(in srgb, var(--logo-dot-color, #00ff88) 20%, transparent);
    }
}

@keyframes aiCoreInnerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes aiCorePulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

/* Orbital Ring Rotations */
@keyframes aiOrbitRotate1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes aiOrbitRotate2 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes aiOrbitRotate3 {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

/* Neural Particles Orbits */
@keyframes aiParticleOrbit1 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes aiParticleOrbit2 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes aiParticleOrbit3 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes aiParticleOrbit4 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes aiParticleOrbit5 {
    0% {
        transform: rotate(0deg) translateX(45px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) translateX(45px) rotate(-360deg);
        opacity: 0.8;
    }
}

@keyframes aiParticleOrbit6 {
    0% {
        transform: rotate(0deg) translateX(45px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) translateX(45px) rotate(-360deg);
        opacity: 0.8;
    }
}

@keyframes aiParticleOrbit7 {
    0% {
        transform: rotate(0deg) translateX(45px) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) translateX(45px) rotate(-360deg);
        opacity: 0.8;
    }
}

@keyframes aiParticleOrbit8 {
    0% {
        transform: rotate(0deg) translateX(60px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) translateX(60px) rotate(-180deg) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) translateX(60px) rotate(-360deg) scale(1);
        opacity: 0.6;
    }
}

/* Energy Wave Expansion */
@keyframes aiWaveExpand {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Text Wave Animation */
@keyframes aiTextWave {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

/* AI Answer Content */
.ai-answer-content {
    display: none;
}

.ai-answer-content.visible {
    display: block;
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.ai-question-display {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-answer-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Remove text length restrictions in chat mode */
.ai-answer-display.chat-expanded .ai-answer-text {
    max-height: none;
    overflow: visible;
}

/* Format paragraphs in detailed mode */
.ai-answer-display.chat-expanded .ai-answer-text {
    line-height: 1.8;
}

/* Markdown formatting */
.ai-answer-text h1,
.ai-answer-text h2,
.ai-answer-text h3 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.ai-answer-text h1 {
    font-size: 28px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.ai-answer-text h2 {
    font-size: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.ai-answer-text h3 {
    font-size: 20px;
}

.ai-answer-text h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.ai-answer-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.ai-answer-text ul,
.ai-answer-text ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.ai-answer-text li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.ai-answer-text strong {
    font-weight: 700;
    color: var(--logo-dot-color, #00ff88);
}

.ai-answer-text em {
    font-style: italic;
    opacity: 0.95;
}

.ai-answer-text code {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 16px;
}

.ai-answer-text pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
}

.ai-answer-text pre code {
    background: none;
    padding: 0;
}

.ai-answer-text blockquote {
    border-left: 3px solid var(--logo-dot-color, #00ff88);
    padding-left: 16px;
    margin: 16px 0;
    opacity: 0.9;
    font-style: italic;
}

.ai-answer-text hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.ai-answer-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.ai-answer-text table thead {
    background: rgba(255, 255, 255, 0.08);
}

.ai-answer-text table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--logo-dot-color, #00ff88);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ai-answer-text table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-answer-text table tr:last-child td {
    border-bottom: none;
}

.ai-answer-text table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ai-answer-text a {
    color: var(--logo-dot-color, #00ff88);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.2s ease;
}

.ai-answer-text a:hover {
    border-bottom-color: var(--logo-dot-color, #00ff88);
}

/* Chat mode indicator */
.ai-chat-mode-badge {
    position: absolute;
    top: 68px;
    right: 20px;
    padding: 4px 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--logo-dot-color, #00ff88);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 9;
}

.ai-answer-display.chat-expanded .ai-chat-mode-badge {
    opacity: 1;
}

.ai-typing-indicator {
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    opacity: 0.6;
}

.ai-typing-indicator.active {
    display: flex;
}

.ai-typing-dots {
    display: flex;
    gap: 6px;
}

.ai-typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--logo-dot-color, #00ff88);
    animation: typingDot 1.4s infinite;
}

.ai-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.4);
        opacity: 1;
    }
}

/* Input Container */
.ai-input-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ai-input {
    flex: 1;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ai-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ai-input:focus {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: color-mix(in srgb, var(--logo-dot-color, #00ff88) 45%, transparent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--logo-dot-color, #00ff88) 12%, transparent),
                0 8px 24px rgba(0, 0, 0, 0.15);
}

.ai-send-button {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--logo-dot-color, #00ff88),
        color-mix(in srgb, var(--logo-dot-color, #00ff88) 80%, transparent)
    );
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.ai-send-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--logo-dot-color, #00ff88) 40%, transparent);
}

.ai-send-button:active {
    transform: scale(0.95);
}

/* Quick Questions */
.ai-quick-questions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-quick-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.ai-questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ai-question-btn {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    line-height: 1.5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ai-question-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-color: color-mix(in srgb, var(--logo-dot-color, #00ff88) 20%, transparent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 0 24px color-mix(in srgb, var(--logo-dot-color, #00ff88) 5%, transparent);
}

.ai-question-btn:active {
    transform: translateY(0);
}

/* Stagger animation */
.ai-question-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.ai-question-btn:nth-child(1) { animation-delay: 0.1s; }
.ai-question-btn:nth-child(2) { animation-delay: 0.15s; }
.ai-question-btn:nth-child(3) { animation-delay: 0.2s; }
.ai-question-btn:nth-child(4) { animation-delay: 0.25s; }
.ai-question-btn:nth-child(5) { animation-delay: 0.3s; }
.ai-question-btn:nth-child(6) { animation-delay: 0.35s; }

@media (max-width: 1024px) {
    .ai-questions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-ai-consultant h2 {
        margin-bottom: 40px;
        font-size: 32px;
    }

    .ai-answer-display {
        min-height: 250px;
        max-height: 350px;
        padding: 32px 24px;
    }

    .ai-answer-display.has-content {
        padding-top: 56px;
    }

    .ai-answer-display.chat-expanded {
        max-height: 500px;
        min-height: 400px;
    }

    .ai-chat-toggle-btn {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .ai-chat-toggle-btn svg {
        width: 18px;
        height: 18px;
    }

    .ai-chat-mode-badge {
        top: 60px;
        right: 16px;
        font-size: 11px;
        padding: 3px 10px;
    }

    .ai-question-display {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .ai-answer-text {
        font-size: 16px;
    }

    .ai-input {
        padding: 16px 20px;
        font-size: 15px;
    }

    .ai-send-button {
        width: 48px;
        height: 48px;
    }

    .ai-question-btn {
        padding: 16px 20px;
        font-size: 14px;
    }
}
