@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --silk: #f9f7f2;
    --paper: #ffffff;
    --navy: #1b263b;
    --slate: #415a77;
    --gold: #c5a059;
    --bronze: #8e6f3e;
    --line: #e7dfd1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--silk);
    color: var(--navy);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 6vw;
    border-bottom: 1px solid rgba(231, 223, 209, .84);
    background: rgba(249, 247, 242, .88);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 6px;
    background: var(--navy);
    color: var(--gold);
    font-family: "Cinzel", serif;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav .button {
    min-height: 38px;
    padding: 0 18px;
    font-size: 12px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, .72fr);
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: 72px 6vw 86px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--bronze);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: "Cinzel", serif;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(48px, 7vw, 92px);
    line-height: .97;
}

h2 {
    max-width: 760px;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
}

.hero-lede {
    max-width: 650px;
    margin: 28px 0 0;
    color: #536272;
    font-size: 19px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    font-weight: 800;
}

.button-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 18px 40px rgba(142, 111, 62, .22);
}

.button-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .64);
}

.hero-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 30px 90px rgba(27, 38, 59, .12);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 800;
}

.panel-header strong {
    color: #16734a;
    text-transform: uppercase;
}

.radar-card {
    display: grid;
    min-height: 330px;
    place-items: center;
    border-radius: 8px;
    background:
        linear-gradient(rgba(27, 38, 59, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 38, 59, .08) 1px, transparent 1px),
        #fbfaf6;
    background-size: 42px 42px;
}

.radar-grid {
    display: grid;
    width: min(100%, 340px);
    gap: 14px;
}

.radar-grid span {
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 12px;
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
}

.radar-grid span::after {
    content: "";
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold) calc(var(--score) * 1%), #ece4d5 0);
}

.score-78 {
    --score: 78;
}

.score-81 {
    --score: 81;
}

.score-84 {
    --score: 84;
}

.score-88 {
    --score: 88;
}

.score-92 {
    --score: 92;
}

.section-band {
    padding: 86px 6vw;
    background: var(--navy);
    color: #fff;
}

.section-heading {
    margin-bottom: 38px;
}

.section-band .eyebrow {
    color: var(--gold);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.pillar-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
}

.pillar-card span {
    color: rgba(255, 255, 255, .25);
    font-size: 34px;
    font-weight: 800;
}

.pillar-card h3 {
    margin: 28px 0 12px;
    color: var(--gold);
    font-size: 20px;
}

.pillar-card p {
    margin: 0;
    color: #cbd1d8;
    line-height: 1.65;
}

.pillar-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.pillar-meta dt {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pillar-meta dd {
    margin: 0;
    color: #cbd1d8;
    font-size: 12px;
    line-height: 1.5;
}

/* Hero method badge */

.hero-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.hero-method span[aria-hidden] {
    font-size: 22px;
}

.hero-method-label {
    margin: 0;
    color: #9aa6b1;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-method-value {
    margin: 2px 0 0;
    font-size: 14px;
    font-weight: 800;
}

/* Shared section heading variants */

.section-heading--center {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading--center .eyebrow {
    text-align: center;
}

.section-lede {
    margin: 14px 0 0;
    color: #536272;
    font-size: 16px;
    line-height: 1.75;
}

.section-band .section-lede {
    max-width: 720px;
    color: #b9c2cc;
}

/* Response spectrum */

.response-section {
    padding: 86px 6vw;
}

.response-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 40px;
    align-items: start;
}

.response-bars {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(27, 38, 59, .06);
    list-style: none;
}

.response-bar {
    display: grid;
    gap: 8px;
}

.response-bar-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--slate);
}

.response-bar-track {
    display: block;
    height: 18px;
    border-radius: 999px;
    background: #f1ede2;
    overflow: hidden;
}

.response-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
}

.response-bar-fill.is-negative {
    background: #dc2626;
}

.response-bar-fill.is-neutral {
    background: #d97706;
}

.response-bar-fill.is-positive {
    background: #10b981;
}

.response-cards {
    display: grid;
    gap: 16px;
}

.response-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.response-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.response-card-head h4 {
    margin: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
}

.response-card-head span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.response-card p {
    margin: 0;
    color: #536272;
    font-size: 14px;
    line-height: 1.6;
}

.response-card--negative {
    border-color: rgba(220, 38, 38, .25);
}

.response-card--negative h4,
.response-card--negative .response-card-head span {
    color: #dc2626;
}

.response-card--neutral {
    border-color: rgba(217, 119, 6, .25);
}

.response-card--neutral h4,
.response-card--neutral .response-card-head span {
    color: #d97706;
}

.response-card--highlight {
    border: none;
    border-left: 6px solid var(--gold);
    background: var(--navy);
}

.response-card--highlight h4 {
    color: var(--gold);
}

.response-card--highlight .response-card-head span {
    color: #fff;
}

