/* AINNA3 - Plain HTML/CSS - NO NEXT.JS! */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Auto Scroll Animation for Services */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Auto Scroll Animation for Stats */
@keyframes scroll-stats {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

:root {
    --primary-white: #FFFFFF;
    --secondary-gray: #F5F5F7;
    --accent-black: #1A1A1A;
    --crayon-pink: #FF6B9D;
    --crayon-blue: #4ECDC4;
    --crayon-mint: #95E1D3;
    --crayon-lavender: #DDA0DD;
    --crayon-peach: #FFCBA4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--accent-black);
    background: var(--primary-white);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    position: relative;
}

/* Aurora Background Animation (Dark Mode Only) */
[data-theme="dark"] body {
    background: #0F172A;
}

.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

[data-theme="dark"] .aurora-container {
    opacity: 1;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: auroraFloat 20s infinite ease-in-out;
    mix-blend-mode: screen;
}

.aurora-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FF6B9D, #8B5CF6);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.aurora-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #00F5FF, #0066FF);
    top: 50%;
    right: -15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.aurora-3 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #8B5CF6, #FF6B9D);
    bottom: -25%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.aurora-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #0066FF, #00F5FF);
    top: 30%;
    left: 20%;
    animation-delay: -15s;
    animation-duration: 32s;
}

@keyframes auroraFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(10%, 15%) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-5%, 10%) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(15%, -10%) scale(1.05) rotate(270deg);
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile Navigation */
#mobile-burger {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 10000;
    background: var(--primary-white);
    border: 2px solid var(--accent-black);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

/* Dark mode burger menu - HIGH CONTRAST */
[data-theme="dark"] #mobile-burger {
    background: #1E293B;
    border: 2px solid rgba(255, 107, 157, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] #mobile-burger svg {
    stroke: #F8FAFC;
}

[data-theme="dark"] #mobile-burger:hover {
    background: #0F172A;
    border-color: #FF6B9D;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

#mobile-logo {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10000;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-black);
    text-decoration: none;
}

#mobile-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#mobile-panel.active {
    opacity: 1;
}

.mobile-menu {
    background: var(--primary-white);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85%;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

#mobile-panel.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu {
    background: var(--primary-white);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85%;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.menu-header span {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-black);
}

.menu-header button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu nav a {
    font-size: 18px;
    color: var(--accent-black);
    text-decoration: none;
}

@media (max-width: 768px) {
    /* Performance: Disable heavy effects on mobile */
    .badge,
    .glass-card,
    .platform-card,
    .feature-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Disable aurora background animations */
    .aurora-container {
        display: none !important;
    }
    
    /* Reduce animation complexity */
    .blob {
        animation: none !important;
    }
    
    /* Disable parallax on mobile */
    .hero-parallax {
        transform: none !important;
    }
    
    #mobile-burger {
        display: block;
    }

    /* Dark mode mobile menu panel */
    [data-theme="dark"] .mobile-menu {
        background: #1E293B;
    }

    [data-theme="dark"] .mobile-menu .menu-header {
        background: #0F172A;
        border-bottom: 1px solid rgba(255, 107, 157, 0.3);
    }

    [data-theme="dark"] .mobile-menu .menu-header span {
        color: #F8FAFC;
    }

    [data-theme="dark"] .mobile-menu nav a {
        color: #94A3B8;
        border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    }

    [data-theme="dark"] .mobile-menu nav a:hover {
        color: #FF6B9D;
        background: rgba(255, 107, 157, 0.1);
    }

    [data-theme="dark"] .mobile-menu .menu-header button {
        color: #F8FAFC;
    }

    [data-theme="dark"] .theme-toggle-mobile {
        color: #94A3B8;
    }

    [data-theme="dark"] .theme-toggle-mobile svg {
        stroke: #FF6B9D;
    }
    #mobile-logo {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-white);
    padding: 80px 24px 60px;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 24px 100px;
        min-height: auto;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding: 150px 24px 120px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.blob-1 {
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--crayon-pink);
    animation-delay: 0s;
}

@media (min-width: 768px) {
    .blob-1 {
        width: 500px;
        height: 500px;
    }
}

.blob-2 {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: var(--crayon-blue);
    opacity: 0.5;
    animation-delay: 2s;
}

@media (min-width: 768px) {
    .blob-2 {
        width: 600px;
        height: 600px;
    }
}

.blob-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: var(--crayon-mint);
    opacity: 0.5;
    animation-delay: 4s;
}

@media (min-width: 768px) {
    .blob-3 {
        width: 500px;
        height: 500px;
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(var(--accent-black) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent-black) 1px, transparent 1px);
    background-size: 60px 60px;
}

@media (min-width: 768px) {
    .grid-overlay {
        opacity: 0.08;
        background-size: 80px 80px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 40px 0;
        max-width: 900px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 1100px;
    }
}

    /* Dark mode for R&D card title */
    [data-theme="dark"] .rd-title,
    body.dark .rd-title {
        color: #ffffff !important;
    }

.badge {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 56px;
        line-height: 1.1;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 72px;
    }
}

.highlight-blue {
    position: relative;
    display: inline-block;
}

