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

:root {
    --bg: #eef2f6;
    --surface: #ffffff;
    --border: #dde5ec;
    --navy: #215b7c;
    --navy-dark: #193f57;
    --blue: #458aa7;
    --text-body: #3a5f74;
    --text-muted: #7a95a5;
    --accent-subtle: rgba(33, 91, 124, 0.08);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

/* ---- Header ---- */
.header {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 680px;
    margin: 0 auto;
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

/* ---- Main ---- */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 2rem 4rem;
}

.main-inner {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 0.7s ease-out;
}

/* ---- Label ---- */
.label {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(33, 91, 124, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ---- Title ---- */
.title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

/* ---- Description ---- */
.description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 580px;
}

/* ---- Divider ---- */
.divider {
    width: 36px;
    height: 1px;
    background: var(--border);
    margin: 2.75rem 0;
}

/* ---- Contact prompt ---- */
.contact-prompt {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 1rem;
}

/* ---- CTA button ---- */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1.25rem;
}

.cta:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(33, 91, 124, 0.25);
}

/* ---- Social links ---- */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    color: var(--navy);
    border-color: var(--blue);
}

.social-link.linkedin:hover {
    border-color: #0077b5;
    color: #0077b5;
}

/* ---- Footer ---- */
.footer {
    text-align: center;
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid var(--border);
}

/* ---- Animation ---- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .header {
        padding: 1rem 1.25rem;
    }

    .brand-logo {
        height: 28px;
    }

    .main {
        padding: 3.5rem 1.25rem 3rem;
        align-items: flex-start;
    }

    .title {
        font-size: 2.4rem;
        letter-spacing: -1.5px;
    }

    .title br {
        display: none;
    }

    .description {
        font-size: 0.97rem;
    }

    .cta {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
    }
}
