/* Важное предупреждение */
.disclaimer-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  display: block;
}

.disclaimer-content {
  flex: 1;
}

.disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.disclaimer-text strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@media (max-width: 768px) {
  .disclaimer-banner {
    padding: 10px 12px;
    margin: 12px 0;
  }

  .disclaimer-text {
    font-size: 0.8rem;
  }
}

/* МОДЕРНИЗИРОВАННЫЙ ДИЗАЙН АГЕНТОВ */
.agents-details-modern {
    margin-top: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.agents-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    max-width: 1400px;
    width: 100%;
    justify-content: center;
    /* Для симметричного отображения используем фиксированное количество колонок на больших экранах */
}

@media (min-width: 1600px) {
    .agents-showcase-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1600px;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    .agents-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .agents-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

.agent-showcase-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 280px;
    max-height: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
}

.agent-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.agent-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.agent-showcase-card:hover .agent-card-glow {
    opacity: 1;
}

.agent-card-glow.featured {
    background: linear-gradient(135deg, transparent 0%, rgba(168, 85, 247, 0.1) 50%, transparent 100%);
}

.agent-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    min-height: 80px;
}

.agent-icon-container {
    position: relative;
    flex-shrink: 0;
}

.agent-icon-bg {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.agent-showcase-card:hover .agent-icon-bg {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(147, 51, 234, 0.3) 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.agent-icon-bg.featured {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.agent-showcase-card:hover .agent-icon-bg.featured {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(236, 72, 153, 0.4) 100%);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.agent-icon-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(168, 85, 247, 0.5) 100%);
    animation: pulse 2s infinite;
    opacity: 0;
}

.agent-showcase-card:hover .agent-icon-pulse {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.agent-header-text {
    flex: 1;
}

.agent-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px 0;
    line-height: 1.2;
    text-align: left;
}

.agent-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}

.agent-capabilities {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.capability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
    position: relative;
}

.capability-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: capabilityPulse 2s infinite;
}

@keyframes capabilityPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.capability-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.3;
}

/* Метрики удалены из карточек агентов */

/* Специфичные цвета для разных типов агентов - СТИЛЬ САЙТА */
.technical-card .agent-icon-bg,
.technical-card .capability-dot {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #60a5fa !important;
}

.fundamental-card .agent-icon-bg,
.fundamental-card .capability-dot {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    color: #a78bfa !important;
}

.news-card .agent-icon-bg,
.news-card .capability-dot {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%) !important;
    color: #f472b6 !important;
}

.realtime-card .agent-icon-bg,
.realtime-card .capability-dot {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    color: #22d3ee !important;
}

.learning-card .agent-icon-bg,
.learning-card .capability-dot {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%) !important;
    color: #c084fc !important;
}

/* Центральный блок с описанием системы */
.agents-system-overview {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.system-overview-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid transparent;
    border-radius: 32px;
    padding: 40px 48px;
    text-align: center;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.system-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    border-radius: 32px;
}