.highlight-blue::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--crayon-blue);
    z-index: -1;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .highlight-blue::after {
        height: 24px;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--crayon-pink), var(--crayon-blue), var(--crayon-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.6);
    max-width: 768px;
    margin: 0 auto 16px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 18px;
    }
}

.hero-tagline {
    font-size: 16px;
    color: rgba(26, 26, 26, 0.5);
    max-width: 640px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
}

@media (min-width: 768px) {
    .btn {
        padding: 16px 36px;
        font-size: 16px;
    }
}

.btn-primary {
    background: var(--accent-black);
    color: var(--primary-white);
}

.btn-primary:hover {
    background: rgba(26, 26, 26, 0.9);
}

.btn-secondary {
    border: 2px solid var(--accent-black);
    color: var(--accent-black);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--accent-black);
    color: var(--primary-white);
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.tag {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.tag:hover {
    opacity: 0.8;
}

.tag-mint {
    background: rgba(149, 225, 211, 0.3);
}

.tag-lavender {
    background: rgba(221, 160, 221, 0.3);
}

.tag-peach {
    background: rgba(255, 203, 164, 0.3);
}

.tag-pink {
    background: rgba(255, 107, 157, 0.3);
}

.tag-blue {
    background: rgba(78, 205, 196, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 896px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.stat-card {
    text-align: center;
    animation: fadeIn 0.6s ease-out;
    padding: 16px 8px;
}

.stat-card:nth-child(1) { animation-delay: 0.7s; }
.stat-card:nth-child(2) { animation-delay: 0.8s; }
.stat-card:nth-child(3) { animation-delay: 0.9s; }
.stat-card:nth-child(4) { animation-delay: 1.0s; }

@media (min-width: 768px) {
    .stat-card {
        padding: 24px 16px;
    }
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

@media (min-width: 768px) {
    .stat-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
        margin-bottom: 16px;
    }
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 40px;
        margin-bottom: 12px;
    }
}

.stat-label {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 15px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(26, 26, 26, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 12px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(8px); }
}

/* Promo Section */
.promo-section {
    padding: 48px 24px;
    background: linear-gradient(90deg, var(--crayon-pink), var(--crayon-lavender), var(--crayon-blue));
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .promo-section {
        padding: 64px 24px;
    }
}

.promo-container {
    max-width: 1280px;
    margin: 0 auto;
}

.promo-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 48px;
    border: 4px solid var(--primary-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .promo-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        align-items: center;
    }
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 157, 0.2);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.promo-image {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #374151, #111827);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.promo-image img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    border-radius: 16px;
}

.promo-content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .promo-content h2 {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .promo-content h2 {
        font-size: 56px;
    }
}

.promo-content > p {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 24px;
}

.promo-offer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.discount {
    background: var(--accent-black);
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: bold;
}

.promo-offer code {
    padding: 4px 8px;
    background: var(--secondary-gray);
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
}

.promo-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.btn-large {
    padding: 20px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 16px;
    justify-content: center;
}

.btn-outline {
    background: var(--primary-white);
    border: 2px solid var(--accent-black);
    color: var(--accent-black);
}

.btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.platform-links {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.platform-links p {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.5);
    text-align: center;
    margin-bottom: 16px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 64px 24px;
    background: var(--secondary-gray);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-section {
        padding: 80px 24px;
    }
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 203, 164, 0.1));
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 16px 0 24px;
}

@media (min-width: 768px) {
    .about-text h2 {
        font-size: 48px;
    }
}

.highlight-lavender {
    position: relative;
    display: inline-block;
}

.highlight-lavender::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--crayon-lavender);
    z-index: -1;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.7);
    margin-bottom: 24px;
}

.milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.milestone {
    padding: 16px 24px;
    background: var(--primary-white);
    border-radius: 16px;
}

.milestone-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4px;
}

.milestone-label {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.6);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--primary-white);
    border-radius: 24px;
    transition: all 0.3s;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card-link {
    transition: all 0.3s ease;
}

.feature-card-link:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateX(8px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.feature-icon.pink {
    background: rgba(255, 107, 157, 0.3);
}

.feature-icon.blue {
    background: rgba(78, 205, 196, 0.3);
}

.feature-icon.mint {
    background: rgba(149, 225, 211, 0.3);
}

.feature-icon.lavender {
    background: rgba(221, 160, 221, 0.3);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-card p {
    color: rgba(26, 26, 26, 0.6);
}

/* Services Section */
.services-section {
    padding: 64px 24px;
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .services-section {
        padding: 80px 24px;
    }
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(var(--accent-black) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 16px 0;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 48px;
    }
}

.section-header p {
    font-size: 18px;
    color: rgba(26, 26, 26, 0.6);
}

.services-scroll {
    overflow-x: auto;
    padding: 32px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.services-track {
    display: inline-flex;
    gap: 24px;
    animation: scroll-left 15s linear infinite;
}

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

.service-card {
    flex-shrink: 0;
    width: 320px;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(26, 26, 26, 0.05);
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeIn 0.6s ease-out;
}

@media (min-width: 768px) {
    .service-card {
        width: 384px;
    }
}

.service-card:nth-child(6n+1) {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 107, 157, 0.05));
}

.service-card:nth-child(6n+2) {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(78, 205, 196, 0.05));
}

