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

:root {
    /* New Color Palette - Deep Ocean & Electric */
    --primary-navy: #0F172A;
    --primary-electric: #06B6D4;
    --primary-coral: #F97316;
    --primary-emerald: #059669;
    --primary-violet: #7C3AED;
    --primary-rose: #E11D48;
    
    /* Neutrals */
    --gray-25: #FCFCFD;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Spacing System - 4px base */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-25);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-4) 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    width: fit-content;
    transition: transform 0.2s ease;
}

.logo-container:hover {
    transform: translateY(-1px);
}

.logo-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.2));
}

.brand-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-electric) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: var(--space-24) 0;
}

.main-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-12);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-electric) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section {
    margin-bottom: var(--space-12);
    padding: var(--space-8);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-electric), var(--primary-violet));
    border-radius: 2px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.placeholder-notice {
    padding: var(--space-12);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--gray-500);
    font-style: italic;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.placeholder-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-20) 0 var(--space-6);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer-logo .brand-name {
    color: white;
    font-size: 24px;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-6);
    text-align: center;
    color: var(--gray-500);
}

/* About Page Specific Styles */
.about-hero {
    text-align: center;
    margin-bottom: var(--space-20);
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--gray-25) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero h1 {
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.team-section {
    margin-top: var(--space-12);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-12);
    margin-top: var(--space-10);
}

.team-member {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.team-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
    letter-spacing: -0.01em;
}

.team-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-electric);
    margin-bottom: var(--space-4);
}

.team-info p:last-child {
    color: var(--gray-600);
    line-height: 1.7;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.innovation-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.innovation-icon {
    margin-bottom: var(--space-6);
    display: flex;
    justify-content: center;
}

.innovation-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.01em;
}

.innovation-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.stat-card {
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--primary-electric) 0%, var(--primary-violet) 100%);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: var(--space-2);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

.last-updated {
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: var(--space-12);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .main-content h1 {
        font-size: 32px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section p {
        font-size: 16px;
    }
    
    .content-section {
        padding: var(--space-6);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .team-photo {
        align-self: center;
    }
    
    .innovation-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}