/* Full Page Sections Styles */

/* Header - Enhanced for full page */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 var(--space-2);
}

/* Navigation */
.nav {
    display: none;
    align-items: center;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--medium-gray);
    text-decoration: none;
    padding: var(--space-3) var(--space-2);
    transition: var(--transition);
    position: relative;
    border-radius: var(--border-radius);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    background: var(--primary-blue-light);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--dark-gray);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background-color: var(--light-gray);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Full Page Container */
.fullpage-container {
    position: relative;
}

/* Full Page Sections */
.fullpage-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-16) 0;
    overflow: hidden;
}

.fullpage-section .container {
    position: relative;
    z-index: var(--z-default);
}

/* Section Content Layout */
.section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-20);
    }
}

.content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-area {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Section Titles */
.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    color: var(--dark-gray);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--text-6xl);
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: var(--text-7xl);
    }
}

.section-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--medium-gray);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

@media (min-width: 768px) {
    .section-description {
        font-size: var(--text-xl);
    }
}

/* Section Actions */
.section-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

@media (min-width: 640px) {
    .section-actions {
        flex-direction: row;
        gap: var(--space-6);
    }
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin: var(--space-12) 0;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-8);
    }
}

/* Visual Elements */
.mockup-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Complexity Transformation Animation */
.complexity-transformation {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: var(--space-4);
    align-items: center;
}

/* Chaos Layer (Left Side) */
.chaos-layer {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chaos-elements {
    position: relative;
    width: 120px;
    height: 200px;
}

.chaos-item {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 2px solid var(--warning-orange);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chaosFloat 3s ease-in-out infinite;
    box-shadow: var(--shadow-md);
    opacity: 0.8;
}

.chaos-item i {
    width: 16px;
    height: 16px;
    color: var(--warning-orange);
}

/* Chaos item positions */
.item-1 { top: 10%; left: 20%; animation-delay: 0s; }
.item-2 { top: 30%; right: 10%; animation-delay: 0.3s; }
.item-3 { top: 50%; left: 10%; animation-delay: 0.6s; }
.item-4 { top: 70%; right: 20%; animation-delay: 0.9s; }
.item-5 { top: 20%; left: 50%; animation-delay: 1.2s; }
.item-6 { top: 80%; left: 40%; animation-delay: 1.5s; }
.item-7 { top: 5%; right: 40%; animation-delay: 1.8s; }
.item-8 { top: 90%; right: 50%; animation-delay: 2.1s; }

.chaos-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.chaos-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--warning-orange), transparent);
    opacity: 0.4;
    animation: chaosLine 2s ease-in-out infinite;
}

.line-1 { top: 25%; left: 10%; width: 60px; transform: rotate(45deg); animation-delay: 0s; }
.line-2 { top: 45%; right: 15%; width: 40px; transform: rotate(-30deg); animation-delay: 0.4s; }
.line-3 { top: 65%; left: 20%; width: 50px; transform: rotate(15deg); animation-delay: 0.8s; }
.line-4 { top: 15%; right: 30%; width: 35px; transform: rotate(-60deg); animation-delay: 1.2s; }
.line-5 { top: 85%; left: 35%; width: 45px; transform: rotate(30deg); animation-delay: 1.6s; }

/* Transformation Zone (Center) */
.transformation-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.ai-processor {
    position: relative;
    width: 60px;
    height: 60px;
}

.processor-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: processorPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-blue);
    z-index: 3;
}

.processor-core i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.processor-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.proc-ring {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: processorRing 3s linear infinite;
}

.ring-a {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.ring-b {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 1s;
    animation-direction: reverse;
}

.ring-c {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: 2s;
}

.processing-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.proc-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    animation: processingWave 3s ease-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1s; }
.wave-3 { animation-delay: 2s; }

.transformation-flow {
    position: absolute;
    top: 0;
    left: -100px;
    width: 260px;
    height: 150px;
    z-index: 1;
}

.flow-svg {
    width: 100%;
    height: 100%;
}

.flow-path {
    opacity: 0.7;
    animation: flowPathPulse 2s ease-in-out infinite;
}

