.industries-section {
    position: relative;
    padding: 0;
    background: linear-gradient(180deg, #f6f4ef 0%, #edf4fb 42%, #f6f4ef 100%);
}

.industries-shell {
    width: 100%;
    margin: 0;
}

.industries-cards {
    position: relative;
}

.industry-card {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 100svh;
    align-items: stretch;
    overflow: hidden;
    background: var(--krg-navy-deep);
    box-shadow: 0 28px 70px rgba(5, 14, 27, 0.16);
}

.industry-card:nth-child(1) {
    z-index: 1;
}

.industry-card:nth-child(2) {
    z-index: 2;
}

.industry-card:nth-child(3) {
    z-index: 3;
}

.industry-card:nth-child(4) {
    z-index: 4;
}

.industry-card:nth-child(5) {
    z-index: 5;
}

.industry-card:nth-child(6) {
    z-index: 6;
}

.industry-card:nth-child(7) {
    z-index: 7;
}

.industry-card:nth-child(8) {
    z-index: 8;
}

.industry-card.left-image {
    grid-template-areas: "image content";
}

.industry-card.right-image {
    grid-template-areas: "content image";
}

.industry-image {
    grid-area: image;
    height: 100%;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

.industry-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 29, 0.06) 0%, rgba(8, 16, 29, 0.18) 100%);
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.industry-content {
    grid-area: content;
    height: 100%;
    min-height: 0;
    padding: clamp(96px, 10vw, 132px) clamp(44px, 5vw, 78px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at 16% 22%, rgba(99, 187, 250, 0.16) 0%, rgba(99, 187, 250, 0) 34%),
        linear-gradient(180deg, #101317 0%, #171b20 100%);
    color: var(--krg-white);
}

.industry-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.industry-meta span {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.industry-content h3 {
    margin: 0;
    max-width: 10ch;
    font-size: clamp(2.5rem, 4.8vw, 4.3rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 700;
    text-transform: uppercase;
}

.industry-content p {
    margin: 24px 0 0;
    max-width: 40ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.66;
    font-weight: 500;
}

.industry-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 58px;
    margin-top: 34px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
    color: var(--krg-white);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background var(--krg-transition), color var(--krg-transition), border-color var(--krg-transition);
}

.industry-cta:hover,
.industry-cta:focus-visible {
    background: var(--krg-white);
    color: var(--krg-navy-deep);
    border-color: var(--krg-white);
}
body.about-page {
    background: var(--krg-paper);
    color: var(--krg-navy);
}

body.about-page main {
    background: var(--krg-paper);
}

.page-hero {
    position: relative;
    overflow: hidden;
    width: min(1360px, calc(100vw - 40px));
    min-height: 100svh;
    margin: 0 auto;
    border-radius: 0 0 34px 34px;
    background: var(--krg-navy);
    color: var(--krg-white);
}

.overview-page .page-hero {
    width: 100%;
    min-height: clamp(520px, 82svh, 720px);
    margin: 0;
    border-radius: 0;
}

.page-hero-media,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-media {
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.page-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 16, 29, 0.84) 0%, rgba(8, 16, 29, 0.72) 26%, rgba(8, 16, 29, 0.3) 54%, rgba(8, 16, 29, 0.22) 100%),
        linear-gradient(180deg, rgba(8, 16, 29, 0.14) 0%, rgba(8, 16, 29, 0.52) 100%);
}

.governance-page .page-hero-media {
    background-image: url("images/Hero-Realestate-wide.png");
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 64px));
    margin: 0 auto;
    padding: 168px 0 82px;
}

.overview-page .page-hero-inner {
    width: min(1040px, calc(100% - 72px));
    padding: 148px 0 56px;
}

.page-eyebrow,
.section-eyebrow {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 700;
}

.page-hero h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 600;
}

.overview-page .page-hero h1 {
    max-width: 9ch;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
}

.page-summary {
    max-width: 48ch;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.72;
}

.overview-page .page-summary {
    max-width: 38ch;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.overview-intro-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(620px, 82svh, 840px);
    padding: 88px 0 88px;
}