.service-card:nth-child(6n+3) {
    background: linear-gradient(135deg, rgba(149, 225, 211, 0.2), rgba(149, 225, 211, 0.05));
}

.service-card:nth-child(6n+4) {
    background: linear-gradient(135deg, rgba(221, 160, 221, 0.2), rgba(221, 160, 221, 0.05));
}

.service-card:nth-child(6n+5) {
    background: linear-gradient(135deg, rgba(255, 203, 164, 0.2), rgba(255, 203, 164, 0.05));
}

.service-card:nth-child(6n+6) {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 107, 157, 0.05));
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tags-small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-small span {
    padding: 6px 12px;
    background: var(--primary-white);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.7);
}

/* Stats Section */
.stats-section {
    padding: 64px 24px;
    background: var(--accent-black);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .stats-section {
        padding: 80px 24px;
    }
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: var(--crayon-pink);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: var(--crayon-blue);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.stats-scroll {
    overflow-x: auto;
    padding: 32px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stats-scroll::-webkit-scrollbar {
    display: none;
}

.stats-track {
    display: inline-flex;
    gap: 24px;
    animation: scroll-stats 10s linear infinite;
}

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

.stat-box {
    flex-shrink: 0;
    width: 280px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeIn 0.6s ease-out;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.stat-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(78, 205, 196, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.stat-box-value {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-box-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-box-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.text-pink {
    color: var(--crayon-pink);
}

.awards {
    margin-top: 80px;
    text-align: center;
}

.awards h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.awards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.award-tag {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 14px;
    display: inline-block;
    transform-origin: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    cursor: pointer;
}

.award-tag:hover {
    background: #FF6B9D;
    border-color: #FF6B9D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    cursor: pointer;
}

.award-wobble {
    animation: awardWobble 0.9s ease-in-out;
}

@keyframes awardWobble {
    0%   { transform: rotate(0deg); }
    20%  { transform: rotate(-2deg); }
    40%  { transform: rotate(2deg); }
    60%  { transform: rotate(-1.5deg); }
    80%  { transform: rotate(1.5deg); }
    100% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
    .award-wobble {
        animation: none !important;
    }
}

/* Contact Section */
.contact-section {
    padding: 64px 24px;
    background: var(--secondary-gray);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 80px 24px;
    }
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 203, 164, 0.1));
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--primary-white);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    animation: slideInLeft 0.5s ease-out;
}

.platform-item:nth-child(1) { animation-delay: 0.1s; }
.platform-item:nth-child(2) { animation-delay: 0.2s; }
.platform-item:nth-child(3) { animation-delay: 0.3s; }
.platform-item:nth-child(4) { animation-delay: 0.4s; }
.platform-item.special { animation-delay: 0.5s; }

.platform-item:hover {
    transform: translateX(8px);
    background: var(--secondary-gray);
}

.platform-item.special {
    background: rgba(255, 203, 164, 0.3);
    margin-top: 24px;
}

.platform-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.platform-icon.pink {
    background: rgba(255, 107, 157, 0.3);
}

.platform-icon.blue {
    background: rgba(78, 205, 196, 0.3);
}

.platform-icon.mint {
    background: rgba(149, 225, 211, 0.3);
}

.platform-icon.lavender {
    background: rgba(221, 160, 221, 0.3);
}

.platform-icon.peach {
    background: rgba(255, 203, 164, 0.5);
}

.platform-info {
    flex: 1;
}

.platform-title {
    font-weight: bold;
    margin-bottom: 4px;
}

.platform-url {
    font-size: 14px;
    color: rgba(26, 26, 26, 0.5);
}

.arrow {
    font-size: 20px;
    color: rgba(26, 26, 26, 0.3);
    transition: transform 0.3s;
}

.platform-item:hover .arrow {
    transform: translateX(4px);
    color: rgba(26, 26, 26, 1);
}

.contact-promo {
    display: flex;
    align-items: center;
}

.promo-box {
    background: var(--accent-black);
    color: var(--primary-white);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.promo-label {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crayon-pink);
    color: var(--accent-black);
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.promo-body {
    text-align: center;
    padding-top: 16px;
}

.promo-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.promo-body h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.promo-body p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.promo-discount {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.discount-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.discount-icon {
    font-size: 32px;
}

.discount-value {
    font-size: 36px;
    font-weight: bold;
}

.promo-discount p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.btn-pink {
    background: var(--crayon-pink);
    color: var(--accent-black);
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-pink:hover {
    background: rgba(255, 107, 157, 0.9);
}

/* Footer */
footer {
    background: var(--accent-black);
    color: var(--primary-white);
    padding: 32px 24px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-content p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Fixed: Promo Box Sizing */
.promo-box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-promo {
        display: flex;
        justify-content: flex-end;
    }
    
    .promo-box {
        margin: 0;
        max-width: 100%;
    }
}

.promo-body {
    width: 100%;
}

.promo-discount {
    width: 100%;
    box-sizing: border-box;
}

/* Desktop Navigation */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    z-index: 9999;
    display: none;
}

@media (min-width: 769px) {
    .desktop-nav {
        display: block;
    }
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-black);
    text-decoration: none;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--secondary-gray);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.theme-toggle:hover {
    background: var(--crayon-pink);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.theme-toggle .sun-icon {
    display: block;
    color: #F59E0B;
}

.theme-toggle .moon-icon {
    display: none;
    color: #6366F1;
}

/* Dark mode styles */
[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] {
    --primary-white: #0F172A;
    --secondary-gray: #1E293B;
    --accent-black: #F8FAFC;
    --text-gray: #94A3B8;
}

[data-theme="dark"] body {
    background: #0F172A;
    color: #F8FAFC;
}

[data-theme="dark"] .desktop-nav {
    background: rgba(15, 23, 42, 0.98);
    border-bottom-color: rgba(248, 250, 252, 0.1);
}

[data-theme="dark"] .nav-logo,
[data-theme="dark"] .nav-link {
    color: #F8FAFC;
}

[data-theme="dark"] .nav-link:hover {
    color: #FF6B9D;
}

[data-theme="dark"] .nav-link::after {
    background: #FF6B9D;
}

[data-theme="dark"] .team-card {
    background: #1E293B;
    border-color: rgba(248, 250, 252, 0.2);
}

[data-theme="dark"] .team-card:hover {
    border-color: #FF6B9D;
}

[data-theme="dark"] .team-card h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .team-role {
    color: #FF6B9D;
}

[data-theme="dark"] .team-desc {
    color: #94A3B8;
}

[data-theme="dark"] .mobile-menu {
    background: #1E293B;
}

[data-theme="dark"] .mobile-menu a {
    color: #F8FAFC;
}

[data-theme="dark"] .menu-header span {
    color: #F8FAFC;
}

[data-theme="dark"] .hero {
    background: #0F172A;
}

    /* Dark mode for R&D card title */
    [data-theme="dark"] .rd-title,
    body.dark .rd-title {
        color: #ffffff !important;
    }

[data-theme="dark"] .badge {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #F8FAFC;
}

[data-theme="dark"] .badge span {
    color: #FF6B9D;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .hero-content p {
    color: #94A3B8;
}

[data-theme="dark"] .hero-content .hero-tagline {
    color: #64748B;
}

[data-theme="dark"] .stat-box {
    background: #1E293B;
    border: 1px solid rgba(248, 250, 252, 0.1);
}

[data-theme="dark"] .stat-box-value {
    color: #F8FAFC;
}

[data-theme="dark"] .stat-box-label {
    color: #94A3B8;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .service-card {
    background: #1E293B;
    border-color: rgba(248, 250, 252, 0.1);
}

[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .service-card h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .feature-card p,
[data-theme="dark"] .service-card p {
    color: #94A3B8;
}

[data-theme="dark"] .stat-box {
    background: #1E293B;
}

[data-theme="dark"] .contact-section {
    background: #1E293B;
}

[data-theme="dark"] .contact-section .section-label {
    color: #A78BFA;
}

[data-theme="dark"] .contact-section p {
    color: #94A3B8;
}

[data-theme="dark"] .platform-item {
    background: #0F172A;
    border-color: rgba(248, 250, 252, 0.15);
}

[data-theme="dark"] .platform-title {
    color: #F8FAFC;
}

[data-theme="dark"] .platform-url {
    color: #94A3B8;
}

[data-theme="dark"] .platform-item:hover {
    border-color: #FF6B9D;
}

[data-theme="dark"] .platform-item:hover .platform-title {
    color: #FF6B9D;
}

[data-theme="dark"] footer {
    background: #0F172A;
    border-top: 1px solid rgba(248, 250, 252, 0.1);
}

[data-theme="dark"] footer p,
[data-theme="dark"] footer span {
    color: #64748B;
}

[data-theme="dark"] footer a {
    color: #94A3B8;
}

[data-theme="dark"] footer a:hover {
    color: #FF6B9D;
}

[data-theme="dark"] .about-section {
    background: #1E293B;
}

[data-theme="dark"] .about-section p {
    color: #94A3B8;
}

[data-theme="dark"] .services-section {
    background: #0F172A;
}

[data-theme="dark"] .services-section p {
    color: #94A3B8;
}

[data-theme="dark"] .stats-section {
    background: #1E293B;
}

[data-theme="dark"] .stats-section .stat-box {
    background: #0F172A;
}

[data-theme="dark"] .promo-section {
    background: linear-gradient(90deg, #0F172A, #1E293B, #0F172A);
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

[data-theme="dark"] .promo-section h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .promo-section p {
    color: #94A3B8;
}

[data-theme="dark"] .promo-container {
    background: rgba(15, 23, 42, 0.5);
    
}

[data-theme="dark"] .promo-content {
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .award-tag {
    background: #0F172A;
    color: #94A3B8;
}

/* Dark mode - Section labels */
[data-theme="dark"] .section-label {
    color: #FF6B9D;
}

[data-theme="dark"] .about-section .section-label,
[data-theme="dark"] .about-section h2 {
    color: #F8FAFC;
}

[data-theme="dark"] .about-section h2 .highlight-lavender {
    color: #A78BFA;
}

[data-theme="dark"] .about-content p {
    color: #94A3B8;
}

[data-theme="dark"] .about-stats {
    background: #0F172A;
}

[data-theme="dark"] .about-stats h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .about-stats p {
    color: #94A3B8;
}

/* Dark mode - Services cards */
[data-theme="dark"] .service-card h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .service-card p {
    color: #94A3B8;
}

[data-theme="dark"] .tags-small span {
    background: #0F172A;
    color: #94A3B8;
}

/* Dark mode - Stats section */
[data-theme="dark"] .stats-section .section-label {
    color: #FF6B9D;
}

[data-theme="dark"] .stats-section h2 {
    color: #F8FAFC;
}

[data-theme="dark"] .stats-section h2 .text-pink {
    color: #FF6B9D;
}

[data-theme="dark"] .stat-box-icon {
    background: #1E293B;
}

[data-theme="dark"] .stat-box-value {
    color: #F8FAFC;
}

[data-theme="dark"] .stat-box-label {
    color: #94A3B8;
}

[data-theme="dark"] .stat-box-desc {
    color: #64748B;
}

/* Dark mode - Awards */
[data-theme="dark"] .awards h3 {
    color: #F8FAFC;
}

/* Dark mode - Feature cards in about section */
[data-theme="dark"] .feature-card {
    background: #0F172A;
}

[data-theme="dark"] .feature-card h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .feature-card p {
    color: #94A3B8;
}

[data-theme="dark"] .feature-icon {
    background: #1E293B;
}

/* Dark mode - Promo section */
[data-theme="dark"] .promo-box {
    background: #0F172A;
}

[data-theme="dark"] .promo-box h3 {
    color: #F8FAFC;
}

[data-theme="dark"] .discount-badge {
    background: #1E293B;
}

[data-theme="dark"] .discount-badge span {
    color: #F8FAFC;
}

[data-theme="dark"] .promo-box code {
    background: #1E293B;
    color: #FF6B9D;
}

/* Dark mode - Buttons */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-pink {
    background: #FF6B9D;
    color: #0F172A;
}

[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-pink:hover {
    background: #FF85AD;
}

[data-theme="dark"] .btn-secondary {
    border-color: #F8FAFC;
    color: #F8FAFC;
}

[data-theme="dark"] .btn-secondary:hover {
    background: #F8FAFC;
    color: #0F172A;
}

/* Dark mode - Platform icons */
[data-theme="dark"] .platform-icon.pink {
    background: rgba(255, 107, 157, 0.2);
}

[data-theme="dark"] .platform-icon.blue {
    background: rgba(79, 70, 229, 0.2);
}

[data-theme="dark"] .platform-icon.mint {
    background: rgba(16, 185, 129, 0.2);
}

[data-theme="dark"] .platform-icon.lavender {
    background: rgba(167, 139, 250, 0.2);
}

/* Mobile Theme Toggle */
.theme-toggle-mobile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--secondary-gray);
    border-radius: 12px;
    margin-top: 16px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .theme-toggle-mobile {
        display: flex;
    }
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--accent-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--crayon-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crayon-pink);
    transition: width 0.3s;
}

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

/* Mobile Only */
.mobile-only {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 10000;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Team Section */
.team-section {
    padding: 80px 24px;
    background: var(--secondary-gray);
}

[data-theme="dark"] .team-section {
    background: #1E293B;
}

[data-theme="dark"] .team-section .section-label {
    color: #FF6B9D;
}

[data-theme="dark"] .team-section h2 {
    color: #F8FAFC;
}

[data-theme="dark"] .team-section p {
    color: #94A3B8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto 0;
}

.team-card {
    background: var(--primary-white);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out backwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }
.team-card:nth-child(7) { animation-delay: 0.7s; }

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

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--crayon-pink);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px !important;
    font-weight: 700;
    color: white;
}

.team-card h3 {
    color: var(--accent-black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    color: var(--crayon-pink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-desc {
    color: rgba(26, 26, 26, 0.6);
    font-size: 13px;
}

/* Dark mode - Additional elements */
[data-theme="dark"] .highlight-blue {
    color: #60A5FA;
}

[data-theme="dark"] .highlight-lavender {
    color: #A78BFA;
}

[data-theme="dark"] .gradient-text {
    background: linear-gradient(90deg, #FF6B9D, #A78BFA, #60A5FA);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="dark"] .text-pink {
    color: #FF6B9D !important;
}

[data-theme="dark"] .hero-buttons .btn-primary,
[data-theme="dark"] .hero-buttons .btn-secondary {
    background: #0F172A;
    color: #F8FAFC;
    border: 2px solid #F8FAFC;
}

[data-theme="dark"] .hero-buttons .btn-primary:hover,
[data-theme="dark"] .hero-buttons .btn-secondary:hover {
    background: #F8FAFC;
    color: #0F172A;
}

[data-theme="dark"] .hero-links a {
    color: #F8FAFC;
}

[data-theme="dark"] .hero-links a:hover {
    color: #FF6B9D;
}

[data-theme="dark"] .milestone {
    background: #0F172A;
}

[data-theme="dark"] .milestone-value {
    color: #F8FAFC;
}

[data-theme="dark"] .milestone-label {
    color: #94A3B8;
}

[data-theme="dark"] .about-cards {
    background: transparent;
}

[data-theme="dark"] .contact-promo {
    background: transparent;
}

[data-theme="dark"] .promo-buttons a {
    background: #FF6B9D;
    color: #0F172A;
}

[data-theme="dark"] .arrow {
    color: #94A3B8;
}

[data-theme="dark"] .platform-item.special {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(167, 139, 250, 0.1));
    border-color: rgba(255, 107, 157, 0.3);
}

[data-theme="dark"] .btn-icon {
    background: #1E293B;
}

[data-theme="dark"] .btn-outline {
    border-color: #F8FAFC;
    color: #F8FAFC;
}

[data-theme="dark"] .btn-outline:hover {
    background: #F8FAFC;
    color: #0F172A;
}

/* Dark mode - Blobs (softer colors) */
[data-theme="dark"] .blob-1 {
    background: rgba(255, 107, 157, 0.15);
}

[data-theme="dark"] .blob-2 {
    background: rgba(79, 70, 229, 0.1);
}

[data-theme="dark"] .blob-3 {
    background: rgba(16, 185, 129, 0.12);
}

/* Dark mode - Grid overlay */
[data-theme="dark"] .grid-overlay {
    opacity: 0.02;
}

/* Dark mode - Mouse indicator */
[data-theme="dark"] .mouse {
    border-color: rgba(248, 250, 252, 0.3);
}

[data-theme="dark"] .mouse::before {
    background: #94A3B8;
}

/* Dark mode - Services scroll */
[data-theme="dark"] .services-scroll {
    background: transparent;
}

[data-theme="dark"] .services-track {
    background: transparent;
}

/* Team Avatar Images */
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

[data-theme="dark"] .avatar-img {
    
}

/* Emoji display fix */
.avatar-placeholder {
    line-height: 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[data-theme="dark"] .avatar-placeholder {
    
}

/* Dark Mode - AI Agents Promo Section - HIGH CONTRAST */
[data-theme="dark"] .promo-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    
    
}

[data-theme="dark"] .promo-container {
    background: rgba(15, 23, 42, 0.8);
}

[data-theme="dark"] .promo-content {
    background: rgba(30, 41, 59, 0.9);
    
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 60px rgba(255, 107, 157, 0.05);
}

[data-theme="dark"] .promo-left {
    background: rgba(30, 41, 59, 0.15);
    
}

[data-theme="dark"] .promo-left h2 {
    color: #F8FAFC !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .promo-left p {
    color: #E2E8F0 !important;
}

[data-theme="dark"] .promo-badge {
    background: rgba(255, 107, 157, 0.25);
    color: #FF6B9D;
    border: 2px solid rgba(255, 107, 157, 0.4);
}

[data-theme="dark"] .promo-image {
    background: rgba(15, 23, 42, 0.9);
    
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.2);
}

[data-theme="dark"] .promo-offer {
    background: rgba(15, 23, 42, 0.8);
    
}

[data-theme="dark"] .discount {
    background: linear-gradient(135deg, #FF6B9D, #F472B6);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

[data-theme="dark"] .promo-offer code {
    background: rgba(255, 107, 157, 0.2);
    color: #F8FAFC;
    
}

[data-theme="dark"] .platform-links p {
    color: #94A3B8;
}

[data-theme="dark"] .tag {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .tag-pink {
    background: rgba(255, 107, 157, 0.2);
    color: #FF6B9D;
    border-color: rgba(255, 107, 157, 0.4);
}

[data-theme="dark"] .tag-blue {
    background: rgba(96, 165, 250, 0.2);
    color: #60A5FA;
    border-color: rgba(96, 165, 250, 0.4);
}

[data-theme="dark"] .tag-mint {
    background: rgba(52, 211, 153, 0.2);
    color: #34D399;
    border-color: rgba(52, 211, 153, 0.4);
}

[data-theme="dark"] .tag-lavender {
    background: rgba(167, 139, 250, 0.2);
    color: #A78BFA;
    border-color: rgba(167, 139, 250, 0.4);
}

/* Scroll-triggered animations for promo section cards */
.promo-content {
    opacity: 0;
    animation: fadeInScale 0.8s ease-out 0.2s backwards;
}

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

/* Platform links animate in */
.platform-links {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

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

/* Tags animate in sequence */
.tags .tag {
    opacity: 0;
    animation: fadeInUp 0.5s ease-out backwards;
}

.tags .tag:nth-child(1) { animation-delay: 0.5s; }
.tags .tag:nth-child(2) { animation-delay: 0.6s; }
.tags .tag:nth-child(3) { animation-delay: 0.7s; }
.tags .tag:nth-child(4) { animation-delay: 0.8s; }

/* Scroll-triggered animation base classes */
.scroll-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
}

.scroll-animate.animate-in {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Team cards - slide from TOP (opposite of stats/services) */
.team-card.scroll-animate {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

.team-card.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stat cards - slide from BOTTOM */
.stat-card.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

.stat-card.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Service cards - slide from BOTTOM */
.service-card.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

.service-card.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Feature cards - fade in */
.feature-card.scroll-animate {
    transform: translateY(30px);
}

/* Platform items - slide from left */
.platform-item.scroll-animate {
    transform: translateX(-30px);
}

/* Promo content - scale fade */
.promo-content.scroll-animate {
    transform: scale(0.95) translateY(20px);
}

/* Platform links - slide from RIGHT */
.platform-links.scroll-animate {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.platform-links.scroll-animate.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Tags - pop up */
.tags .tag.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.tags .tag.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.tags .tag:nth-child(1) { transition-delay: 0.1s; }
.tags .tag:nth-child(2) { transition-delay: 0.2s; }
.tags .tag:nth-child(3) { transition-delay: 0.3s; }
.tags .tag:nth-child(4) { transition-delay: 0.4s; }

/* Milestones - fade in */
.milestone.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
}

/* Awards - fade in */
.award-tag.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
}

/* Mobile Theme Toggle - Below Burger Menu */
#mobile-theme-toggle {
    display: none;
    position: fixed;
    top: 70px;
    left: 16px;
    z-index: 10000;
    background: var(--primary-white);
    border: 2px solid var(--accent-black);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
}

#mobile-theme-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    #mobile-theme-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Dark mode mobile theme toggle */
[data-theme="dark"] #mobile-theme-toggle {
    background: #1E293B;
    border: 2px solid rgba(255, 107, 157, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] #mobile-theme-toggle svg {
    stroke: #F8FAFC;
}

[data-theme="dark"] #mobile-theme-toggle:hover {
    background: #0F172A;
    border-color: #FF6B9D;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

/* R&D Program Card */
.rnd-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(245, 158, 11, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.rnd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #F59E0B, #FF6B9D);
}

.rnd-content {
    position: relative;
    z-index: 1;
}

.rnd-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rnd-badge span {
    font-size: 1.2rem;
}

.rnd-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

[data-theme="dark"] .rnd-card h3 {
    color: #F8FAFC;
}

.rnd-card p {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .rnd-card p {
    color: #94A3B8;
}

.btn-rnd {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-rnd:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-rnd svg {
    stroke: currentColor;
}

/* Dark mode R&D card */
[data-theme="dark"] .rnd-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(245, 158, 11, 0.1));
    border-color: rgba(16, 185, 129, 0.2);
}

/* Glow Card Animation Keyframes */
@keyframes glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255,0,110,0.15), 0 0 10px rgba(131,56,236,0.08), inset 0 0 5px rgba(255,0,110,0.05); 
        border-color: rgba(255,0,110,0.3); 
    }
    50% { 
        box-shadow: 0 0 8px rgba(255,0,110,0.25), 0 0 15px rgba(131,56,236,0.12), inset 0 0 8px rgba(255,0,110,0.08); 
        border-color: rgba(255,0,110,0.4); 
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; filter: blur(8px); }
    50% { background-position: 100% 50%; filter: blur(10px); }
    100% { background-position: 0% 50%; filter: blur(8px); }
}

/* Dark mode support for glow card */
[data-theme="dark"] .glow-card h4 {
    color: #F8FAFC;
}

[data-theme="dark"] .glow-card p {
    color: #94A3B8;
}

/* Mobile responsive for glow card */
@media (max-width: 768px) {
    .glow-card {
        padding: 1.25rem !important;
        margin-top: 1rem !important;
    }
    
    .glow-card h4 {
        font-size: 0.9375rem !important;
    }
}

/* Mobile table rotation - rotate 90 degrees */
@media (max-width: 768px) {
    table {
        transform: rotate(90deg);
        transform-origin: center center;
        width: max-content !important;
        min-width: auto !important;
        margin: 20px auto;
    }
    
    .table-responsive {
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .table-container,
    .data-table,
    table[class*="table"] {
        transform: rotate(90deg);
        transform-origin: center center;
        width: max-content !important;
    }
}

/* Night Mode - Better Contrast for Stats */
[data-theme="dark"] .stat-box {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .stat-box-value {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .stat-box-label {
    color: #f0f0f0 !important;
    font-weight: 600;
}

[data-theme="dark"] .stat-box-desc {
    color: #d0d0e0 !important;
    opacity: 0.9;
}

[data-theme="dark"] .stat-box:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 107, 157, 0.4) !important;
}

/* Day Mode - Stats Contrast */
[data-theme="light"] .stat-box {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .stat-box-value {
    color: #1a1a1a !important;
}

[data-theme="light"] .stat-box-label {
    color: #3a3a3a !important;
    font-weight: 600;
}

[data-theme="light"] .stat-box-desc {
    color: #5a5a5a !important;
}

[data-theme="light"] .stat-box:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 107, 157, 0.4) !important;
}

/* Stats Section - Complete Contrast Fix */

/* Day Mode - High Contrast */
[data-theme="light"] .stat-box-value {
    color: #1a1a1a !important;
    font-weight: 800 !important;
}

[data-theme="light"] .stat-box-label {
    color: #2a2a2a !important;
    font-weight: 700 !important;
}

[data-theme="light"] .stat-box-desc {
    color: #4a4a4a !important;
    opacity: 1 !important;
}

[data-theme="light"] .stat-box-icon {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(78, 205, 196, 0.2)) !important;
}

/* Night Mode - Enhanced Contrast */
[data-theme="dark"] .stat-box-value {
    color: #ffffff !important;
    font-weight: 800 !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .stat-box-label {
    color: #ffffff !important;
    font-weight: 700 !important;
}

[data-theme="dark"] .stat-box-desc {
    color: #e0e0e0 !important;
    opacity: 0.95 !important;
}

[data-theme="dark"] .stat-box-icon {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(78, 205, 196, 0.3)) !important;
}

/* Ensure all text is readable */
[data-theme="light"] .stat-box * {
    color: inherit !important;
}

[data-theme="dark"] .stat-box * {
    color: inherit !important;
}

/* NIGHT MODE - FORCE WHITE TEXT EVERYWHERE */
[data-theme="dark"] body {
    color: #ffffff !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff !important;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] div,
[data-theme="dark"] label,
[data-theme="dark"] a {
    color: #ffffff !important;
}

[data-theme="dark"] .stat-box,
[data-theme="dark"] .stat-box *,
[data-theme="dark"] .stat-box-value,
[data-theme="dark"] .stat-box-label,
[data-theme="dark"] .stat-box-desc,
[data-theme="dark"] .stat-box-icon {
    color: #ffffff !important;
}

[data-theme="dark"] .section-header h2,
[data-theme="dark"] .section-header p,
[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .hero-content p {
    color: #ffffff !important;
}

/* Mobile specific */
@media (max-width: 768px) {
    [data-theme="dark"] body,
    [data-theme="dark"] p,
    [data-theme="dark"] span,
    [data-theme="dark"] div,
    [data-theme="dark"] h1,
    [data-theme="dark"] h2,
    [data-theme="dark"] h3,
    [data-theme="dark"] .stat-box * {
        color: #ffffff !important;
    }
}

/* Ecosystem Cards - Clickable Links */
a.feature-card {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

a.feature-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Day mode hover */
[data-theme="light"] a.feature-card:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2) !important;
}

/* Night mode hover */
[data-theme="dark"] a.feature-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4) !important;
}

/* Clickable indicator - Icon glow on hover */
a.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    a.feature-card:active {
        transform: scale(0.98) !important;
    }
}

/* ECOSYSTEM CARDS - FIX CLICKS */
#ecosystem-scroll .scrolling-track {
    pointer-events: auto !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y pan-x !important;
}

#ecosystem-scroll .scroll-content {
    pointer-events: auto !important;
}