/* Clarity Layer (Right Side) */
.clarity-layer {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    width: 120px;
    position: relative;
    z-index: 2;
}

.clarity-cell {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--accent-green);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: clarityAppear 1s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: var(--shadow-md);
}

.cell-1 { animation-delay: 2s; }
.cell-2 { animation-delay: 2.3s; }
.cell-3 { animation-delay: 2.6s; }
.cell-4 { animation-delay: 2.9s; }

.cell-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cell-content i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

.cell-label {
    font-size: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1;
}

.clarity-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-green), transparent);
    opacity: 0;
    border-radius: 50%;
    animation: clarityGlow 4s ease-in-out infinite 2s;
    z-index: 1;
}

/* Connections Discovery Animation */
.connections-discovery {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
}

.knowledge-web {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Central Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary-blue);
    animation: hubPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hub-core i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.hub-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hub-ring {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: hubRingExpand 3s ease-in-out infinite;
}

.ring-inner {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.ring-outer {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation-delay: 1s;
}

/* Knowledge Nodes */
.knowledge-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.k-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    animation: nodeFloat 4s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.k-node:hover {
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-blue);
}

.k-node i {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.node-label {
    font-size: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
    line-height: 1;
}

/* Node Positions */
.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.node-2 {
    top: 10%;
    right: 20%;
    animation-delay: 0.7s;
}

.node-3 {
    top: 60%;
    right: 10%;
    animation-delay: 1.4s;
}

.node-4 {
    bottom: 10%;
    right: 25%;
    animation-delay: 2.1s;
}

.node-5 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2.8s;
}

.node-6 {
    top: 50%;
    left: 5%;
    animation-delay: 3.5s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.connections-svg {
    width: 100%;
    height: 100%;
}

.connection-path {
    stroke-dasharray: 5,5;
    animation: connectionFlow 3s ease-in-out infinite;
    opacity: 0;
}

.path-1 { animation-delay: 0.5s; }
.path-2 { animation-delay: 1s; }
.path-3 { animation-delay: 1.5s; }
.path-4 { animation-delay: 2s; }
.path-5 { animation-delay: 2.5s; }
.path-6 { animation-delay: 3s; }

/* Discovery Pulses */
.discovery-pulses {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    animation: pulseWave 4s ease-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1.3s;
}

.wave-3 {
    animation-delay: 2.6s;
}

/* Connection Indicators */
.connection-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-6);
    z-index: 10;
}

.indicator {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0;
    animation: indicatorAppear 1s ease-out forwards;
}

.ind-1 { animation-delay: 2s; }
.ind-2 { animation-delay: 3s; }
.ind-3 { animation-delay: 4s; }

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-label {
    font-size: var(--text-xs);
    color: var(--medium-gray);
    font-weight: 500;
    white-space: nowrap;
}

/* Intelligence Animation */
.intelligence-animation {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Data Streams */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
    opacity: 0.7;
}

.stream-1 {
    top: 10%;
    left: 20%;
    transform: rotate(-30deg);
    animation: streamFlow 3s ease-in-out infinite;
}

.stream-2 {
    top: 15%;
    right: 25%;
    transform: rotate(45deg);
    animation: streamFlow 3s ease-in-out infinite 1s;
}

.stream-3 {
    bottom: 20%;
    left: 30%;
    transform: rotate(15deg);
    animation: streamFlow 3s ease-in-out infinite 2s;
}

.data-packet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
    animation: packetMove 2s linear infinite;
}

.stream-1 .data-packet:nth-child(1) { animation-delay: 0s; }
.stream-1 .data-packet:nth-child(2) { animation-delay: 0.7s; }
.stream-1 .data-packet:nth-child(3) { animation-delay: 1.4s; }

.stream-2 .data-packet:nth-child(1) { animation-delay: 0.3s; }
.stream-2 .data-packet:nth-child(2) { animation-delay: 1s; }

.stream-3 .data-packet:nth-child(1) { animation-delay: 0.5s; }
.stream-3 .data-packet:nth-child(2) { animation-delay: 1.2s; }
.stream-3 .data-packet:nth-child(3) { animation-delay: 1.9s; }
.stream-3 .data-packet:nth-child(4) { animation-delay: 2.6s; }