.overview-header {
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overview-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.overview-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.system-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.benefit-highlight {
    text-align: center;
}

.benefit-number {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 4px;
}

.benefit-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .agents-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }
}

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

    .agent-showcase-card {
        padding: 24px 20px;
        min-height: 260px;
        max-height: 300px;
    }

    .agent-icon-bg {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .agent-title {
        font-size: 1.1rem;
    }

    .agent-subtitle {
        font-size: 0.8rem;
    }

    .system-overview-card {
        padding: 32px 24px;
    }

    .system-benefits {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .agents-details-modern {
        margin-top: 60px;
    }

    .agent-card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .agent-icon-bg {
        width: 56px;
        height: 56px;
    }
}
.data-integrations {    margin-top: 80px;
}
.integrations-showcase {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}
.integration-category {    text-align: center;
}
.category-header {    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.category-icon {    font-size: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.category-header h4 {    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.integration-items {    display: flex;
    flex-direction: column;
    gap: 12px;
}
.integration-item {    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-align: center;
}
.integration-item:hover {    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .agents-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    .system-benefits {
        gap: 30px;
    }
}

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

    .agent-showcase-card {
        padding: 24px 20px;
        min-height: 280px;
    }

    .system-overview-card {
        padding: 32px 24px;
    }

    .system-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .integrations-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .agents-details-modern {
        margin-top: 60px;
    }

    .agent-card-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        align-items: center;
    }

    .agent-icon-bg {
        width: 52px;
        height: 52px;
        border-radius: 13px;
    }

    .agent-title {
        font-size: 1rem;
        text-align: center;
    }

    .agent-subtitle {
        font-size: 0.75rem;
        text-align: center;
    }

    .agent-capabilities {
        gap: 10px;
    }

    .capability-item span {
        font-size: 0.8rem;
    }

    .system-benefits {
        gap: 16px;
    }

    .benefit-number {
        font-size: 1.5rem;
    }
}

/* Эффекты частиц для hover */
.hover-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: particleFloat 1s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
}

.feature {
    font-size: 0.85rem;
    padding-left: 20px;
}

.feature::before {
    width: 14px;
    height: 14px;
    font-size: 0.7rem;
}

.market-ecosystem-premium {    margin-bottom: 80px;
    position: relative;
}
.ecosystem-premium-flow {    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
}
.ecosystem-premium-node {    position: relative;
    z-index: 2;
}
.node-premium-orb {    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s var(--ease-premium);
    cursor: pointer;
    overflow: hidden;
}
.orb-premium-bg {    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
}
.orb-premium-gradient {    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.9) 0%,
        rgba(139, 92, 246, 0.8) 50%,
        rgba(218, 112, 214, 0.7) 100%);
    backdrop-filter: blur(20px);
}
.orb-premium-glow {    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.3) 0%,
        rgba(218, 112, 214, 0.3) 100%);
    filter: blur(8px);
    animation: premiumGlowPulse 4s ease-in-out infinite;
}
.orb-premium-glow.featured {    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.4) 0%,
        rgba(147, 51, 234, 0.4) 100%);
    animation: featuredGlowPulse 3s ease-in-out infinite;
}
.orb-premium-content {    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}
.orb-premium-title {    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.orb-premium-value {    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    line-height: 1;
}
.orb-premium-subtitle {    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.2;
}
.orb-premium-detail {    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    max-width: 140px;
    margin: 0 auto;
}
.orb-premium-particles {    position: absolute;
    inset: 0;
    z-index: 2;
}
.particle-premium {    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}
.particle-premium:nth-child(1) {    top: 20%;
    left: 15%;
    animation-delay: 0s;
}
.particle-premium:nth-child(2) {    top: 70%;
    right: 20%;
    animation-delay: 2s;
}
.particle-premium:nth-child(3) {    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}
.orb-premium-particles.featured .particle-premium:nth-child(4) {    top: 15%;
    right: 15%;
    animation-delay: 1s;
}
.node-premium-orb:hover {    transform: scale(1.1) translateY(-8px);
    box-shadow:
        0 25px 80px rgba(124, 58, 237, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}
.node-premium-orb:hover .orb-premium-glow {    filter: blur(12px);
    opacity: 0.8;
}
.node-premium-orb:hover .particle-premium {    animation-duration: 3s;
    opacity: 1;
}
.sam-orb .orb-premium-gradient {    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.9) 0%,
        rgba(124, 58, 237, 0.8) 50%,
        rgba(79, 70, 229, 0.7) 100%);
}
.sam-orb .orb-premium-glow {    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.3) 0%,
        rgba(124, 58, 237, 0.3) 100%);
}
.som-orb .orb-premium-gradient {    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.9) 0%,
        rgba(147, 51, 234, 0.8) 50%,
        rgba(168, 85, 247, 0.7) 100%);
}
.som-orb .orb-premium-glow {    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.4) 0%,
        rgba(147, 51, 234, 0.4) 100%);
}
.ecosystem-premium-connector {    position: relative;
    z-index: 1;
    margin: 0 20px;
}
.connector-premium-line {    position: relative;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.6) 50%,
        transparent 100%);
    border-radius: 1px;
    overflow: visible;
}
.connector-premium-beam {    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 50%,
        transparent 100%);
    border-radius: 1px;
    animation: beamPulse 3s ease-in-out infinite;
}
.connector-premium-particles {    position: absolute;
    inset: 0;
}
.connector-particle {    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: connectorFlow 4s ease-in-out infinite;
}
.connector-particle:nth-child(1) {    left: 0;
    top: 50%;
    animation-delay: 0s;
}
.connector-particle:nth-child(2) {    left: 50%;
    top: 50%;
    animation-delay: 1.3s;
}
.connector-particle:nth-child(3) {    right: 0;
    top: 50%;
    animation-delay: 2.6s;
}
@keyframes premiumGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}
@keyframes featuredGlowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}
@keyframes particleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px);
    }
}
@keyframes connectorFlow {
    0% {
        opacity: 0;
        transform: translateX(-10px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateX(0px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(10px) scale(0.5);
    }
}
@media (max-width: 768px) {
    .ecosystem-premium-flow {
        flex-direction: column;
        gap: 40px;
    }

    .node-premium-orb {
        width: 160px;
        height: 160px;
    }

    .orb-premium-value {
        font-size: 1.6rem;
    }

    .orb-premium-title {
        font-size: 0.9rem;
    }

    .ecosystem-premium-connector {
        display: none;
    }
}
@media (max-width: 480px) {
    .node-premium-orb {
        width: 140px;
        height: 140px;
    }

    .orb-premium-value {
        font-size: 1.4rem;
    }

    .orb-premium-detail {
        font-size: 0.7rem;
    }
}
.pie-center-bg {    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;
}
.pie-center-gradient {    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.9) 0%,
        rgba(147, 51, 234, 0.8) 50%,
        rgba(124, 58, 237, 0.7) 100%);
    backdrop-filter: blur(20px);
}
.pie-center-glow {    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(218, 112, 214, 0.4) 0%,
        rgba(147, 51, 234, 0.4) 100%);
    filter: blur(12px);
    animation: pieCenterGlowPulse 3s ease-in-out infinite;
}
.pie-center-particles {    position: absolute;
    inset: 0;
    z-index: 2;
}
.pie-particle {    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: pieParticleFloat 4s ease-in-out infinite;
}
.pie-particle:nth-child(1) {    top: 25%;
    left: 20%;
    animation-delay: 0s;
}
.pie-particle:nth-child(2) {    top: 70%;
    right: 25%;
    animation-delay: 1s;
}
.pie-particle:nth-child(3) {    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}
.pie-particle:nth-child(4) {    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
}
.pie-center-content {    position: relative;
    z-index: 4;
    text-align: center;
    padding: 16px;
}
.pie-center-value {    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    line-height: 1;
}
.pie-center-subtitle {    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pie-center-desc {    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}
.pie-center:hover .pie-center-glow {    filter: blur(16px);
    opacity: 0.8;
    animation-duration: 2s;
}
.pie-center:hover .pie-particle {    animation-duration: 2s;
    opacity: 1;
}
@keyframes pieCenterGlowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
@keyframes pieParticleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) translateY(-8px);
    }
}
.pie-segment {    transition: all 0.3s var(--ease-premium);
    cursor: pointer;
}
.pie-segment:hover {    opacity: 0.8;
    transform: scale(1.05);
    filter: brightness(1.2);
}
.legend-item {    transition: all 0.3s var(--ease-premium);
    cursor: pointer;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 4px;
}
.legend-item:hover {    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}
.legend-item.highlighted {    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}
.pie-segment.highlighted {    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.3) drop-shadow(0 0 8px currentColor);
    z-index: 10;
}
@media (max-width: 768px) {
    .cost-pie-chart {
        width: 300px;
        height: 300px;
    }

    .pie-center {
        width: 140px !important;
        height: 140px !important;
    }

    .pie-center-value {
        font-size: 1.6rem;
    }

    .pie-center-subtitle {
        font-size: 0.7rem;
    }

    .pie-center-desc {
        font-size: 0.65rem;
    }

    .pie-segment {
        stroke-width: 1.5px;
    }

    .pie-segment:hover {
        stroke-width: 2px;
    }
}
@media (max-width: 480px) {
    .cost-pie-chart {
        width: 250px;
        height: 250px;
    }

    .pie-center {
        width: 120px !important;
        height: 120px !important;
    }

    .pie-center-value {
        font-size: 1.4rem;
    }

    .pie-center-subtitle {
        font-size: 0.7rem;
    }

    .pie-center-desc {
        font-size: 0.6rem;
    }

    .pie-segment {
        stroke-width: 1px;
    }

    .pie-segment:hover {
        stroke-width: 1.5px;
    }
}
@keyframes costOrbGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}
@keyframes costParticleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8) translateY(0px);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-10px);
    }
}
@media (max-width: 768px) {
    .cost-total-orb-premium {
        width: 160px;
        height: 160px;
    }

    .orb-cost-value {
        font-size: 1.8rem;
    }

    .orb-cost-title {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .cost-total-orb-premium {
        width: 140px;
        height: 140px;
    }

    .orb-cost-value {
        font-size: 1.6rem;
    }

    .orb-cost-subtitle {
        font-size: 0.7rem;
    }
}
@keyframes stormBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4);
    }
}
@keyframes stormTitleShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes eventHorizonRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes singularityPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}
@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes particleOrbit {
    0% {
        transform: translateX(-50%) rotate(0deg) translateX(70px) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg) translateX(70px) rotate(-360deg);
    }
}
@keyframes beamPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}
@keyframes particleFlow {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scaleY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}
@keyframes supernovaBlast {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}
@keyframes supernovaIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
.factor-icon svg {    width: 40px;
    height: 40px;
    color: white;
}
@keyframes stormYearPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4);
    }
}
@keyframes stormTitleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes stormCorePulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 80px rgba(124, 58, 237, 1);
    }
}
@keyframes resultPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 20px 60px rgba(218, 112, 214, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.02);
        box-shadow: 0 25px 70px rgba(218, 112, 214, 0.5);
    }
}
@keyframes resultIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@media (max-width: 768px) {
    .storm-title {
        font-size: 2.5rem;
    }

    .storm-factors-showcase {
        height: 400px;
    }

    .storm-factor {
        width: 250px;
    }

    .factor-icon {
        width: 60px;
        height: 60px;
    }

    .factor-icon svg {
        width: 30px;
        height: 30px;
    }

    .factor-value {
        font-size: 1.4rem;
    }

    .factor-subtitle {
        font-size: 1rem;
    }

    .factor-description {
        font-size: 0.85rem;
    }

    .result-container {
        padding: 20px 32px;
    }

    .result-title {
        font-size: 1rem;
    }

    .result-subtitle {
        font-size: 0.7rem;
    }
}
.founder-simple-badge .badge-text {    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: white;
    letter-spacing: 0.05em;
}
.achievement-simple-text h4 {    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}
.achievement-simple-text p {    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.avatar-simple-image svg {    width: 100px;
    height: 100px;
    color: white;
}
.expertise-simple-header h3 {    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF, var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.expertise-simple-header p {    font-size: 1.1rem;
    color: var(--text-light-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.expertise-simple-content h4 {    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}
.expertise-simple-content p {    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.skills-simple-header h3 {    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF, var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.skills-simple-header p {    font-size: 1.1rem;
    color: var(--text-light-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.skill-simple-info h4 {    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 4px;
}
.skill-simple-info p {    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.vision-simple-title-section h3 {    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 8px;
}
.vision-simple-content p {    font-size: 1.1rem;
    color: var(--text-light-color);
    line-height: 1.7;
    margin-bottom: 30px;
}
.value-icon {    font-size: 1.2rem;
}
@keyframes nameShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes avatarGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@media (max-width: 768px) {
    .founder-simple-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-simple-header {
        text-align: center;
    }

    .founder-simple-name {
        font-size: 2rem;
    }

    .founder-simple-description {
        font-size: 1rem;
    }

    .achievement-simple-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .achievement-simple-icon {
        margin-right: 0;
    }

    .avatar-simple-container {
        width: 150px;
        height: 150px;
    }

    .expertise-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .skills-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-simple-values {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .vision-simple-header {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .founder-simple-section,
    .expertise-simple-section,
    .skills-simple-section,
    .vision-simple-section {
        padding: 60px 0;
    }

    .founder-simple-name {
        font-size: 1.8rem;
    }

    .expertise-simple-header h3,
    .skills-simple-header h3 {
        font-size: 2rem;
    }

    .vision-simple-card {
        padding: 30px 20px;
    }

    .vision-simple-title-section h3 {
        font-size: 1.8rem;
    }
}
.particle {    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: particleFloat 6s ease-in-out infinite;
}
.particle:nth-child(1) {    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.particle:nth-child(2) {    top: 70%;
    right: 15%;
    animation-delay: 2s;
}
.particle:nth-child(3) {    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}
.founder-badge-revolutionary .badge-text {    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: white;
    letter-spacing: 0.05em;
}
@keyframes avatarRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}
@keyframes nameShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(218, 112, 214, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 35px rgba(218, 112, 214, 0.7);
    }
}
@keyframes ringExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
    }
}
@media (max-width: 1024px) {
    .founder-revolutionary-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-central-card {
        grid-column: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .side-panel-left,
    .side-panel-right {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .founder-revolutionary-section {
        padding: 80px 0;
    }

    .founder-central-card {
        padding: 30px 20px;
    }

    .founder-card-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .founder-avatar-revolutionary {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .avatar-outer-ring {
        width: 120px;
        height: 120px;
    }

    .avatar-middle-ring {
        width: 80px;
        height: 80px;
    }

    .avatar-inner-core {
        width: 50px;
        height: 50px;
    }

    .founder-name-revolutionary {
        font-size: 1.8rem;
    }

    .founder-description-revolutionary {
        font-size: 1rem;
    }

    .side-panel-left,
    .side-panel-right {
        flex-direction: column;
        gap: 15px;
    }

    .expertise-node-revolutionary {
        padding: 12px;
    }

    .node-title-revolutionary {
        font-size: 0.9rem;
    }

    .node-description-revolutionary {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .founder-central-card {
        padding: 25px 15px;
    }

    .avatar-outer-ring {
        width: 100px;
        height: 100px;
    }

    .avatar-middle-ring {
        width: 65px;
        height: 65px;
    }

    .avatar-inner-core {
        width: 40px;
        height: 40px;
    }

    .founder-name-revolutionary {
        font-size: 1.3rem;
    }

    .achievement-title-revolutionary {
        font-size: 1rem;
    }

    .achievement-description-revolutionary {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .perfect-storm-revolutionary {
        padding: 80px 0;
    }

    .storm-title-premium {
        font-size: 2.5rem;
    }

    .storm-universe-container {
        height: 500px;
    }

    .galaxy-system {
        width: 300px;
        height: 150px;
    }

    .galaxy-core {
        width: 150px;
        height: 120px;
        padding: 15px;
    }

    .galaxy-value {
        font-size: 1.2rem;
    }

    .galaxy-subtitle {
        font-size: 0.9rem;
    }

    .galaxy-description {
        font-size: 0.7rem;
    }

    .supernova-core {
        padding: 15px 24px;
    }

    .supernova-title {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .storm-universe-container {
        height: 400px;
    }

    .galaxy-system {
        width: 250px;
        height: 120px;
    }

    .galaxy-core {
        width: 120px;
        height: 100px;
        padding: 10px;
    }

    .galaxy-value {
        font-size: 1rem;
    }

    .galaxy-subtitle {
        font-size: 0.7rem;
    }

    .galaxy-description {
        font-size: 0.7rem;
    }
}
:root {  /* Основные цвета - черно-фиолетово-бело-синие */
  --primary-color: #7F00FF;          /* Насыщенный фиолетовый (Violet) */
  --secondary-color: #C8A2C8;        /* Светлый сиреневый (Lilac) */
  --accent-color: #DA70D6;           /* Орхидея (Orchid) */
  --accent-color-2: #9370DB;         /* MediumPurple */
  --electric-blue: #8B5CF6;          /* Светло-фиолетовый */
  --white: #FFFFFF;
  
  /* Цвета текста */
  --text-color: #EAE0FF;              /* Светло-лавандовый для основного текста */
  --text-light-color: #C0B0E0;        /* Приглушенный сиреневый */
  --text-muted: rgba(234, 224, 255, 0.7);
  --text-heading-color: #FFFFFF;
  
  /* Бело-фиолетовые градиенты */
  --brand-gradient: linear-gradient(135deg, #FFFFFF, #7C3AED 50%, #4F46E5);
  --hero-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%);
  --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
  --premium-glow: 0 20px 60px rgba(124, 58, 237, 0.35);
  
  /* Тени и эффекты */
  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.06) 100%);
  --glass-border: rgba(255, 255, 255, 0.2);
  --blur-backdrop: blur(20px);
  
  /* Анимации */
  --ease-premium: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body {  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0A001A 0%, #1A0A2E 50%, #2A1A3E 100%);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
}
#scroll-progress {    position: fixed;
    top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, var(--accent-color) 50%, rgba(255,255,255,0.9) 100%);
    transform-origin: 0 50%;
    transform: scaleX(0);
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.4);
  transition: all 0.3s var(--ease-premium);
}
.logo {  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 2.4rem;
  background: var(--logo-dynamic-gradient);
  background-size: 120% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  transition: all 0.3s var(--ease-premium);
  animation: logoGradientShift 4s ease-in-out infinite;
}
.logo::after {  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width 0.4s var(--ease-premium);
}
.nav-menu a {   color: rgba(255,255,255,0.85); 
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s var(--ease-premium);
}
.nav-menu a::before {  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s var(--ease-premium);
  transform: translateX(-50%);
}
.nav-menu a:hover {  color: var(--accent-color);
  transform: translateY(-2px);
}
.nav-menu a:hover::before {  width: 100%;
}
.menu-toggle {   display: none; 
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {   width: 24px; 
  height: 2px; 
  background: #fff; 
  display: block;
  transition: all 0.3s var(--ease-premium);
}
.back-to-top {   position: fixed; 
  right: 30px; 
  bottom: 30px; 
  opacity: 0; 
  pointer-events: none; 
  transition: all 0.4s var(--ease-premium); 
  background: var(--glass-bg);
  backdrop-filter: var(--blur-backdrop);
  border: 1px solid var(--glass-border);
  padding: 14px; 
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.back-to-top.show {   opacity: 1; 
  pointer-events: auto; 
  transform: translateY(0);
}
.back-to-top:hover {  transform: translateY(-4px) scale(1.1);
  background: rgba(0, 245, 212, 0.1);
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(0, 245, 212, 0.4);
}
.section {   padding: 120px 0; 
  position: relative;
  overflow: hidden;
}
.section::before {  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(139, 69, 255, 0.05), transparent);
  transform: translateX(-50%);
  opacity: 0.1;
}
.text-center { text-align: center; }
.sub { color: rgba(255,255,255,0.75); margin-top: 12px; font-size: 1.1rem; }
.hero-section {   padding: 220px 0 120px;
  background: transparent;
  position: relative;
}
.hero-section::after {  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.hero-grid {   display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 60vh;
}
.hero-title {   font-family: 'Clash Display', system-ui; 
  font-weight: 800; 
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text-heading-color);
  margin-bottom: 24px;
  position: relative;
}
.hero-section .animate-on-scroll {  opacity: 1;
  transform: none;
}
.hero-sub {   font-size: 1.3rem; 
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-cta {   display: flex; 
  gap: 20px; 
  margin-top: 40px; 
  flex-wrap: wrap;
}
.cta-button-large, .cta-button-outline {  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}
.cta-button-large {  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
  color: white;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}
.cta-button-large::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.cta-button-large:hover {  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 48px rgba(124, 58, 237, 0.6);
}
.cta-button-large:hover::before {  left: 100%;
}
.hero-card.glass {   background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
  border-radius: 24px; 
  padding: 32px; 
  min-height: 280px; 
  position: relative; 
  overflow: hidden;
  z-index: 2;
}
@keyframes shimmer { 
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); opacity: 0.3; }
  50% { transform: translateX(100%) translateY(100%) rotate(180deg); opacity: 0.7; }
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 245, 212, 0.5); }
  50% { text-shadow: 0 0 30px rgba(0, 245, 212, 0.8); }
}
.hero-chart-container {  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-chart-container {  position: relative;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.chart-header {  text-align: center;
  margin-bottom: 20px;
}
.chart-title {  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.chart-subtitle {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 400;
}
.chart-main {  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}
.chart-visual {  position: relative;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.metric-badge {  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 120px;
}
.metric-badge.primary {  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
  border-color: rgba(34, 197, 94, 0.3);
}
.metric-badge.secondary {  background: linear-gradient(135deg, rgba(139, 69, 255, 0.2), rgba(139, 69, 255, 0.1));
  border-color: rgba(139, 69, 255, 0.3);
}
.metric-badge.primary .metric-value {  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
  background: linear-gradient(135deg, #22c55e, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 2.2rem;
}
.metric-badge.secondary .metric-value {  color: #8b5cf6;
  text-shadow: 0 0 15px rgba(139, 69, 255, 0.6);
}
.metric-label {  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-item {  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-value {  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.comparison-column:first-child .stat-value {  color: #ef4444;
}
.comparison-column:last-child .stat-value {  color: #22c55e;
}
.stat-label {  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@keyframes arrow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.highlight-red {  color: #ef4444;
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
  font-weight: 800;
}
#problem .card {  animation: problemCard 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
#problem .card:nth-child(1) { animation-delay: 0.2s; }
#problem .card:nth-child(2) { animation-delay: 0.4s; }
#problem .card:nth-child(3) { animation-delay: 0.6s; }
@keyframes problemCard {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#problem .card::before {  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 99, 99, 0.1), transparent);
  transition: top 0.6s ease;
}
#problem .card:hover::before {  top: 100%;
}
#solution .feature-card {  animation: solutionCard 1s ease-out forwards;
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
}
#solution .feature-card:nth-child(1) { animation-delay: 0.3s; }
#solution .feature-card:nth-child(2) { animation-delay: 0.5s; }
#solution .feature-card:nth-child(3) { animation-delay: 0.7s; }
@keyframes solutionCard {
  0% {
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-8px) rotateX(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}
#solution .feature-card::after {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
  transition: left 0.8s ease;
}
#solution .feature-card:hover::after {  left: 100%;
}
.final-section {   background: linear-gradient(135deg, rgba(139,69,255,.12), rgba(15,15,25,.98));
  position: relative;
}
.final-section::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.final-grid {   display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 60px; 
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.animate-on-scroll {   opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.visible {   opacity: 1; 
  transform: translateY(0);
}
[data-anim="slide-left"] {
  transform: translateX(-40px);
}
[data-anim="slide-left"].visible {
  transform: translateX(0);
}
[data-anim="slide-right"] {
  transform: translateX(40px);
}
[data-anim="slide-right"].visible {
  transform: translateX(0);
}
[data-anim="slide-up"] {
  transform: translateY(40px);
}
[data-anim="slide-up"].visible {
  transform: translateY(0);
}
[data-anim="fade-in"] {
  opacity: 0;
  transform: scale(0.95);
}
[data-anim="fade-in"].visible {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 900px) {
  .nav-menu { 
    display: none; 
  }
  
  .menu-toggle { 
    display: inline-flex; 
  }
  
  .cards3 { 
    grid-template-columns: 1fr; 
  }
  
  .section {
    padding: 80px 0;
  }
  
  .hero-section {
    padding: 160px 0 80px;
  }
  
  .hero-grid, .final-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-viz {
    order: 2;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
h2 {  font-family: 'Clash Display', system-ui;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
h3 {  font-family: 'Clash Display', system-ui;
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--accent-color);
  margin-bottom: 16px;
}
.metric-label {  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
@keyframes trend-draw {
  to { opacity: 1; }
}
.timeline-line {  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.6) 20%, rgba(124, 58, 237, 0.8) 50%, rgba(124, 58, 237, 0.6) 80%, transparent 100%);
  z-index: 1;
  animation: timeline-glow 3s ease-in-out infinite alternate;
}
@keyframes timeline-draw-linear {
  0% { 
    width: 0;
    opacity: 0.3;
  }
  10% {
    opacity: 1;
  }
  100% { 
    width: 84%;
    opacity: 1;
  }
}
@keyframes timeline-draw-smooth {
  0% { 
    transform: scaleX(0);
    opacity: 0.5;
  }
  20% {
    opacity: 1;
  }
  100% { 
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes pulse-dot {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 20px rgba(124,58,237,0.8); 
  }
  50% { 
    transform: scale(1.15); 
    box-shadow: 0 0 30px rgba(124,58,237,1); 
  }
}
.timeline-content h4 {  color: var(--accent-color);
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 800;
}
.timeline-content p {  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.timeline-content strong {  color: var(--accent-color-2);
}
@keyframes timeline-content-appear {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes timeline-glow {
  0% { 
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5); 
    filter: brightness(1);
  }
  100% { 
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.8); 
    filter: brightness(1.2);
  }
}
@keyframes pulse-active {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 245, 212, 0.8); }
  50% { transform: scale(1.2); box-shadow: 0 0 40px rgba(0, 245, 212, 1); }
}
.timeline-content h4 {  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content p {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.4;
}
#market {  position: relative;
  overflow: hidden;
}
#market::before {  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse 800px 400px at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 600px 300px at 80% 70%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 400px 200px at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle 100px at 15% 20%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
    radial-gradient(circle 80px at 85% 80%, rgba(147, 51, 234, 0.25) 0%, transparent 50%),
    radial-gradient(circle 60px at 30% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(circle 40px at 70% 20%, rgba(129, 140, 248, 0.18) 0%, transparent 50%);
  animation: galaxyRotate 120s linear infinite;
  z-index: -1;
}
@keyframes galaxyRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
#market h2 {  position: relative;
  z-index: 2;
  font-family: 'Clash Display', system-ui;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  text-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}
@keyframes pyramidFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-10px) rotateX(2deg); }
}
@keyframes layerAppear {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8) rotateX(15deg);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-10px) scale(1.05) rotateX(-3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}
@keyframes amountGlow {
  0% { 
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6); 
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 8px 30px rgba(255, 255, 255, 0.4); 
    transform: scale(1.02);
  }
}
@keyframes glowPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    opacity: 0.4; 
  }
  33% { 
    transform: translate(-50%, -50%) scale(1.1) rotate(120deg); 
    opacity: 0.7; 
  }
  66% { 
    transform: translate(-50%, -50%) scale(1.2) rotate(240deg); 
    opacity: 0.5; 
  }
}
@keyframes particleFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -100px) rotate(360deg); }
}
@media (max-width: 768px) {
  .tam-layer { width: 90%; height: 120px; }
  .sam-layer { width: 75%; height: 100px; }
  .som-layer { width: 60%; height: 80px; }
  
  .layer-content .amount { font-size: 1.8rem; }
  .layer-content .label { font-size: 0.9rem; }
}
@keyframes pyramid-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}
@keyframes pyramid-layer-appear {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.final-section .contact-card:hover {  background: rgba(124, 58, 237, 0.08);
  border-color: var(--accent-color);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}
.final-section .summary-icon {  filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.5));
}
.final-section .cta-button-large {  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}
.final-section .cta-button-outline:hover {  background: rgba(124, 58, 237, 0.1);
  border-color: var(--accent-color);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}
.contact-cards {  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s var(--ease-premium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.contact-card::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.contact-card:hover::before {  left: 100%;
}
.contact-card:hover {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.06) 100%);
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-4px) translateX(6px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
}
.contact-card .icon {  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
  transition: all 0.4s var(--ease-premium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-twitter svg {
  transform: translateX(-2px);
}

.contact-card:hover .icon-twitter svg {
  transform: translateX(-2px) scale(1.05);
}
.contact-card:hover .icon {  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}
.contact-details {  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.contact-value {  font-size: 1.1rem;
  color: var(--text-heading-color);
  font-weight: 600;
  line-height: 1.4;
}
.contact-value a {  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.contact-value a:hover {  color: var(--accent-color);
}
.contact-value a::after {  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}
.contact-value a:hover::after {  width: 100%;
}
.feature-icon {  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--electric-blue));
  border-radius: 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.4);
  transition: all 0.4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}
.feature-icon::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.feature-icon:hover {  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 48px rgba(0, 245, 212, 0.6);
}
.feature-icon:hover::before {  left: 100%;
}
@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero-sub {
    font-size: 1.1rem;
  }
  
  .cta-button-large, .cta-button-outline {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .live-metrics-grid {
    grid-template-columns: 1fr;
  }
}
.side-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: rgba(11, 11, 26, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 12px 6px;
  transition: all 0.3s var(--ease-premium);
  max-height: calc(100vh - 200px);
  overflow: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.side-nav::-webkit-scrollbar {  display: none;
}
.side-nav:hover {  background: rgba(11, 11, 26, 0.95);
  box-shadow: var(--premium-glow);
}
.side-nav-progress {
  display: none;
}
.side-nav-list {  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-nav-link {  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  width: 28px;
  height: 28px;
  border-radius: 12px;
  transition: all 0.3s var(--ease-premium);
  position: relative;
}
.side-nav-link:hover {  color: var(--accent-color);
  background: rgba(124, 58, 237, 0.1);
}
.nav-dot {  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s var(--ease-premium);
}
.side-nav-link:hover .nav-dot {  background: var(--accent-color);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
  transform: scale(1.2);
}

.side-nav-link.active,
.side-nav-link:hover {
  color: var(--accent-color);
  background: rgba(124, 58, 237, 0.1);
}

.side-nav-link.active .nav-dot,
.side-nav-link:hover .nav-dot {
  background: var(--accent-color);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
  transform: scale(1.2);
}
.nav-label {  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease-premium);
  white-space: nowrap;
  background: rgba(26, 10, 46, 0.95);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  position: absolute;
  right: 100%;
  margin-right: 12px;
  backdrop-filter: blur(15px);
  border: none;
  color: var(--text-color);
  z-index: 1000;
}
.side-nav-link:focus .nav-label {  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
@media (max-width: 1200px) {
  .side-nav {
    display: none;
  }
}
.faq-question {  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}
.faq-icon {  margin-right: 16px;
  flex-shrink: 0;
}
.faq-icon .icon {  width: 24px;
  height: 24px;
  background: var(--brand-gradient);
}
.founder-premium-section {    margin-bottom: 80px;
}
.founder-premium-container {    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}
.founder-main-card {    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.founder-main-card::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.founder-main-card:hover {    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 25px 80px rgba(124, 58, 237, 0.15);
}
.founder-visual-section {    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}
.founder-avatar-premium {    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-outer-glow {    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 2px solid rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.avatar-inner-circle {    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(168, 85, 247, 0.9);
    transition: all 0.4s ease;
}
.founder-avatar-premium:hover .avatar-outer-glow {    transform: scale(1.05);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}
.founder-avatar-premium:hover .avatar-inner-circle {    transform: scale(1.1);
}
.avatar-particles {    position: absolute;
    width: 140px;
    height: 140px;
    pointer-events: none;
}
.particle {    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(168, 85, 247, 0.6);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}
.particle:nth-child(1) {    top: 20%;
    left: 15%;
    animation-delay: 0s;
}
.particle:nth-child(2) {    top: 70%;
    right: 10%;
    animation-delay: 1s;
}
.particle:nth-child(3) {    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}
.founder-main-info {    flex: 1;
}
.founder-badge-premium {    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: white;
    letter-spacing: 0.05em;
}
.founder-name-premium {    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nameShift 4s ease-in-out infinite;
}
.founder-description-premium {    font-size: 1.1rem;
    color: var(--text-light-color);
    line-height: 1.6;
}
.founder-achievements-premium {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.achievement-item-premium {    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.achievement-item-premium:hover {    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.12) 100%);
}
.achievement-icon {    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    color: white;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}
.achievement-icon svg {    width: 24px;
    height: 24px;
}
.achievement-content {    flex: 1;
}
.achievement-title {    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.achievement-desc {    color: var(--text-muted);
    font-size: 0.85rem;
}
.founder-skills-premium {    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 32px;
    position: relative;
}
.skills-title-premium {    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}
.skills-grid-premium {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.skill-card-premium {    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.skill-card-premium:hover {    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.12) 100%);
}
.skill-card-premium.featured {    border-color: rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.15) 100%);
}
.skill-icon {    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    color: white;
}
.skill-info {    flex: 1;
}
.skill-name {    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}
.team-structure-modern {    margin-bottom: 80px;
}
.structure-header-modern {    text-align: center;
    margin-bottom: 48px;
}
.structure-title {    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}
.structure-summary {    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 24px;
}
.summary-item {    text-align: center;
}
.summary-number {    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}
.summary-label {    color: var(--text-muted);
    font-size: 0.9rem;
}
.team-grid-symmetrical {    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    justify-items: center;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.team-member-card {    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.team-member-card::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.team-member-card:hover::before {    opacity: 1;
}
.team-member-card:hover {    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.1);
}
.team-member-card.featured {    border-color: rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.95) 100%);
}
.member-role {    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.3;
}
.member-role svg {    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}
.team-member-card:hover .member-role svg {    opacity: 1;
    transform: scale(1.05);
}
.member-salary {    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}
.member-count {    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
.mission-premium-section {    margin-bottom: 80px;
}
.mission-premium-card {    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mission-premium-card::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.mission-header-premium {    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.mission-icon {    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    color: white;
}
.mission-title-premium {    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.mission-text-premium {    font-size: 1.1rem;
    color: var(--text-light-color);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.mission-values-premium {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.value-premium {    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.value-premium:hover {    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.12) 100%);
}
.value-icon {    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    color: white;
}
.value-content {    flex: 1;
}
.value-title {    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}
.value-desc {    color: var(--text-muted);
    font-size: 0.85rem;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.founder-main-info {  flex: 1;
}
.achievement-icon {  font-size: 1.5rem;
}
.timeline-container {  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-line {  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(168, 85, 247, 0.4), rgba(59, 130, 246, 0.4));
  transform: translateX(-50%);
}
.timeline-item {  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  opacity: 0;
  animation: timelineItemAppear 0.8s ease-out forwards;
}
.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
@keyframes timelineItemAppear {
  to { opacity: 1; }
}
.timeline-item:hover .timeline-marker {  transform: scale(1.1);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.timeline-item.featured .timeline-marker {  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(124, 58, 237, 0.2) 100%);
  border-color: rgba(168, 85, 247, 0.5);
}
@keyframes markerPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}
.timeline-year {  font-size: 14px;
  font-weight: 700;
  color: rgba(168, 85, 247, 0.9);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.skill-icon {  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}
.skill-info {  flex: 1;
}
.skill-name {  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.vision-header h4 {  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
}
.metric-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .founder-profile-card {
    padding: 32px 24px;
  }

  .founder-header-section {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .founder-name {
    font-size: 2rem;
  }

  .founder-tagline {
    font-size: 1rem;
  }

  .timeline-item {
    flex-direction: column;
    gap: 16px;
  }

  .timeline-marker {
    order: -1;
    margin: 0 auto;
  }

  .timeline-content {
    text-align: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .vision-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .founder-actions {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
    justify-content: center;
  }
}
.hiring-plan h3 {  text-align: center;
  color: var(--accent-color);
  margin-bottom: 32px;
}
.hire-icon .icon {  width: 32px;
  height: 32px;
  background: var(--brand-gradient);
}
.hire-card h4 {  color: var(--accent-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.hire-card p:not(.hire-salary) {  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}
.competition-overview h3 {  text-align: center;
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.competition-overview p {  text-align: center;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.competitor-card h4 {  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.competitor-card p {  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.competitor-card strong {  color: var(--accent-color-2);
}
@keyframes chart-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}
.competition-chart-wrapper canvas {  position: relative;
  z-index: 2;
  max-width: 900px !important;
  max-height: 600px !important;
  width: 100% !important;
  height: auto !important;
}
.advantage-icon .icon {  width: 32px;
  height: 32px;
  background: var(--brand-gradient);
}
.advantage-card h4 {  color: var(--accent-color);
  margin-bottom: 12px;
}
.advantage-card p {  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}
.stat-item {  text-align: center;
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s var(--ease-premium);
}
.stat-item:hover {  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.2);
}
.stat-number {  font-family: 'Clash Display', system-ui;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}
.stat-label {  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-badge {  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.badge-icon {  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hero-stat .stat-number {  display: block;
  font-family: 'Clash Display', system-ui;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}
.hero-stat .stat-label {  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
@media (max-width: 1200px) {
  .floating-elements {
    display: none;
  }
}
@keyframes chart-draw {
  0% { width: 0; opacity: 0.5; }
  50% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0.8; }
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.faq-container {  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {  background: var(--glass-bg);
  backdrop-filter: var(--blur-backdrop);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-premium);
}
.faq-item:hover {  border-color: rgba(139, 69, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.1);
}
.faq-question {  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}
.faq-question:hover {  background: rgba(0, 245, 212, 0.03);
}
.faq-question h3 {  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}
.faq-toggle {  flex-shrink: 0;
  margin-left: 16px;
}
.faq-toggle svg {  color: var(--accent-color);
  transition: transform 0.3s var(--ease-premium);
}
.faq-answer {  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium), padding 0.3s var(--ease-premium);
}
.faq-content {  padding: 0 24px 24px;
}
.faq-content p {  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .investment-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .summary-item {
    padding: 20px;
  }

  .summary-value {
    font-size: 1.5rem;
  }
}
.summary-item {  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}
.summary-item:hover {  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.summary-icon {  margin-bottom: 12px;
}
.summary-item:hover .premium-icon {  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.6);
}
.premium-icon svg {  stroke-width: 2.5;
}
.summary-content {  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.summary-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.summary-value {  font-family: 'Clash Display', system-ui;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent-color);
  text-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
  line-height: 1;
}
.enhanced-list {  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.enhanced-list li {  position: relative;
  padding: 12px 0 12px 40px;
  margin-bottom: 12px;
  transition: all 0.3s var(--ease-premium);
  border-left: 2px solid transparent;
}
.enhanced-list li::before {  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-color), var(--electric-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 245, 212, 0.3);
}
.enhanced-list li:hover {  padding-left: 45px;
  background: rgba(124, 58, 237, 0.03);
}
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .floating-elements {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    right: auto;
  }
  
  .floating-card {
    opacity: 1;
    transform: none;
  }
  
  .investment-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .timeline-events {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 10%;
  }
  
  .timeline-event {
    min-width: auto;
    max-width: 100%;
  }
  
  /* Адаптивность для расширенного блока Perfect Storm */
  .timeline-event.current .timeline-content {
    max-width: 95%;
    padding: 40px 30px;
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .timeline-line {
    left: 50%;
    right: auto;
    width: 2px;
    height: 80%;
    top: 10%;
    transform: translateX(-50%);
  }

  /* Мобильные стили для нового графика */
  .chart-visual {
    height: 200px;
  }

  .chart-metrics {
    flex-direction: column;
    gap: 12px;
  }

  .metric-badge {
    padding: 8px 12px;
    min-width: 100px;
  }

  .metric-value {
    font-size: 1.4rem;
  }

  .chart-comparison {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .comparison-column {
    flex: none;
  }

  .comparison-header {
    flex-direction: column;
    gap: 8px;
  }

  .comparison-icon {
    width: 32px;
    height: 32px;
  }

  .comparison-title {
    font-size: 1rem;
  }

  .stat-value {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  
  .faq-question {
    padding: 16px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-content {
    padding: 0 16px 16px;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 44, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s var(--ease-premium);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu li {
    margin: 0;
  }
  
  .nav-menu a {
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s var(--ease-premium);
    display: block;
  }
  
  .nav-menu a:hover {
    background: var(--glass-bg);
    transform: scale(1.1);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}
.ripple-button {  position: relative;
  overflow: hidden;
}
.ripple-button::after {  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.ripple-button:active::after {  width: 300px;
  height: 300px;
}
.stream-content h3 {  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.detail-item {  background: rgba(124, 58, 237, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
}
.business-chart-container {  background: var(--glass-bg);
  backdrop-filter: var(--blur-backdrop);
  border: 2px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  margin: 2rem auto;
  text-align: center;
  max-width: 900px;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
  transition: all 0.4s ease;
}
.business-chart-container:hover {  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 16px 60px rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
}
.business-chart-container canvas {  max-height: 320px !important;
}
.chart-wrapper {  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}
.chart-wrapper canvas {  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 1rem;
}
.chart-title {  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}
@keyframes metricCardAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}
@keyframes premiumPulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: translate(-50%, -50%) scale(1); 
  }
  50% { 
    opacity: 0.6; 
    transform: translate(-50%, -50%) scale(1.2); 
  }
}
.metric-label {  font-size: 1rem;
  color: var(--text-light-color);
}
.animate-on-scroll {  will-change: transform, opacity;
}
.hero-card {  will-change: transform;
}
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.4);
  }
  
  .card, .feature-card {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-on-scroll {
    transform: none !important;
    opacity: 1 !important;
  }
}
@keyframes timeline-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes timeline-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.5);
    opacity: 0.7;
  }
}
@keyframes pulse-active {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
  }
}
#market {  text-align: center;
}
#market .container {  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.competition-chart-wrapper canvas {  max-height: 350px !important;
  border-radius: 12px;
}
.advantage-card h4 {  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.advantage-card p {  color: var(--text-light-color);
  line-height: 1.6;
}
#funds {  position: relative;
  overflow: hidden;
}
#funds h2 {  position: relative;
  z-index: 2;
  font-family: 'Clash Display', system-ui;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}
#funds .sub {  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}
.funds-allocation {  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin: 4rem 0;
  position: relative;
  z-index: 2;
}
.funds-pie-wrapper {  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4rem auto;
  max-width: 900px;
  padding: 2rem;
}
.interactive-pie-chart {  position: relative;
  width: 550px;
  height: 550px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: visible;
  padding: 40px;
}
.pie-segment {  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.pie-segment:hover {  transform: scale(1.05);
  filter: brightness(1.2);
  z-index: 2;
}
.pie-center {  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, 
    rgba(10, 0, 26, 0.98) 0%, 
    rgba(26, 10, 46, 0.95) 100%
  );
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(25px);
  border: 2px solid rgba(124, 58, 237, 0.5);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 30px rgba(124, 58, 237, 0.3);
  z-index: 10;
  transition: all 0.4s ease;
}
.pie-center:hover {  transform: translate(-50%, -50%) scale(1.1);
  border-color: rgba(124, 58, 237, 0.7);
}
.pie-center-amount {  font-family: 'Clash Display', system-ui;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;
  line-height: 1;
}
.pie-center-label {  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
}
.funds-pie-wrapper canvas {  max-width: 500px !important;
  max-height: 500px !important;
  width: 500px !important;
  height: 500px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pie-tooltip {  position: absolute;
  background: linear-gradient(135deg, 
    rgba(10, 0, 26, 0.95) 0%, 
    rgba(26, 10, 46, 0.9) 100%
  );
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(124, 58, 237, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.pie-tooltip.visible {  opacity: 1;
  transform: translateY(0) scale(1);
}
.pie-tooltip-title {  font-weight: 600;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.95);
}
.pie-tooltip-desc {  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
@keyframes funds-container-appear {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(50px) rotateX(15deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05) translateY(-10px) rotateX(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotateX(0deg);
  }
}
.funds-pie-wrapper::before {  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, 
    rgba(124, 58, 237, 0.4) 0%, 
    rgba(79, 70, 229, 0.3) 50%,
    rgba(59, 130, 246, 0.2) 100%
  );
  border-radius: 35px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderGlow 4s ease-in-out infinite alternate;
}
@keyframes borderGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.02); }
}
.funds-pie-wrapper:hover::before {  opacity: 1;
  animation-play-state: paused;
}
.funds-pie-wrapper:hover {  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 100px rgba(124, 58, 237, 0.5);
  border-color: rgba(124, 58, 237, 0.7);
}
.funds-pie-wrapper::after {  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -2;
  border-radius: 50%;
}
.funds-pie-wrapper:hover::after {  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.funds-pie-wrapper h3 {  text-align: center;
  color: var(--accent-color);
  margin-bottom: 32px;
  font-size: 2.2rem;
  text-shadow: 0 0 20px rgba(124,58,237,0.6);
  font-weight: 800;
}
.funds-allocation {  text-align: center;
}
.funds-allocation .animate-on-scroll {  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.funds-allocation .animate-on-scroll.visible {  opacity: 1;
  transform: translateY(0);
}
.funds-section .container {  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.funds-legend {  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0.5rem auto 1.5rem;
  max-width: 1000px;
  justify-items: center;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .funds-legend {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
  }
}
@media (max-width: 768px) {
  .funds-legend {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }
}
.funds-details {  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-backdrop);
  border: 2px solid var(--accent-color);
  border-radius: 16px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: details-appear 0.3s ease-out;
}
.funds-details h4 {  color: var(--accent-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.funds-details p {  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
@keyframes details-appear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.legend-item {  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(124, 58, 237, 0.04) 100%
  );
  backdrop-filter: blur(15px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 18px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: legendAppear 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
  width: 100%;
  max-width: 320px;
  min-height: 120px;
  text-align: left;
  justify-content: flex-start;
}
.legend-item:nth-child(1) { animation-delay: 0.2s; }
.legend-item:nth-child(2) { animation-delay: 0.4s; }
.legend-item:nth-child(3) { animation-delay: 0.6s; }
.legend-item:nth-child(4) { animation-delay: 0.8s; }
@keyframes legendAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.legend-item::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.legend-item:hover::before {  left: 100%;
}
.legend-item:hover {  transform: translateY(-8px) scale(1.05);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(124, 58, 237, 0.1) 100%
  );
}
.legend-title {  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
}
.legend-desc {  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.3;
}
.legend-item .dot {  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}
.legend-item .dot::after {  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.legend-item:hover .dot {  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.legend-item:hover .dot::after {  opacity: 1;
}
.section:not(.hero-section) {  opacity: 1;
  transform: none;
  transition: all 0.8s ease-out;
}
.section.hero-section {  opacity: 1;
  transform: none;
}
.animate-on-scroll {  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.animate-on-scroll.visible {  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll[data-anim="slide-left"] {
  transform: translateX(-50px);
}
.animate-on-scroll[data-anim="slide-right"] {
  transform: translateX(50px);
}
.animate-on-scroll[data-anim="slide-up"] {
  transform: translateY(40px);
}
.animate-on-scroll[data-anim="fade-in"] {
  transform: none;
}
.animate-on-scroll[data-anim="fade-in"].visible {  transform: translateX(0);
}
.legend-item {  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-out;
}
.legend-item.visible {  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .feature-grid.solution-pane {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 700px) {
  .feature-grid.solution-pane {
    grid-template-columns: 1fr;
  }
}
h1, h2, h3, h4, h5, h6 {  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text-heading-color);
  line-height: 1.3;
  margin-bottom: 0.7em;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
h1 {  font-size: clamp(2.7rem, 5.5vw, 4.2rem);
}
h2 {  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
}
h3 {  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 600;
}
.hero-title {  line-height: 1.2;
  margin-bottom: 25px;
  font-size: clamp(2.8rem, 5vw, 4.0rem);
}
.gradient-text {  background: linear-gradient(120deg,
    #FFFFFF 0%,
    #F6F2FF 18%,
    var(--secondary-color) 36%,
    var(--accent-color) 58%,
    var(--primary-color) 80%,
    #FFFFFF 100%
  );
  background-size: 300% 300%;
  background-position: 0% 50%;
  animation: gradientShift 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}


/* Стиль заголовков разделов как главный заголовок */
.section-title {
  font-family: 'Clash Display', system-ui;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-heading-color);
  margin-bottom: 24px;
  position: relative;
  text-align: center;
}

.section-title .gradient-text {
  background: linear-gradient(120deg,
    #FFFFFF 0%,
    #F6F2FF 18%,
    var(--secondary-color) 36%,
    var(--accent-color) 58%,
    var(--primary-color) 80%,
    #FFFFFF 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.orb-bg-premium {  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(124, 58, 237, 0.25), rgba(139, 92, 246, 0.5), rgba(124, 58, 237, 0.25));
  animation: orbRotate 10s linear infinite;
}
.orb-bg-premium.featured {  background: conic-gradient(from 0deg, rgba(59, 130, 246, 0.35), rgba(124, 58, 237, 0.6), rgba(59, 130, 246, 0.35));
}
@keyframes orbRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.stat-card-premium:hover .orb-bg-premium {  animation-duration: 5s;
}
.orb-glow.primary-glow {  background: linear-gradient(45deg, rgba(124, 58, 237, 0.4), rgba(139, 92, 246, 0.6));
}
.orb-glow.accent-glow {  background: linear-gradient(45deg, rgba(59, 130, 246, 0.5), rgba(124, 58, 237, 0.7));
}
.orb-gradient.primary-gradient {  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.3), transparent 70%);
}
.orb-gradient.accent-gradient {  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4), transparent 70%);
}
.orb-glow {  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(124, 58, 237, 0.3), rgba(139, 92, 246, 0.5));
  filter: blur(8px);
  z-index: -1;
}
.orb-glow.featured {  background: linear-gradient(45deg, rgba(59, 130, 246, 0.4), rgba(124, 58, 237, 0.6));
}
.orb-gradient {  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 70%);
}
.orb-content-premium {  position: relative;
  z-index: 2;
  text-align: center;
}
.orb-content-premium.featured {  color: #3B82F6;
}
.orb-content-premium.featured .stat-number-premium {  color: #3B82F6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.primary-particles .particle-premium {  background: rgba(124, 58, 237, 0.7) !important;
}
.accent-particles .particle-premium {  background: rgba(59, 130, 246, 0.8) !important;
}
.particle-premium {  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(124, 58, 237, 0.8);
  border-radius: 50%;
  animation: particleFloat 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}
.orb-particles-premium.featured .particle-premium {  background: rgba(59, 130, 246, 0.9);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}
.particle-premium:nth-child(1) {  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.particle-premium:nth-child(2) {  top: 60%;
  right: 20%;
  animation-delay: 0.5s;
}
.particle-premium:nth-child(3) {  bottom: 25%;
  left: 25%;
  animation-delay: 1s;
}
.particle-premium:nth-child(4) {  bottom: 15%;
  right: 15%;
  animation-delay: 1.5s;
}
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-stats-premium {
    margin: 30px 0;
  }

  .stats-container-premium {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
  }

  .stat-card-premium {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .stat-orb-premium {
    width: 70px;
    height: 70px;
  }

  .stat-number-premium {
    font-size: 1.6rem;
  }

  .stat-label-premium {
    font-size: 1rem;
  }

  .stat-description-premium {
    font-size: 0.85rem;
  }

  .stat-number-premium {
    font-size: 1.6rem;
  }

  .stat-label-premium {
    font-size: 1rem;
  }

  .stat-description-premium {
    font-size: 0.85rem;
  }

  .stats-badge-premium {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .stats-container-premium {
    gap: 16px;
  }

  .stat-card-premium {
    padding: 16px;
  }

  .stat-orb-premium {
    width: 60px;
    height: 60px;
  }

  .stat-number-premium {
    font-size: 1.4rem;
  }
}
.stat-number, .metric-value, .stream-percentage {  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media print {
  * {
    color: #000 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  
  .header, .back-to-top, .scroll-progress, .floating-elements {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}
.side-nav:hover .nav-label {  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pdf-loading span {  opacity: 0.7;
}
.feature-content h4 {  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent-color);
  padding-left: 1rem;
}
.feature-content .enhanced-list {  margin-bottom: 1.5rem;
}
.premium-revenue-system {  display: grid;
  gap: 3rem;
  margin: 3rem 0;
}
.main-revenue-card {  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(124, 58, 237, 0.15),
    0 8px 32px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.main-revenue-card::before {  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(124, 58, 237, 0.1),
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent,
    rgba(16, 185, 129, 0.1),
    transparent
  );
  animation: rotate-gradient 20s linear infinite;
  pointer-events: none;
}
@keyframes rotate-gradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.revenue-header {  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}
.revenue-icon-premium {  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--electric-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
  animation: float-icon 3s ease-in-out infinite;
}
@keyframes float-icon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.revenue-title-section h3 {  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.revenue-percentage {  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 0 20px var(--accent-color);
}
.revenue-description {  margin-bottom: 2.5rem;
  position: relative;
  z-index: 3;
}
.revenue-description p {  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.subscription-tiers {  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 3;
}
.tier-card {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(124, 58, 237, 0.02) 100%) !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(15px);
  transition: all 0.5s var(--ease-premium);
  position: relative;
  cursor: pointer;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tier-card:hover {  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(124, 58, 237, 0.05) 100%) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.pro-tier.featured:hover {
  transform: translateY(-15px) scale(1.08) !important;
  box-shadow:
    0 0 50px rgba(124, 58, 237, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(59, 130, 246, 0.22) 50%, rgba(16, 185, 129, 0.18) 100%) !important;
  border-color: #EC4899 !important;
}

.pro-tier.featured:hover::before {
  background: linear-gradient(135deg, #EC4899, #7C3AED) !important;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6) !important;
}
@keyframes pulse-badge {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.1); }
}
.tier-header {  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tier-icon {  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: all 0.4s var(--ease-premium);
}
.tier-card:hover .tier-icon {  transform: scale(1.1) rotate(5deg);
  background: rgba(124, 58, 237, 0.2);
}
.tier-header h4 {  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.tier-price {  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.tier-price span {  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}
.tier-features {  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.feature-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(124, 58, 237, 0.12) 100%) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  margin: 0.375rem 0 !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15) !important;
}

.feature-item:last-child {
  border-bottom: none !important;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.15)) !important;
  border-radius: 10px !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.feature-item:hover .feature-check {
  text-shadow: 0 0 15px rgba(124, 58, 237, 0.5) !important;
  transform: scale(1.1) !important;
}

.feature-item:hover .feature-title {
  color: #7C3AED !important;
}

.feature-check {
  color: #7C3AED !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  margin-top: 0.1rem !important;
  background: linear-gradient(135deg, #7C3AED, #EC4899) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.3) !important;
}

.feature-content {
  flex: 1 !important;
}

.feature-title {
  font-size: 1rem !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  margin-bottom: 0.3rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.feature-desc {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.5 !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.feature {  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  padding: 0.5rem 0;
}
.feature::before {  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
}
.basic-tier {  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
}
.basic-tier .tier-icon {  color: #06b6d4;
}
.pro-tier.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(59, 130, 246, 0.18) 50%, rgba(16, 185, 129, 0.15) 100%) !important;
  border-color: #7C3AED !important;
  border-width: 3px !important;
  box-shadow:
    0 0 30px rgba(124, 58, 237, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  transform: scale(1.05) !important;
  z-index: 10 !important;
}

.pro-tier.featured::before {
  content: 'MOST POPULAR' !important;
  position: absolute !important;
  top: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, #7C3AED, #EC4899) !important;
  color: white !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4) !important;
  z-index: 11 !important;
  animation: popularBadgePulse 2s ease-in-out infinite !important;
}

@keyframes popularBadgePulse {
  0%, 100% {
    transform: translateX(-50%) scale(1) !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4) !important;
  }
  50% {
    transform: translateX(-50%) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6) !important;
  }
}
.pro-tier .tier-icon {  color: var(--accent-color);
}
.enterprise-tier {  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(124, 58, 237, 0.1));
}
.enterprise-tier .tier-icon {  color: #10b981;
}
.secondary-revenue-streams {  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.secondary-revenue-card {  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.4s var(--ease-premium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.secondary-revenue-card:hover {  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.secondary-header {  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.secondary-icon {  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s var(--ease-premium);
}
.secondary-revenue-card:hover .secondary-icon {  transform: scale(1.1) rotate(5deg);
  background: rgba(124, 58, 237, 0.2);
  color: var(--accent-color);
}
.secondary-header h4 {  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.secondary-description {  color: rgba(255, 255, 255, 0.7);
}
.secondary-description em {  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}
.secondary-description p {  margin: 0.5rem 0 0 0;
  line-height: 1.5;
}
@keyframes dashboard-grid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}
.header-title h2 {  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
.header-title p {  font-size: 1.1rem;
  color: rgba(59, 130, 246, 0.8);
  margin: 0;
  font-weight: 500;
}
@keyframes status-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
.section-header h3 {  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.legend-item {  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legend-color {  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.legend-color.millennium {  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}
.legend-color.competitor {  background: linear-gradient(135deg, #ef4444, #dc2626);
}
@keyframes millennium-glow {
  0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
  100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.8); }
}
.competitor-logo {  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.platform-details h4 {  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.2rem 0;
}
.platform-details p {  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
@keyframes value-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.metric-label {  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.metric-cell.advantage .metric-label {  color: rgba(34, 197, 94, 0.8);
}
.platform-details p {  position: relative !important;
  z-index: 10 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: inherit !important;
}
@keyframes radar-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}
@keyframes millennium-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes center-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.center-info h3 {  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
}
.center-info p {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem 0;
}
.legend-header h3 {  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.stat-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}
.stat-value.millennium {  color: #3b82f6;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.stat-value.competitors {  color: #ef4444;
  font-weight: 800;
}
.stat-value.advantage {  color: #10b981;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
.cost-comparison h4 {  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.competitor-logo {  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: white;
}
.final-conclusion h3 {  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}
.conclusion-icon {  font-size: 2rem;
  margin-bottom: 1rem;
  animation: icon-float 3s ease-in-out infinite;
}
.conclusion-item h4 {  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}
.conclusion-item p {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}
.card-header {  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
}
@keyframes millennium-logo-glow {
  0% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.6); }
  100% { box-shadow: 0 0 50px rgba(59, 130, 246, 0.9); }
}
.platform-info h3 {  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
}
.platform-info p {  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.metric-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.feature-icon {  font-size: 1.5rem;
  flex-shrink: 0;
  animation: feature-icon-float 4s ease-in-out infinite;
}
@keyframes feature-icon-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
.feature-text h4 {  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
}
.feature-text p {  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}
.price span {  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.metrics-section h3 {  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}
.sidebar-section h4 {  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}
.metric-title {  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.metric-badge {  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 800;
}
.metric-badge.millennium {  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
}
.detail-item {  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 6px;
}
.detail-icon {  font-size: 1rem;
}
.detail-item span:last-child {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}
.result-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.result-value {  font-size: 1.1rem;
  font-weight: 800;
}
.result-value.negative {  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
.result-value.positive {  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
.result-value.profit {  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: profit-glow 2s ease-in-out infinite alternate;
}
@keyframes profit-glow {
  0% { text-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
  100% { text-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
.advantage-content h5 {  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
}
.advantage-content p {  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}
.summary-card {  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.summary-card::before {  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
}
.summary-card:hover::before {  left: 100%;
}
.summary-card:hover {  transform: translateY(-5px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}
.summary-card.highlight {  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.summary-card.highlight:hover {  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}
@keyframes card-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.summary-card.highlight .card-icon {  background: linear-gradient(135deg, #10b981, #34d399);
  animation: highlight-pulse 4s ease-in-out infinite;
}
@keyframes highlight-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(16, 185, 129, 0.8); }
}
.card-content h4 {  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}
.card-value {  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  animation: value-animate 2s ease-out;
}
@keyframes value-animate {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}
.summary-card.highlight .card-value {  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}
.card-content p {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}
.final-conclusion h3 {  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.final-conclusion p {  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
.final-conclusion p strong {  color: #ffffff;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}
.hologram-header h3 {  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00bfff, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 20px rgba(0, 191, 255, 0.5),
    0 0 40px rgba(236, 72, 153, 0.3);
  animation: hologram-text-glow 3s ease-in-out infinite alternate;
}
@keyframes hologram-text-glow {
  0% {
    text-shadow:
      0 0 20px rgba(0, 191, 255, 0.5),
      0 0 40px rgba(236, 72, 153, 0.3);
  }
  100% {
    text-shadow:
      0 0 30px rgba(0, 191, 255, 0.8),
      0 0 60px rgba(236, 72, 153, 0.5);
  }
}
.hologram-header p {  font-size: 1.3rem;
  color: rgba(0, 191, 255, 0.9);
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
  letter-spacing: 0.5px;
}
@keyframes neural-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes neural-core-glow {
  0% {
    box-shadow:
      0 0 80px rgba(0, 191, 255, 0.4),
      0 0 160px rgba(0, 191, 255, 0.2),
      inset 0 2px 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow:
      0 0 120px rgba(0, 191, 255, 0.6),
      0 0 240px rgba(0, 191, 255, 0.3),
      0 0 60px rgba(236, 72, 153, 0.2),
      inset 0 2px 20px rgba(255, 255, 255, 0.2);
  }
}
@keyframes processor-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.core-info h4 {  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow:
    0 0 10px rgba(0, 191, 255, 0.8),
    0 0 20px rgba(0, 191, 255, 0.4);
  background: linear-gradient(135deg, #00bfff, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.core-info p {  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  font-weight: 600;
}
@keyframes neural-flow {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes neuron-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.6));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.9));
  }
}
.neuron-data h5 {  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  color: rgba(0, 191, 255, 0.9);
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}
@keyframes synapse-glow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}
.example-scenario strong {  color: #10b981;
  font-weight: 700;
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}
.hub-content h4 {  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
.connection-line {  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.6), transparent);
  height: 2px;
  animation: connection-flow 4s ease-in-out infinite;
}
@keyframes connection-flow {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.connection-line.line-1 {  top: 20%;
  left: 50%;
  width: 200px;
  transform-origin: left center;
  transform: translateX(-50%) rotate(0deg);
  animation-delay: 0s;
}
.connection-line.line-2 {  top: 50%;
  right: 20%;
  width: 200px;
  transform-origin: right center;
  transform: translateX(50%) rotate(90deg);
  animation-delay: -0.8s;
}
.connection-line.line-3 {  bottom: 20%;
  left: 50%;
  width: 200px;
  transform-origin: left center;
  transform: translateX(-50%) rotate(180deg);
  animation-delay: -1.6s;
}
.connection-line.line-4 {  top: 50%;
  left: 20%;
  width: 200px;
  transform-origin: left center;
  transform: translateX(-50%) rotate(270deg);
  animation-delay: -2.4s;
}
.connection-line.line-5 {  top: 35%;
  right: 35%;
  width: 140px;
  transform-origin: left center;
  transform: translateX(-50%) rotate(45deg);
  animation-delay: -3.2s;
}
.module-header h5 {  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.progress-fill {  height: 100%;
  border-radius: 4px;
  transition: width 2s var(--ease-premium);
  position: relative;
  overflow: hidden;
}
.progress-fill::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shimmer 3s linear infinite;
}
@keyframes progress-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.progress-text {  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  min-width: 35px;
  text-align: right;
}
.feature {  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.4;
}
.feature::before {  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1rem;
}
.metric-label {  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.module-example strong {  color: #10b981;
  font-weight: 700;
}
.competitor-neurons h4 {  font-size: 1.8rem;
  font-weight: 800;
  color: #ef4444;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes fragment-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}
@keyframes fragment-glow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}
@keyframes number-pulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
  }
  50% {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.9);
  }
}
@keyframes instruction-glow {
  0% {
    box-shadow:
      0 0 20px rgba(0, 191, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow:
      0 0 30px rgba(0, 191, 255, 0.5),
      0 0 15px rgba(236, 72, 153, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}
@keyframes instruction-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}
.instruction-text p {  font-size: 1.1rem;
  color: rgba(0, 191, 255, 0.9);
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}
.instruction-text strong {  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}
.platform-info h5 {  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}
.platform-info p {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
.legend-title {  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.legend-benefits .benefit-icon {  font-size: 1.2rem;
}
.comparison-summary h4 {  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}
@keyframes highlight-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}
.stat-number {  font-size: 3rem;
  font-weight: 900;
  color: #10b981;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}
.summary-stat.highlight .stat-number {  color: #34d399;
  text-shadow: 0 0 25px rgba(52, 211, 153, 0.7);
}
.stat-label {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
.summary-conclusion p {  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
}
.summary-conclusion strong {  color: #34d399;
}
.hub-tooltip-header h4 {  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.hub-tooltip-description p {  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #ffffff;
}
.hub-tooltip-description ul {  margin: 0;
  padding-left: 1.2rem;
}
.hub-tooltip-description li {  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}
.hub-tooltip-benefits h5 {  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
}
.benefit-icon {  font-size: 1.2rem;
}
.module-tooltip-header h4 {  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  flex: 1;
}
.module-tooltip-description p {  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}
.module-tooltip-features h5 {  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
}
.module-tooltip-comparison h5 {  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
}
.comparison-row span:first-child {  min-width: 80px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.comparison-row span:last-child {  min-width: 35px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}
.competitor-logo {  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b7280, #4b5563);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.competitor-tooltip-header h4 {  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  flex: 1;
}
.competitor-description p {  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}
.competitor-limitations h5 {  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
}
.competitor-comparison h5 {  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem 0;
  color: #ffffff;
}
.galaxy-header h3 {  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}
.galaxy-header p {  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}
@keyframes sun-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 50px rgba(251, 191, 36, 0.8),
      0 0 100px rgba(245, 158, 11, 0.4),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow:
      0 0 70px rgba(251, 191, 36, 1),
      0 0 140px rgba(245, 158, 11, 0.6),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
.sun-text h4 {  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
@keyframes orbit-rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes asteroid-float {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.9;
  }
  25% {
    transform: translateY(-8px);
    opacity: 1;
  }
  50% {
    transform: translateY(0px);
    opacity: 0.9;
  }
  75% {
    transform: translateY(8px);
    opacity: 1;
  }
}
.asteroid span:first-child {  margin-bottom: 0.2rem;
  text-align: center;
  line-height: 1;
  /* Защита от переворота */
  transform: rotate(0deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.asteroid span:last-child {  font-size: 0.7rem;
  font-weight: 800;
  color: #ef4444;
  /* Защита от переворота */
  transform: rotate(0deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.galaxy-legend .legend-item {  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}
.galaxy-legend span {  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
@keyframes planet-glow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}
@keyframes counter-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.asteroid.active span:first-child {  color: #ffffff;
  font-weight: 800;
}
.asteroid.active span:last-child {  color: #fbbf24;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}
.planet-tooltip-header h4 {  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}
.comparison-row span:first-child {  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.chart-header-modern h3 {  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}
.chart-header-modern p {  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 500;
}
.category-icon {  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transition: all 0.4s var(--ease-premium);
}
.category-card:hover .category-icon {  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.4);
}
.category-info h4 {  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
@keyframes fill-bar {
  0% { width: 0%; }
  100% { width: var(--score); }
}
.millennium .score-fill {  background: linear-gradient(90deg, rgba(34, 197, 94, 0.4), rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}
.millennium .score-text {  color: #22c55e;
}
.legend-item {  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.4s var(--ease-premium);
}
.legend-item:hover {  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px currentColor;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px currentColor;
    transform: scale(1.1);
  }
}
.tooltip-content h4 {  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.tooltip-content p {  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.category-card.active .category-icon {  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.6);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(59, 130, 246, 0.3));
}
@media (max-width: 768px) {
  .revenue-streams-secondary {
    flex-direction: column;
    gap: 15px;
  }

  .main-stream {
    max-width: 100%;
  }

  /* Mobile styles for hook section */
  .hook-stats-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hook-stat-title {
    font-size: 1.6rem;
  }

  .example-text {
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* Mobile styles for interactive comparison chart */
  .category-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .category-info h4 {
    font-size: 1.1rem;
  }

  .chart-legend-interactive {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .interactive-comparison-chart {
    padding: 1.5rem;
  }

  .chart-header-modern h3 {
    font-size: 1.8rem;
  }

  .score-bar {
    padding: 0.6rem 1rem;
  }

  .score-text {
    font-size: 1rem;
  }

  /* Mobile styles for premium revenue system */
  .main-revenue-card {
    padding: 2rem;
  }

  .revenue-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .revenue-icon-premium {
    width: 60px;
    height: 60px;
  }

  .revenue-title-section h3 {
    font-size: 2rem;
  }

  .subscription-tiers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tier-card {
    padding: 1.5rem;
    transform: none !important;
  }

  .tier-price {
    font-size: 2rem;
  }

  .pro-tier.featured {
    transform: scale(1.02) !important;
  }

  .pro-tier.featured::before {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    top: -10px !important;
  }

  .secondary-revenue-streams {
    grid-template-columns: 1fr;
  }

  /* Mobile styles for galaxy comparison system */
  .solar-system {
    height: 400px;
  }

  .sun-core {
    width: 80px;
    height: 80px;
  }

  .sun-glow {
    width: 150px;
    height: 150px;
  }

  /* MOBILE STYLES FOR NEW ANALYTICS HUB */

  .central-analytics-hub {
    height: 500px;
    margin: 2rem 0;
  }

  .hub-center {
    width: 140px;
    height: 140px;
  }

  .hub-icon svg {
    width: 40px;
    height: 40px;
  }

  .hub-content h4 {
    font-size: 1rem;
  }

  .hub-score {
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem;
  }

  .hub-description {
    font-size: 0.7rem;
  }

  .hub-pulse-ring {
    width: 200px;
    height: 200px;
  }

  .connection-lines {
    width: 400px;
    height: 400px;
  }

  .connection-line {
    width: 150px;
  }

  .analytics-modules {
    width: 500px;
    height: 500px;
    gap: 1rem;
    padding: 0.5rem;
  }

  .module-card {
    padding: 1rem;
  }

  .module-header {
    gap: 0.8rem;
  }

  .module-header h5 {
    font-size: 1rem;
  }

  .module-icon {
    width: 40px;
    height: 40px;
  }

  .module-icon svg {
    width: 20px;
    height: 20px;
  }

  .progress-text {
    font-size: 0.7rem;
    min-width: 30px;
  }

  .feature {
    font-size: 0.7rem;
    padding-left: 0.8rem;
  }

  .competitors-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .competitor-platform {
    padding: 1rem;
  }

  .platform-logo {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .platform-info h5 {
    font-size: 1rem;
  }

  .platform-info p {
    font-size: 0.7rem;
  }

  .coverage-bar {
    max-width: 60px;
  }

  .hub-legend {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .legend-title {
    font-size: 1.1rem;
  }

  .legend-description {
    font-size: 0.9rem;
  }

  /* Mobile styles for new elements */
  .central-analytics-hub {
    height: 700px;
    margin: 3rem 0;
    padding: 1rem;
  }

  .analytics-modules {
    width: 650px !important;
    height: 450px;
    gap: 1rem;
    padding: 0.5rem;
  }

  .module-card {
    padding: 0.8rem;
  }

  .module-header h5 {
    font-size: 0.9rem;
  }

  .feature {
    font-size: 0.7rem;
    padding-left: 1rem;
  }

  .module-comparison {
    padding: 0.6rem;
  }

  .metric-label, .metric-value {
    font-size: 0.7rem;
  }

  .module-example {
    font-size: 0.7rem;
    padding: 0.6rem;
  }

  .limitation {
    font-size: 0.7rem;
  }

  .summary-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .comparison-summary {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }

  .summary-conclusion p {
    font-size: 1rem;
  }

  /* MOBILE STYLES FOR INVESTOR DASHBOARD */

  .investor-dashboard-comparison {
    padding: 2rem 1rem;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .header-title h2 {
    font-size: 1.8rem;
  }

  .header-title p {
    font-size: 1rem;
  }

  .header-controls {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .view-toggle {
    width: 100%;
    justify-content: center;
  }

  .time-filter {
    width: 100%;
  }

  .time-filter select {
    width: 100%;
  }

  .market-status {
    width: 100%;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .platform-comparison-section {
    padding: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .section-legend {
    width: 100%;
    justify-content: center;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .header-cell,
  .metric-cell {
    padding: 0.8rem 0.5rem;
    text-align: left;
  }

  .platform-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .platform-info {
    width: 100%;
    justify-content: space-between;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .dashboard-sidebar {
    gap: 1.5rem;
  }

  .sidebar-section {
    padding: 1.5rem;
  }

  .sidebar-section h4 {
    font-size: 1.1rem;
  }

  .calculator-inputs {
    gap: 0.8rem;
  }

  .input-group label {
    font-size: 0.85rem;
  }

  .calc-input, .calc-select {
    padding: 0.7rem;
  }

  .result-item {
    padding: 0.6rem;
  }

  .result-label {
    font-size: 0.85rem;
  }

  .result-value {
    font-size: 1rem;
  }

  .advantage-item {
    padding: 0.8rem;
  }

  .advantage-icon {
    font-size: 1.3rem;
  }

  .advantage-content h5 {
    font-size: 0.95rem;
  }

  .advantage-content p {
    font-size: 0.7rem;
  }

  .dashboard-footer {
    padding-top: 2rem;
  }

  .summary-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .summary-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-value {
    font-size: 2rem;
  }

  .card-content h4 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .final-conclusion {
    padding: 1.5rem;
  }

  .final-conclusion h3 {
    font-size: 1.3rem;
  }

  .final-conclusion p {
    font-size: 0.95rem;
  }

  /* MOBILE STYLES FOR NEW RADAR COMPARISON SYSTEM */

  .radar-container {
    width: 350px;
    height: 350px;
    margin: 0 auto 2rem;
  }

  .radar-axis {
    width: 40%;
  }

  .axis-label {
    font-size: 0.7rem;
  }

  .center-info h3 {
    font-size: 1.1rem;
  }

  .center-info p {
    font-size: 0.7rem;
  }

  .center-price {
    font-size: 1rem;
  }

  .interactive-legend {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legend-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .legend-toggle {
    justify-content: center;
  }

  .legend-content {
    gap: 1.5rem;
  }

  .simple-comparison-table .table-header,
  .simple-comparison-table .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .simple-comparison-table .header-cell,
  .simple-comparison-table .platform-cell,
  .simple-comparison-table .cost-cell,
  .simple-comparison-table .features-cell,
  .simple-comparison-table .users-cell {
    text-align: left;
  }

  .simple-comparison-table .features-list {
    justify-content: flex-start;
  }

  .conclusion-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .conclusion-item {
    padding: 1rem;
  }

  .conclusion-icon {
    font-size: 1.3rem;
  }

  .conclusion-item h4 {
    font-size: 1rem;
  }

  .conclusion-item p {
    font-size: 0.7rem;
  }

  .final-conclusion {
    padding: 1.5rem;
  }

  .final-conclusion h3 {
    font-size: 1.3rem;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-card {
    padding: 1.5rem;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .platform-logo {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .platform-info h3 {
    font-size: 1.3rem;
  }

  .platform-badge {
    position: static;
    align-self: center;
  }

  .card-metrics {
    gap: 0.8rem;
  }

  .metric-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .metric-bar {
    width: 100%;
    min-width: auto;
  }

  .card-features {
    gap: 0.8rem;
  }

  .feature-highlight {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .card-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .filter-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .metrics-section {
    padding: 1.5rem;
  }

  .metrics-section h3 {
    font-size: 1.2rem;
  }

  .summary-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .summary-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-value {
    font-size: 2rem;
  }

  .card-content h4 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }

  .final-conclusion {
    padding: 1.5rem;
  }

  .final-conclusion h3 {
    font-size: 1.3rem;
  }

  .final-conclusion p {
    font-size: 0.95rem;
  }

  .hologram-environment {
    height: 700px;
    margin: 3rem 0;
  }

  .neural-core {
    width: 180px;
    height: 180px;
  }

  .core-processor svg {
    width: 60px;
    height: 60px;
  }

  .core-info h4 {
    font-size: 1.2rem;
  }

  .core-efficiency {
    font-size: 1.6rem;
  }

  .neural-connections {
    width: 500px;
    height: 500px;
  }

  .neural-connection {
    width: 200px;
  }

  .neural-modules {
    width: 600px;
    height: 600px;
    gap: 2rem;
    padding: 1rem;
  }

  .module-neuron {
    padding: 1rem;
  }

  .neuron-data h5 {
    font-size: 0.9rem;
  }

  .metric-value {
    font-size: 1rem;
  }

  .metric-diff {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
  }

  .module-tooltip-card {
    width: 280px;
    padding: 1rem;
  }

  .tooltip-header h6 {
    font-size: 1rem;
  }

  .advantage {
    font-size: 0.7rem;
  }

  .example-scenario {
    font-size: 0.7rem;
    padding: 0.6rem;
  }

  .competitor-neurons-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .neuron-fragment {
    padding: 1rem;
    gap: 0.8rem;
  }

  .fragment-core {
    width: 40px;
    height: 40px;
  }

  .fragment-logo {
    font-size: 1rem;
  }

  .fragment-info h6 {
    font-size: 0.9rem;
  }

  .fragment-coverage .coverage-bar {
    max-width: 50px;
  }

  .frag-limitation {
    font-size: 0.7rem;
  }

  .stats-display {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .hologram-number {
    font-size: 3rem;
  }

  .hologram-label {
    font-size: 0.9rem;
  }

  .instruction-panel {
    padding: 1rem 2rem;
    gap: 0.8rem;
  }

  .instruction-icon {
    font-size: 1.3rem;
  }

  .instruction-text p {
    font-size: 1rem;
  }

  .hologram-header h3 {
    font-size: 2.2rem;
  }

  .hologram-header p {
    font-size: 1.1rem;
  }

  .competitors-asteroid-belt {
    width: 400px;
    height: 400px;
  }

  .asteroid {
    width: 70px;
    height: 35px;
    font-size: 0.6rem;
    font-weight: 800;
  }

  .asteroid span:last-child {
    font-size: 0.7rem;
    font-weight: 900;
  }

  .galaxy-legend {
    flex-direction: column;
    gap: 1rem;
  }

  .galaxy-header h3 {
    font-size: 2rem;
  }

  .instruction-text {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  /* Mobile styles for tooltip */
  .category-tooltip {
    max-width: 280px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tooltip-content {
    padding: 1rem;
  }

  .tooltip-content h4 {
    font-size: 1rem;
  }

  .tooltip-content p {
    font-size: 0.85rem;
  }

  .feature-item {
    font-size: 0.7rem;
  }

  /* Mobile styles for planet tooltip */
  .planet-tooltip {
    max-width: 320px;
    left: 50%;
    transform: translateX(-50%);
  }

  .planet-tooltip-content {
    padding: 1.5rem;
  }

  .planet-tooltip-header h4 {
    font-size: 1.1rem;
  }

  .planet-score {
    font-size: 1.2rem;
  }

  .planet-description {
    font-size: 0.9rem;
  }

  .planet-feature-item {
    font-size: 0.85rem;
  }

  .comparison-row span:first-child {
    font-size: 0.85rem;
  }

  .millennium-score,
  .competitor-score {
    font-size: 0.9rem;
  }
}
.product-showcase {  position: relative;
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
  border-radius: 24px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  overflow: hidden;
}
.demo-header h3 {  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF, #C8A2C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.demo-header p {  color: var(--text-light-color);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.workflow-header h3 {  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}
.workflow-header p {  font-size: 1.1rem;
  color: var(--text-light-color);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .agents-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }


  .millennium-workflow-section {
    padding: 30px 20px;
  }

  .system-header h3 {
    font-size: 1.6rem;
  }
}
.section-subtitle {  font-size: 1.2rem;
  color: var(--text-light-color);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.problems-infographic {  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.problem-stats-header {  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-highlight {  text-align: center;
}
.stat-number-large {  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label-large {  font-size: 1.1rem;
  color: var(--text-light-color);
  font-weight: 500;
  max-width: 200px;
}
.stat-divider {  width: 2px;
  height: 80px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(139, 92, 246, 0.3));
  border-radius: 2px;
}
.core-problems-section {  margin-bottom: 80px;
}
.problems-grid {  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.problem-card-modern {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.problem-card-modern::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f97316, #eab308, #22c55e);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.problem-card-modern:hover {  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}
.problem-card-modern:hover::before {  opacity: 1;
}
.problem-icon {  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.problem-card-modern:hover .problem-icon {  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  transform: scale(1.1);
}
.problem-content h3 {  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
.problem-description p {  color: var(--text-light-color);
  margin-bottom: 12px;
  line-height: 1.6;
}
.problem-impact {  margin-top: 20px;
}
.impact-badge {  display: inline-block;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  color: #fca5a5;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.problems-impact-summary {  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.impact-visualization {  text-align: center;
}
.impact-chain {  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.chain-item {  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 120px;
}
.chain-item.highlight-red {  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border-color: rgba(239, 68, 68, 0.3);
}
.chain-icon {  font-size: 2rem;
  opacity: 0.8;
}
.chain-text {  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light-color);
  text-align: center;
}
.chain-arrow {  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}
.impact-conclusion h3 {  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.impact-conclusion p {  font-size: 1.1rem;
  color: var(--text-light-color);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .problem-stats-header {
    gap: 30px;
  }

  .stat-number-large {
    font-size: 2.5rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-chain {
    gap: 15px;
  }

  .chain-item {
    min-width: 100px;
    padding: 15px;
  }

  .problems-infographic {
    padding: 30px 20px;
  }

  .problems-impact-summary {
    padding: 30px 20px;
  }
}
.product-demo-modern {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.06) 100%);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.demo-header-modern {  text-align: center;
  margin-bottom: 30px;
}
.demo-header-modern h3 {
  font-family: 'Clash Display', system-ui;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  color: transparent;
  display: inline-block;
}
.demo-header-modern p {  color: var(--text-light-color);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.demo-tabs-modern {  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.demo-tab-modern {  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light-color);
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.demo-tab-modern:hover {  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.demo-tab-modern.active {  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  color: white;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
.tab-icon {  font-size: 1.2rem;
}
.demo-chat-modern {  max-width: 800px;
  margin: 0 auto;
}
.chat-conversation-modern {  display: none;
  background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 50%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.chat-conversation-modern::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}
.chat-conversation-modern.active {  display: block;
  animation: fadeInUp 0.5s var(--ease-premium);
}
.conversation-messages-modern {  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 650px;
  overflow-y: auto;
  padding-right: 8px;
}
.conversation-messages-modern::-webkit-scrollbar {  width: 4px;
}
.conversation-messages-modern::-webkit-scrollbar-track {  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.conversation-messages-modern::-webkit-scrollbar-thumb {  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}
.conversation-messages-modern::-webkit-scrollbar-thumb:hover {  background: rgba(139, 92, 246, 0.5);
}
.message-modern {  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: slideInMessage 0.4s var(--ease-premium);
}
.user-message-modern {  justify-content: flex-end;
  margin-left: 60px;
}
.user-message-modern .message-bubble-modern {  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 16px 20px;
  border-radius: 20px 20px 6px 20px;
  color: white;
  max-width: 85%;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.user-message-modern .message-bubble-modern::after {  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #3b82f6;
}
.ai-message-modern {  margin-right: 60px;
}
.ai-message-modern .message-bubble-modern {  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
  padding: 16px 20px;
  border-radius: 20px 20px 20px 6px;
  color: white;
  max-width: 85%;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.ai-message-modern .message-bubble-modern::after {  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #8b5cf6;
}
.message-avatar-modern {  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.message-header-modern {  font-weight: 600;
  color: #DDD6FE;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.message-content-modern {  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-size: 0.9rem;
  font-weight: 400;
}
@keyframes slideInMessage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .demo-tab-modern {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .chat-conversation-modern {
    padding: 20px 16px;
    min-height: 400px;
  }

  .user-message-modern,
  .ai-message-modern {
    margin-left: 20px;
    margin-right: 20px;
  }

  .user-message-modern .message-bubble-modern,
  .ai-message-modern .message-bubble-modern {
    max-width: 90%;
    padding: 14px 16px;
  }
}
.product-features-grid {  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.category-header {  margin-bottom: 20px;
  text-align: center;
}
.category-header h4 {  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.category-header p {  color: var(--text-light-color);
  font-size: 0.95rem;
}
.feature-icon {  font-size: 1.5rem;
  flex-shrink: 0;
}
.feature-text h5 {  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.feature-text p {  color: var(--text-light-color);
  font-size: 0.85rem;
  line-height: 1.4;
}
.metric-label {  color: var(--text-light-color);
  font-size: 0.9rem;
}
.matrix-container {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
  border-radius: 20px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.matrix-headers {  display: grid;
  grid-template-columns: 300px repeat(5, minmax(100px, 1fr));
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.corner-header {  padding: 20px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
}
.competitor-header {  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}
.competitor-header:hover {  background: rgba(255, 255, 255, 0.05);
}
.competitor-logo {  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}
.competitor-info h3 {  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.competitor-price {  font-size: 0.8rem;
  color: var(--text-light-color);
}
.matrix-rows {  max-height: none;
  overflow: visible;
}
.matrix-row {  display: grid;
  grid-template-columns: minmax(280px, 320px) repeat(5, minmax(100px, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  align-items: stretch;
}
.matrix-row:hover {  background: rgba(255, 255, 255, 0.02);
}
.feature-name {  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  height: 100%;
  justify-content: flex-start;
}
.feature-icon {  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  display: flex;
  flex-shrink: 0;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text {  text-align: left;
  flex: 1;
  min-width: 0;
}
.feature-text h4 {  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
  text-align: left;
  line-height: 1.2;
}
.feature-text p {  font-size: 0.8rem;
  color: var(--text-light-color);
  text-align: left;
  line-height: 1.3;
  margin: 0;
}
.matrix-cell {  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  min-height: 80px;
}
.matrix-cell:hover {  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
  z-index: 10;
}
.matrix-cell.millennium {  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-right: 3px solid rgba(124, 58, 237, 0.4);
  position: relative;
}
.matrix-cell.millennium::before {  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 0 2px 2px 0;
}
.millennium-featured {  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%) !important;
  border: 2px solid rgba(124, 58, 237, 0.4) !important;
  border-radius: 12px !important;
  margin: 8px 4px !important;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3) !important;
}
.cell-score {  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.cell-status {  font-size: 1rem;
  font-weight: 600;
}
.cell-status.excellent {  color: #10B981;
}
.cell-status.good {  color: #F59E0B;
}
.cell-status.fair {  color: #F97316;
}
.cell-status.poor {  color: #EF4444;
}
.legend-item {  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light-color);
}
.details-header h3 {  font-size: 1.5rem;
  color: #FFFFFF;
}
.details-content {  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.comparison-item h4 {  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.comparison-item p {  color: var(--text-light-color);
  line-height: 1.6;
}
.economic-advantage h4 {  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.roadmap-timeline {  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@keyframes progressGlow {
  0% { box-shadow: 0 0 10px rgba(124, 58, 237, 0.5); }
  100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); }
}
@keyframes stageFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.stage-status {  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stage-status.current {  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
}
.stage-status.planned {  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}
.stage-status.global-launch {  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: white;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.stage-content h3 {  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.stage-content p {  color: var(--text-light-color);
  margin-bottom: 16px;
  font-size: 1rem;
}
.metric-label {  color: var(--text-light-color);
  font-size: 1rem;
}
.product-key-metrics h3 {  text-align: center;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
}
.product-key-metrics h3::after {  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7C3AED, #8B5CF6);
  border-radius: 2px;
}
.metric-label {  font-size: 1.1rem;
  font-weight: 600;
  color: #8B5CF6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-header h3 {  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF, #C8A2C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dashboard-header p {  color: var(--text-light-color);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.metric-label {  font-size: 1.1rem;
  font-weight: 600;
  color: #8B5CF6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.metric-details h4 {  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.projections-header h3 {  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF, #C8A2C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projections-header p {  color: var(--text-light-color);
  font-size: 1.1rem;
}
.breakdown-header h4 {  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.year-info h5 {  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.year-metrics .metric strong {  color: #FFFFFF;
  font-weight: 600;
}
.scenarios-header h3 {  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF, #C8A2C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.scenarios-header p {  color: var(--text-light-color);
  font-size: 1.1rem;
}
.scenario-header {  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.scenario-header h4 {  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}
.scenario-metrics .metric strong {  color: #FFFFFF;
  font-weight: 600;
}
.requirements-header h3 {  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF, #C8A2C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.requirements-header p {  color: var(--text-light-color);
  font-size: 1.1rem;
}
.category-header {  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.category-icon {  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.category-info h4 {  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.detail-item {  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.detail-item span:first-child {  font-size: 0.9rem;
  color: var(--text-light-color);
}
.detail-item span:last-child {  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
}
.metrics-overview h3 {  text-align: center;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.revenue-projection h3 {  text-align: center;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.unit-economics h3 {  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.economics-header h4 {  font-size: 1.2rem;
  color: #FFFFFF;
}
.detail-item {  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.9rem;
}
.detail-item.highlight {  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 4px;
  margin: 4px -8px;
}
.growth-scenarios h3 {  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.scenario-card {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s var(--ease-premium);
}
.scenario-card:hover {  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}
.scenario-card.conservative {  border-left: 4px solid #F59E0B;
}
.scenario-card.base {  border-left: 4px solid #10B981;
}
.scenario-card.optimistic {  border-left: 4px solid #8B5CF6;
}
.scenario-header {  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.scenario-header h4 {  font-size: 1.2rem;
  color: #FFFFFF;
}
.scenario-metrics .metric span:first-child {  color: var(--text-light-color);
  font-size: 0.9rem;
}
.scenario-metrics .metric span:last-child {  font-weight: 600;
  color: #FFFFFF;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .product-features-grid {
    grid-template-columns: 1fr;
  }

  .matrix-headers,
  .matrix-row {
    grid-template-columns: minmax(220px, 280px) repeat(2, minmax(80px, 1fr));
  }

  .matrix-headers .competitor-header,
  .matrix-row .matrix-cell {
    display: none;
  }

  .matrix-headers .competitor-header:first-child,
  .matrix-row .matrix-cell:first-child,
  .matrix-headers .competitor-header:nth-child(2),
  .matrix-row .matrix-cell:nth-child(2),
  .matrix-headers .competitor-header:nth-child(3),
  .matrix-row .matrix-cell:nth-child(3) {
    display: flex;
  }

  .matrix-cell {
    padding: 8px 4px;
    min-height: 60px;
  }

  .cell-score {
    font-size: 1rem;
  }

  .cell-status {
    font-size: 0.7rem;
  }

  .details-content {
    grid-template-columns: 1fr;
  }

  .timeline-progress-bar {
    left: 30px;
  }

  .roadmap-stage {
    margin-left: 60px;
  }

  .economics-breakdown {
    grid-template-columns: 1fr;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .demo-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .demo-tab {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .matrix-headers,
  .matrix-row {
    grid-template-columns: minmax(180px, 220px) repeat(1, minmax(60px, 1fr));
  }

  .feature-text h4 {
    font-size: 0.9rem;
  }

  .feature-text p {
    font-size: 0.7rem;
  }

  .matrix-cell {
    padding: 6px 2px;
    min-height: 50px;
  }

  .cell-score {
    font-size: 0.9rem;
  }

  .cell-status {
    font-size: 0.7rem;
  }

  .competitor-header {
    padding: 12px 8px;
  }

  .competitor-info h3 {
    font-size: 0.9rem;
  }

  .competitor-price {
    font-size: 0.7rem;
  }

  .corner-header {
    padding: 12px;
    font-size: 0.9rem;
  }

  .matrix-tooltip {
    max-width: 200px;
    font-size: 0.7rem;
    padding: 8px;
  }

  .demo-screen {
    padding: 12px;
  }

  .message-text {
    font-size: 0.7rem;
  }
}
@keyframes tooltipFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.matrix-cell.active {  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.2) 100%);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}
.detail-tab {  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light-color);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  font-size: 0.9rem;
  font-weight: 500;
}
.detail-tab:hover {  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
  color: #FFFFFF;
}
.detail-tab.active {  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  color: white;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
.simple-financial-metrics {  margin: 80px 0;
}
.financial-cards-grid {  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}
.financial-card {  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.financial-card:hover {  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.financial-card.featured {  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 2px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}
.financial-value {  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1;
}
.financial-label {  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.simple-growth-forecast {  margin: 80px 0;
}
.simple-growth-forecast h3 {  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}
.growth-timeline {  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.growth-stage {  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.growth-stage:hover {  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
}
.growth-stage.featured {  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 2px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}
.growth-year {  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.growth-amount {  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 12px;
}
.growth-desc {  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
@keyframes roadmapLineGlow {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
  }
  50% { 
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
  }
}
@keyframes milestoneAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes currentPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  }
  50% { 
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
  }
}
.milestone-card {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 60px;
  width: 650px !important;
  min-height: 650px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.milestone-card:hover {  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.milestone-year {  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
}
.milestone-card h3 {  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}
.feature-tag .icon {  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.milestone-deliverables h4 {    margin: 0 0 12px 0;
    font-size: 0.9rem;
    color: var(--accent-color-2);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.milestone-deliverables ul {    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}
.milestone-deliverables li {    margin-bottom: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.metric-label {  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 1200px) {
  .roadmap-horizontal-timeline {
    gap: 100px;
    min-width: 1200px;
  }

  .milestone-card {
    width: 600px !important;
    padding: 44px;
    min-height: 700px;
  }
}
@media (max-width: 768px) {
  .roadmap-horizontal-scroll-container {
    padding: 20px 0;
  }

  .roadmap-horizontal-timeline {
    gap: 100px;
    min-width: 1200px;
    padding: 0 20px;
  }

  .milestone-card {
    width: 600px !important;
    padding: 44px;
    min-height: 700px;
  }

  .milestone-card h3 {
    font-size: 1.1rem;
  }

  .milestone-features {
    gap: 6px;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .metric-value {
    font-size: 1.2rem;
  }

  .milestone-desc {
    font-size: 0.85rem;
  }

  .milestone-deliverables {
    margin-top: 16px;
    padding-top: 12px;
  }

  .milestone-deliverables h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
  }

  .milestone-deliverables li {
    font-size: 0.7rem;
  }

  .feature-tag {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .feature-tag .icon {
    width: 12px;
    height: 12px;
  }
}
.year-divider-horizontal h2 {  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.timeline-content h3 {  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.timeline-content h4 {  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
  line-height: 1.4;
}
.feature-item h5 {  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
}
.feature-item p {  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.3;
}
@keyframes yearFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
.stage-deliverables h4 {  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.deliverable-text h5 {  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.deliverable-text p {  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.roadmap-navigation {  margin: 60px 0 80px;
  padding: 0 20px;
}
.progress-fill {  height: 100%;
  background: linear-gradient(90deg, #7C3AED, #8B5CF6, #EC4899);
  border-radius: 3px;
  width: 25%;
  transition: width 0.6s ease;
  position: relative;
}
.progress-fill::after {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShimmer 2s infinite;
}
@keyframes progressShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.timeline-container {  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
@keyframes axisPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.6); }
  50% { box-shadow: 0 0 40px rgba(124, 58, 237, 1); }
}
@keyframes stageSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stage-status {  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stage-status.active {  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.stage-status.planned {  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.stage-content h3 {  font-size: 1.4rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  line-height: 1.3;
}
.metric-label {  font-size: 0.8rem;
  color: var(--text-light-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.stage-deliverables h4 {  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.deliverable-info h5 {  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.deliverable-info p {  font-size: 0.8rem;
  color: var(--text-light-color);
  line-height: 1.3;
}
.summary-card {  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.03) 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-premium);
  position: relative;
  overflow: hidden;
}
.summary-card::before {  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7C3AED, #8B5CF6, #EC4899);
}
.summary-card:hover {  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}
.summary-icon {  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}
.summary-content {  position: relative;
}
.summary-value {  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFFFFF, #C8A2C8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summary-label {  font-size: 1.1rem;
  font-weight: 600;
  color: #8B5CF6;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .metric-card.interactive {
    padding: 24px 20px;
  }

  .metric-chart {
    width: 100px;
    height: 100px;
  }

  .metric-value {
    font-size: 2.2rem;
  }

  .projections-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .main-chart {
    min-height: 300px;
  }

  .year-projection {
    padding: 16px;
  }

  .scenarios-comparison {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scenario-main {
    min-height: 250px;
  }

  .requirements-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .funds-chart {
    min-height: 250px;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .category-amount {
    font-size: 1.3rem;
  }

  .financial-dashboard {
    padding: 40px 20px;
    margin: 60px 0;
  }

  .unit-economics-dashboard {
    margin-bottom: 60px;
  }

  .revenue-projections,
  .growth-scenarios,
  .investment-requirements {
    padding: 40px 20px;
    margin: 60px 0;
  }

  .dashboard-header h3,
  .projections-header h3,
  .scenarios-header h3,
  .requirements-header h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .metric-visual {
    margin-bottom: 20px;
  }

  .metric-chart {
    width: 80px;
    height: 80px;
  }

  .metric-value {
    font-size: 1.8rem;
  }

  .metric-details {
    padding: 16px;
  }

  .breakdown-item,
  .analysis-item,
  .cost-item,
  .indicator {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .item-percentage,
  .item-value,
  .cost-amount,
  .indicator-label {
    text-align: left;
  }

  .year-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scenario-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fund-category {
    padding: 20px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .dashboard-header h3,
  .projections-header h3,
  .scenarios-header h3,
  .requirements-header h3 {
    font-size: 1.3rem;
  }

  .financial-dashboard,
  .revenue-projections,
  .growth-scenarios,
  .investment-requirements {
    padding: 32px 16px;
    margin: 40px 0;
  }
}
@media (max-width: 768px) {
  .nav-controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-btn {
    min-width: 120px;
    padding: 16px 20px;
  }

  .nav-btn .year {
    font-size: 1.4rem;
  }

  .nav-btn .status {
    font-size: 0.7rem;
  }

  .timeline-container {
    padding: 40px 0;
  }

  .axis-dots {
    padding: 60px 0;
  }

  .axis-dot {
    width: 16px;
    height: 16px;
  }

  .axis-dot.active {
    transform: scale(1.2);
  }

  .timeline-stage {
    margin: 80px 0;
  }

  .stage-card {
    padding: 24px;
    max-width: none;
    margin: 0 20px !important;
  }

  .timeline-stage:nth-child(odd) .stage-card,
  .timeline-stage:nth-child(even) .stage-card {
    margin: 0 20px !important;
  }

  .stage-card::before {
    display: none;
  }

  .stage-card::after {
    display: none;
  }

  .stage-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .metrics-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .summary-card {
    padding: 24px 20px;
  }

  .summary-icon {
    width: 60px;
    height: 60px;
  }

  .summary-value {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .roadmap-navigation {
    margin: 40px 0 60px;
  }

  .nav-controls {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nav-btn {
    width: 100%;
    max-width: 280px;
  }

  .stage-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stage-year {
    font-size: 1.3rem;
  }

  .stage-content h3 {
    font-size: 1.2rem;
  }

  .deliverable {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .deliverable-icon {
    width: 32px;
    height: 32px;
  }

  .deliverable-info h5 {
    font-size: 0.7rem;
  }

  .deliverable-info p {
    font-size: 0.7rem;
  }

  .strategic-metrics {
    padding: 40px 20px;
  }

  .summary-value {
    font-size: 1.8rem;
  }

  .summary-label {
    font-size: 1rem;
  }
}
.timeline-line::before {  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #7C3AED 0%, #8B5CF6 100%);
  border-radius: 4px;
  animation: timelineGlow 3s ease-in-out infinite alternate;
}
@keyframes timelineGlow {
  0% { box-shadow: 0 0 15px rgba(124, 58, 237, 0.6); }
  100% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.9); }
}
@keyframes yearFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.event-content h4 {  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.event-content p {  color: var(--text-light-color);
  margin-bottom: 16px;
  font-size: 1rem;
}
.event-features .feature-icon {  font-size: 1rem;
  opacity: 0.8;
}
.event-features .feature-item span {  font-size: 0.85rem;
  color: var(--text-light-color);
}
@keyframes yearPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loadingShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.product-showcase:hover .demo-screen {  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
.feature-category:hover .category-header h4 {  background: linear-gradient(135deg, #FFFFFF, #10B981);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 480px) {
  .matrix-tooltip {
    max-width: 250px;
    font-size: 0.7rem;
    padding: 12px;
  }

  .matrix-tooltip::before {
    border-width: 6px;
  }

  .roadmap-stage {
    margin-left: 40px;
  }

  .timeline-progress-bar {
    left: 20px;
  }

  .details-header {
    flex-direction: column;
    gap: 16px;
  }

  .details-score {
    justify-content: center;
  }
}
.metric-label {    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.metric-description h4 {    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.metric-description p {    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.5;
}
.forecast-header {    text-align: center;
    margin-bottom: 50px;
}
.forecast-header h3 {    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.forecast-header p {    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}
.legend-item {    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}
.legend-color {    width: 20px;
    height: 20px;
    border-radius: 4px;
}
.milestone-card {    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 400px !important;
    min-height: 600px;
    transition: all 0.3s ease;
}
.milestone-card:hover {    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.milestone-card.featured {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}
.milestone-year {    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.unit-economics-modern h3 {    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.step-details h4 {    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}
.growth-scenarios-modern h3 {    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.scenario-header {    margin-bottom: 30px;
}
.scenario-header h4 {    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.metric-label {    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}
.modern-advantage-matrix {    margin-bottom: 80px;
}
.feature {    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    padding: 1px 0;
    line-height: 1.1;
}
.result-label {    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.year-number {    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}
.progress-track {    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.progress-fill {    height: 100%;
    background: linear-gradient(90deg, rgba(124, 58, 237, 1) 0%, rgba(139, 92, 246, 0.8) 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 25%;
}
.timeline-line {    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.3) 20%, rgba(124, 58, 237, 0.8) 50%, rgba(124, 58, 237, 0.3) 80%, transparent 100%);
    transform: translateX(-50%);
}
.stage-header h3 {    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.stage-status {    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stage-status.active {    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.stage-status.planned {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(124, 58, 237, 0.3);
}
.metric-label {    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.deliverable-text h5 {    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.deliverable-text p {    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}
.metric-label {    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.metric-description h4 {    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.metric-description p {    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}
@media (max-width: 1200px) {
    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .stage-modern {
        flex-direction: column;
        gap: 30px;
    }

    .stage-card-modern {
        max-width: none;
    }

    .roadmap-scroll-wrapper {
        padding: 15px 0;
    }

    .roadmap-timeline-horizontal {
        gap: 0;
        min-width: 2000px;
    }

    .nav-controls {
        gap: 15px;
        padding: 10px 20px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .roadmap-navigation {
        margin-bottom: 30px;
    }

    .year-divider-horizontal {
        width: 100px;
        height: 100px;
    }

    .year-divider-horizontal h2 {
        font-size: 1.3rem;
    }

    .timeline-content {
        max-width: 400px;
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .roadmap-scroll-wrapper {
        padding: 10px 0;
    }

    .roadmap-timeline-horizontal {
        gap: 0;
        min-width: 1800px;
        padding: 30px 0;
    }

    .nav-controls {
        gap: 12px;
        padding: 8px 16px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .year-divider-horizontal {
        width: 80px;
        height: 80px;
    }

    .year-divider-horizontal h2 {
        font-size: 1.2rem;
    }

    .timeline-container-horizontal {
        margin: 0 40px;
    }

    .timeline-container-horizontal.left {
        margin-right: 80px;
    }

    .timeline-container-horizontal.right {
        margin-left: 80px;
    }

    .timeline-content {
        max-width: 350px;
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content h4 {
        font-size: 0.9rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item h5 {
        font-size: 0.7rem;
    }

    .feature-item p {
        font-size: 0.7rem;
    }

    .badge-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .timeline-wrapper {
        padding: 0 20px;
    }

    .roadmap-timeline-horizontal {
        padding: 40px 0;
    }

    .deliverable-items {
        grid-template-columns: 1fr;
    }

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

    .growth-timeline {
        flex-direction: column;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .metrics-showcase {
        grid-template-columns: 1fr;
    }

    .forecast-visualization {
        flex-direction: column;
        gap: 40px;
    }

    .economics-flow {
        flex-direction: column;
        gap: 40px;
    }

    .scenarios-comparison {
        grid-template-columns: 1fr;
    }

    .savings-showcase {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .savings-before,
    .savings-after {
        max-width: 280px;
        width: 100%;
    }

    .savings-equals {
        width: auto;
        margin: 8px 0;
    }

    .economic-advantage-modern {
        padding: 16px 12px;
    }

    .metrics-showcase-cards {
        grid-template-columns: 1fr;
    }

    .nav-years {
        gap: 10px;
    }

    .year-btn {
        min-width: 100px;
        padding: 15px 20px;
    }

    .stage-metrics-modern {
        grid-template-columns: 1fr;
    }

    .deliverable-items {
        grid-template-columns: 1fr;
    }
}
.agent-info h5 {    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
.agent-info p {    font-size: 12px;
    color: var(--text-light-color);
    line-height: 1.4;
}
.step-icon {    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
    transition: all 0.3s var(--ease-premium);
}
.step-icon:hover {    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}
.metric-title {    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
.result-content h4 {    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 12px;
}
.result-content p {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
}
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.timeline-container {    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.timeline-path {    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 1;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}
.milestone-content {    padding: 0 1rem;
}
.milestone-title {    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-heading-color);
}
.milestone-description {    font-size: 0.9rem;
    color: var(--text-light-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.detail-item {    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light-color);
}
.detail-icon {    font-size: 1rem;
}
.stat-item {    text-align: center;
}
.stat-number {    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-heading-color);
    margin-bottom: 0.5rem;
    transition: all 0.6s var(--ease-premium);
}
.stat-number[data-suffix]::after {    content: attr(data-suffix);
    color: var(--accent-color);
}
.stat-label {    font-size: 0.9rem;
    color: var(--text-light-color);
    font-weight: 500;
}
@media (max-width: 1024px) {
    .metrics-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .milestones-modern {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-path {
        display: none;
    }

    .timeline-stats {
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .traction-hero-title {
        font-size: 2rem;
    }

    .metrics-grid-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-card-modern {
        padding: 1.5rem;
    }

    .timeline-title {
        font-size: 1.8rem;
    }

    .milestone-node {
        width: 60px;
        height: 60px;
    }

    .orb-number {
        font-size: 2.5rem;
    }
}
@media (max-width: 1024px) {
    .workflow-path {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .workflow-connector {
        transform: rotate(90deg);
    }

    .workflow-node {
        max-width: 250px;
    }

    .agents-grid {
        max-width: 200px;
    }
}
@media (max-width: 768px) {
    .millennium-workflow-modern {
        padding: 40px 20px;
        margin: 60px auto;
        border-radius: 24px;
    }

    .workflow-title {
        font-size: 32px;
    }

    .workflow-subtitle {
        font-size: 16px;
    }

    .workflow-header {
        margin-bottom: 60px;
    }

    .workflow-path {
        gap: 25px;
    }

    .node-icon {
        width: 60px;
        height: 60px;
    }

    .node-title {
        font-size: 18px;
    }

    .node-description {
        font-size: 13px;
    }

    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 160px;
    }

    .agent-item {
        padding: 6px;
    }

    .agent-icon {
        width: 20px;
        height: 20px;
    }

    .agent-label {
        font-size: 9px;
    }

    .result-highlight {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

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

    .result-content h4 {
        font-size: 20px;
    }

    .result-content p {
        font-size: 14px;
    }
}
@keyframes agent-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.stage-info h4 {    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
.stage-info p {    font-size: 14px;
    color: var(--text-light-color);
    line-height: 1.4;
}
.summary-text {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
}
.summary-text strong {    color: var(--text-heading-color);
}
@media (max-width: 1024px) {
    .workflow-horizontal {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

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

    .workflow-stage {
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .ai-workflow-hero {
        padding: 40px 20px;
        margin: 60px auto;
    }

    .infographic-title {
        font-size: 28px;
    }

    .infographic-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .workflow-horizontal {
        gap: 25px;
    }

    .stage-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .agent-mini {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .stage-info h4 {
        font-size: 16px;
    }

    .stage-info p {
        font-size: 13px;
    }

    .workflow-summary {
        padding: 24px;
    }

    .summary-text {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .agents-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 500px;
    }

    .agent-card-compact {
        padding: 16px;
    }

    .agent-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .agent-info h5 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .agent-info p {
        font-size: 11px;
    }

}
@media (min-width: 769px) {
    .product-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1000px;
        margin: 60px auto 0;
    }

    .feature-category {
        margin: 0;
    }
}
.header-badge {    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.layer-info h4 {    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 12px;
    line-height: 1.3;
}
.layer-info p {    font-size: 15px;
    color: var(--text-light-color);
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: 0.9;
}
.metric-badge {    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-premium);
    min-width: 180px;
}
.metric-badge:hover {    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}
.metric-badge.premium {    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
    border-color: rgba(0, 212, 170, 0.3);
}
.metric-label {    font-size: 12px;
    color: var(--text-light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.opportunity-content h5 {    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 16px;
    line-height: 1.3;
}
.opportunity-content p {    color: var(--text-light-color);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}
@keyframes market-growth-line {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes layer-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}
@media (max-width: 1200px) {
    .pyramid-layer {
        min-width: 500px;
        padding: 28px 32px;
        gap: 24px;
    }

    .layer-orb {
        width: 70px;
        height: 70px;
    }

    .orb-icon {
        font-size: 28px;
    }

    .orb-amount {
        font-size: 16px;
    }

    .chart-years {
        padding: 0 20px;
    }

    .year-point {
        max-width: 120px;
    }

    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}
@media (max-width: 1024px) {
    .market-infographic-hero {
        padding: 50px 30px;
        margin: 60px auto;
    }

    .infographic-title {
        font-size: 36px;
    }

    .infographic-subtitle {
        font-size: 16px;
    }

    .pyramid-layer {
        min-width: 450px;
        padding: 24px 28px;
        gap: 20px;
    }

    .layer-orb {
        width: 60px;
        height: 60px;
    }

    .orb-icon {
        font-size: 24px;
    }

    .orb-amount {
        font-size: 14px;
    }

    .layer-info h4 {
        font-size: 18px;
    }

    .layer-info p {
        font-size: 14px;
    }

    .chart-years {
        padding: 0 10px;
    }

    .year-point {
        max-width: 100px;
    }

    .year-orb {
        width: 70px;
        height: 70px;
    }

    .orb-value {
        font-size: 14px;
    }

    .growth-metrics {
        gap: 24px;
    }

    .metric-badge {
        min-width: 160px;
        padding: 18px 24px;
    }

    .metric-value {
        font-size: 18px;
    }

    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .opportunity-card {
        padding: 28px 20px;
    }

    .opportunity-icon {
        width: 64px;
        height: 64px;
    }
}
@media (max-width: 768px) {
    .market-infographic-hero {
        padding: 40px 20px;
        margin: 50px auto;
        border-radius: 24px;
    }

    .infographic-title {
        font-size: 28px;
    }

    .infographic-subtitle {
        font-size: 15px;
    }

    .pyramid-container {
        gap: 16px;
    }

    .pyramid-layer {
        min-width: 300px;
        padding: 20px 24px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }

    .layer-visual {
        justify-content: center;
    }

    .layer-info {
        text-align: center;
    }

    .layer-info h4 {
        font-size: 16px;
    }

    .layer-info p {
        font-size: 13px;
    }

    .layer-stats {
        justify-content: center;
        gap: 16px;
    }

    .growth-chart {
        margin-bottom: 40px;
    }

    .chart-years {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 0;
    }

    .year-point {
        max-width: 200px;
    }

    .year-orb {
        width: 60px;
        height: 60px;
    }

    .orb-value {
        font-size: 12px;
    }

    .year-label {
        font-size: 9px;
    }

    .chart-line {
        position: static;
        width: 3px;
        height: 200px;
        margin: 20px auto;
    }

    .line-progress {
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #7c3aed 0%, #3b82f6 50%, #10b981 100%);
    }

    .line-glow {
        background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.4) 50%, transparent 100%);
    }

    .growth-metrics {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .metric-badge {
        min-width: 140px;
        padding: 16px 20px;
    }

    .metric-value {
        font-size: 16px;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .opportunity-card {
        padding: 24px 20px;
    }

    .opportunity-icon {
        width: 56px;
        height: 56px;
    }

    .opportunity-content h5 {
        font-size: 16px;
    }

    .opportunity-content p {
        font-size: 13px;
    }

    .comparison-toggle {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .toggle-btn {
        width: 200px;
    }
}
@media (max-width: 480px) {
    .market-infographic-hero {
        padding: 30px 15px;
        margin: 40px auto;
    }

    .infographic-title {
        font-size: 24px;
    }

    .pyramid-layer {
        min-width: 250px;
        padding: 16px 20px;
    }

    .layer-orb {
        width: 50px;
        height: 50px;
    }

    .orb-icon {
        font-size: 20px;
    }

    .orb-amount {
        font-size: 12px;
    }

    .layer-info h4 {
        font-size: 14px;
    }

    .layer-info p {
        font-size: 12px;
    }

    .growth-title {
        font-size: 24px;
    }

    .growth-subtitle {
        font-size: 14px;
    }

    .year-orb {
        width: 50px;
        height: 50px;
    }

    .metric-badge {
        min-width: 120px;
        padding: 14px 16px;
    }

    .metric-value {
        font-size: 14px;
    }

    .opportunity-card {
        padding: 20px 16px;
    }

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

    .opportunity-content h5 {
        font-size: 15px;
    }

    .opportunity-content p {
        font-size: 12px;
    }
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--premium-glow); }
    50% { transform: scale(1.05); box-shadow: 0 25px 80px rgba(124, 58, 237, 0.5); }
}
@keyframes waveFlow {
    0%, 100% { opacity: 0.3; transform-origin: center; }
    50% { opacity: 1; transform-origin: center; }
}
@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.param-label, .result-label {    font-size: 12px;
    color: var(--text-light-color);
    font-weight: 500;
}
.param-value, .result-value {    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading-color);
}
.zone-description p {    font-size: 12px;
    color: var(--text-light-color);
    margin: 0;
    font-style: italic;
}
.connection-line {    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.4;
    animation: connectionPulse 3s ease-in-out infinite;
}
.connection-line.conservative-to-base {    top: 50%;
    left: 25%;
    width: 50%;
    transform: translateY(-50%);
}
.connection-line.base-to-optimistic {    top: 50%;
    right: 25%;
    width: 50%;
    transform: translateY(-50%);
}
@keyframes connectionPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}
.conclusion-icon {    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}
.conclusion-content h4 {    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
}
.conclusion-content p {    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}
.conclusion-highlight {    padding: 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    text-align: center;
}
.highlight-text {    font-size: 14px;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 768px) {
    .sensitivity-hero {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .sensitivity-title {
        font-size: 28px;
    }

    .map-container {
        height: 400px;
        padding: 20px;
    }

    .scenario-zones {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .scenario-zone {
        min-width: 240px;
        width: 100%;
        max-width: 320px;
    }

    .sensitivity-controls {
        gap: 20px;
    }

    .control-item {
        padding: 12px 16px;
    }

    .conclusion-visual {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .revolutionary-sensitivity-analysis {
        padding: 60px 0;
    }

    .sensitivity-title {
        font-size: 24px;
    }

    .sensitivity-subtitle {
        font-size: 14px;
    }

    .map-container {
        height: 350px;
    }

    .zone-orb {
        width: 100px;
        height: 100px;
    }

    .zone-name {
        font-size: 12px;
    }

    .zone-probability {
        font-size: 20px;
    }
}
.market-header-compact {    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}
.market-title-section {    flex: 1;
}
.market-title {    font-size: 48px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #7c3aed 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.market-subtitle {    font-size: 24px;
    font-weight: 600;
    color: var(--text-light-color);
    margin: 8px 0 0 0;
    opacity: 0.9;
}
.market-metrics-preview {    display: flex;
    gap: 16px;
    align-items: center;
}
.metric-badge {    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    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-premium);
}
.metric-badge:hover {    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}
.metric-badge.featured {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: var(--primary-color);
}
.badge-icon {    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    border-radius: 6px;
    padding: 4px;
}
.badge-icon svg {    width: 12px;
    height: 12px;
    color: white;
}
.badge-text {    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading-color);
    white-space: nowrap;
}
.metric-info-modern h4 {    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.metric-info-modern p {    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.unit-metrics-revolutionary {    position: relative;
    margin-top: 30px;
    padding: 30px 0;
}
.metrics-grid-revolutionary {    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
    align-items: stretch;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
}
.metric-card-revolutionary {    position: relative;
    width: 100%;
    max-width: 240px;
    min-height: 180px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(124, 58, 237, 0.08) 50%,
        rgba(79, 70, 229, 0.06) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}
.metric-card-revolutionary::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.8) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}
.metric-card-revolutionary:hover {    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(124, 58, 237, 0.18) 50%,
        rgba(79, 70, 229, 0.12) 100%
    );
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow:
        0 25px 80px rgba(124, 58, 237, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.metric-card-revolutionary:hover::before {    opacity: 1;
}
.metric-card-revolutionary.featured {    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(124, 58, 237, 0.2) 50%,
        rgba(79, 70, 229, 0.15) 100%
    );
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.15);
}
.metric-card-revolutionary.featured::before {    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.9) 50%,
        transparent 100%
    );
}
.metric-card-inner {    position: relative;
    z-index: 2;
    padding: 16px 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.metric-visual-container {    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    height: 60px;
}
.metric-number-bg {    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 70%,
        transparent 100%
    );
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}
.metric-card-revolutionary:hover .metric-number-bg {    transform: scale(1.1);
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 70%,
        transparent 100%
    );
    border-color: rgba(255, 255, 255, 0.4);
}
.number-glow {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
        rgba(124, 58, 237, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: numberGlowPulse 3s ease-in-out infinite;
}
.metric-card-revolutionary.featured .number-glow {    background: radial-gradient(circle,
        rgba(139, 92, 246, 0.4) 0%,
        transparent 70%
    );
}
.number-core {    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}
.metric-card-revolutionary.featured .number-core {    color: #EDE9FE;
    text-shadow: 0 2px 15px rgba(139, 92, 246, 0.4);
}
.metric-orbits {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    pointer-events: none;
}
.orbit-ring {    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbitRotate 8s linear infinite;
}
.orbit-ring.ring-1 {    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    animation-duration: 12s;
}
.orbit-ring.ring-2 {    width: 95px;
    height: 95px;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
    animation-direction: reverse;
    border-color: rgba(124, 58, 237, 0.2);
}
.orbit-ring.ring-3 {    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
    border-color: rgba(255, 255, 255, 0.05);
}
.metric-content {    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.metric-label {    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1px;
}
.metric-sublabel {    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}
.metric-title {    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
}
.metric-description {    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}
.cost-card .orbit-ring.ring-2 {    color: #DA70D6;
}
.arpu-card .orbit-ring.ring-2 {    color: #C084FC;
}
.margin-card .orbit-ring.ring-2 {    color: #06B6D4;
}
.retention-card .orbit-ring.ring-2 {    color: #10B981;
}
@keyframes numberGlowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@media (max-width: 768px) {
    .metrics-grid-revolutionary {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .metric-card-revolutionary {
        max-width: 100%;
        min-height: 260px;
    }

    .metric-card-inner {
        padding: 32px 24px;
    }

    .metric-number-bg {
        width: 120px;
        height: 120px;
    }

    .number-core {
        font-size: 1.8rem;
    }

    .metric-title {
        font-size: 1.1rem;
    }

    .metric-description {
        font-size: 0.85rem;
    }
}
@keyframes metricCardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.avatar-circle svg {    width: 60px;
    height: 60px;
    color: white;
}
.achievement-icon {    font-size: 24px;
    flex-shrink: 0;
}
.exp-content h4 {    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.exp-content p {    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.skills-simple h4 {    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}
.vision-content h4 {    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.vision-content p {    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}
.action-btn-simple svg {    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .founder-simple {
        padding: 32px 24px;
    }

    .founder-header-simple {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .founder-name-simple {
        font-size: 2rem;
    }

    .experience-cards {
        grid-template-columns: 1fr;
    }

    .vision-simple {
        flex-direction: column;
        text-align: center;
    }

    .vision-targets {
        justify-content: center;
    }

    .founder-actions-simple {
        flex-direction: column;
    }

    .action-btn-simple {
        width: 100%;
    }
}
@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}
.market-drivers {    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.driver-item {    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-premium);
}
.driver-item:hover {    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
}
.driver-icon {    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    border-radius: 6px;
    flex-shrink: 0;
}
.driver-icon svg {    width: 12px;
    height: 12px;
    color: white;
}
.driver-text {    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}
.growth-header h3 {    font-size: 42px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #ffffff 0%, #7c3aed 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.growth-header p {    font-size: 20px;
    color: var(--text-light-color);
    margin: 0;
    opacity: 0.9;
}
.stat-item {    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(124, 58, 237, 0.03) 100%);
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    min-width: 140px;
    transition: all 0.4s var(--ease-premium);
}
.stat-item:hover {    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}
.stat-item.premium {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}
.stat-value {    font-size: 32px;
    font-weight: 900;
    color: var(--text-heading-color);
    margin-bottom: 8px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}
.stat-label {    font-size: 14px;
    color: var(--text-light-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}
.insight-icon svg {    width: 20px;
    height: 20px;
    color: white;
}
.insight-content h4 {    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin: 0 0 8px 0;
}
.insight-content p {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .market-header-compact {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        padding: 32px 24px;
    }

    .market-title {
        font-size: 36px;
    }

    .market-subtitle {
        font-size: 20px;
    }

    .market-metrics-preview {
        justify-content: center;
    }

    .ecosystem-flow {
        flex-direction: column;
        gap: 60px;
    }

    .ecosystem-connector {
        display: none;
    }

    .node-orb {
        width: 140px;
        height: 140px;
    }

    .orb-svg {
        width: 140px !important;
        height: 140px !important;
    }

    .ecosystem-node {
        flex-direction: row;
        gap: 20px;
    }

    .connector-line {
        width: 40px;
        height: 2px;
    }

    .market-drivers {
        gap: 32px;
    }

    .growth-visualization {
        padding: 60px 32px;
    }

    .growth-curve {
        height: 250px;
    }

    .growth-points {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .point-orb {
        width: 100px;
        height: 100px;
    }

    .point-value {
        font-size: 16px;
    }

    .point-year {
        font-size: 14px;
    }

    .summary-stats {
        gap: 40px;
    }

    .stat-item {
        min-width: 120px;
        padding: 24px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .market-title {
        font-size: 28px;
    }

    .market-subtitle {
        font-size: 18px;
    }

    .metric-badge {
        padding: 12px 16px;
    }

    .badge-text {
        font-size: 12px;
    }

    .node-orb {
        width: 140px;
        height: 140px;
    }

    .orb-value {
        font-size: 20px;
    }

    .growth-header h3 {
        font-size: 24px;
    }

    .stat-item {
        min-width: 100px;
        padding: 16px;
    }

    .stat-value {
        font-size: 20px;
    }

    .insight-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
@keyframes pathProgress {
    0% { height: 0%; }
    100% { height: 100%; }
}
@keyframes stepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.node-circle-modern svg {    width: 32px;
    height: 32px;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
}
@keyframes nodePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}
@keyframes connectorFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes resultFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.result-icon-modern svg {    width: 40px;
    height: 40px;
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .millennium-workflow-modern {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .workflow-title-modern {
        font-size: 36px;
    }

    .workflow-subtitle-modern {
        font-size: 18px;
    }

    .workflow-path-modern {
        padding-left: 60px;
        align-items: center;
    }

    .path-line-modern {
        left: 30px;
    }

    .path-progress-modern {
        left: 30px;
    }

    .step-modern {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        max-width: 400px;
    }

    .step-content-modern {
        text-align: center;
    }

    .step-connector-modern {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-title-modern {
        font-size: 20px;
    }

    .step-description-modern {
        font-size: 14px;
    }

    .node-circle-modern {
        width: 60px;
        height: 60px;
    }

    .node-circle-modern svg {
        width: 24px;
        height: 24px;
    }

    .result-visual-modern {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px 24px;
    }

    .result-text-modern {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .workflow-title-modern {
        font-size: 28px;
    }

    .workflow-subtitle-modern {
        font-size: 16px;
    }

    .workflow-header-modern {
        margin-bottom: 60px;
    }

    .workflow-path-modern {
        padding-left: 40px;
    }

    .path-line-modern {
        left: 20px;
    }

    .path-progress-modern {
        left: 20px;
    }

    .step-modern {
        gap: 16px;
        max-width: 300px;
    }

    .workflow-steps-modern {
        gap: 60px;
    }

    .result-title-modern {
        font-size: 18px;
    }

    .result-description-modern {
        font-size: 14px;
    }
}
.feature-text {    font-size: 14px;
    color: var(--text-light-color);
    font-style: italic;
}
@media (max-width: 768px) {
    .unit-economics-premium {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .economics-premium-title {
        font-size: 36px;
    }

    .economics-premium-subtitle {
        font-size: 16px;
    }

    .section-title-premium {
        font-size: 24px;
    }

    .token-metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .financial-metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .request-breakdown-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .user-models-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .scaling-grid {
        gap: 20px;
    }

    .subscription-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .subscription-card {
        padding: 32px 24px;
    }
}
@media (max-width: 480px) {
    .unit-economics-premium {
        padding: 40px 16px;
    }

    .economics-premium-title {
        font-size: 28px;
    }

    .token-metric-card,
    .financial-metric-card {
        padding: 24px 20px;
    }

    .metric-orb-premium {
        width: 100px;
        height: 100px;
    }

    .orb-number {
        font-size: 28px;
    }

    .request-type-card {
        padding: 20px;
    }

    .user-model-card {
        padding: 16px;
    }

    .scaling-item {
        min-width: 100px;
        padding: 20px;
    }

    .scaling-number {
        font-size: 24px;
    }

    .point-orb {
        width: 80px;
        height: 80px;
    }

    .point-value {
        font-size: 14px;
    }

    .point-year {
        font-size: 12px;
    }

    .stat-item {
        min-width: 100px;
        padding: 20px;
    }

    .stat-value {
        font-size: 20px;
    }
}
.roadmap-timeline {    position: relative;
    margin-bottom: 80px;
}
.timeline-line {    position: absolute;
    width: 4px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.3) 50%, transparent 100%);
    border-radius: 2px;
}
.evolutionary-timeline {    position: relative;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.timeline-milestones {    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.milestone-card {    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 20px;
    width: 280px !important;
    min-height: 220px;
    max-width: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 0 0 auto;
    margin: 0 auto;
}
.milestone-card:hover {    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}
.milestone-card.current {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}
.milestone-content {    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}
.milestone-icon {    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    transition: all 0.3s var(--ease-premium);
}
.milestone-card:hover .milestone-icon {    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}
.milestone-icon svg {    width: 24px;
    height: 24px;
    color: white;
}
.milestone-title {    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 8px 0;
}
.milestone-description {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.5;
    margin: 0;
}
.summary-icon {    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}
.summary-icon svg {    width: 24px;
    height: 24px;
    color: white;
}
.summary-text {    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    text-align: left;
}
@media (max-width: 1200px) {
    .founder-premium-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-main-card {
        max-width: 700px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .founder-premium-section {
        margin-bottom: 60px;
    }

    .founder-main-card {
        padding: 32px 24px;
    }

    .founder-visual-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-bottom: 32px;
    }

    .founder-avatar-premium {
        order: -1;
    }

    .founder-name-premium {
        font-size: 2rem;
    }

    .founder-achievements-premium {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skills-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }

    .structure-summary {
        flex-direction: column;
        gap: 24px;
    }

    .team-grid-symmetrical {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 900px;
    }

    .mission-values-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-text-premium {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .founder-main-card {
        padding: 24px 16px;
    }

    .avatar-outer-glow {
        width: 100px;
        height: 100px;
    }

    .avatar-inner-circle {
        width: 80px;
        height: 80px;
    }

    .founder-name-premium {
        font-size: 1.7rem;
    }

    .summary-number {
        font-size: 2rem;
    }

    .team-member-card {
        padding: 24px 16px;
    }

    .member-salary {
        font-size: 1.3rem;
    }

    .mission-premium-card {
        padding: 32px 24px;
    }

    .mission-title-premium {
        font-size: 1.3rem;
    }

    .team-grid-symmetrical {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 500px;
    }
}
@media (max-width: 768px) {
    .roadmap-premium {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .roadmap-title {
        font-size: 36px;
    }

    .roadmap-subtitle {
        font-size: 16px;
    }

    .milestone-card {
        width: 220px !important;
        min-height: 180px;
        max-width: 250px;
        padding: 18px 14px;
        gap: 10px;
        flex: 0 0 auto;
        margin: 0 auto;
    }

    .milestone-content {
        flex-direction: column;
        gap: 20px;
    }

    .milestone-info {
        text-align: center;
    }

    .milestone-title {
        font-size: 20px;
    }

    .milestone-description {
        font-size: 14px;
    }

    .summary-visual {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 32px;
    }
}
@media (max-width: 480px) {
    .roadmap-premium {
        padding: 40px 16px;
    }

    .roadmap-title {
        font-size: 28px;
    }

    .milestone-card {
        width: 180px !important;
        min-height: 160px;
        max-width: 200px;
        padding: 14px 10px;
        gap: 8px;
        flex: 0 0 auto;
        margin: 0 auto;
    }

    .milestone-icon {
        width: 36px;
        height: 36px;
    }

    .milestone-icon svg {
        width: 18px;
        height: 18px;
    }

    .milestone-title {
        font-size: 18px;
    }

    .period-quarter {
        font-size: 24px;
    }

    .period-year {
        font-size: 16px;
    }
}
.risks-premium {    background: transparent;
    border: none;
    border-radius: 0;
    padding: 60px 0;
    margin: 60px 0;
    max-width: 1400px;
    position: relative;
    overflow: visible;
    backdrop-filter: none;
}
.risks-premium::before {    display: none;
}
.risks-container {    position: relative;
    z-index: 2;
}
.risks-grid {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}
.risk-card {    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.05) 0%,
        rgba(99, 102, 241, 0.03) 50%,
        rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.risk-card::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.02) 0%,
        rgba(218, 112, 214, 0.02) 50%,
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.risk-card:hover {    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.2),
        0 8px 32px rgba(218, 112, 214, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}
.risk-card:hover::before {    opacity: 1;
}
.risk-visual {    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}
.risk-icon {    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.9) 0%,
        rgba(147, 51, 234, 0.8) 50%,
        rgba(218, 112, 214, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow:
        0 8px 32px rgba(124, 58, 237, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}
.risk-icon::after {    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.3) 0%,
        rgba(218, 112, 214, 0.3) 100%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.6s ease;
}
.risk-card:hover .risk-icon {    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 40px rgba(124, 58, 237, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.risk-card:hover .risk-icon::after {    opacity: 1;
}
.risk-icon svg {    width: 36px;
    height: 36px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.risk-card:hover .risk-icon svg {    transform: scale(1.1);
}
.risk-waves {    flex: 1;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.3) 20%,
        rgba(147, 51, 234, 0.5) 50%,
        rgba(218, 112, 214, 0.3) 80%,
        transparent 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.wave {    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(124, 58, 237, 0.6) 50%,
        transparent 100%);
    animation: waveFlow 4s ease-in-out infinite;
}
.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 1.3s; }
.wave:nth-child(3) { animation-delay: 2.6s; }
@keyframes waveFlow {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}
.risk-content {    margin-bottom: 28px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.risk-title {    font-size: 26px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin: 0 0 12px 0;
    line-height: 1.3;
    background: linear-gradient(135deg,
        var(--text-heading-color) 0%,
        rgba(124, 58, 237, 0.8) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 3s ease-in-out infinite;
}
@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.risk-description {    font-size: 17px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-weight: 400;
}
.mitigation-section {    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.05) 0%,
        rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}
.mitigation-section::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.02) 0%,
        rgba(34, 197, 94, 0.02) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.risk-card:hover .mitigation-section {    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}
.risk-card:hover .mitigation-section::before {    opacity: 1;
}
.mitigation-header {    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgb(16, 185, 129);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.mitigation-header svg {    width: 18px;
    height: 18px;
    color: rgb(16, 185, 129);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.risk-card:hover .mitigation-header svg {    transform: scale(1.1);
    color: rgb(34, 197, 94);
}
.mitigation-text {    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.risks-summary {    text-align: center;
}
.summary-card {    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(147, 51, 234, 0.08) 50%,
        rgba(99, 102, 241, 0.1) 100%);
    border: 2px solid rgba(124, 58, 237, 0.25);
    border-radius: 32px;
    padding: 48px 56px;
    backdrop-filter: blur(20px);
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.summary-card:hover {    transform: translateY(-4px);
    box-shadow:
        0 32px 80px rgba(124, 58, 237, 0.25),
        0 16px 40px rgba(147, 51, 234, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
}
.summary-card::before {    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.summary-card:hover::before {    opacity: 1;
}
.summary-icon {    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.9) 0%,
        rgba(147, 51, 234, 0.8) 50%,
        rgba(218, 112, 214, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 40px rgba(124, 58, 237, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.summary-card:hover .summary-icon {    transform: scale(1.05);
    box-shadow:
        0 16px 50px rgba(124, 58, 237, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.summary-icon svg {    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.summary-card:hover .summary-icon svg {    transform: scale(1.1);
}
.summary-content {    text-align: center;
    position: relative;
    z-index: 2;
}
.summary-title {    font-size: 28px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin: 0 0 16px 0;
    line-height: 1.3;
}
.summary-text {    font-size: 19px;
    color: var(--text-light-color);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}
@media (max-width: 768px) {
    .risks-premium {
        padding: 40px 0;
        margin: 40px 0;
    }

    .risks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .risk-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .risk-visual {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .risk-icon {
        width: 64px;
        height: 64px;
    }

    .risk-icon svg {
        width: 32px;
        height: 32px;
    }

    .risk-content {
        text-align: center;
        min-height: 80px;
    }

    .risk-title {
        font-size: 22px;
    }

    .risk-description {
        font-size: 15px;
    }

    .mitigation-section {
        padding: 20px;
        min-height: 100px;
        border-radius: 14px;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 40px 32px;
        border-radius: 24px;
    }

    .summary-icon {
        width: 72px;
        height: 72px;
    }

    .summary-icon svg {
        width: 36px;
        height: 36px;
    }

    .summary-title {
        font-size: 24px;
    }

    .summary-text {
        font-size: 17px;
    }
}
@media (max-width: 480px) {
    .risks-premium {
        padding: 32px 16px;
        margin: 32px 0;
    }

    .risk-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .risk-icon {
        width: 56px;
        height: 56px;
    }

    .risk-icon svg {
        width: 28px;
        height: 28px;
    }

    .risk-title {
        font-size: 20px;
    }

    .risk-description {
        font-size: 14px;
    }

    .mitigation-section {
        padding: 18px;
        min-height: 90px;
        border-radius: 12px;
    }

    .mitigation-text {
        font-size: 15px;
    }

    .summary-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .summary-icon {
        width: 64px;
        height: 64px;
    }

    .summary-icon svg {
        width: 32px;
        height: 32px;
    }

    .summary-title {
        font-size: 22px;
    }

    .summary-text {
        font-size: 16px;
    }

    .summary-card {
        padding: 24px 32px;
    }
}
.team-section-icon svg {    width: 40px;
    height: 40px;
    color: white;
}
.member-role {    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading-color);
    flex: 1;
}
.member-salary {    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    white-space: nowrap;
}
.summary-card {    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 40px 48px;
    backdrop-filter: blur(10px);
    max-width: 700px;
}
.summary-icon {    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}
.summary-icon svg {    width: 32px;
    height: 32px;
    color: white;
}
.summary-content {    text-align: left;
}
.summary-title {    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 8px 0;
}
.summary-text {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .team-structure-premium {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .team-premium-title {
        font-size: 36px;
    }

    .team-premium-subtitle {
        font-size: 16px;
    }

    .team-premium-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-section {
        padding: 32px 24px;
    }

    .team-section-title {
        font-size: 24px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px;
    }

    .member-role {
        font-size: 16px;
    }

    .member-salary {
        font-size: 14px;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 40px;
    }
}
@media (max-width: 480px) {
    .team-structure-premium {
        padding: 40px 16px;
    }

    .team-premium-title {
        font-size: 28px;
    }

    .team-section {
        padding: 24px 20px;
    }

    .team-section-icon {
        width: 60px;
        height: 60px;
    }

    .team-section-icon svg {
        width: 30px;
        height: 30px;
    }

    .team-section-title {
        font-size: 20px;
    }

    .member-role {
        font-size: 16px;
    }

    .summary-card {
        padding: 24px 32px;
    }
}
.founder-hero-badge .badge-icon {    font-size: 20px;
}
.founder-hero-badge .badge-text {    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.founder-avatar svg {    width: 60px;
    height: 60px;
    color: white;
}
.achievement-icon {    font-size: 16px;
}
.header-badge {    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}
.header-badge .badge-icon {    font-size: 20px;
}
.header-badge .badge-text {    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-subtitle {    font-size: 1.2rem;
    color: var(--text-light-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}
.card-icon-bg svg {    width: 28px;
    height: 28px;
    color: white;
}
.wave {    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
    margin-bottom: 8px;
    animation: waveFloat 3s ease-in-out infinite;
}
.wave:nth-child(2) {    animation-delay: 1s;
    opacity: 0.7;
}
.card-content {    position: relative;
    z-index: 2;
}
.card-header {    margin-bottom: 16px;
}
.card-description p {    font-size: 1rem;
    color: var(--text-light-color);
    line-height: 1.6;
    margin-bottom: 16px;
}
.detail-item {    font-size: 0.95rem;
    color: var(--text-light-color);
    padding-left: 16px;
    position: relative;
    opacity: 0.9;
}
.detail-item::before {    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.skill-icon {    display: flex;
    align-items: center;
    gap: 16px;
}
.skill-icon.featured-icon {    position: relative;
}
.skill-description p {    font-size: 1rem;
    color: var(--text-light-color);
    line-height: 1.6;
    margin-bottom: 16px;
}
.vision-main-text p {    font-size: 1.3rem;
    color: var(--text-light-color);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}
.value-icon {    font-size: 24px;
    color: white;
}
.value-content {    text-align: center;
}
.value-title {    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
@keyframes founderTitleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes avatarGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes patternNodeFloat {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes waveFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-10px); }
}
@keyframes skillWaveFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-10px); }
}
@keyframes neuralNodeFloat {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes neuralNodeVisionFloat {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@media (max-width: 768px) {
    .founder-hero-title {
        font-size: 2.5rem;
    }

    .founder-profile-card {
        padding: 40px 24px;
    }

    .founder-avatar-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .expertise-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .skills-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vision-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .vision-title {
        font-size: 1.8rem;
    }

    .vision-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vision-main-text p {
        font-size: 1.1rem;
    }
}
.exit-visual {    margin-bottom: 32px;
    position: relative;
}
.exit-icon {    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    transition: all 0.3s var(--ease-premium);
}
.exit-card:hover .exit-icon {    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}
.exit-icon.premium {    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
}
.exit-icon svg {    width: 40px;
    height: 40px;
    color: white;
}
.wave {    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(124, 58, 237, 0.3) 50%, transparent 100%);
    animation: waveFlow 3s ease-in-out infinite;
}
.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 1s; }
.wave:nth-child(3) { animation-delay: 2s; }
@keyframes waveFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
.exit-content {    margin-bottom: 32px;
}
.exit-title {    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 16px 0;
}
.exit-description {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
}
.exit-timeline {    margin-top: auto;
}
.timeline-text {    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: inline-block;
}
.summary-card {    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 40px 48px;
    backdrop-filter: blur(10px);
    max-width: 700px;
}
.summary-icon {    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}
.summary-icon svg {    width: 32px;
    height: 32px;
    color: white;
}
.summary-content {    text-align: left;
}
.summary-title {    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 8px 0;
}
.summary-text {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .exit-strategy-premium {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .exit-premium-title {
        font-size: 36px;
    }

    .exit-premium-subtitle {
        font-size: 16px;
    }

    .exit-premium-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .exit-card {
        padding: 32px 24px;
    }

    .exit-title {
        font-size: 20px;
    }

    .exit-description {
        font-size: 14px;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 40px;
    }
}
@media (max-width: 480px) {
    .exit-strategy-premium {
        padding: 40px 16px;
    }

    .exit-premium-title {
        font-size: 28px;
    }

    .exit-card {
        padding: 24px 20px;
    }

    .exit-icon {
        width: 60px;
        height: 60px;
    }

    .exit-icon svg {
        width: 30px;
        height: 30px;
    }

    .exit-title {
        font-size: 18px;
    }

    .summary-card {
        padding: 24px 32px;
    }
}
.sources-premium {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 32px;
    padding: 80px 40px;
    margin: 80px auto;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}
.sources-premium::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.sources-container {    position: relative;
    z-index: 2;
}
.sources-header {    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    cursor: pointer;
    transition: all 0.4s var(--ease-premium);
}
.sources-header:hover {    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}
.sources-icon {    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}
.sources-icon svg {    width: 32px;
    height: 32px;
    color: white;
}
.sources-info {    flex: 1;
}
.sources-title {    font-size: 28px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 8px 0;
}
.sources-description {    font-size: 16px;
    color: var(--text-light-color);
    margin: 0;
    opacity: 0.9;
}
.sources-toggle {    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-premium);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.sources-toggle:hover {    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}
.sources-toggle svg {    width: 20px;
    height: 20px;
    color: white;
    transition: transform 0.3s var(--ease-premium);
}
.sources-header:hover .sources-toggle svg {    transform: rotate(180deg);
}
.sources-content {    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-premium);
}
.sources-content.active {    max-height: 2000px;
}
.sources-grid {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.source-category {    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(124, 58, 237, 0.03) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}
.category-header {    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.category-icon {    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    flex-shrink: 0;
}
.category-icon svg {    width: 20px;
    height: 20px;
    color: white;
}
.category-title {    font-size: 20px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin: 0;
}
.source-items {    display: flex;
    flex-direction: column;
    gap: 20px;
}
.source-item {    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: all 0.3s var(--ease-premium);
}
.source-item:hover {    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    transform: translateX(8px);
}
.source-number {    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--electric-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.source-details {    flex: 1;
}
.source-title {    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin: 0 0 4px 0;
}
.source-description {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .sources-premium {
        padding: 60px 20px;
        margin: 60px auto;
    }

    .sources-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .sources-icon {
        margin-right: 0;
    }

    .sources-title {
        font-size: 24px;
    }

    .sources-description {
        font-size: 14px;
    }

    .sources-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .source-category {
        padding: 24px;
    }

    .category-title {
        font-size: 18px;
    }

    .source-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .source-number {
        align-self: center;
    }
}
@media (max-width: 480px) {
    .sources-premium {
        padding: 40px 16px;
    }

    .sources-header {
        padding: 24px 20px;
    }

    .sources-title {
        font-size: 20px;
    }

    .source-category {
        padding: 20px;
    }

    .category-title {
        font-size: 16px;
    }

    .source-item {
        padding: 16px;
    }
}
.sources-toggle.clicked svg {    transform: rotate(180deg);
}
.factor-center-icon svg {    width: 40px;
    height: 40px;
    color: white;
}
.factor-center-info h4 {    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 12px 0;
}
.factor-center-info p {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0 0 12px 0;
    opacity: 0.9;
}
@keyframes pathGlow {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 100%; opacity: 1; }
}
@keyframes nodeRipple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes particleFlow {
    0% {
        left: -20px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}
@keyframes nodeComplete {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(124, 58, 237, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
    }
}
@keyframes nodeProcessing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}
@keyframes stepHighlight {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(124, 58, 237, 0);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(124, 58, 237, 0);
    }
}
@keyframes tooltipAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(-100%) scale(1);
    }
}
.progress-fill {    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: width 0.3s ease;
}
.progress-text {    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 32px;
    text-align: right;
}
@media (max-width: 768px) {
    .workflow-trigger-modern {
        margin-top: 16px;
    }

    .workflow-play-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .workflow-play-btn span {
        display: none;
    }

    .interactive-step:hover {
        transform: none;
    }

    .node-ripple-modern {
        display: none;
    }

    .workflow-step-tooltip {
        min-width: 250px;
        max-width: 300px;
        padding: 16px;
    }

    .tooltip-title {
        font-size: 16px;
    }

    .tooltip-description {
        font-size: 13px;
    }
}
@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 48px rgba(124, 58, 237, 0.6);
    }
}
.ring-1 {    width: 100%;
    height: 100%;
    border-color: rgba(124, 58, 237, 0.3);
    animation-duration: 3s;
}
.ring-2 {    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(99, 102, 241, 0.4);
    animation-duration: 2.5s;
    animation-direction: reverse;
}
.ring-3 {    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(139, 92, 246, 0.5);
    animation-duration: 2s;
}
@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.metric-label {    font-size: 14px;
    color: var(--text-light-color);
}
.metric-description {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}
.total-amount {    color: var(--primary-color);
    margin-left: 16px;
}
.model-card h4 {    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.stat-label {    font-size: 14px;
    opacity: 0.8;
}
.stat-value {    font-size: 16px;
    font-weight: 600;
}
.metric-label {    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin-bottom: 4px;
}
.summary-item {    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.summary-label {    display: block;
    font-size: 14px;
    color: var(--text-light-color);
    margin-bottom: 4px;
}
.summary-value {    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}
.team-structure-modern {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: 24px;
    padding: 60px 40px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}
.layer-info h4 {    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-heading-color);
}
.layer-info p {    font-size: 16px;
    color: var(--text-light-color);
    margin: 0 0 12px 0;
    opacity: 0.8;
}
.member-role {    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading-color);
    margin-bottom: 4px;
}
.member-salary {    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.summary-icon {    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}
.summary-title {    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-heading-color);
}
.summary-text {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0 0 24px 0;
    opacity: 0.9;
}
.total-stat .stat-value {    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}
.total-stat .stat-label {    font-size: 14px;
    color: var(--text-light-color);
    opacity: 0.8;
}
@media (max-width: 768px) {
    .economics-traction-unified,
    .team-structure-modern {
        padding: 40px 20px;
        margin: 40px 0;
        border-radius: 16px;
    }

    .unified-title,
    .team-modern-title {
        font-size: 32px;
    }

    .unified-subtitle,
    .team-modern-subtitle {
        font-size: 16px;
    }

    .metrics-hero {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-metric {
        padding: 24px 16px;
    }

    .metric-orb-large {
        width: 120px;
        height: 120px;
    }

    .orb-value {
        font-size: 24px;
    }

    .orb-label {
        font-size: 14px;
    }

    .cost-structure-grid {
        grid-template-columns: 1fr;
    }

    .cost-bar {
        width: 100%;
    }

    .models-comparison {
        grid-template-columns: 1fr;
    }

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

    .projection-visual {
        flex-direction: column;
        gap: 32px;
    }

    .team-layers {
        gap: 40px;
    }

    .layer-members {
        grid-template-columns: 1fr;
    }

    .summary-card-3d {
        width: 100%;
    }

    .card-3d-face {
        padding: 24px;
    }

    .summary-stats {
        flex-direction: column;
        gap: 16px;
    }
}
    .factor-center-info h4 {        font-size: 20px;
    }
    .factor-center-info p {        font-size: 14px;
    }
@media (max-width: 480px) {
    .perfect-storm-center {
        padding: 40px 16px;
    }

    .storm-center-title {
        font-size: 28px;
    }

    .storm-center-subtitle {
        font-size: 16px;
    }

    .factor-center-icon {
        width: 60px;
        height: 60px;
    }

    .factor-center-icon svg {
        width: 30px;
        height: 30px;
    }

    .factor-center-info h4 {
        font-size: 18px;
    }

    .conclusion-center-text {
        font-size: 14px;
    }
}
@keyframes stormPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
    }
}
@keyframes rippleExpand {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}
@keyframes linePulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}
.result-text strong {    font-size: 16px;
    font-weight: 700;
    color: white;
}
@media (max-width: 768px) {
    .perfect-storm-compact {
        padding: 32px 24px;
        margin: 32px 0;
    }

    .factor-lines {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .factor-line {
        max-width: 250px;
    }

    .result-equation {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .convergence-orb {
        width: 100px;
        height: 100px;
    }

    .orb-core svg {
        width: 36px;
        height: 36px;
    }

    .energy-ring.ring-2 {
        width: 130%;
        height: 130%;
    }

    .energy-ring.ring-3 {
        width: 150%;
        height: 150%;
    }

    .result-visual {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .result-text {
        text-align: center;
    }
}
.sensitivity-analysis-section {    background: transparent;
    border: none;
    border-radius: 0;
    padding: 60px 0;
    margin: 60px 0;
    position: relative;
    overflow: visible;
    backdrop-filter: none;
}
.sensitivity-analysis-section::before {    display: none;
}
.sensitivity-header {    text-align: center;
    margin-bottom: 50px;
}
.sensitivity-scenarios {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.scenario-card {    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.05) 0%,
        rgba(99, 102, 241, 0.03) 50%,
        rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.scenario-card::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.02) 0%,
        rgba(218, 112, 214, 0.02) 50%,
        rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.scenario-card:hover {    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.2),
        0 8px 32px rgba(218, 112, 214, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}
.scenario-card:hover::before {    opacity: 1;
}
.scenario-header {    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.15);
    position: relative;
}
.scenario-badge {    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.scenario-badge.conservative {    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 2px solid rgba(239, 68, 68, 0.3);
}
.scenario-badge.base {    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: 2px solid rgba(245, 158, 11, 0.3);
}
.scenario-badge.optimistic {    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid rgba(16, 185, 129, 0.3);
}
.scenario-card:hover .scenario-badge {    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.scenario-results {    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.result-row {    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}
.result-row:hover {    background: rgba(124, 58, 237, 0.05);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 8px;
}
.result-row:last-child {    border-bottom: none;
}
.result-label {    font-size: 14px;
    color: var(--text-light-color);
    opacity: 0.9;
    font-weight: 500;
}
.result-value {    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}
.scenario-summary {    font-size: 15px;
    color: var(--text-light-color);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(124, 58, 237, 0.2);
    opacity: 0.9;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, var(--text-light-color), rgba(124, 58, 237, 0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: summaryShimmer 4s ease-in-out infinite;
}
@keyframes summaryShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.sensitivity-conclusion {    text-align: center;
    margin-top: 50px;
}
.conclusion-card {    display: inline-flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 48px;
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1) 0%,
        rgba(147, 51, 234, 0.05) 50%,
        rgba(99, 102, 241, 0.08) 100%);
    border: 2px solid rgba(124, 58, 237, 0.2);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.conclusion-card::before {    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.conclusion-card:hover {    transform: translateY(-4px);
    box-shadow:
        0 32px 80px rgba(124, 58, 237, 0.25),
        0 16px 40px rgba(147, 51, 234, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
}
.conclusion-card:hover::before {    opacity: 1;
}
.conclusion-icon {    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.9) 0%,
        rgba(34, 197, 94, 0.8) 50%,
        rgba(16, 185, 129, 0.9) 100%);
    border: 3px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow:
        0 8px 24px rgba(16, 185, 129, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}
.conclusion-card:hover .conclusion-icon {    transform: scale(1.1);
    box-shadow:
        0 12px 32px rgba(16, 185, 129, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}
.conclusion-icon svg {    color: white;
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.conclusion-content {    text-align: left;
    position: relative;
    z-index: 2;
}
.conclusion-content h4 {    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin-bottom: 16px;
    line-height: 1.3;
}
.conclusion-content p {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}
.conclusion-highlight {    padding: 12px 20px;
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.1) 0%,
        rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
}
.highlight-text {    font-size: 15px;
    color: rgb(16, 185, 129);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.highlight-text::before {    content: "💡";
    font-size: 18px;
}
@media (max-width: 768px) {
    .sensitivity-analysis-section {
        padding: 40px 0;
        margin: 40px 0;
    }

    .sensitivity-scenarios {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 30px 0;
    }

    .scenario-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .scenario-badge {
        padding: 6px 16px;
        font-size: 13px;
    }

    .scenario-probability {
        display: none;
    }

    .scenario-params,
    .scenario-results {
        padding: 16px;
    }

    .param-row,
    .result-row {
        padding: 10px 0;
    }

    .param-label,
    .result-label {
        font-size: 13px;
    }

    .param-value,
    .result-value {
        font-size: 14px;
    }

    .scenario-summary {
        font-size: 14px;
        padding-top: 16px;
    }

    .conclusion-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 28px;
        border-radius: 24px;
    }

    .conclusion-icon {
        width: 48px;
        height: 48px;
        align-self: center;
    }

    .conclusion-icon svg {
        width: 24px;
        height: 24px;
    }

    .conclusion-content {
        text-align: center;
    }

    .conclusion-content h4 {
        font-size: 20px;
    }

    .conclusion-content p {
        font-size: 15px;
        text-align: center;
    }

    .conclusion-highlight {
        padding: 10px 16px;
        border-radius: 12px;
    }

    .highlight-text {
        font-size: 14px;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .sensitivity-analysis-section {
        padding: 32px 16px;
        margin: 32px 0;
    }

    .sensitivity-scenarios {
        gap: 20px;
    }

    .scenario-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .scenario-badge {
        padding: 5px 14px;
        font-size: 12px;
    }

    .scenario-probability {
        display: none;
    }

    .scenario-params,
    .scenario-results {
        padding: 14px;
    }

    .param-row,
    .result-row {
        padding: 8px 0;
    }

    .param-label,
    .result-label {
        font-size: 12px;
    }

    .param-value,
    .result-value {
        font-size: 13px;
    }

    .scenario-summary {
        font-size: 13px;
        padding-top: 14px;
    }

    .conclusion-card {
        padding: 28px 24px;
        border-radius: 20px;
        gap: 18px;
    }

    .conclusion-icon {
        width: 44px;
        height: 44px;
    }

    .conclusion-icon svg {
        width: 22px;
        height: 22px;
    }

    .conclusion-content h4 {
        font-size: 18px;
    }

    .conclusion-content p {
        font-size: 14px;
    }

    .conclusion-highlight {
        padding: 8px 12px;
        border-radius: 10px;
    }

    .highlight-text {
        font-size: 13px;
    }
}
.exit-strategy-section {    background: transparent;
    border: none;
    border-radius: 0;
    padding: 60px 40px;
    margin: 60px 0;
    position: relative;
    overflow: visible;
    backdrop-filter: none;
}
.exit-strategy-section::before {    display: none;
}
.exit-strategy-grid {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.exit-strategy-card {    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}
.exit-strategy-card:hover {    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.25);
}
.exit-strategy-card.featured {    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.2);
}
.exit-visual {    margin-bottom: 30px;
}
.exit-icon {    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 69, 255, 0.15) 100%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}
.exit-strategy-card:hover .exit-icon {    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(139, 69, 255, 0.25) 100%);
    border-color: var(--primary-color);
}
.exit-icon svg {    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}
.exit-content {    margin-bottom: 30px;
}
.exit-title {    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 16px;
}
.exit-description {    font-size: 14px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}
.exit-timeline {    display: flex;
    justify-content: center;
    align-items: center;
}
.timeline-text {    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
.exit-strategy-summary {    text-align: center;
    margin-top: 60px;
}
.summary-card {    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
}
.summary-icon {    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(34, 197, 94, 0.15) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.summary-icon svg {    color: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}
.summary-content {    text-align: left;
}
.summary-title {    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
.summary-text {    font-size: 14px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .exit-strategy-section {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .exit-strategy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .summary-content {
        text-align: center;
    }
}
.metric-info h4 {    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
.metric-info p {    font-size: 14px;
    color: var(--text-light-color);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}
.controls-header h3 {    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.controls-header p {    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}
.btn-icon svg {    width: 14px;
    height: 14px;
}
.timeline-container {    position: relative;
    padding: 60px 0;
}
.timeline-path {    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    transform: translateY(-50%);
}
@keyframes pathGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}
.timeline-year {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: yearAppear 1s ease-out forwards;
}
.timeline-year.featured .year-card {    background: var(--brand-gradient);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}
@keyframes markerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
@keyframes yearAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.metric-content {    text-align: center;
}
.metric-content text {    text-anchor: middle;
    dominant-baseline: central;
}
@keyframes orbAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .market-growth-section {
        padding: 60px 20px;
        margin: 60px 0;
    }

    .growth-3d-container {
        height: 400px;
    }

    .growth-bars-3d {
        padding: 40px 20px;
    }

    .bar-base {
        width: 40px;
    }

    .bar-front,
    .bar-back {
        width: 40px;
    }

    .bar-right {
        width: 15px;
        right: -15px;
    }

    .bar-top {
        width: 40px;
        height: 15px;
        top: -15px;
    }

    .bar-label {
        margin-top: 12px;
    }

    .value {
        font-size: 14px;
    }

    .year {
        font-size: 12px;
    }

    .growth-controls {
        flex-direction: column;
        gap: 12px;
    }

    .control-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
.unit-economics-section {    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    margin: 20px 0;
    position: relative;
    overflow: visible;
    backdrop-filter: none;
    box-shadow: none;
}
.unit-economics-section::before {    display: none;
}
.metric-description {    font-size: 14px;
    color: var(--text-light-color);
    line-height: 1.6;
    opacity: 0.9;
}
.cost-structure-section {    margin: 40px 0;
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 30px 0;
    backdrop-filter: none;
    border: none;
}
.cost-structure-header {    text-align: center;
    margin-bottom: 30px;
}
.total-label {    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.cost-visualization {    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin: 80px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(124, 58, 237, 0.01) 100%);
    border-radius: 30px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(5px);
}
.cost-pie-chart {    position: relative;
    width: 400px;
    height: 400px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pie-chart-container {    position: relative;
    width: 400px;
    height: 400px;
}
.pie-chart {    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #DA70D6 0% 53%,
        #C084FC 53% 80%,
        #06B6D4 80% 93%,
        #10B981 93% 100%
    );
    box-shadow:
        0 30px 60px rgba(124, 58, 237, 0.4),
        0 0 80px rgba(139, 92, 246, 0.3),
        0 0 120px rgba(219, 39, 119, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.15),
        inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(1px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.pie-chart::before {    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.pie-chart:hover {    transform: scale(1.12) rotate(2deg);
    box-shadow:
        0 40px 80px rgba(124, 58, 237, 0.5),
        0 0 100px rgba(139, 92, 246, 0.4),
        0 0 150px rgba(219, 39, 119, 0.3),
        inset 0 4px 0 rgba(255, 255, 255, 0.25),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}
.pie-segment {    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-origin: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2px;
}
.pie-segment.highlighted {    opacity: 0.95;
    transform: scale(1.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25)) brightness(1.15);
    z-index: 5;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 3px;
}
.pie-chart::before {    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--bg-primary-color);
    border-radius: 50%;
}
.pie-center {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 69, 255, 0.1) 100%);
    border: 4px solid rgba(124, 58, 237, 0.4);
    border-radius: 50%;
    padding: 30px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 12px 40px rgba(124, 58, 237, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pieCenterPulse 3s ease-in-out infinite;
}
@keyframes pieCenterPulse {
    0%, 100% {
        box-shadow:
            0 12px 40px rgba(124, 58, 237, 0.3),
            0 0 60px rgba(139, 92, 246, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.2),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow:
            0 16px 50px rgba(124, 58, 237, 0.4),
            0 0 80px rgba(139, 92, 246, 0.3),
            inset 0 3px 0 rgba(255, 255, 255, 0.3),
            inset 0 -3px 0 rgba(0, 0, 0, 0.15);
    }
}
.pie-center:hover {    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.4),
        0 0 100px rgba(139, 92, 246, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}
.pie-center.premium {    background: linear-gradient(135deg, rgba(219, 39, 119, 0.25) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 4px solid rgba(219, 39, 119, 0.5);
    box-shadow:
        0 12px 40px rgba(219, 39, 119, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    animation: pieCenterPulse 2s ease-in-out infinite;
}
.pie-center.premium:hover {    transform: translate(-50%, -50%) scale(1.08);
    box-shadow:
        0 20px 60px rgba(219, 39, 119, 0.4),
        0 0 100px rgba(139, 92, 246, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}
.cost-legend {    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 220px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(124, 58, 237, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}
.legend-item {    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
    max-width: 400px;
    width: 100%;
}
.legend-item::before {    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}
.legend-item:hover::before {    left: 100%;
}
.legend-item.highlighted {    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2);
}
.legend-color {    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.legend-item.highlighted .legend-color {    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 10px currentColor;
}
.legend-color.ai-api {    background: #DA70D6;
}
.legend-color.infrastructure {    background: #C084FC;
}
.legend-color.data {    background: #06B6D4;
}
.legend-color.support {    background: #10B981;
}
.legend-info {    flex: 1;
}
.legend-title {    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    text-align: center;
}
.legend-desc {    font-size: 14px;
    color: var(--text-light-color);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .legend-item {
        min-height: 140px;
        padding: 20px;
        max-width: 100%;
    }

    .legend-title {
        font-size: 16px;
    }

    .legend-desc {
        font-size: 13px;
    }
}
.cost-summary {    text-align: center;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.summary-text p {    font-size: 16px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
}
.user-segments-section {    margin: 40px 0;
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 30px 0;
    backdrop-filter: none;
    border: none;
}
.segments-grid {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.segment-card {    background: transparent;
    border: none;
    border-radius: 0;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: none;
}
.segment-card:hover {    transform: translateY(-4px);
}
.segment-header {    margin-bottom: 32px;
}
.segment-icon svg {    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.segment-title {    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 8px;
}
.segment-stats {    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}
.stat-item {    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.stat-item:last-child {    border-bottom: none;
}
.stat-label {    font-size: 14px;
    color: var(--text-light-color);
}
.stat-value {    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading-color);
}
.efficiency-section-centered {    background: transparent;
    border: none;
    border-radius: 0;
    padding: 60px 0;
    margin: 80px 0;
    position: relative;
    overflow: visible;
    backdrop-filter: none;
    box-shadow: none;
}
.efficiency-centered-container {    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.efficiency-header-centered {    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.header-icon-centered {    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    margin-bottom: 10px;
}
.efficiency-title-centered {    font-size: 48px;
    font-weight: 800;
    color: var(--text-heading-color);
    margin: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
.efficiency-subtitle-centered {    font-size: 18px;
    color: var(--text-light-color);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}
.efficiency-metrics-centered {    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.metric-card-centered {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
    border: 2px solid rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}
.metric-card-centered:hover {    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}
.metric-card-centered.featured {    background: linear-gradient(135deg, rgba(219, 39, 119, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 2px solid rgba(219, 39, 119, 0.3);
    box-shadow: 0 15px 35px rgba(219, 39, 119, 0.2);
}
.metric-card-centered.featured:hover {    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(219, 39, 119, 0.25);
}
.metric-orb-centered {    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(124, 58, 237, 0.3);
    box-shadow:
        0 15px 30px rgba(124, 58, 237, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.metric-orb-centered.premium {    background: linear-gradient(135deg, rgba(219, 39, 119, 0.25) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 3px solid rgba(219, 39, 119, 0.4);
    box-shadow:
        0 15px 30px rgba(219, 39, 119, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}
.metric-card-centered:hover .metric-orb-centered {    transform: scale(1.1);
    box-shadow:
        0 20px 40px rgba(124, 58, 237, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.2);
}
.metric-card-centered.featured:hover .metric-orb-centered.premium {    transform: scale(1.1);
    box-shadow:
        0 20px 40px rgba(219, 39, 119, 0.35),
        inset 0 3px 0 rgba(255, 255, 255, 0.25);
}
.metric-waves-centered {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.wave-ring-centered {    position: absolute;
    border: 2px solid rgba(219, 39, 119, 0.3);
    border-radius: 50%;
    animation: wavePulse 2s ease-in-out infinite;
}
.wave-ring-centered:nth-child(1) {    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}
.wave-ring-centered:nth-child(2) {    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.7s;
}
.wave-ring-centered:nth-child(3) {    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.4s;
}
@keyframes wavePulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
.metric-value-centered {    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1;
    z-index: 2;
    position: relative;
}
.metric-value-centered.featured {    background: linear-gradient(135deg, #DA70D6 0%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.metric-label-centered {    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    z-index: 2;
    position: relative;
}
.metric-info-centered {    text-align: center;
}
.metric-title-centered {    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0 0 8px 0;
}
.metric-description-centered {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
    line-height: 1.4;
}
.efficiency-conclusion-centered {    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.conclusion-card-centered {    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    max-width: 800px;
}
.conclusion-icon-centered {    font-size: 32px;
    flex-shrink: 0;
}
.conclusion-text-centered {    font-size: 18px;
    color: var(--text-heading-color);
    line-height: 1.6;
    text-align: left;
}
.column-header h3 {    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin: 0;
}
.efficiency-info h4 {    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 8px;
    margin-top: 0;
}
.efficiency-info p {    font-size: 14px;
    color: var(--text-light-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}
.highlight-text {  font-size: 16px;
  color: var(--text-light-color);
  line-height: 1.5;
  font-weight: 500;
}
.highlight-text strong {  color: var(--text-heading-color);
  font-weight: 700;
}
@media (max-width: 768px) {
    .investment-highlights {
        gap: 16px;
        margin: 32px 0;
    }

    .highlight-item {
        gap: 16px;
        padding: 16px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .highlight-text {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .efficiency-section-centered {
        padding: 40px 0;
        margin: 60px 0;
    }

    .efficiency-header-centered {
        margin-bottom: 60px;
    }

    .efficiency-title-centered {
        font-size: 36px;
    }

    .efficiency-subtitle-centered {
        font-size: 16px;
        padding: 0 20px;
    }

    .efficiency-metrics-centered {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .metric-card-centered {
        min-width: 280px;
        max-width: 350px;
        width: 100%;
    }

    .metric-orb-centered {
        width: 120px;
        height: 120px;
    }

    .metric-value-centered {
        font-size: 28px;
    }

    .metric-title-centered {
        font-size: 18px;
    }

    .conclusion-card-centered {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 30px;
    }

    .conclusion-text-centered {
        text-align: center;
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .unit-economics-section {
        padding: 20px 0;
        margin: 20px 0;
    }

    .unit-metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cost-visualization {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .pie-chart-container {
        width: 150px;
        height: 150px;
    }

    .cost-legend {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }

    .segments-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .efficiency-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
.neural-network-bg {    position: relative;
    width: 100%;
    height: 100%;
}
@keyframes neuralPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}
@keyframes neuralFlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.core-label {    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}
@keyframes hubPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes sourcePulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
.wave {    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: brainWave 2s ease-in-out infinite;
}
.wave:nth-child(2) { animation-delay: 0.5s; width: 80px; height: 80px; }
.wave:nth-child(3) { animation-delay: 1s; width: 100px; height: 100px; }
@keyframes brainWave {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}
.brain-core {    position: relative;
    z-index: 2;
    color: #ef4444;
}
@keyframes flow {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(60px) scale(0.5); opacity: 0; }
}
.progress-track {    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.progress-fill {    height: 100%;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    border-radius: 2px;
    transition: width 0.8s ease;
    position: relative;
}
.progress-fill::after {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s linear infinite;
}
@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes resultPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes inputGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}
@keyframes sourcePulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
.brain-core {    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7F00FF, #DA70D6);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 25px rgba(127, 0, 255, 0.15);
}
.wave {    position: absolute;
    border: 2px solid rgba(218, 112, 214, 0.3);
    border-radius: 50%;
    animation: brainWave 2s ease-in-out infinite;
}
.wave:nth-child(1) {    width: 80px;
    height: 80px;
    animation-delay: 0s;
}
.wave:nth-child(2) {    width: 100px;
    height: 100px;
    animation-delay: 0.5s;
}
.wave:nth-child(3) {    width: 120px;
    height: 120px;
    animation-delay: 1s;
}
@keyframes brainWave {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.7; transform: scale(1.2); }
}
.progress-track {    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}
.progress-fill {    height: 100%;
    background: linear-gradient(90deg, #DA70D6, #7F00FF);
    border-radius: 2px;
    transition: width 0.5s ease;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@media (max-width: 768px) {
    .millennium-workflow-schematic {
        padding: 32px 16px;
        margin: 32px 0;
    }

    .workflow-title-schematic {
        font-size: 2rem;
    }

    .workflow-step-horizontal {
        flex-direction: column;
        gap: 24px;
    }

    .workflow-step-horizontal:nth-child(even) {
        flex-direction: column;
    }

    .step-visual-horizontal {
        order: -1;
    }

    .step-content-horizontal {
        padding: 20px;
    }

    .agents-grid-horizontal {
        justify-content: center;
    }

    .data-sources-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .data-source-horizontal {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .response-bubble-horizontal {
        max-width: none;
    }

    .architecture-flow {
        max-width: none;
    }
}
.achievement-icon {    font-size: 1.3rem;
}
.expertise-content h4 {    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
}
.expertise-content p {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
.vision-content h3 {    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
}
.vision-content p {    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}
.hire-card h4 {    font-size: 1.1rem;
    color: white;
    margin: 0 0 8px 0;
    font-weight: 600;
}
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .founder-info {
        text-align: center;
    }

    .founder-name {
        font-size: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .expertise-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .vision-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .goals-grid {
        gap: 32px;
    }

    .goal-number {
        font-size: 2rem;
    }

    .team-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hiring-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .hire-card {
        padding: 20px;
    }
}
.crypto-growth-forecast {    padding: 48px 0;
}
.forecast-header {    text-align: center;
    margin-bottom: 64px;
}
.forecast-title {    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #DA70D6, #7F00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.forecast-subtitle {    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}
.forecast-timeline {    margin-bottom: 64px;
}
.timeline-container {    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    padding: 0 20px;
}
.timeline-container::before {    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #DA70D6, #7F00FF);
    border-radius: 2px;
    z-index: 1;
}
.timeline-item {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    position: relative;
    z-index: 2;
}
.timeline-year {    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
    text-align: center;
}
.timeline-card {    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}
.timeline-card:hover {    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}
.timeline-card.featured {    background: linear-gradient(135deg, rgba(218, 112, 214, 0.15), rgba(127, 0, 255, 0.15));
    border-color: rgba(218, 112, 214, 0.4);
    box-shadow: 0 8px 32px rgba(218, 112, 214, 0.2);
}
.card-value {    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}
.card-label {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}
.card-badge {    font-size: 0.7rem;
    color: #FFD700;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.timeline-arrow {    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff88;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}
.metric-info-modern h4 {    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}
.metric-info-modern p {    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.driver-content h4 {    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}
.driver-content p {    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .market-metrics-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .drivers-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .metric-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .driver-card {
        padding: 24px 20px;
    }

    .driver-visual {
        flex-direction: column;
        gap: 16px;
    }

    .driver-orb {
        position: relative;
        transform: none;
        margin-bottom: 12px;
    }
}
.metric-label {    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
.metric-text h4 {    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
}
.metric-text p {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .crypto-growth-forecast {
        padding: 32px 0;
    }

    .forecast-title {
        font-size: 2rem;
    }

    .timeline-container {
        flex-direction: column;
        gap: 24px;
        padding: 0;
    }

    .timeline-container::before {
        position: static;
        width: 4px;
        height: 100%;
        margin: 20px auto 0;
        transform: none;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .timeline-year {
        flex-shrink: 0;
        min-width: 60px;
    }

    .timeline-card {
        flex: 1;
        min-width: auto;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
@keyframes resultPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 212, 170, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0, 212, 170, 0.6); }
}
.step-description {    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
.result-card h4 {    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #00D4AA, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.result-card p {    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}
.architecture-info h5 {    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}
.architecture-info p {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
@keyframes stepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes resultFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .millennium-workflow-simple {
        padding: 40px 20px;
        margin: 20px;
    }

    .workflow-title {
        font-size: 2.2rem;
    }

    .workflow-subtitle {
        font-size: 1rem;
    }

    .workflow-process {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .workflow-step {
        max-width: 280px;
    }

    .result-card {
        padding: 32px 40px;
    }

    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .architecture-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
.architecture-info h5 {    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}
.architecture-info p {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .millennium-workflow-simple {
        padding: 32px 20px;
    }

    .workflow-title {
        font-size: 2rem;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-item {
        padding: 24px 20px;
    }

    .result-box {
        flex-direction: column;
        text-align: center;
        padding: 24px 32px;
    }

    .architecture-blocks {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .architecture-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
.step-icon {    position: relative;
    margin-bottom: 20px;
}
.step-description {    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
.result-text h4 {    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #00D4AA, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.result-text p {    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}
@keyframes stepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes resultFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
@media (max-width: 768px) {
    .millennium-workflow-simple {
        padding: 40px 20px;
        margin: 20px;
    }

    .workflow-title {
        font-size: 2.2rem;
    }

    .workflow-subtitle {
        font-size: 1rem;
    }

    .workflow-visual {
        flex-direction: column;
        gap: 30px;
    }

    .workflow-step {
        max-width: 280px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .result-highlight {
        padding: 24px 32px;
    }

    .result-text h4 {
        font-size: 1.3rem;
    }

    .result-text p {
        font-size: 1rem;
    }

    .architecture-title {
        font-size: 1.6rem;
    }

    .architecture-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto 0;
    }

    .architecture-card {
        padding: 24px 20px;
    }
}
@media (max-width: 480px) {
    .workflow-title {
        font-size: 1.8rem;
    }

    .workflow-subtitle {
        font-size: 0.9rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .icon-bg {
        width: 70px;
        height: 70px;
    }
}
.node-content h4 {    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}
.node-content p {    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.5;
}
.brain-icon {    font-size: 3.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    z-index: 2;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
@keyframes brainRayPulse {
    0%, 100% { opacity: 0.4; height: 30px; }
    50% { opacity: 1; height: 50px; }
}
@keyframes dataFeedPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}
.arrow-line {    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, rgba(127, 0, 255, 0.4) 0%, rgba(139, 92, 246, 0.7) 100%);
    position: relative;
}
.arrow-head {    font-size: 1.8rem;
    color: rgba(139, 92, 246, 0.9);
    margin: 0 15px;
    font-weight: bold;
}
.result-header h4 {    font-size: 2rem;
    font-weight: 700;
    color: white;
}
.metric-label {    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.block-content h5 {    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}
.block-content p {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
@media (max-width: 1200px) {
    .workflow-scheme-process {
        gap: 40px;
    }

    .node-card {
        min-width: 400px;
    }

    .agents-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .millennium-workflow-scheme {
        padding: 40px 20px;
    }

    .workflow-scheme-title {
        font-size: 2.2rem;
    }

    .workflow-scheme-process {
        gap: 30px;
    }

    .node-card {
        min-width: 320px;
        padding: 24px;
    }

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

    .result-metrics {
        gap: 40px;
    }

    .architecture-chain {
        flex-direction: column;
        gap: 20px;
    }

    .architecture-arrow {
        transform: rotate(90deg);
    }
}
@media (max-width: 480px) {
    .workflow-scheme-title {
        font-size: 1.8rem;
    }

    .node-card {
        min-width: 280px;
        padding: 20px;
    }

    .agents-container {
        grid-template-columns: 1fr;
    }

    .result-metrics {
        flex-direction: column;
        gap: 24px;
    }

    .metric {
        min-width: auto;
    }
}
.step-icon {    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    flex-shrink: 0;
}
.step-text h4 {    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.step-text p {    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}
.result-details div {    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 4px 0;
}
.result-showcase-simple h4 {    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.result-showcase-simple p {    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.metric-label {    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.arch-text h5 {    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.arch-text p {    font-size: 0.9rem;
    color: var(--text-secondary);
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.step-icon {    font-size: 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.1) 0%, rgba(218, 112, 214, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(127, 0, 255, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(127, 0, 255, 0.2);
}
.step-content h4 {    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading-color);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.step-content p {    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}
.result-main-modern h4 {    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-heading-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.result-main-modern p {    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}
.metric-label {    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .millennium-workflow-modern {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .workflow-modern-title {
        font-size: 2.2rem;
    }

    .workflow-modern-subtitle {
        font-size: 1.1rem;
    }

    .workflow-modern-process {
        gap: 24px;
        margin-bottom: 48px;
    }

    .workflow-modern-process::before {
        left: 36px;
        width: 2px;
    }

    .workflow-modern-step {
        gap: 20px;
    }

    .step-connector {
        left: 36px;
        width: 2px;
    }

    .step-card {
        padding: 20px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .step-icon {
        font-size: 1.8rem;
        width: 48px;
        height: 48px;
    }

    .step-content h4 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .agents-modern {
        gap: 6px;
        margin-top: 12px;
    }

    .agent-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .data-inputs {
        gap: 6px;
        margin-bottom: 10px;
    }

    .data-input {
        font-size: 1rem;
        padding: 5px;
    }

    .result-metrics-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-circle {
        width: 90px;
        height: 90px;
    }

    .metric-value {
        font-size: 1.3rem;
    }

    .metric-icon {
        font-size: 1.1rem;
    }

    .result-main-modern {
        padding: 24px;
        margin-bottom: 32px;
    }

    .result-icon-modern {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    .result-main-modern h4 {
        font-size: 1.8rem;
    }

    .result-main-modern p {
        font-size: 1rem;
    }
}
.millennium-workflow-revolutionary {    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}
.workflow-revolutionary-container {    position: relative;
}
.workflow-revolutionary-header {    position: relative;
    text-align: center;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 30px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    overflow: hidden;
}
.header-background {    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}
.neural-network-bg {    position: relative;
    width: 100%;
    height: 100%;
}
.neural-network-bg .node {    position: absolute;
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    animation: nodePulse 4s ease-in-out infinite;
}
.neural-network-bg .node:nth-child(1) {    top: 20%;
    left: 15%;
    animation-delay: 0s;
}
.neural-network-bg .node:nth-child(2) {    top: 30%;
    right: 20%;
    animation-delay: 1s;
}
.neural-network-bg .node:nth-child(3) {    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}
.neural-network-bg .node:nth-child(4) {    bottom: 35%;
    right: 15%;
    animation-delay: 3s;
}
.neural-network-bg .connection {    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}
.neural-network-bg .connection:nth-child(5) {    top: 25%;
    left: 15%;
    right: 20%;
    transform: rotate(15deg);
    animation-delay: 0s;
}
.neural-network-bg .connection:nth-child(6) {    bottom: 30%;
    left: 25%;
    right: 15%;
    transform: rotate(-20deg);
    animation-delay: 1.5s;
}
.neural-network-bg .connection:nth-child(7) {    top: 50%;
    left: 0;
    right: 0;
    animation-delay: 3s;
}
@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}
@keyframes connectionFlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.header-content-revolutionary {    position: relative;
    z-index: 2;
}
.header-badge {    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #7c3aed;
}
.header-main-title {
    text-align: center;
}
.badge-icon {    font-size: 1.2rem;
}
.workflow-revolutionary-title {    font-family: 'Clash Display', system-ui;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(120deg,
        #FFFFFF 0%,
        #F6F2FF 18%,
        var(--secondary-color) 36%,
        var(--accent-color) 58%,
        var(--primary-color) 80%,
        #FFFFFF 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.workflow-revolutionary-subtitle {    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}
.metric-badge {    text-align: center;
}
.metric-badge.featured {    transform: scale(1.1);
}
.metric-label {    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.workflow-revolutionary-process {    position: relative;
    margin-bottom: 80px;
}
.process-timeline {    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}
.timeline-item {    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.timeline-item:last-child .timeline-connector {    display: none;
}
.process-card {    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}
.process-card.agents-card {    max-width: 600px;
    width: 90%;
}
.process-card:hover {    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.3);
}
.process-card.final-card:hover {    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.3);
}
.card-header {    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}
.step-indicator {    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}
.step-icon {    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #7c3aed;
}
.card-content h4 {    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}
.step-example {    font-size: 1.1rem;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 8px;
    font-style: italic;
}
.step-description {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}
.orchestration-details {    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}
.detail-item {    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}
.detail-icon {    font-size: 1rem;
}
@media (max-width: 768px) {
    .agents-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
        margin: 20px 0;
    }

    .agent-card-grid {
        padding: 16px 12px;
        gap: 10px;
    }

    .agent-icon-grid {
        font-size: 2rem;
    }

    .agent-name-grid {
        font-size: 0.9rem;
    }

    .agent-role-grid {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .agents-showcase-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px 0;
    }

    .agent-card-grid {
        padding: 14px 10px;
        gap: 8px;
    }

    .agent-icon-grid {
        font-size: 1.8rem;
    }

    .agent-name-grid {
        font-size: 0.85rem;
    }

    .agent-role-grid {
        font-size: 0.7rem;
    }
}
.flow-inputs {    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.input-node {    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}
.flow-arrow {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.arrow-line {    width: 2px;
    height: 20px;
    background: #7c3aed;
}
.arrow-head {    color: #7c3aed;
    font-size: 1.2rem;
}
.flow-processor {    display: flex;
    justify-content: center;
}
.processor-core {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
}
.processor-icon {    font-size: 1.3rem;
    color: #7c3aed;
}
.processor-text {    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
.flow-output {    font-size: 0.9rem;
    font-weight: 600;
    color: #7c3aed;
    text-align: center;
}
.combined-flow {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}
.flow-section {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.flow-title {    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}
.flow-inputs {    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.input-node {    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}
.flow-processor {    display: flex;
    justify-content: center;
}
.processor-core {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
}
.processor-icon {    font-size: 1.3rem;
    color: #7c3aed;
}
.processor-text {    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}
.flow-output {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 16px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}
.flow-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}
.combined-flow .result-features {    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto;
}
.combined-flow .feature-item {    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.combined-flow .feature-icon {    color: #10b981;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.combined-flow .feature-text {    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}
.feature-icon {    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}
.feature-text {    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 480px) {
    .workflow-revolutionary-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .workflow-revolutionary-subtitle {
        font-size: 1rem;
    }

    .process-card {
        padding: 20px;
    }

    .orchestration-details {
        flex-direction: column;
        gap: 8px;
    }

    .agent {
        padding: 6px 8px;
        max-width: 100px;
    }

    .combined-flow {
        gap: 12px;
    }

    .flow-inputs {
        gap: 8px;
    }

    .input-node {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
.founder-hero-badge .badge-text {    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.achievement-item-premium {    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    transition: all 0.3s var(--ease-premium);
}
.achievement-item-premium:hover {    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(124, 58, 237, 0.08));
    border-color: var(--primary-color);
}
.achievement-orb svg {    width: 24px;
    height: 24px;
}
.achievement-content h4 {    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}
.achievement-content p {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
    line-height: 1.4;
}
.avatar-image svg {    width: 120px;
    height: 120px;
}
@keyframes avatarGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}
@keyframes avatarPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}
.node-icon svg {    width: 32px;
    height: 32px;
    color: white;
}
.node-content h4 {    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}
.node-content p {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
}
.skill-info h4 {    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}
.skill-info p {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
    line-height: 1.4;
}
.vision-orb svg {    width: 40px;
    height: 40px;
}
.metric-visual-container {    position: relative;
}
.metric-content h4 {    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}
.metric-content p {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
}
.position-info h4 {    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}
.position-info p {    font-size: 14px;
    color: var(--text-light-color);
    margin: 0;
}
@media (max-width: 768px) {
    .team-revolutionary-section {
        padding: 80px 0;
    }

    .team-hero-title {
        font-size: 36px;
    }

    .team-hero-subtitle {
        font-size: 16px;
    }

    .founder-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-hero-content {
        padding-right: 0;
    }

    .avatar-container {
        width: 200px;
        height: 200px;
    }

    .avatar-image svg {
        width: 100px;
        height: 100px;
    }

    .expertise-timeline {
        padding-left: 20px;
        gap: 32px;
    }

    .node-card {
        flex-direction: column;
        text-align: center;
        min-width: auto;
        gap: 16px;
    }

    .node-timeline-dot {
        left: -28px;
    }

    .skills-cloud-interactive {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vision-card-revolutionary {
        padding: 32px;
    }

    .vision-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .vision-title-section {
        text-align: center;
    }

    .vision-impact {
        gap: 16px;
    }

    .goals-metrics-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .goal-metric-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px;
    }

    .actions-container-premium {
        flex-direction: column;
        gap: 16px;
    }

    .action-button-primary,
    .action-button-secondary {
        justify-content: center;
        min-width: auto;
    }

    .hiring-timeline-premium {
        padding-left: 20px;
        gap: 40px;
    }

    .hiring-phase {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .phase-dot {
        left: -28px;
        top: 50%;
        transform: translateY(-50%);
    }

    .phase-positions {
        grid-template-columns: 1fr;
    }
}
.market-metrics-revolutionary {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.metric-hexagon-container {    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.metric-hexagon {    position: relative;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-premium);
    cursor: pointer;
    overflow: hidden;
}
.metric-hexagon::before {    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    animation: hexagonRotate 8s linear infinite;
    opacity: 0.1;
}
.metric-hexagon:hover {    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}
.metric-hexagon.featured {    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
    border-color: rgba(245, 158, 11, 0.4);
}
.metric-hexagon.featured:hover {    border-color: rgba(245, 158, 11, 0.7);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
}
.hexagon-content {    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.hexagon-visual {    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.hexagon-core {    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(124, 58, 237, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s var(--ease-premium);
}
.hexagon-core.premium {    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.2));
    border-color: rgba(245, 158, 11, 0.4);
}
.hexagon-core.market {    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.4);
}
.core-value {    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.core-label {    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hexagon-waves {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}
.wave-ring {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: wavePulse 3s ease-in-out infinite;
}
.wave-ring:nth-child(1) {    width: 140px;
    height: 140px;
    animation-delay: 0s;
}
.wave-ring:nth-child(2) {    width: 160px;
    height: 160px;
    animation-delay: 1s;
}
.wave-ring:nth-child(3) {    width: 180px;
    height: 180px;
    animation-delay: 2s;
}
.hexagon-info {    text-align: center;
    max-width: 200px;
}
.hexagon-title {    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    line-height: 1.2;
}
.hexagon-description {    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
@keyframes hexagonRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes wavePulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
.market-drivers-radial {    margin-top: 80px;
}
.radial-drivers-container {    position: relative;
    width: 800px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-icon svg {    width: 48px;
    height: 48px;
    color: white;
}
.orb-icon svg {    width: 24px;
    height: 24px;
    color: white;
}
@keyframes centerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes connectorPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}
@media (max-width: 768px) {
    .market-metrics-revolutionary {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .metric-hexagon {
        width: 240px;
        height: 240px;
    }

    .hexagon-core {
        width: 100px;
        height: 100px;
    }

    .core-value {
        font-size: 20px;
    }

    .radial-drivers-container {
        width: 100%;
        height: auto;
        min-height: 500px;
        position: relative;
    }

    .radial-driver-node {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }

    .driver-connector-line {
        display: none;
    }

    .driver-card-node {
        position: static;
        flex-direction: column;
        text-align: center;
        max-width: 300px;
    }

    .node-orb {
        width: 140px;
        height: 140px;
    }

    .orb-icon svg {
        width: 28px;
        height: 28px;
    }

    .orb-value {
        font-size: 14px;
    }

    .orb-label {
        font-size: 12px;
    }

    .center-orb {
        width: 160px;
        height: 160px;
        margin-bottom: 40px;
    }

    .center-icon svg {
        width: 40px;
        height: 40px;
    }

    .center-title {
        font-size: 16px;
    }

    .center-subtitle {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .metric-hexagon {
        width: 200px;
        height: 200px;
    }

    .hexagon-core {
        width: 80px;
        height: 80px;
    }

    .core-value {
        font-size: 16px;
    }

    .hexagon-title {
        font-size: 16px;
    }

    .hexagon-description {
        font-size: 12px;
    }

    .node-title {
        font-size: 14px;
    }

    .node-description {
        font-size: 11px;
    }

    .center-orb {
        width: 140px;
        height: 140px;
    }

    .center-icon svg {
        width: 32px;
        height: 32px;
    }

    .center-title {
        font-size: 14px;
    }

    .center-subtitle {
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    .team-hero-title {
        font-size: 28px;
    }

    .timeline-title,
    .skills-title,
    .goals-title,
    .hiring-title {
        font-size: 28px;
    }

    .founder-hero-name {
        font-size: 28px;
    }

    .vision-title {
        font-size: 24px;
    }

    .node-card,
    .skill-item,
    .phase-card {
        padding: 24px;
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}
.header-content-revolutionary {    position: relative;
    z-index: 2;
}
@keyframes wave {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.7; transform: scaleX(1.2); }
}
.card-modern-description p {    color: #4B5563;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}
.expertise-card-modern.featured .card-modern-description p {    color: rgba(255, 255, 255, 0.9);
}
.detail-item {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
    color: #7C3AED;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.expertise-card-modern.featured .detail-item {    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}
@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}
@keyframes skillWave {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}
.skill-description-rev p {    color: #4B5563;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
}
.skill-card-revolutionary.featured .skill-description-rev p {    color: rgba(255, 255, 255, 0.9);
}
.value-icon {    font-size: 24px;
}
.value-content h4 {    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}
.agents-revolutionary-showcase {    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}
.agents-central-brain {    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.brain-core {    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    animation: brainPulse 3s ease-in-out infinite;
}
@keyframes brainPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6); }
}
.brain-icon {    font-size: 32px;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}
.brain-pulses {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pulse-ring {    position: absolute;
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}
.pulse-ring:nth-child(1) {    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    animation-delay: 0s;
}
.pulse-ring:nth-child(2) {    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
    animation-delay: 0.7s;
    border-color: rgba(236, 72, 153, 0.3);
}
.pulse-ring:nth-child(3) {    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
    animation-delay: 1.4s;
    border-color: rgba(124, 58, 237, 0.2);
}
@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.agents-orbital-system {    position: relative;
    width: 100%;
    height: 100%;
}
.agent-orbiter {    position: absolute;
    top: 60%;
    left: 32%;
    width: 150px;
    height: 150px;
    transform-origin: center;
}
.agent-orbiter[data-angle="0"] {    transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg);
    animation: orbitRotate0 20s linear infinite;
}
.agent-orbiter[data-angle="72"] {    transform: translate(-50%, -50%) rotate(72deg) translateX(200px) rotate(-72deg);
    animation: orbitRotate72 20s linear infinite;
}
.agent-orbiter[data-angle="144"] {    transform: translate(-50%, -50%) rotate(144deg) translateX(200px) rotate(-144deg);
    animation: orbitRotate144 20s linear infinite;
}
.agent-orbiter[data-angle="216"] {    transform: translate(-50%, -50%) rotate(216deg) translateX(200px) rotate(-216deg);
    animation: orbitRotate216 20s linear infinite;
}
.agent-orbiter[data-angle="288"] {    transform: translate(-50%, -50%) rotate(288deg) translateX(200px) rotate(-288deg);
    animation: orbitRotate288 20s linear infinite;
}
@keyframes orbitRotate0 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(-360deg); }
}
@keyframes orbitRotate72 {
    from { transform: translate(-50%, -50%) rotate(72deg) translateX(200px) rotate(-72deg); }
    to { transform: translate(-50%, -50%) rotate(432deg) translateX(200px) rotate(-432deg); }
}
@keyframes orbitRotate144 {
    from { transform: translate(-50%, -50%) rotate(144deg) translateX(200px) rotate(-144deg); }
    to { transform: translate(-50%, -50%) rotate(504deg) translateX(200px) rotate(-504deg); }
}
@keyframes orbitRotate216 {
    from { transform: translate(-50%, -50%) rotate(216deg) translateX(200px) rotate(-216deg); }
    to { transform: translate(-50%, -50%) rotate(576deg) translateX(200px) rotate(-576deg); }
}
@keyframes orbitRotate288 {
    from { transform: translate(-50%, -50%) rotate(288deg) translateX(200px) rotate(-288deg); }
    to { transform: translate(-50%, -50%) rotate(648deg) translateX(200px) rotate(-648deg); }
}
.agent-orb {    position: relative;
    width: 100%;
    height: 100%;
}
.orb-connector {    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    transform-origin: left center;
    animation: connectorPulse 2s ease-in-out infinite;
}
@keyframes connectorPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 0.7; transform: scaleX(1.2); }
}
.agent-card-orbital {    position: absolute;
    top: -55px;
    right: -80px;
    width: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.1);
}
.agent-card-orbital:hover {    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}
.agent-visual-orbital {    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    height: 50px;
}
.agent-icon-orbital {    font-size: 24px;
    z-index: 2;
    position: relative;
}
.agent-waves-orbital {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}
.wave-orb {    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    animation: waveOrb 3s ease-in-out infinite;
}
.wave-orb:nth-child(2) {    animation-delay: 1.5s;
    border-color: rgba(236, 72, 153, 0.3);
}
@keyframes waveOrb {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.1; }
}
.agent-info-orbital {    text-align: center;
}
.agent-badge-orbital {    background: linear-gradient(135deg, #7C3AED, #EC4899);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 6px;
    display: inline-block;
}
.agents-connections {    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.connection-line {    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
    animation: connectionFlow 4s ease-in-out infinite;
}
@keyframes connectionFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}
.tech-orb .agent-card-orbital {    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    border-color: rgba(59, 130, 246, 0.2);
}
.fundamental-orb .agent-card-orbital {    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(34, 197, 94, 0.05));
    border-color: rgba(16, 185, 129, 0.2);
    width: 145px; /* ← ИЗМЕНИТЕ ЭТОТ РАЗМЕР */
    padding: 19px; /* ← И ПАДДИНГ СОРАЗМЕРНО */
}
.news-orb .agent-card-orbital {    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
}
.realtime-orb .agent-card-orbital {    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(248, 113, 113, 0.05));
    border-color: rgba(239, 68, 68, 0.2);
}
.learning-orb .agent-card-orbital {    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(167, 139, 250, 0.05));
    border-color: rgba(139, 92, 246, 0.2);
}
.tech-orb .agent-badge-orbital {    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
}
.fundamental-orb .agent-badge-orbital {    background: linear-gradient(135deg, #10B981, #22C55E);
}
.news-orb .agent-badge-orbital {    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}
.realtime-orb .agent-badge-orbital {    background: linear-gradient(135deg, #EF4444, #F87171);
}
.learning-orb .agent-badge-orbital {    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}
.perfect-storm-ultra {    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.perfect-storm-ultra-card {    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background:
        linear-gradient(135deg,
            rgba(5, 0, 15, 0.6) 0%,
            rgba(10, 5, 25, 0.5) 50%,
            rgba(15, 8, 35, 0.6) 100%
        );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(139, 69, 255, 0.15);
    border-radius: 32px;
    box-shadow:
        0 32px 128px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(139, 69, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.05),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.perfect-storm-ultra-card::before {    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(139, 69, 255, 0.2);
    border-radius: 34px;
    z-index: -1;
}
.perfect-storm-ultra-card::after {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(218, 112, 214, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 60%);
    border-radius: 32px;
    pointer-events: none;
    z-index: -1;
}
.perfect-storm-ultra::before {    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 112, 214, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
@keyframes stormYearPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow:
            0 12px 48px rgba(124, 58, 237, 0.4),
            0 0 32px rgba(139, 92, 246, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.08) rotate(2deg);
        box-shadow:
            0 16px 64px rgba(124, 58, 237, 0.6),
            0 0 80px rgba(139, 92, 246, 0.5),
            0 0 120px rgba(168, 85, 247, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        filter: brightness(1.1);
    }
}
@keyframes stormTitleShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.storm-header-ultra {    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.storm-year-ultra {    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        #8B5CF6 100%
    );
    border-radius: 50%;
    font-family: 'Clash Display', system-ui;
    font-weight: 900;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 16px;
    position: relative;
    box-shadow:
        0 12px 48px rgba(124, 58, 237, 0.4),
        0 0 32px rgba(139, 92, 246, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: stormYearPulse 4s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.storm-title-ultra {    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, var(--primary-color), var(--accent-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    animation: stormTitleShift 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.storm-subtitle-ultra {    font-size: 0.9rem;
    color: var(--text-light-color);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}
.storm-layout-ultra {    text-align: center;
    position: relative;
    z-index: 2;
}
.storm-result-ultra {    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.result-badge-ultra {    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.result-badge-ultra:hover {    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 69, 255, 0.3);
    box-shadow:
        0 16px 64px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 69, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}
.result-emoji-ultra {    font-size: 1.2rem;
    animation: resultEmojiPulse 2s ease-in-out infinite;
}
.result-content-ultra {    text-align: left;
}
.result-title-ultra {    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}
.result-subtitle-ultra {    font-size: 0.7rem;
    color: var(--text-light-color);
    line-height: 1.2;
    opacity: 0.8;
}
.factors-ultra {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.factor-ultra {    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}
.factor-ultra:hover {    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 69, 255, 0.3);
    box-shadow:
        0 16px 64px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 69, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}
.factor-value-ultra {    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.factor-label-ultra {    font-size: 0.85rem;
    color: var(--text-light-color);
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.8;
}
.factor-subtitle-ultra {    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    opacity: 0.9;
}
.factor-description-ultra {    font-size: 0.7rem;
    color: var(--text-light-color);
    line-height: 1.3;
    opacity: 0.6;
}
@keyframes stormYearPulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(124, 58, 237, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
            0 12px 40px rgba(124, 58, 237, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
}
@keyframes stormTitleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes resultEmojiPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
@media (max-width: 768px) {
    .perfect-storm-ultra {
        padding: 40px 0;
    }

    .storm-title-ultra {
        font-size: 1.6rem;
    }

    .storm-year-ultra {
        width: 85px;
        height: 85px;
        font-size: 1.8rem;
    }

    .factors-ultra {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .perfect-storm-ultra-card {
        margin: 0 20px;
        padding: 40px 24px;
        border-radius: 24px;
        background:
            linear-gradient(135deg,
                rgba(3, 0, 10, 0.98) 0%,
                rgba(8, 3, 20, 0.95) 50%,
                rgba(12, 5, 28, 0.98) 100%
            );
    }

    .perfect-storm-ultra-card::before {
        border-radius: 26px;
        background: rgba(139, 69, 255, 0.15);
    }

    .perfect-storm-ultra-card::after {
        border-radius: 24px;
    }

    .result-badge-ultra {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 20px;
    }

    .result-content-ultra {
        text-align: center;
    }

    .factor-ultra {
        padding: 16px 12px;
    }
}
@media (max-width: 480px) {
    .storm-title-ultra {
        font-size: 1.4rem;
    }

    .storm-subtitle-ultra {
        font-size: 0.7rem;
    }

    .factor-ultra {
        padding: 14px 10px;
    }

    .result-badge-ultra {
        padding: 10px 16px;
    }

    .perfect-storm-ultra-card {
        margin: 0 16px;
        padding: 32px 20px;
        background:
            linear-gradient(135deg,
                rgba(2, 0, 8, 0.99) 0%,
                rgba(6, 2, 15, 0.97) 50%,
                rgba(10, 4, 22, 0.99) 100%
            );
    }
}
@media (max-width: 768px) {
    .agents-revolutionary-showcase {
        height: 400px;
    }

    .brain-core {
        width: 100px;
        height: 100px;
    }

    .brain-icon {
        font-size: 28px;
    }

    .brain-text {
        font-size: 9px;
    }

    .agent-card-orbital {
        width: 100px;
        padding: 12px;
        top: -50px;
        right: -50px;
    }

    .agent-icon-orbital {
        font-size: 20px;
    }

    .agent-name-orbital {
        font-size: 11px;
    }

    .agent-description-orbital {
        font-size: 9px;
    }

    .wave-orb {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 768px) {
    .expertise-revolutionary-header,
    .skills-revolutionary-header,
    .vision-card-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .expertise-modern-grid,
    .skills-modern-showcase,
    .vision-values-revolutionary {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .expertise-revolutionary-title,
    .skills-revolutionary-title,
    .vision-title-revolutionary {
        font-size: 2rem;
    }

    .vision-main-text {
        font-size: 1.1rem;
    }
}
.achievement-icon {    opacity: 0.8;
}
.skill-icon {    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 10px;
    transition: all 0.3s ease;
}
.skill-icon svg {    width: 20px;
    height: 20px;
    color: var(--primary-color);
}
.skill-card-premium:hover .skill-icon {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(147, 51, 234, 0.4));
    transform: scale(1.05);
}
.skill-card-premium.featured .skill-icon {    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}
.skill-card-premium.featured .skill-icon svg {    color: white;
}
.skill-info {    flex: 1;
}
.hiring-header h3 {    font-size: 2rem;
    margin-bottom: 8px;
}
.hiring-header p {    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}
.summary-card {    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.summary-card.featured {    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}
.summary-icon {    margin-bottom: 16px;
    opacity: 0.8;
}
.summary-number {    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.summary-label {    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}
.hiring-timeline h4 {    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}
.timeline-item {    display: flex;
    align-items: center;
    gap: 16px;
}
.hiring-criteria h4 {    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}
.mission-icon {    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}
.mission-icon svg {    width: 28px;
    height: 28px;
    color: white;
}
.mission-premium-card:hover .mission-icon {    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}
.mission-content p {    font-size: 1.1rem;
    margin-bottom: 24px;
}
.value-icon {    opacity: 0.8;
}
.founder-info h3 {    font-size: 1.3rem;
    margin-bottom: 4px;
}
.founder-info p {    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}
.founder-skills h4 {    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}
.team-structure-section h3 {    text-align: center;
    margin-bottom: 16px;
}
.section-subtitle {    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}
.mission-card h3 {    margin-bottom: 16px;
    font-size: 1.3rem;
    text-align: center;
}
.mission-card p {    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
}
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .founder-achievements {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }

    .skills-list {
        flex-direction: column;
        align-items: center;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        text-align: center;
    }


    .mission-values {
        flex-direction: column;
        gap: 12px;
    }
}
.economic-advantage-premium {    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 0 auto;
    max-width: 900px;
}
.savings-container-premium {    display: flex;
    flex-direction: column;
    gap: 32px;
}
.savings-header-premium {    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.header-icon-premium {    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    margin-bottom: 8px;
}
.savings-title-premium {    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.savings-subtitle-premium {    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.savings-comparison-premium {    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}
.comparison-card-premium {    background: rgba(255,255,255,0.015);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s ease;
}
.comparison-card-premium.featured {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}
.card-header-premium {    margin-bottom: 20px;
    position: relative;
}
.card-amount-premium {    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1;
}
.card-amount-premium.featured {    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card-label-premium {    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-weight: 600;
}
.services-list-premium {    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.service-item-premium {    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-dot {    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    margin-right: 12px;
}
.service-name {    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    flex: 1;
}
.service-price {    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}
.features-list-premium {    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.feature-item-premium {    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-check {    color: #10B981;
    font-weight: bold;
    font-size: 1rem;
}
.feature-name {    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.card-footer-premium {    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-label {    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.total-amount {    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.total-amount.featured {    color: #10B981;
}
.comparison-arrow-premium {    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.arrow-container-premium {    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.arrow-icon-premium {    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.arrow-icon-premium:hover {    background: rgba(255,255,255,0.1);
    color: #8B5CF6;
    transform: scale(1.1);
}
.arrow-text-premium {    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.savings-result-premium {    display: flex;
    justify-content: center;
}
.result-card-premium {    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 32px;
}
.result-visual-premium {    flex-shrink: 0;
}
.result-orb-premium {    position: relative;
    width: 120px;
    height: 120px;
}
.orb-bg-premium {    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
}
.orb-glow {    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    animation: orbPulse 3s ease-in-out infinite;
}
.orb-gradient {    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
}
.orb-content-premium {    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.result-amount-premium {    font-size: 1.8rem;
    font-weight: 800;
    color: #10B981;
    margin: 0 0 4px 0;
    line-height: 1;
}
.result-label-premium {    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
@keyframes orbPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}
.result-stats-premium {    display: flex;
    gap: 24px;
}
.stat-item-premium {    text-align: center;
}
.stat-value {    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin: 0 0 4px 0;
    line-height: 1;
}
.stat-label {    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.additional-benefits-premium {    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.benefit-item-premium {    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
}
.benefit-icon {    font-size: 1.5rem;
}
.benefit-text {    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}
@media (max-width: 768px) {
    .economic-advantage-premium {
        padding: 24px 16px;
    }

    .savings-comparison-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-arrow-premium {
        order: -1;
        margin: 16px 0;
    }

    .arrow-container-premium {
        flex-direction: row;
        gap: 16px;
    }

    .result-card-premium {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .result-stats-premium {
        justify-content: center;
    }

    .additional-benefits-premium {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .card-amount-premium {
        font-size: 2rem;
    }
}
@keyframes orbit-particle {
    0% { transform: rotate(0deg) translateX(60px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); opacity: 0; }
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.investment-title-simple h3 {    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}
.investment-section-symmetric {    margin-top: 2.5rem;
}
.investment-container-symmetric {    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}
.cta-main-section {    text-align: center;
    margin-bottom: 2rem;
}
.cta-title {    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.cta-subtitle {    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.investment-header-symmetric {    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.investment-icon-symmetric {    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--electric-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}
.investment-title-symmetric {    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}
.investment-subtitle-symmetric {    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.investment-metrics-symmetric {    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.metric-symmetric {    text-align: center;
    flex: 1;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.metric-symmetric:hover {    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}
.metric-symmetric.featured {    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(124, 58, 237, 0.3);
}
.metric-visual-symmetric {    margin-bottom: 0.75rem;
}
.metric-value-symmetric {    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.metric-value-symmetric.featured {    color: var(--accent-color);
}
.metric-label-symmetric {    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.metric-description-symmetric {    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}
.metric-divider-symmetric {    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .investment-metrics-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metric-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .investment-title-compact {
        font-size: 2rem;
    }

    .header-icon-compact {
        width: 60px;
        height: 60px;
    }

    .investment-header-simple {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .investment-metrics-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investment-card-simple {
        padding: 2rem;
    }

    .investment-metrics-ultra {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .investment-compact {
        padding: 1.5rem;
        max-width: none;
    }

    .investment-title-ultra {
        font-size: 1.2rem;
    }

    .investment-metrics-symmetric {
        flex-direction: column;
        gap: 1.5rem;
    }

    .metric-divider-symmetric {
        width: 60px;
        height: 2px;
    }

    .investment-container-symmetric {
        padding: 2rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}
.hero-expectations-modern {    margin: 60px 0 80px 0;
    position: relative;
}
.expectations-header {    text-align: center;
    margin-bottom: 50px;
}
.expectations-title {    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}
.expectations-stats-grid {    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.expectation-stat-card {    position: relative;
}
.stat-card-modern {    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.stat-card-modern:hover {    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.stat-card-modern.featured {    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.1);
}
.stat-card-modern.featured:hover {    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(147, 51, 234, 0.08) 100%);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 0 40px rgba(147, 51, 234, 0.2);
}
.stat-icon {    margin-bottom: 20px;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.stat-icon.featured {    opacity: 1;
}
.stat-card-modern:hover .stat-icon {    opacity: 1;
    transform: scale(1.1);
}
.stat-content {    position: relative;
    z-index: 2;
}
.stat-main {    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}
.stat-number {    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}
.stat-number.featured {    background: linear-gradient(135deg, #4F46E5 0%, #9333EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-suffix {    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
}
.stat-suffix.featured {    color: #9333EA;
}
.stat-label {    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}
.stat-visual {    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}
.stat-card-modern:hover .stat-visual {    opacity: 0.15;
}
.stat-progress-ring {    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}
.stat-progress-ring svg {    width: 100%;
    height: 100%;
}
.expectations-summary {    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.summary-text {    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}
@media (max-width: 768px) {
    .expectations-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .stat-card-modern {
        padding: 24px 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-suffix {
        font-size: 1.8rem;
    }

    .expectations-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .hero-expectations-modern {
        margin: 40px 0 60px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }
}