#ecosystem-scroll a.feature-card {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
    display: block !important;
}

#ecosystem-scroll a.feature-card * {
    pointer-events: none !important;
}

/* Ensure links work on mobile */
@media (max-width: 768px) {
    #ecosystem-scroll .scrolling-track {
        touch-action: pan-y !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    #ecosystem-scroll a.feature-card {
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3) !important;
    }
}

/* Pause animation on hover for better clickability */
#ecosystem-scroll .scrolling-track:hover {
    animation-play-state: paused !important;
}

#ecosystem-scroll .scroll-content:hover {
    animation-play-state: paused !important;
}

/* ECOSYSTEM CARDS - ULTIMATE FIX */
#ecosystem-scroll {
    pointer-events: auto !important;
    z-index: 1 !important;
}

#ecosystem-scroll .container {
    pointer-events: auto !important;
}

#ecosystem-scroll .scrolling-track {
    pointer-events: auto !important;
    cursor: pointer !important;
}

#ecosystem-scroll .scroll-content {
    pointer-events: auto !important;
    cursor: pointer !important;
}

#ecosystem-scroll a.feature-card,
#ecosystem-scroll a.feature-card * {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* Force remove any click blockers */
#ecosystem-scroll * {
    pointer-events: auto !important;
}

/* Ensure SVG doesn't block clicks */
#ecosystem-scroll a.feature-card svg,
#ecosystem-scroll a.feature-card svg * {
    pointer-events: none !important;
}

