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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a2456 50%, #2d4a8a 100%);
    color: white;
    min-height: 100vh;
}

.navbar {
    padding: 2rem 4rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 2rem 4rem;
}

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

.tagline {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 0.3rem;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.founder-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-detail {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-detail a {
    color: #7b7fff;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #9b9fff;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .hero-section {
        padding: 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .hero-section {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .founder-name,
    .contact-detail {
        font-size: 0.9rem;
    }
}
