/* UN4 - Global Styles */
/* Root Variables */
:root {
    /* Light Mode (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    --primary-gold: #997226;
    --primary-color: var(--primary-gold);
    --gold-light: #e6b347;
    --gold-dark: #b38829;
    --accent-primary: #997226;
    --accent-secondary: #e6b347;
    --accent-tertiary: #b38829;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(0, 0, 0, 0.5);
    --text-primary: #0a0a0a;
    --text-secondary: rgba(0, 0, 0, 0.75);
    --text-muted: rgba(0, 0, 0, 0.5);
    --success: #4caf50;
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(204, 153, 51, 0.2);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #141414;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --success: #66bb6a;
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(204, 153, 51, 0.3);
    --primary-gold: #cc9933;
    --accent-primary: #cc9933;
    --accent-secondary: #e6b347;
    --accent-tertiary: #b38829;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s var(--transition), color 0.3s var(--transition);
}

/* Three.js Canvas */
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#three-container canvas {
    display: block;
}

/* Ambient Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(204, 153, 51, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(204, 153, 51, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(204, 153, 51, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (min-width: 769px) {
    .container {
        padding: 0 24px;
    }
}

/* Glass Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(204, 153, 51, 0.05), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 16px;
}

.glass:hover::before {
    opacity: 1;
}

/* Glass Button */
.glass-button {
    background: linear-gradient(135deg, rgba(204, 153, 51, 0.15) 0%, rgba(204, 153, 51, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 153, 51, 0.3);
    border-radius: 9999px;
    transition: all 0.3s var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.glass-button:hover {
    background: linear-gradient(135deg, rgba(204, 153, 51, 0.25) 0%, rgba(204, 153, 51, 0.15) 100%);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
}

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

.nav-brand a {
    text-decoration: none;
}

/* Logo Text Animation */
.logo-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
}

.logo-u, .logo-n, .logo-4 {
    display: inline-block;
    transition: all 0.3s var(--transition);
}

.logo-u {
    color: var(--primary-gold);
}

.logo-n {
    color: var(--text-primary);
}

.logo-4 {
    color: var(--primary-gold);
    font-size: 28px;
    margin-left: 2px;
}

.nav-brand:hover .logo-u {
    transform: translateY(-3px) rotate(-5deg);
}

.nav-brand:hover .logo-n {
    transform: translateY(3px);
}

.nav-brand:hover .logo-4 {
    transform: translateY(-3px) rotate(5deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--text-primary);
}

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

/* Theme Toggle */
.theme-toggle, .theme-toggle-mobile {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover, .theme-toggle-mobile:hover {
    background: var(--glass-bg);
}

.theme-icon {
    color: var(--text-primary);
    transition: transform 0.3s var(--transition);
}

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

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

[data-theme="light"] .sun-icon {
    display: none;
}

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--transition);
    border-radius: 2px;
}

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

    .nav-toggle {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    z-index: 1001;
    transition: right 0.3s var(--transition);
    padding: 80px 20px 20px;
}

.mobile-menu.active {
    right: 0;
}

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

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s var(--transition);
}

.mobile-link:hover {
    background: var(--glass-bg);
    color: var(--primary-gold);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    position: relative;
}

.title-line {
    display: block;
    font-size: 0.5em;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 50%, var(--primary-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch-skew 5s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 50%, var(--primary-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    animation: glitch-effect 3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-2px, -2px);
    opacity: 0.8;
}

.glitch::after {
    animation: glitch-effect 2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
    opacity: 0.8;
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(0.5deg); }
    20% { transform: skew(-0.5deg); }
    30% { transform: skew(0deg); }
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin: 0 auto 40px;
    line-height: 1.6;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    color: #000000;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
}

[data-theme="light"] .btn-primary {
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 153, 51, 0.4);
}

.btn-secondary {
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.btn-icon {
    transition: transform 0.3s var(--transition);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    padding: 20px 40px;
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-gold);
    display: inline;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-gold);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce-scroll 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-secondary);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ecosystem Grid */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.eco-card {
    padding: 32px;
    transition: all 0.3s var(--transition);
    display: flex;
    flex-direction: column;
}

.eco-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.eco-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.eco-icon svg {
    width: 100%;
    height: 100%;
}

.eco-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.eco-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.eco-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.tag {
    padding: 6px 12px;
    background: rgba(204, 153, 51, 0.1);
    border: 1px solid rgba(204, 153, 51, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-gold);
}

.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s var(--transition);
}

.eco-link:hover {
    gap: 12px;
}

/* Services Showcase */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
    transition: all 0.3s var(--transition);
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
}

.service-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
}

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

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 20px;
    }
}

/* Technology Section */
.technology {
    background: var(--bg-secondary);
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.tech-item {
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.tech-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

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

.tech-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tech-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Code Showcase */
.code-showcase {
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--glass-border);
}

.code-dots {
    display: flex;
    gap: 8px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27ca40; }

.code-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--text-muted);
}

.code-content {
    padding: 24px;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.code-content code {
    color: var(--text-secondary);
}

.code-keyword { color: #c678dd; }
.code-type { color: #e5c07b; }
.code-property { color: #e06c75; }
.code-string { color: #98c379; }
.code-variable { color: #61afef; }
.code-method { color: #61afef; }
.code-comment { color: var(--text-muted); font-style: italic; }

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.about-text {
    padding: 40px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.value-item {
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

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

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
}

.cta-content {
    text-align: center;
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.footer-logo {
    font-size: 40px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s var(--transition);
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.powered-by a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s var(--transition);
}

.powered-by a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* AOS-like animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s var(--transition);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        padding: 16px 24px;
        min-width: auto;
        width: 100%;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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