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

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #e5e7eb 0%, #111827 65%);
    color: #f9fafb;
  	background-size: cover;
}

.page-wrapper {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

svg#logo {
    fill: #92b4ff;
}

.card {
    background: rgba(17, 24, 39, 0.95);
    border-radius: 20px;
    padding: 32px 40px;
    max-width: 520px;
    width: 100%;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(55, 65, 81, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    border: 1px solid rgba(156, 163, 175, 0.5);
    background: radial-gradient(circle at 30% 0%, #1f2937 0%, #111827 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), transparent);
    mix-blend-mode: screen;
}

.avatar-initials {
    position: relative;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
    color: #e5e7eb;
}

.text-block {
    text-align: center;
}

.name {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 16px;
}

.tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 10px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
        transform 0.16s ease-out,
        box-shadow 0.16s ease-out,
        background-color 0.16s ease-out,
        color 0.16s ease-out,
        border-color 0.16s ease-out;
}

.btn.primary {
    background-color: #2563eb;
    color: #f9fafb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn.primary:hover,
.btn.primary:focus-visible {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.5);
}

.btn.secondary {
    background-color: transparent;
    color: #d1d5db;
    border-color: rgba(156, 163, 175, 0.9);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    background-color: rgba(31, 41, 55, 0.9);
    color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.8);
}

.btn:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .card {
        padding: 24px;
        gap: 20px;
    }

    .name {
        font-size: 22px;
    }

    .title {
        font-size: 13px;
    }

    .tagline {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }
}
