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

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

main {
    width: 100%;
    max-width: 640px;
}

.container {
    padding: 3rem 0;
}

header {
    margin-bottom: 4rem;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    margin-left: 4px;
    display: inline-block;
    position: relative;
    top: -0.6em;
}

.hero {
    margin-bottom: 3rem;
}

.tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    font-style: italic;
}

.content {
    margin-bottom: 3rem;
}

.content p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.content p:last-child {
    margin-bottom: 0;
}

.team {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.team p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
}

footer {
    padding-top: 2rem;
}

.contact {
    font-size: 0.95rem;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.contact:hover {
    color: #555;
}

.email-icon {
    font-size: 1rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.02em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        padding: 1.5rem;
    }

    .container {
        padding: 2rem 0;
    }

    header {
        margin-bottom: 3rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .content p,
    .team p {
        font-size: 0.95rem;
    }

    br {
        display: none;
    }
}

/* Subtle animation on load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

header {
    animation-delay: 0.1s;
}

.hero {
    animation-delay: 0.2s;
}

.content {
    animation-delay: 0.3s;
}

.team {
    animation-delay: 0.4s;
}

footer {
    animation-delay: 0.5s;
}
