body {
    font-family: 'Manrope', sans-serif;
    background:
            radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 35%),
            linear-gradient(135deg, #0f1115 0%, #161a22 45%, #1b2230 100%);
    margin: 0;
}

.hero-card {
    position: relative;
    padding: 5rem 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    animation: fadeInUp 1s ease-out;
}

.accent-line {
    width: 72px;
    height: 4px;
    margin: 0 auto 2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #c7a86b, #f0dfb3);
    box-shadow: 0 0 20px rgba(199, 168, 107, 0.35);
}

.eyebrow {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.summary {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.linkedin-btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #f8f8f6;
    background: linear-gradient(180deg, #2c3442 0%, #202632 100%);
    border: 1px solid rgba(240, 223, 179, 0.24);
    box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.linkedin-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 223, 179, 0.5);
    box-shadow:
            0 16px 36px rgba(0, 0, 0, 0.42),
            0 0 0 1px rgba(240, 223, 179, 0.08);
}

.linkedin-btn:active {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