.overview-intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 38%, rgba(99, 187, 250, 0.22) 0%, rgba(99, 187, 250, 0) 56%),
        radial-gradient(circle at 22% 60%, rgba(13, 24, 43, 0.05) 0%, rgba(13, 24, 43, 0) 42%);
}

.overview-intro-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100vw - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(560px, 1.05fr);
    gap: 22px;
    align-items: center;
}

.about-principles-section {
    position: relative;
    padding: 0 0 92px;
    background:
        radial-gradient(circle at 84% 14%, rgba(99, 187, 250, 0.16) 0%, rgba(99, 187, 250, 0) 30%),
        linear-gradient(180deg, #f6f4ef 0%, #fbfaf7 48%, #f2f5f8 100%);
}

.about-principles-shell {
    width: 100%;
    margin: 0 auto;
}

.about-principles-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    border-top: 1px solid rgba(13, 24, 43, 0.1);
    border-bottom: 1px solid rgba(13, 24, 43, 0.1);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 28px 72px rgba(6, 16, 30, 0.12);
    background: rgba(255, 255, 255, 0.82);
}

.about-principles-media {
    position: relative;
    min-height: 620px;
}

.about-principles-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 20, 34, 0.08) 0%, rgba(12, 20, 34, 0) 38%, rgba(12, 20, 34, 0.18) 100%);
}

.about-principles-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-principles-copy {
    padding: clamp(44px, 5vw, 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 247, 241, 0.98) 100%);
}

.about-principles-kicker {
    margin: 0 0 14px;
    color: #d98342;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-principles-copy h2,
.about-values-head h2 {
    margin: 0;
    color: #0d1117;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.about-principles-copy h2 {
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    max-width: 10ch;
}

.about-principles-intro {
    margin: 22px 0 0;
    max-width: 48ch;
    color: rgba(13, 24, 43, 0.72);
    font-size: 1rem;
    line-height: 1.72;
}

.about-principles-list {
    margin-top: 30px;
}

.about-principles-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(13, 24, 43, 0.1);
}

.about-principles-item:last-child {
    border-bottom: 1px solid rgba(13, 24, 43, 0.1);
}

.about-principles-number {
    color: rgba(13, 24, 43, 0.64);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
}

.about-principles-item h3,
.about-value-card h3 {
    margin: 0;
    color: #11151b;
    letter-spacing: -0.03em;
}

.about-principles-item h3 {
    font-size: 1.4rem;
}

.about-principles-item p,
.about-value-card p,
.about-values-head p {
    margin: 10px 0 0;
    color: rgba(13, 24, 43, 0.72);
    line-height: 1.7;
}

.about-principles-cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: #11151b;
    color: var(--krg-white);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    width: fit-content;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.about-principles-cta:hover,
.about-principles-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(7, 14, 25, 0.16);
    background: #0d182b;
}

.about-values-head {
    margin-top: 34px;
    width: min(1240px, calc(100vw - 44px));
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
}

.about-values-head h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.about-values-grid {
    margin-top: 26px;
    width: min(1240px, calc(100vw - 44px));
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(13, 24, 43, 0.08);
    border-left: 1px solid rgba(13, 24, 43, 0.08);
    background: rgba(255, 255, 255, 0.56);
}

.about-value-card {
    min-height: 250px;
    padding: 40px 38px 36px;
    border-right: 1px solid rgba(13, 24, 43, 0.08);
    border-bottom: 1px solid rgba(13, 24, 43, 0.08);
    background: rgba(252, 251, 247, 0.72);
}

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: var(--krg-sand);
    background: rgba(99, 187, 250, 0.14);
    border: 1px solid rgba(99, 187, 250, 0.26);
    font-size: 1.35rem;
}

.about-value-card h3 {
    margin-top: 24px;
    font-size: 1.14rem;
}

.overview-intro-copy {
    padding: 20px 8px 0 0;
}

.overview-intro-kicker {
    margin: 0 0 14px;
    color: rgba(13, 24, 43, 0.52);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
}

