:root {
    --staff-bg: #f5f5f7;
    --staff-surface: #ffffff;
    --staff-ink: #0f172a;
    --staff-muted: #64748b;
    --staff-border: #dfe5f1;
    --staff-grad: linear-gradient(90deg, #f45406 0%, #e649b0 50%, #048ff8 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Figtree", sans-serif;
    background: var(--staff-bg);
    color: var(--staff-ink);
    line-height: 1.55;
}

.staff-container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.staff-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(245, 245, 247, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(223, 229, 241, 0.9);
}

.staff-topbar-row {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.staff-brand {
    margin: 0;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    background-image: url(../applegradient.jpg);
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.staff-back-link {
    text-decoration: none;
    color: var(--staff-ink);
    border: 1px solid var(--staff-border);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    background: #fff;
}

.staff-page {
    padding: 36px 0 72px;
}

.staff-hero {
    border-radius: 28px;
    padding: clamp(30px, 5vw, 52px);
    background: radial-gradient(140% 165% at 10% 0%, #1f2f4f 0%, #091327 42%, #040b18 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.staff-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 80% -10%, rgba(244, 84, 6, 0.28), transparent 65%),
        radial-gradient(55% 70% at 35% 0%, rgba(4, 143, 248, 0.24), transparent 70%);
    pointer-events: none;
}

.staff-hero > * {
    position: relative;
    z-index: 1;
}

.staff-eyebrow {
    display: inline-flex;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.staff-hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.staff-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(241, 245, 255, 0.88);
    font-size: clamp(16px, 2vw, 20px);
}

.staff-meta {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-meta div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
}

.staff-meta strong {
    display: block;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.staff-meta span {
    color: rgba(241, 245, 255, 0.78);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    font-weight: 700;
}

.staff-section {
    margin-top: 24px;
    background: var(--staff-surface);
    border-radius: 24px;
    border: 1px solid var(--staff-border);
    padding: clamp(20px, 3vw, 32px);
}

.staff-section h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 46px);
    letter-spacing: -1.2px;
    line-height: 1.04;
}

.staff-section-sub {
    margin: 10px 0 0;
    color: var(--staff-muted);
    font-size: 17px;
}

.staff-services-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.staff-service-card {
    border: 1px solid var(--staff-border);
    border-radius: 18px;
    padding: 18px 16px;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.staff-service-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    letter-spacing: -0.4px;
}

.staff-service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.staff-service-card li {
    color: #334155;
    font-size: 15px;
    padding-left: 22px;
    position: relative;
}

.staff-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--staff-grad);
}

.staff-highlight-grid {
    margin-top: 18px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-highlight {
    background: #f8fafc;
    border: 1px solid #e6ebf5;
    border-radius: 16px;
    padding: 14px;
}

.staff-highlight strong {
    display: block;
    color: #0f172a;
    letter-spacing: -0.4px;
    font-size: 16px;
}

.staff-highlight p {
    margin: 6px 0 0;
    color: #5f6d83;
    font-size: 14px;
}

.staff-faq {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.staff-faq details {
    border: 1px solid var(--staff-border);
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
}

.staff-faq summary {
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.staff-faq summary::-webkit-details-marker {
    display: none;
}

.staff-faq p {
    margin: 8px 0 2px;
    color: #55647b;
    font-size: 14px;
}

.staff-role-links {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.staff-role-link {
    display: block;
    text-decoration: none;
    color: var(--staff-ink);
    border: 1px solid var(--staff-border);
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.staff-role-link span {
    display: block;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 11px;
    font-weight: 700;
}

.staff-role-link strong {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    letter-spacing: -0.3px;
    font-size: 17px;
}

.staff-role-link p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
}

.staff-cta {
    margin-top: 24px;
    border-radius: 22px;
    border: 1px solid #0d1b34;
    background: radial-gradient(95% 140% at 18% -10%, #2a3d61 0%, #0a1326 48%, #060d1d 100%);
    color: #fff;
    padding: clamp(20px, 3vw, 30px);
}

.staff-cta h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 44px);
    letter-spacing: -1px;
}

.staff-cta p {
    margin: 8px 0 0;
    color: #b7c4dd;
    font-size: 16px;
}

.staff-cta-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.staff-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.staff-btn-primary {
    color: #fff;
    background: var(--staff-grad);
    border: 0;
}

.staff-btn-secondary {
    color: #dce6fa;
    border: 1px solid rgba(191, 205, 233, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
    .staff-services-grid,
    .staff-highlight-grid,
    .staff-role-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .staff-meta {
        grid-template-columns: 1fr;
    }

    .staff-services-grid,
    .staff-highlight-grid,
    .staff-role-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .staff-container {
        width: min(1160px, calc(100% - 24px));
    }

    .staff-topbar-row {
        min-height: 66px;
    }

    .staff-back-link {
        padding: 8px 11px;
        font-size: 11px;
    }

    .staff-page {
        padding: 24px 0 56px;
    }

    .staff-hero {
        border-radius: 22px;
    }

    .staff-section,
    .staff-cta {
        border-radius: 18px;
    }
}
