:root {
    /* Brand Book Colors */
    --color-steelblue: #0074FF;
    /* Primary Action */
    --color-royalblue: #0046AE;
    /* Deep Blue */
    --color-gold: #FFD200;
    /* Accents */
    --color-crimson: #E81A38;
    /* Highlights */

    /* Semantic Mappings */
    --primary-blue: var(--color-steelblue);
    --secondary-blue: var(--color-royalblue);
    --accent-yellow: var(--color-gold);
    --accent-red: var(--color-crimson);

    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;

    /* Typography */
    --font-headline: 'Exo 2', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --spacing-unit: 1rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header */
.site-header {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 2rem 0 4rem;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
}

.details {
    margin-bottom: 3rem;
    background: var(--bg-off-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-yellow);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.closing {
    text-align: center;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-off-white);
    padding: 4rem 0;
    border-top: 1px solid #eee;
}

.section-title {
    font-family: var(--font-headline);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.founder-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--color-steelblue);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.founder-card h3 {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.founder-card p {
    color: #666;
    font-size: 0.9rem;
}

.founder-card a {
    color: var(--color-steelblue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: white;
    color: var(--secondary-blue);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Loading Dots Animation */
.loading-dots span {
    animation: dots 1.4s infinite both;
    margin-left: 2px;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
    color: var(--accent-blue);
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--accent-yellow);
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
    color: var(--accent-red);
}

@keyframes dots {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        width: 92%;
    }

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