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

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

main {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
}

.card {
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 2.5rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 400;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.links a:hover {
    border-color: #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.links a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