/* Processing Core */
.processing-core {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.core-ring {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: coreRotate 4s linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    border-color: var(--primary-blue);
    opacity: 0.8;
}

.ring-2 {
    width: 70px;
    height: 70px;
    top: 15px;
    left: 15px;
    border-color: var(--accent-green);
    animation-direction: reverse;
    animation-duration: 3s;
    opacity: 0.6;
}

.ring-3 {
    width: 40px;
    height: 40px;
    top: 30px;
    left: 30px;
    border-color: var(--warning-orange);
    animation-duration: 2s;
    opacity: 0.4;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: corePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-blue);
}

.core-center i {
    width: 12px;
    height: 12px;
    color: var(--white);
}

/* Insight Outputs */
.insight-outputs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.insight-beam {
    position: absolute;
    width: 3px;
    height: 60px;
    background: linear-gradient(to top, var(--primary-blue), transparent);
    opacity: 0;
    animation: beamPulse 3s ease-in-out infinite;
}

.beam-1 {
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

.beam-2 {
    bottom: 25%;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

.beam-3 {
    bottom: 20%;
    left: 15%;
    transform: rotate(60deg);
    animation-delay: 2.5s;
}

.insight-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nodeGlow 2s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

.node-1 {
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.node-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.node-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

.insight-node i {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

/* Energy Particles */
.energy-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 0.7s;
}

.particle:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: 1.4s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 30%;
    animation-delay: 2.1s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 80%;
    animation-delay: 2.8s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 50%;
    animation-delay: 3.5s;
}

/* Enterprise Features */
.enterprise-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-12);
}

.enterprise-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--dark-gray);
    backdrop-filter: blur(10px);
}

.enterprise-badge i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-16);
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: var(--medium-gray);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.footer-copyright {
    color: var(--medium-gray);
    font-size: var(--text-xs);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-column {
        text-align: left;
    }
}

.footer-title {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: var(--space-2);
}

.footer-list a {
    color: var(--medium-gray);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--white);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

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

@keyframes flow {
    0% {
        opacity: 0.3;
        width: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
        width: 100%;
    }
}

/* Complexity Transformation Animation Keyframes */
@keyframes chaosFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-8px) rotate(5deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-4px) rotate(-3deg);
        opacity: 0.9;
    }
}

@keyframes chaosLine {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

@keyframes processorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px var(--primary-blue);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 0 30px var(--primary-blue);
    }
}

@keyframes processorRing {
    from {
        transform: rotate(0deg);
        opacity: 0.6;
    }
    to {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes processingWave {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

@keyframes flowPathPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes clarityAppear {
    from {
        opacity: 0;
        transform: scale(0.6) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes clarityGlow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Connections Discovery Animation Keyframes */
@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px var(--primary-blue);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 30px var(--primary-blue);
    }
}

@keyframes hubRingExpand {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

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

@keyframes connectionFlow {
    0% {
        opacity: 0;
        stroke-dashoffset: 20;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        stroke-dashoffset: -20;
    }
}

@keyframes pulseWave {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

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

@keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Intelligence Animation Keyframes */
@keyframes streamFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.2);
    }
}

@keyframes packetMove {
    0% {
        top: -10px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: calc(100% + 10px);
        opacity: 0;
    }
}

@keyframes coreRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px var(--primary-blue);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 30px var(--primary-blue);
    }
}

@keyframes beamPulse {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
    20% {
        opacity: 0.8;
        transform: scaleY(1);
    }
    80% {
        opacity: 0.8;
        transform: scaleY(1);
    }
}

@keyframes nodeGlow {
    0%, 100% {
        border-color: var(--primary-blue);
        box-shadow: var(--shadow-lg);
        transform: scale(1);
    }
    50% {
        border-color: var(--accent-green);
        box-shadow: 0 0 20px var(--accent-green);
        transform: scale(1.1);
    }
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    25% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    75% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
}

/* Section transitions */
.fullpage-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fullpage-section.active {
    opacity: 1;
    transform: translateY(0);
}

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