.overview-intro-copy h2 {
    margin: 0;
    max-width: 12ch;
    color: var(--krg-navy);
    font-size: clamp(2.2rem, 4.2vw, 4.1rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 600;
}

.overview-intro-copy p {
    margin: 16px 0 0;
    max-width: 56ch;
    color: rgba(13, 24, 43, 0.72);
    font-size: 1rem;
    line-height: 1.72;
    font-weight: 500;
}

.overview-intro-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.overview-stat-card {
    display: flex;
    flex-direction: column;
    min-height: 238px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.14);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 34px rgba(9, 16, 27, 0.1);
}

.overview-stat-head {
    padding: 18px 18px 14px;
}

.overview-stat-card.is-stat-only {
    justify-content: center;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 255, 0.92) 100%);
}

.overview-stat-card.is-stat-only .overview-stat-head {
    padding: 20px 20px;
}

.overview-stat-value {
    margin: 0;
    color: var(--krg-navy);
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.overview-stat-label {
    margin: 8px 0 0;
    color: rgba(13, 24, 43, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}

.overview-stat-description {
    margin: 12px 0 0;
    color: rgba(13, 24, 43, 0.7);
    font-size: 0.88rem;
    line-height: 1.55;
    font-weight: 500;
}

.overview-stat-media {
    position: relative;
    flex: 1;
    min-height: 128px;
}

.overview-stat-card.is-image-only .overview-stat-media {
    min-height: 238px;
}

.overview-stat-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 29, 0.06) 0%, rgba(8, 16, 29, 0.22) 100%);
    z-index: 1;
}

.overview-stat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-stat-card.is-image-first .overview-stat-media {
    order: 1;
}

.overview-stat-card.is-image-first .overview-stat-head {
    order: 2;
}

.overview-shell {
    width: min(1220px, calc(100vw - 44px));
    margin: 0 auto;
}

.overview-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(13, 24, 43, 0.56);
}

.overview-intel-section,
.overview-pulse-section,
.overview-sectors-section,
.overview-system-section,
.overview-impact-section {
    position: relative;
    padding: 46px 0 0;
}

.overview-intel-section::before,
.overview-system-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 16% 18%, rgba(99, 187, 250, 0.16) 0%, rgba(99, 187, 250, 0) 45%);
}

.overview-intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.overview-panel {
    border-radius: 28px;
    padding: 26px;
    border: 1px solid rgba(13, 24, 43, 0.14);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 36px rgba(9, 16, 27, 0.1);
}

.overview-panel-glass {
    backdrop-filter: blur(10px);
}

.overview-panel:nth-child(1) {
    grid-column: span 6;
}

.overview-panel:nth-child(2) {
    grid-column: span 3;
}

.overview-panel:nth-child(3) {
    grid-column: span 3;
}

.overview-panel h2,
.overview-panel h3 {
    margin: 0;
    color: var(--krg-navy);
    letter-spacing: -0.04em;
}

.overview-panel h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
    line-height: 0.98;
    max-width: 16ch;
}

.overview-panel h3 {
    font-size: 1.18rem;
    line-height: 1.15;
}

.overview-panel p,
.overview-list li,
.pulse-card p,
.sector-card p,
.overview-system-grid p,
.impact-tile p {
    margin: 0;
    color: rgba(13, 24, 43, 0.74);
    font-size: 0.94rem;
    line-height: 1.65;
}

.overview-panel p {
    margin-top: 12px;
}

.overview-list {
    margin: 12px 0 0;
    padding-left: 17px;
    display: grid;
    gap: 8px;
}

.overview-feature-band {
    margin-top: 16px;
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    border: 1px solid rgba(13, 24, 43, 0.16);
    background: linear-gradient(130deg, #0f1f38 0%, #162d4e 58%, #214270 100%);
    box-shadow: 0 24px 40px rgba(6, 16, 30, 0.16);
}

.overview-feature-copy {
    padding: 36px;
    color: var(--krg-white);
}

.overview-feature-copy .overview-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.overview-feature-copy h2 {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.overview-feature-copy p {
    margin: 14px 0 0;
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.88);
}

.overview-feature-media {
    position: relative;
    min-height: 100%;
}

.overview-feature-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 29, 52, 0.14) 0%, rgba(14, 29, 52, 0.38) 100%);
    z-index: 1;
}

