/* ==========================================================================
   Portfolio Boss - shared site styling.
   Mirrors the portfolioboss.com header and page style (Inter, glass header
   bar, brand lockup, blue gradient pill CTA).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --pb-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --pb-ink: #071426;
    --pb-ink-soft: #1c2e46;
    --pb-ink-muted: #637287;
    --pb-accent: #2f76d4;
    --pb-accent-dark: #184f9b;
    --pb-accent-light: #6091d5;
    --pb-surface: #ffffff;
    --pb-ice: #f4f9ff;
    --pb-soft: #eaf4ff;
    --pb-line: rgba(24, 51, 88, .13);
    --pb-radius: 30px;
    --pb-radius-sm: 20px;
    --pb-shadow: 0 28px 80px rgba(7, 20, 38, .14);
    --pb-shadow-soft: 0 16px 42px rgba(7, 20, 38, .09);
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: var(--pb-font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--pb-ink-soft);
    background: radial-gradient(circle at 8% -8%, rgba(96, 145, 213, .27), transparent 32rem), radial-gradient(circle at 98% 5%, rgba(47, 118, 212, .18), transparent 38rem), linear-gradient(180deg, #fbfdff 0%, #f4f9ff 47%, #fff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══════ HEADER BAR ═══════ */

.pb-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 253, 255, .86);
    border-bottom: 1px solid rgba(24, 51, 88, .10);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
}

.pb-header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 14px 21px;
}

/* Brand lockup */

.pb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--pb-font);
}

.pb-brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--pb-line);
    box-shadow: 0 10px 26px rgba(7, 20, 38, .07);
}

    .pb-brand-mark img {
        display: block;
        width: 22px;
        height: auto;
    }

.pb-brand-word {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--pb-ink);
}

.pb-brand:hover .pb-brand-word {
    color: var(--pb-ink);
}

/* Navigation */

.pb-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-start;
}

    .pb-nav ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pb-nav li {
        float: none;
        margin: 0 clamp(5px, .55vw, 10px);
        padding: 0;
        flex: 0 0 auto;
        display: block;
        text-align: left;
    }

    .pb-nav a {
        display: block;
        position: relative;
        font-family: var(--pb-font);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: -.01em;
        text-transform: none;
        text-decoration: none;
        color: #314662;
        padding: 8px 0;
        white-space: nowrap;
        transition: color .18s ease;
    }

        .pb-nav a:hover {
            color: #174f91;
        }

        .pb-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            border-radius: 2px;
            background: var(--pb-accent);
            transform: scaleX(0);
            transition: transform .18s ease;
        }

        .pb-nav a:hover::after {
            transform: scaleX(1);
        }

/* Call to action */

.pb-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-family: var(--pb-font);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.015em;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    border: 1px solid transparent;
    background-image: linear-gradient(135deg, #2f76d4, #6091d5);
    box-shadow: 0 20px 42px rgba(47, 118, 212, .30), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

    .pb-cta:hover,
    .pb-cta:focus-visible {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 26px 54px rgba(47, 118, 212, .36), inset 0 1px 0 rgba(255, 255, 255, .25);
    }

    .pb-cta:active {
        transform: translateY(0);
    }

@media (max-width: 900px) {
    .pb-nav {
        display: none;
    }
}

@media (max-width: 540px) {
    .pb-brand-word {
        display: none;
    }

    .pb-cta {
        min-height: 46px;
        padding: 0 16px;
        font-size: 14px;
    }
}

/* ═══════ PAGE SHELL ═══════ */

.pb-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 56px 21px 72px;
}

.pb-page--narrow {
    max-width: 760px;
}

.pb-page--center {
    text-align: center;
}

.pb-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.1;
    color: var(--pb-ink);
}

.pb-subtitle {
    margin: 0 0 28px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--pb-ink-muted);
}

.pb-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pb-accent);
}

.pb-card {
    background: var(--pb-surface);
    border: 1px solid var(--pb-line);
    border-radius: var(--pb-radius);
    box-shadow: var(--pb-shadow-soft);
    padding: 34px;
}

.pb-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--pb-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.015em;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(47, 118, 212, .26);
}

.pb-link {
    color: var(--pb-accent);
    font-weight: 700;
    text-decoration: none;
}

    .pb-link:hover {
        color: var(--pb-accent-dark);
        text-decoration: underline;
    }

/* Buttons outside the header reuse the CTA look */

.pb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--pb-font);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -.015em;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    background-image: linear-gradient(135deg, #2f76d4, #6091d5);
    box-shadow: 0 20px 42px rgba(47, 118, 212, .30), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

    .pb-button:hover,
    .pb-button:focus-visible {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 26px 54px rgba(47, 118, 212, .36), inset 0 1px 0 rgba(255, 255, 255, .25);
    }

    .pb-button:active {
        transform: translateY(0);
    }

.pb-button--ghost {
    color: var(--pb-ink);
    background-image: none;
    background-color: #fff;
    border-color: var(--pb-line);
    box-shadow: 0 10px 28px rgba(7, 20, 38, .06);
}

    .pb-button--ghost:hover {
        color: var(--pb-accent-dark);
    }
