* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #0B0B0B;
    color: #E8E5DF;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 520px;
    padding: 24px;
}

.card {
    background: #151515;
    border: 1px solid #242424;
    padding: 56px 48px;
}

h1 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.22em;
}

.subtitle {
    margin-top: 16px;
    color: #9A9A9A;
    font-weight: 300;
}

.spacer {
    height: 72px;
}

.name {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.title {
    color: #9A9A9A;
    margin-bottom: 40px;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #D8D5CF;
}

.actions {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.actions a,
footer a {
    text-decoration: none;
    color: #E8E5DF;
    transition: opacity 0.15s ease;
}

.actions a:hover,
footer a:hover {
    opacity: 0.7;
}

footer {
    margin-top: 24px;
    text-align: center;
}

footer a {
    color: #777;
    font-size: 0.9rem;
}