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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #666;
    font-weight: 300;
    margin-bottom: 3rem;
}

.hero a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.hero a:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

footer p {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
}