:root {
    --bg-color: #050508;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-1: #3b82f6; /* Bright Blue */
    --accent-2: #8b5cf6; /* Vibrant Purple */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    animation: float 25s infinite ease-in-out alternate;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-1) 0%, transparent 70%);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    animation-delay: -7s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Header */
.header {
    padding: 3rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 85px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.03);
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 100%);
    pointer-events: none;
}

.tagline-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.mission-statement {
    font-size: 2.75rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: #f3f4f6;
}

.mission-statement strong {
    font-weight: 600;
    color: #fff;
}

.tagline-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #9ca3af, #f3f4f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Promise Section */
.promise {
    margin-top: 5rem;
    margin-bottom: 8rem;
    display: flex;
    justify-content: center;
}

.promise-content {
    max-width: 800px;
    text-align: center;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, rgba(0,0,0,0) 100%);
    padding: 3rem;
}

.outline-card {
    border-top: 1px solid rgba(139, 92, 246, 0.4);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    color: #c4b5fd;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.promise h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.promise p {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.4);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 48px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer p {
    color: #6b7280;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Animations */
.slide-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-down.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.fade-in.is-visible {
    opacity: 1;
}

.stagger-1 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    .mission-statement {
        font-size: 1.875rem;
    }
    
    .logo {
        height: 60px;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    .hero, .promise {
        margin-top: 3rem;
    }
}