/* Critical: Make sure link is on top */
#ecosystem-scroll a.feature-card {
    display: block !important;
    position: relative !important;
    isolation: isolate !important;
}

/* Remove any potential click-through issues */
@supports (-webkit-touch-callout: none) {
    #ecosystem-scroll a.feature-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* UNDO - Remove clickable card styles (kept for reference, not active) */
/* 
a.feature-card {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
*/

/* TEAM SECTION - Corporate Icons Contrast Fix */

/* Day Mode - Dark Icons */
[data-theme="light"] .avatar-placeholder svg {
    stroke: #1a1a1a !important;
    color: #1a1a1a !important;
}

/* Night Mode - White Icons */
[data-theme="dark"] .avatar-placeholder svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

/* Avatar Placeholder with SVG */
.team-avatar .avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    overflow: hidden;
}

.team-avatar .avatar-placeholder svg {
    width: 56px;
    height: 56px;
    stroke-width: 3;
    transition: all 0.3s ease;
}

/* Hover effect */
.team-card:hover .avatar-placeholder svg {
    transform: scale(1.1);
    stroke-width: 3.5;
}

/* Day mode hover */
[data-theme="light"] .team-card:hover .avatar-placeholder {
    background: rgba(102, 126, 234, 0.15) !important;
}

/* Night mode hover */
[data-theme="dark"] .team-card:hover .avatar-placeholder {
    background: rgba(255, 255, 255, 0.15) !important;
}