.overview-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-pulse-head {
    max-width: 620px;
}

.overview-pulse-head h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--krg-navy);
}

.overview-pulse-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.pulse-card {
    padding: 22px 20px;
    border-radius: 24px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 30px rgba(9, 16, 27, 0.08);
}

.pulse-year {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(99, 187, 250, 0.24);
    color: #10345e;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pulse-card h3 {
    margin: 12px 0 8px;
    color: var(--krg-navy);
    font-size: 1.02rem;
    line-height: 1.2;
}

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

.sector-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: var(--krg-white);
    box-shadow: 0 16px 30px rgba(9, 16, 27, 0.08);
}

.sector-card img {
    width: 100%;
    height: 186px;
    object-fit: cover;
}

.sector-card div {
    padding: 18px;
}

.sector-card h3 {
    margin: 0;
    color: var(--krg-navy);
    font-size: 1.05rem;
}

.sector-card p {
    margin-top: 9px;
}

.overview-system-panel {
    border-radius: 32px;
    padding: 28px;
    border: 1px solid rgba(13, 24, 43, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(235, 246, 255, 0.86) 52%, rgba(255, 255, 255, 0.88) 100%);
    box-shadow: 0 22px 34px rgba(9, 16, 27, 0.09);
}

.overview-system-head h2 {
    margin: 0;
    color: var(--krg-navy);
    font-size: clamp(1.9rem, 2.7vw, 2.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.overview-system-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.overview-system-grid div {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: rgba(255, 255, 255, 0.84);
}

.overview-system-grid h3 {
    margin: 0 0 8px;
    color: var(--krg-navy);
    font-size: 1.02rem;
}

.overview-impact-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 16px;
}

.impact-tile {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: var(--krg-white);
    box-shadow: 0 16px 30px rgba(9, 16, 27, 0.08);
}

.impact-tile img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.impact-tile h3 {
    margin: 16px 16px 8px;
    color: var(--krg-navy);
    font-size: 1.06rem;
}

.impact-tile p {
    margin: 0 16px 18px;
}

.page-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.page-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    background: var(--krg-sand);
    color: var(--krg-navy);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-hero-cta.is-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--krg-white);
}

