.talent-page {
    background: var(--landing-canvas);
    color: var(--landing-ink);
    text-align: left;
}

.talent-hero {
    border-bottom: 1px solid var(--landing-border);
}

.talent-hero-grid,
.talent-category-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.talent-category-hero-grid {
    margin-top: 36px;
}

.talent-market-note {
    padding: 8px 0 8px 32px;
    border-left: 1px solid var(--landing-border);
}

.talent-market-note .marketing-eyebrow {
    margin-bottom: 14px;
}

.talent-market-note h2 {
    margin: 0;
    color: var(--landing-ink);
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.talent-market-note > p:last-child {
    margin: 18px 0 0;
    color: var(--landing-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.talent-back-link {
    color: var(--landing-muted);
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
}

.talent-back-link::before {
    content: "←";
    margin-right: 8px;
    color: var(--landing-green-dark);
}

.talent-back-link:hover {
    color: var(--landing-ink);
}

.talent-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.talent-category-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    background: var(--landing-surface);
    color: var(--landing-ink);
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease;
}

.talent-category-card:hover {
    border-color: #aebac7;
    color: var(--landing-ink);
    transform: translateY(-1px);
}

.talent-category-card h3 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 1.18rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.talent-category-card p {
    margin: 14px 0 22px;
    color: var(--landing-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.talent-availability {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--landing-border);
    color: var(--landing-muted);
    font-size: 0.78rem;
    font-weight: 650;
}

.talent-card-link {
    margin-top: 12px;
    color: var(--landing-green-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.talent-card-link span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 160ms ease;
}

.talent-category-card:hover .talent-card-link span {
    transform: translateX(2px);
}

.talent-empty {
    max-width: 720px;
    margin-top: 48px;
    padding: 28px;
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    background: var(--landing-surface);
}

.talent-empty h3,
.talent-empty p {
    margin: 0;
}

.talent-empty p {
    margin-top: 12px;
    color: var(--landing-muted);
    line-height: 1.65;
}

.talent-process-section {
    background: var(--landing-surface);
}

.talent-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin: 48px 0 0;
    padding: 0;
    list-style: none;
}

.talent-process-grid li {
    padding-top: 22px;
    border-top: 1px solid var(--landing-border);
}

.talent-process-grid li > span {
    color: var(--landing-green-dark);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.talent-process-grid h3 {
    margin: 18px 0 0;
    color: var(--landing-ink);
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.talent-process-grid p {
    margin: 10px 0 0;
    color: var(--landing-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.talent-role-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 32px;
    margin: 48px 0 0;
    padding: 0;
    border-top: 1px solid var(--landing-border);
    list-style: none;
}

.talent-role-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--landing-border);
    color: #334155;
    font-weight: 650;
}

.talent-related-section {
    background: #eef1ed;
}

@media (max-width: 900px) {
    .talent-hero-grid,
    .talent-category-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .talent-market-note {
        max-width: 680px;
    }

    .talent-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .talent-market-note {
        padding: 24px 0 0;
        border-top: 1px solid var(--landing-border);
        border-left: 0;
    }

    .talent-category-grid,
    .talent-process-grid,
    .talent-role-list {
        grid-template-columns: 1fr;
    }

    .talent-category-card {
        min-height: 0;
    }
}
