:root {
    --accent: #2563ff;
    --text: #e2e8f0;
    --text-secondary: #94a3b8;
    --bg: #020617;
    --card-bg: rgba(15, 23, 42, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

/* Main Page Container */
.about-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 5% 80px;
    min-height: 100vh;
}

/* Hero Section - Matches Homepage Style */
.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #fff, #bcd7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.about-tagline .highlight {
    color: #60a5fa;
    font-weight: 600;
}

/* Content Cards */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(10px);
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-card strong {
    color: var(--text);
}

/* Vision Section */
.about-vision {
    text-align: center;
    padding: 48px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.about-vision h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.vision-slogan {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #2563ff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.vision-text .highlight {
    color: #60a5fa;
    font-weight: 600;
}

.vision-brand {
    font-size: 1rem;
    color: var(--text-secondary);
}

.vision-brand .brand {
    color: #60a5fa;
    font-weight: 700;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero {
    animation: fadeUp 0.6s ease-out;
}

.about-content {
    animation: fadeUp 0.6s ease-out 0.1s both;
}

.about-vision {
    animation: fadeUp 0.6s ease-out 0.2s both;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .about-page {
        padding: 120px 5% 60px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .about-hero {
        margin-bottom: 48px;
    }

    .about-card {
        padding: 24px;
    }

    .about-content {
        margin-bottom: 48px;
    }

    .about-vision {
        padding: 40px 20px;
    }

    .vision-slogan {
        font-size: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .about-page {
        padding: 110px 4% 48px;
    }

    .about-title {
        font-size: 1.75rem;
    }

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

    .about-hero {
        margin-bottom: 36px;
    }

    .about-content {
        gap: 16px;
        margin-bottom: 36px;
    }

    .about-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .badge {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    .about-intro {
        font-size: 1rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .about-vision {
        padding: 32px 16px;
        border-radius: 12px;
    }

    .about-vision h2 {
        font-size: 1.25rem;
    }

    .vision-slogan {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

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

    .vision-brand {
        font-size: 0.95rem;
    }
}