.response-card--highlight p {
    color: #b9c2cc;
}

/* ESQ Motivation Matrix */

.matrix-section {
    padding: 86px 6vw;
    background: #f3efe4;
}

.matrix-groups {
    display: grid;
    gap: 48px;
}

.matrix-group-heading {
    margin: 0 0 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.matrix-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(27, 38, 59, .05);
}

.matrix-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 999px;
    background: #f1ede2;
    font-size: 20px;
}

.matrix-level {
    margin: 0 0 4px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.matrix-card h4 {
    margin: 0 0 4px;
    font-family: inherit;
    font-size: 18px;
}

.matrix-focus {
    margin: 0 0 12px;
    color: #9aa6b1;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.matrix-desc {
    margin: 0;
    color: #536272;
    font-size: 13px;
    line-height: 1.6;
}

/* TalentDNA */

.dna-section {
    padding: 86px 6vw;
    background: #fff;
}

.dna-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: center;
}

.dna-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dna-tile {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(27, 38, 59, .08);
    text-align: center;
}

.dna-tile p {
    margin: 0 0 4px;
    color: #9aa6b1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dna-tile strong {
    font-size: 12px;
    font-weight: 700;
}

.dna-tile:nth-child(odd) {
    transform: rotate(-4deg);
}

.dna-tile:nth-child(even) {
    transform: rotate(4deg);
}

.dna-tile--dark {
    background: var(--navy);
    border-color: var(--navy);
}

.dna-tile--dark p {
    color: var(--gold);
}

.dna-tile--dark strong {
    color: #fff;
}

.dna-tile--gold {
    background: var(--gold);
    border-color: var(--gold);
}

.dna-tile--gold p {
    color: rgba(255, 255, 255, .8);
}

.dna-tile--gold strong {
    color: #fff;
}

.dna-lede {
    margin: 20px 0 32px;
    max-width: 560px;
    color: #536272;
    font-size: 16px;
    line-height: 1.8;
}

.dna-dimensions {
    display: grid;
    gap: 24px;
}

.dna-dimension {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
}

.dna-letter {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    background: var(--navy);
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 700;
}

.dna-dimension h5 {
    margin: 0 0 4px;
    font-size: 15px;
}

.dna-dimension p {
    margin: 0;
    color: #536272;
    font-size: 13px;
    line-height: 1.6;
}

.dna-examples {
    margin-top: 4px !important;
    color: #9aa6b1 !important;
    font-size: 12px !important;
}

.insight-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: 56px;
    padding: 92px 6vw;
}

.insight-layout p:not(.eyebrow) {
    color: #536272;
    font-size: 17px;
    line-height: 1.8;
}

.timeline-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline-list li {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.timeline-list strong {
    color: var(--bronze);
}

.timeline-list span {
    color: #536272;
}

.site-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 6vw;
    border-top: 1px solid var(--line);
    color: #66717e;
    font-size: 13px;
}

.site-footer-disclaimer {
    max-width: 860px;
    line-height: 1.6;
    font-size: 12px;
    color: #8a93a0;
}

.site-footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

button.button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

@media print {
    .no-print,
    .site-header,
    .site-footer {
        display: none !important;
    }

    body {
        background: #fff;
    }
}

/* Impersonation banner + coach note FAB */

.impersonation-banner {
    position: sticky;
    top: 76px;
    z-index: 15;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 6vw;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.impersonation-banner strong {
    color: var(--gold);
}

.coach-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 30;
}

.coach-fab summary {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    list-style: none;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(142, 111, 62, .35);
}

.coach-fab summary::-webkit-details-marker {
    display: none;
}

.coach-fab-form {
    display: grid;
    gap: 10px;
    width: 280px;
    margin-top: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(27, 38, 59, .18);
}

.coach-fab-form textarea {
    min-height: 80px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
}

/* 404 */

.text-center {
    display: grid;
    gap: 14px;
    place-items: center;
    padding: 110px 6vw;
    text-align: center;
}

.text-center h1 {
    font-size: clamp(48px, 8vw, 96px);
    color: var(--gold);
}

@media (max-width: 980px) {
    .hero-shell,
    .insight-layout,
    .response-layout,
    .dna-layout {
        grid-template-columns: 1fr;
    }

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

    .dna-tile-grid {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 16px 5vw;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .hero-shell,
    .section-band,
    .insight-layout,
    .response-section,
    .matrix-section,
    .dna-section {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .hero-shell {
        min-height: 0;
        padding-top: 58px;
    }

    .hero-panel {
        padding: 18px;
    }

    .pillar-grid,
    .timeline-list li,
    .pillar-meta,
    .matrix-grid {
        grid-template-columns: 1fr;
    }

    .section-heading--center {
        text-align: left;
    }

    .section-heading--center .eyebrow {
        text-align: left;
    }

    .site-footer {
        flex-direction: column;
    }
}