.page-nav {
    width: min(1180px, calc(100vw - 40px));
    margin: 18px auto 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.page-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(13, 24, 43, 0.06);
    border: 1px solid rgba(13, 24, 43, 0.08);
    color: rgba(13, 24, 43, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-nav a.is-active {
    background: var(--krg-navy);
    border-color: var(--krg-navy);
    color: var(--krg-white);
}

.content-section {
    padding: 28px 20px 0;
}

.content-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-head {
    max-width: 640px;
    margin-bottom: 26px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    font-weight: 600;
}

.section-head p {
    margin: 14px 0 0;
    color: rgba(13, 24, 43, 0.72);
    font-size: 0.98rem;
    line-height: 1.7;
}

.principles-grid,
.summary-grid {
    display: grid;
    gap: 18px;
}

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

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

.panel,
.card,
.principle-card {
    padding: 24px;
    border-radius: 28px;
    background: var(--krg-white);
    border: 1px solid rgba(13, 24, 43, 0.12);
    box-shadow: 0 16px 34px rgba(5, 14, 27, 0.1);
}

.panel p,
.card p,
.principle-card p,
.bullet-list li {
    margin: 0;
    color: rgba(13, 24, 43, 0.74);
    font-size: 0.95rem;
    line-height: 1.72;
}

.card h3,
.principle-card h3,
.panel h3 {
    margin: 0 0 10px;
    color: var(--krg-navy);
    font-size: 1.08rem;
    line-height: 1.24;
}

.card .kicker,
.principle-card .kicker {
    display: block;
    margin: 0 0 10px;
    color: rgba(13, 24, 43, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
    font-weight: 700;
}

.bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.highlight-band {
    margin-top: 18px;
    padding: 28px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #10213b 0%, #173055 100%);
    color: var(--krg-white);
    box-shadow: 0 22px 42px rgba(8, 16, 29, 0.14);
}

.highlight-band h2,
.highlight-band p {
    margin: 0;
}

.highlight-band p {
    margin-top: 12px;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.72;
}

.governance-hero {
    position: relative;
    overflow: hidden;
    width: min(1360px, calc(100vw - 40px));
    min-height: clamp(620px, 90svh, 860px);
    margin: 0 auto;
    border-radius: 0 0 34px 34px;
    background: #0f1f38;
    color: var(--krg-white);
}

.governance-hero-media,
.governance-hero-overlay {
    position: absolute;
    inset: 0;
}

.governance-hero-media {
    background-image: url("images/Hero-officereception-wide.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.governance-hero-overlay {
    background:
        radial-gradient(circle at 72% 26%, rgba(99, 187, 250, 0.3) 0%, rgba(99, 187, 250, 0) 44%),
        linear-gradient(95deg, rgba(6, 14, 27, 0.92) 0%, rgba(7, 16, 30, 0.84) 42%, rgba(7, 16, 30, 0.48) 72%, rgba(7, 16, 30, 0.34) 100%);
}

.governance-hero-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 64px));
    min-height: inherit;
    margin: 0 auto;
    padding: 148px 0 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 24px;
}

.governance-hero-copy h1 {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.governance-hero-panel {
    margin: 0;
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: rgba(9, 20, 36, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(2px);
    box-shadow: 0 18px 30px rgba(3, 8, 17, 0.22);
}

.governance-hero-panel h2 {
    margin: 0;
    font-size: 1.04rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.governance-hero-panel ul {
    margin: 14px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.governance-hero-panel li {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.56;
}

.governance-page .governance-section {
    padding-top: 34px;
}

.governance-feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 18px;
}

.governance-feature-media {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    border: 1px solid rgba(13, 24, 43, 0.1);
    box-shadow: 0 20px 40px rgba(7, 15, 29, 0.1);
}

.governance-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.governance-feature-copy {
    padding: clamp(26px, 3vw, 36px);
    border-radius: 28px;
    border: 1px solid rgba(13, 24, 43, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 245, 252, 0.94) 100%);
    box-shadow: 0 18px 34px rgba(7, 15, 29, 0.08);
}

.governance-feature-copy h2 {
    margin: 0;
    color: var(--krg-navy);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    max-width: 16ch;
}

.governance-feature-copy p {
    margin: 16px 0 0;
    max-width: 62ch;
    color: rgba(13, 24, 43, 0.74);
    font-size: 0.96rem;
    line-height: 1.72;
}

.governance-checklist {
    margin: 20px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.governance-checklist li {
    color: rgba(13, 24, 43, 0.78);
    font-size: 0.92rem;
    line-height: 1.64;
}

.governance-section-head {
    margin-top: 32px;
}

.governance-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.governance-pillar-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: var(--krg-white);
    box-shadow: 0 14px 26px rgba(7, 15, 29, 0.08);
}

.governance-pillar-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(13, 24, 43, 0.2);
    color: var(--krg-navy);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.governance-pillar-card h3 {
    margin: 14px 0 10px;
    color: var(--krg-navy);
    font-size: 1.02rem;
    line-height: 1.3;
}

.governance-pillar-card p {
    margin: 0;
    color: rgba(13, 24, 43, 0.72);
    font-size: 0.92rem;
    line-height: 1.64;
}

.governance-framework {
    margin-top: 14px;
}

.governance-framework-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.governance-framework-grid article {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 249, 253, 0.96) 100%);
}

.governance-framework-grid h3 {
    margin: 0 0 10px;
    color: var(--krg-navy);
    font-size: 0.98rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.governance-framework-grid p {
    margin: 0;
    color: rgba(13, 24, 43, 0.72);
    font-size: 0.9rem;
    line-height: 1.62;
}

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

.governance-image-card {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(13, 24, 43, 0.12);
    background: var(--krg-white);
    box-shadow: 0 18px 30px rgba(7, 15, 29, 0.08);
}

.governance-image-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.governance-image-card div {
    padding: 20px;
}

.governance-image-card h3 {
    margin: 0;
    color: var(--krg-navy);
    font-size: 1.08rem;
}

.governance-image-card p {
    margin: 10px 0 0;
    color: rgba(13, 24, 43, 0.72);
    font-size: 0.92rem;
    line-height: 1.66;
}

.governance-band {
    margin-top: 18px;
}

@media (max-width: 1024px) {
    .governance-hero {
        min-height: 700px;
    }

    .governance-hero-shell {
        width: calc(100% - 44px);
        padding: 132px 0 54px;
        grid-template-columns: 1fr;
        align-items: end;
        gap: 16px;
    }

    .governance-feature {
        grid-template-columns: 1fr;
    }

    .governance-feature-media {
        min-height: 340px;
    }

    .governance-pillars-grid,
    .governance-framework-grid,
    .governance-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .governance-hero {
        width: calc(100vw - 24px);
        min-height: 620px;
        border-radius: 26px;
    }

    .governance-hero-shell {
        width: calc(100% - 24px);
        padding: 122px 0 26px;
        gap: 12px;
    }

    .governance-hero-copy h1 {
        font-size: clamp(2.15rem, 9vw, 3.25rem);
    }

    .governance-hero-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .governance-page .governance-section {
        padding-top: 20px;
    }

    .governance-feature-media {
        min-height: 260px;
        border-radius: 22px;
    }

    .governance-feature-copy {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .governance-feature-copy h2 {
        font-size: clamp(1.7rem, 8vw, 2.5rem);
    }

    .governance-pillars-grid,
    .governance-framework-grid,
    .governance-image-grid {
        grid-template-columns: 1fr;
    }

    .governance-pillar-card,
    .governance-framework-grid article,
    .governance-image-card div {
        padding: 18px;
    }

    .governance-image-card img {
        height: 190px;
    }
}

@media (max-width: 1024px) {
    .page-hero-inner {
        padding: 124px 0 62px;
    }

    .overview-intro-shell {
        width: calc(100vw - 32px);
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .overview-intro-section {
        min-height: auto;
        padding: 72px 0 72px;
    }

    .about-principles-section {
        padding: 0 0 72px;
    }

    .about-principles-shell {
        width: 100%;
    }

    .about-values-head,
    .about-values-grid {
        width: calc(100vw - 32px);
    }

    .about-principles-feature {
        grid-template-columns: 1fr;
    }

    .about-principles-media {
        min-height: 360px;
    }

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

    .overview-intro-copy {
        padding-right: 0;
    }

    .overview-intro-copy h2 {
        max-width: 14ch;
    }

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

    .overview-stat-card,
    .overview-stat-card.is-image-only .overview-stat-media {
        min-height: 226px;
    }

    .overview-panel:nth-child(1),
    .overview-panel:nth-child(2),
    .overview-panel:nth-child(3) {
        grid-column: span 6;
    }

    .overview-feature-band {
        grid-template-columns: 1fr;
    }

    .overview-feature-media {
        min-height: 280px;
    }

    .overview-pulse-grid,
    .sector-matrix,
    .overview-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .principles-grid,
    .summary-grid.two-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-card,
    .industry-card.left-image,
    .industry-card.right-image {
        height: 100svh;
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
        grid-template-rows: minmax(0, 48svh) minmax(0, 52svh);
    }

    .industry-image,
    .industry-content {
        height: 100%;
        min-height: 0;
    }

    .industry-content {
        padding: 40px 32px 44px;
    }

    .industry-content h3 {
        max-width: 10ch;
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }
}

@media (max-width: 767px) {
    .page-hero {
        width: calc(100vw - 24px);
        min-height: 560px;
        border-radius: 28px;
    }

    .page-hero-overlay {
        background:
            linear-gradient(180deg, rgba(8, 16, 29, 0.64) 0%, rgba(8, 16, 29, 0.76) 56%, rgba(8, 16, 29, 0.82) 100%),
            linear-gradient(90deg, rgba(8, 16, 29, 0.72) 0%, rgba(8, 16, 29, 0.3) 46%, rgba(8, 16, 29, 0.18) 100%);
    }

    .page-hero-inner {
        width: calc(100% - 32px);
        padding: 136px 0 34px;
    }

    .overview-page .page-hero {
        width: 100%;
        min-height: 76svh;
        border-radius: 0;
    }

    .overview-page .page-hero-inner {
        width: calc(100% - 32px);
        padding: 126px 0 30px;
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
    }

    .overview-page .page-hero h1 {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .page-summary {
        font-size: 0.92rem;
    }

    .overview-page .page-summary {
        max-width: 30ch;
        font-size: 0.86rem;
        line-height: 1.48;
    }

    .overview-intro-section {
        min-height: auto;
        padding: 56px 0 56px;
    }

    .about-principles-section {
        padding: 0 0 56px;
    }

    .about-principles-shell {
        width: 100%;
    }

    .about-values-head,
    .about-values-grid {
        width: calc(100vw - 24px);
    }

    .about-principles-copy {
        padding: 28px 22px 32px;
    }

    .about-principles-copy h2 {
        max-width: 11ch;
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .about-principles-intro,
    .about-principles-item p,
    .about-value-card p,
    .about-values-head p {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .about-principles-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-principles-number {
        font-size: 0.86rem;
    }

    .about-principles-item h3 {
        font-size: 1.2rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        min-height: auto;
        padding: 28px 22px 26px;
    }

    .about-value-card h3 {
        margin-top: 20px;
        font-size: 1.08rem;
    }

    .overview-intro-shell {
        width: calc(100vw - 24px);
    }

    .overview-intro-copy h2 {
        max-width: 11ch;
        font-size: clamp(2rem, 9vw, 3.1rem);
    }

    .overview-intro-copy p {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .overview-intro-cards {
        grid-template-columns: 1fr;
    }

    .overview-stat-card {
        min-height: 242px;
    }

    .overview-stat-head {
        padding: 16px 16px 12px;
    }

    .overview-stat-card.is-image-only .overview-stat-media {
        min-height: 242px;
    }

    .overview-shell {
        width: calc(100vw - 24px);
    }

    .overview-intel-section,
    .overview-pulse-section,
    .overview-sectors-section,
    .overview-system-section,
    .overview-impact-section {
        padding-top: 28px;
    }

    .overview-intro-grid {
        grid-template-columns: 1fr;
    }

    .overview-panel:nth-child(1),
    .overview-panel:nth-child(2),
    .overview-panel:nth-child(3) {
        grid-column: auto;
    }

    .overview-panel,
    .overview-feature-copy,
    .pulse-card,
    .overview-system-panel,
    .overview-system-grid div {
        padding: 20px;
    }

    .overview-feature-band {
        border-radius: 26px;
    }

    .overview-feature-media {
        min-height: 220px;
    }

    .overview-pulse-grid,
    .sector-matrix,
    .overview-system-grid,
    .overview-impact-grid {
        grid-template-columns: 1fr;
    }

    .sector-card img,
    .impact-tile img {
        height: 170px;
    }

    .content-section {
        padding: 22px 12px 0;
    }

    .page-nav,
    .content-shell {
        width: calc(100vw - 24px);
    }

    .principles-grid,
    .summary-grid.two-up {
        grid-template-columns: 1fr;
    }

    .panel,
    .card,
    .principle-card,
    .highlight-band {
        padding: 20px;
    }

    .page-hero-actions {
        gap: 10px;
    }

    .industry-card,
    .industry-card.left-image,
    .industry-card.right-image {
        height: 100svh;
        grid-template-rows: minmax(0, 42svh) minmax(0, 58svh);
    }

    .industry-image {
        height: 100%;
        min-height: 0;
    }

    .industry-content {
        height: 100%;
        min-height: 0;
        padding: 26px 18px 34px;
    }

    .industry-meta {
        margin-bottom: 18px;
        gap: 8px;
    }

    .industry-meta span {
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.66rem;
    }

    .industry-content h3 {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.9rem);
    }

    .industry-content p {
        max-width: none;
        margin-top: 16px;
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .industry-cta {
        min-height: 52px;
        margin-top: 24px;
        padding: 0 22px;
        font-size: 0.74rem;
    }
}