:root {
    --blue: #004b87;
    --blue-dark: #073a67;
    --orange: #f39c12;
    --teal: #168b7a;
    --green-wash: #edf7f4;
    --blue-wash: #edf4fa;
    --orange-wash: #fff6e7;
    --ink: #172033;
    --muted: #526072;
    --line: #dfe5ec;
    --paper: #ffffff;
    --wash: #f5f8fc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--wash);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

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

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.topbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-weight: 800;
}

.brand img {
    width: auto;
    height: 44px;
}

.path-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--wash);
}

.path-nav a {
    min-height: 38px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 750;
}

.path-nav a.active {
    background: var(--blue);
    color: #fff;
}

.button {
    min-height: 46px;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
}

.button-primary {
    background: var(--orange);
    color: #fff;
}

.button-secondary {
    border-color: rgba(0, 75, 135, 0.24);
    background: #fff;
    color: var(--blue);
}

.hero {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--blue-dark);
    background-image: url("images/hero/schools partners hero bdg.jpeg");
    background-position: center;
    background-size: cover;
}

.hero.adviser-hero {
    background-image: url("images/hero/schools partners hero bdg.jpeg");
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 38, 69, 0.79);
}

.hero.adviser-hero::before {
    background: rgba(4, 55, 72, 0.78);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 82px 0;
    text-align: center;
}

.eyebrow {
    margin-bottom: 18px;
    padding: 7px 11px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero p {
    max-width: 690px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.94);
}

.model-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

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

.model-grid.center-pathway {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.model-item {
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

.model-item:last-child {
    border-right: 0;
}

.model-item span {
    display: block;
    margin-bottom: 3px;
    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.model-item strong {
    display: block;
    color: var(--blue);
    font-size: 1.05rem;
}

.model-item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.92rem;
}

section {
    padding: 76px 0;
}

section[id] {
    scroll-margin-top: 88px;
}

.band-white {
    background: var(--paper);
}

.band-blue {
    background: var(--blue-dark);
    color: #fff;
}

.band-blue .section-title h2 {
    color: #fff;
}

.band-blue .section-kicker {
    color: #67d3c1;
}

.section-title {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-kicker {
    display: block;
    margin-bottom: 8px;
    color: #0e766a;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-title p,
.lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.band-blue .section-title p,
.band-blue .lead {
    color: rgba(255, 255, 255, 0.78);
}

.band-blue .model-grid {
    gap: 14px;
}

.band-blue .model-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid var(--orange);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
}

.band-blue .model-item:nth-child(2) {
    border-top-color: #5fc6b5;
}

.band-blue .model-item:nth-child(3) {
    border-top-color: #71b8e1;
}

.band-blue .model-item strong {
    color: #fff;
}

.band-blue .model-item p {
    color: rgba(255, 255, 255, 0.74);
}

.band-blue .band-note {
    border-left-color: #f2a11a;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
}

.band-blue .band-note strong {
    color: #ffca72;
}

.band-blue .band-note a {
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.innovation-hub {
    position: relative;
    border-top: 8px solid var(--orange);
    border-bottom: 1px solid #cdd8e5;
    background: #f3f6fa;
}

.innovation-hub .section-title {
    max-width: 1120px;
    margin-bottom: 42px;
}

.innovation-hub .section-kicker {
    color: var(--orange);
}

.innovation-hub .section-title h2 {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 3.4rem;
    line-height: 1.12;
}

.innovation-hub .marker-highlight {
    box-shadow: inset 0 -0.34em 0 rgba(247, 158, 27, 0.3);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.innovation-hub .hub-intro {
    font-size: 1.12rem;
    line-height: 1.75;
}

.innovation-hub .hub-intro strong {
    color: var(--ink);
}

.hub-model {
    display: grid;
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2fr);
    gap: 18px;
    align-items: stretch;
}

.hub-assets {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(23, 43, 69, 0.08);
}

.hub-assets-head,
.hub-asset-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr) minmax(0, 1.15fr);
}

.hub-assets-head {
    background: var(--blue);
    color: #fff;
}

.hub-assets-head span {
    padding: 14px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hub-assets-head span:last-child {
    border-right: 0;
}

.hub-asset-row {
    border-bottom: 1px solid var(--line);
}

.hub-asset-row:last-child {
    border-bottom: 0;
}

.hub-asset-row h3,
.hub-asset-row > div {
    margin: 0;
    padding: 20px;
}

.hub-asset-row h3 {
    border-left: 5px solid var(--blue);
    background: #eef3f8;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.25;
}

.hub-asset-row:nth-child(3) h3 {
    border-left-color: #168b79;
}

.hub-asset-row:nth-child(4) h3 {
    border-left-color: var(--orange);
}

.hub-asset-row:nth-child(5) h3 {
    border-left-color: #6d5aa7;
}

.hub-asset-row h3 small,
.hub-asset-row > div > span {
    display: block;
    margin-bottom: 7px;
    color: #0e766a;
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hub-asset-row > div > span {
    display: none;
}

.hub-asset-row > div {
    border-left: 1px solid var(--line);
}

.hub-asset-row p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.hub-growth {
    margin-bottom: 30px;
}

.hub-assets-after-growth {
    margin-top: 0;
}

.hub-growth-title {
    display: flex;
    margin-bottom: 14px;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.hub-growth-title span {
    color: #0e766a;
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hub-growth-title strong {
    color: var(--ink);
    font-size: 1.15rem;
}

.hub-anchor {
    padding: 28px;
    border-left: 6px solid #168b79;
    background: #fff;
    box-shadow: 0 12px 28px rgba(23, 43, 69, 0.08);
}

.hub-anchor span,
.hub-stage small {
    display: block;
    color: #0e766a;
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hub-anchor strong {
    display: block;
    margin: 12px 0 10px;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1.15;
}

.hub-anchor p,
.hub-stage p {
    margin: 0;
    color: var(--muted);
}

.hub-path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 92px;
    gap: 10px;
}

.hub-stage {
    position: relative;
    min-height: 210px;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-top: 5px solid var(--blue);
    background: #fff;
}

.hub-stage:nth-child(2) {
    border-top-color: #168b79;
}

.hub-stage:nth-child(3) {
    border-top-color: var(--orange);
}

.hub-stage strong {
    display: block;
    margin: 42px 0 8px;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.25;
}

.hub-more {
    display: flex;
    padding: 18px 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed #9eb0c4;
    background: rgba(255, 255, 255, 0.58);
    color: var(--muted);
    text-align: center;
}

.hub-more span {
    color: var(--orange);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.hub-more strong {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.2;
}

.hub-note {
    margin-top: 18px;
    border-left-color: var(--orange);
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

.benefit {
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--blue);
    border-radius: 8px;
    background: var(--paper);
}

.benefit:nth-child(2) {
    border-top-color: var(--teal);
}

.benefit:nth-child(3) {
    border-top-color: var(--orange);
}

.benefit h3 {
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 1.25rem;
    line-height: 1.25;
}

.benefit p {
    color: var(--muted);
}

.project-landscape {
    margin-top: 38px;
    overflow: hidden;
    border: 1px solid #cbd7e2;
    border-radius: 8px;
    background: #f5f8fb;
    box-shadow: 0 18px 40px rgba(23, 32, 51, 0.1);
}

.project-landscape-head {
    min-height: 76px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #d5dee8;
    background: #fff;
}

.project-landscape-head > div:first-child span,
.project-landscape-head > div:first-child strong {
    display: block;
}

.project-landscape-head > div:first-child span {
    margin-bottom: 3px;
    color: var(--teal);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.project-landscape-head > div:first-child strong {
    color: var(--blue-dark);
    font-size: 1.12rem;
}

.project-landscape-head > div:first-child p {
    max-width: 760px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
}

.project-landscape-meta {
    display: flex;
    gap: 6px;
}

.project-landscape-meta span {
    padding: 5px 8px;
    border: 1px solid #d4dee8;
    border-radius: 4px;
    background: #f7f9fb;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
}

.idea-canvas {
    padding: 18px;
    background-color: #edf2f6;
    background-image: radial-gradient(#bcc8d4 0.8px, transparent 0.8px);
    background-size: 18px 18px;
}

.possibility-equation {
    padding: 18px;
    display: flex;
    align-items: stretch;
    gap: 10px;
    border: 1px solid #cdd8e3;
    background: rgba(255, 255, 255, 0.94);
}

.possibility-choice {
    width: 142px;
    min-height: 118px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #cad6e2;
    border-top: 5px solid var(--teal);
    background: #f8fbfd;
}

.possibility-choice:nth-of-type(2) {
    border-top-color: #e49a13;
    background: #fff9e8;
}

.possibility-choice:nth-of-type(3) {
    border-top-color: #3f78bf;
    background: #eef5ff;
}

.possibility-choice:nth-of-type(4) {
    border-top-color: #b74f77;
    background: #fff1f5;
}

.possibility-choice small,
.possibility-result small,
.possibility-palette small {
    color: #657386;
    font-size: 0.62rem;
    font-weight: 850;
    text-transform: uppercase;
}

.possibility-choice strong {
    color: #1e2b40;
    font-size: 0.9rem;
    line-height: 1.28;
}

.possibility-operator {
    display: grid;
    place-items: center;
    color: #8492a3;
    font-size: 1.15rem;
    font-weight: 800;
}

.possibility-result {
    min-width: 210px;
    padding: 15px 17px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    border-left: 5px solid #f3a100;
    background: #123f71;
}

.possibility-result small {
    color: #79d2c2;
}

.possibility-result strong {
    margin: 8px 0 5px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.possibility-result span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
}

.possibility-more {
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.possibility-palette {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.possibility-palette > div {
    min-width: 0;
    padding: 14px;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    border: 1px solid #d0dae4;
    background: rgba(255, 255, 255, 0.88);
}

.possibility-palette small {
    width: 100%;
    margin-bottom: 4px;
    color: var(--blue);
}

.possibility-palette p {
    padding: 4px 7px;
    border: 1px solid #d7e0e8;
    border-radius: 3px;
    background: #f7f9fb;
    color: #425166;
    font-size: 0.68rem;
}

.possibility-palette b {
    padding: 0 4px;
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
}

.possibility-message {
    margin-top: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed #8fa4b8;
    background: rgba(255, 255, 255, 0.74);
    color: #506075;
    font-size: 0.82rem;
}

.possibility-message strong {
    color: var(--teal);
}

.idea-canvas-disclaimer {
    margin: 18px 4px 2px;
    color: #657386;
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: center;
}

.requirements-layout,
.certificate-layout,
.resource-layout,
.roles-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
    align-items: start;
}

.resource-layout.resource-layout-single {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    margin-top: 64px;
}

.resource-action {
    margin-top: 22px;
}

.requirements-copy {
    position: sticky;
    top: 108px;
}

.requirements-copy p,
.certificate-copy p,
.resource-copy p {
    color: var(--muted);
}

.check-list {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.check-item {
    position: relative;
    padding: 18px 22px 18px 54px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.check-item:last-child {
    border-bottom: 0;
}

.check-item::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 24px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--teal);
    border-radius: 50%;
}

.check-item strong {
    color: var(--ink);
}

.training-list {
    counter-reset: module;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.training-item {
    counter-increment: module;
    min-height: 168px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #f2a11a;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
}

.training-item:nth-child(3n + 2) {
    border-top-color: #5fc6b5;
}

.training-item:nth-child(3n) {
    border-top-color: #71b8e1;
}

.training-item:last-child {
    grid-column: span 2;
}

.training-item::before {
    content: counter(module, decimal-leading-zero);
    width: 34px;
    height: 26px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffca72;
    font-size: 0.72rem;
    font-weight: 850;
}

.training-item strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.3;
}

.training-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.5;
}

.resource-browser {
    overflow: hidden;
    border: 1px solid #cbd7e2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
}

.resource-toolbar {
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    color: var(--blue);
    font-weight: 800;
}

.resource-status {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--green-wash);
    color: var(--teal);
    font-size: 0.72rem;
}

.resource-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 330px;
}

.resource-sidebar {
    padding: 18px 12px;
    border-right: 1px solid var(--line);
    background: var(--blue-wash);
}

.resource-sidebar span {
    padding: 8px 10px;
    display: block;
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.82rem;
}

.resource-sidebar span.active {
    background: var(--blue);
    color: #fff;
}

.resource-docs {
    padding: 20px;
    display: grid;
    gap: 10px;
}

.resource-doc {
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.resource-doc b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--orange-wash);
    color: var(--orange);
    font-size: 0.72rem;
}

.resource-doc strong,
.resource-doc small {
    display: block;
}

.resource-doc small {
    color: var(--muted);
}

.institution-system {
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid #c7d3df;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
}

.institution-system-bar {
    min-height: 58px;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #d6dee7;
    background: #fff;
}

.institution-system-bar > div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--blue-dark);
}

.institution-system-bar img {
    width: 54px;
    height: auto;
}

.institution-system-bar > span {
    padding: 6px 9px;
    border: 1px solid #cfe2dd;
    border-radius: 4px;
    background: #eef8f5;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
}

.institution-system-body {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 390px;
}

.institution-system-nav {
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid #d6dee7;
    background: #eef3f8;
}

.institution-system-nav strong {
    margin: 0 10px 14px;
    color: #728095;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.institution-system-nav span {
    padding: 10px 12px;
    border-radius: 5px;
    color: #506075;
    font-size: 0.82rem;
    font-weight: 650;
}

.institution-system-nav span.active {
    background: var(--blue);
    color: #fff;
}

.institution-system-main {
    min-width: 0;
    padding: 28px;
}

.institution-system-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.institution-system-heading small {
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 850;
}

.institution-system-heading h3 {
    margin-top: 4px;
    color: var(--blue-dark);
    font-size: 1.35rem;
}

.institution-system-heading > span {
    padding: 7px 9px;
    border-left: 3px solid var(--teal);
    background: #eef8f5;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 750;
}

.institution-system-stats {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #d6dee7;
    background: #f8fafc;
}

.institution-system-stats > div {
    padding: 16px 18px;
    border-right: 1px solid #d6dee7;
}

.institution-system-stats > div:last-child {
    border-right: 0;
}

.institution-system-stats small,
.institution-system-stats strong {
    display: block;
}

.institution-system-stats small {
    color: #6c7a8e;
    font-size: 0.7rem;
}

.institution-system-stats strong {
    margin-top: 5px;
    color: var(--blue);
    font-size: 1.5rem;
}

.institution-team-list {
    border-top: 1px solid #d6dee7;
}

.institution-team-list > div {
    min-height: 52px;
    padding: 12px 10px;
    display: grid;
    grid-template-columns: minmax(80px, 0.7fr) minmax(180px, 1.5fr) auto;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid #e1e7ed;
    color: #536176;
    font-size: 0.78rem;
}

.institution-team-list .institution-team-head {
    min-height: 38px;
    color: #7b8797;
    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
}

.institution-team-list strong {
    color: var(--blue-dark);
}

.institution-team-list b {
    min-width: 80px;
    padding: 5px 7px;
    border-radius: 3px;
    text-align: center;
    font-size: 0.66rem;
}

.status-blue {
    background: #eaf2fb;
    color: #336fa9;
}

.status-teal {
    background: #e8f7f2;
    color: #168b78;
}

.status-orange {
    background: #fff3dd;
    color: #b66f00;
}

.system-disclaimer {
    padding: 11px 18px;
    border-top: 1px solid #d6dee7;
    background: #f5f7f9;
    color: #69778a;
    font-size: 0.7rem;
    text-align: center;
}

.certificate {
    position: relative;
    aspect-ratio: 1.414 / 1;
    overflow: hidden;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #c5d0db;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.14);
    text-align: center;
}

.certificate::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(0, 75, 135, 0.24);
}

.certificate::after {
    content: "SAMPLE";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    color: rgba(0, 75, 135, 0.1);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
}

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

.certificate img {
    width: 92px;
    height: auto;
}

.certificate-label {
    color: var(--orange);
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.certificate h3 {
    margin: 4px 0 10px;
    color: var(--blue-dark);
    font: 500 clamp(1.25rem, 2.8vw, 2.15rem)/1.08 Georgia, serif;
}

.certificate-name {
    width: 78%;
    margin: 0 auto 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--blue);
    color: var(--blue);
    font: 600 clamp(1rem, 2vw, 1.4rem)/1.1 Georgia, serif;
}

.certificate p {
    max-width: 78%;
    margin: 0 auto;
    color: var(--muted);
    font: 0.68rem/1.45 Georgia, serif;
}

.certificate-meta {
    width: 82%;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.57rem;
}

.certificate-wall {
    position: relative;
    min-height: 470px;
    padding: 42px 34px 24px;
    overflow: hidden;
    border: 1px solid #d2d4d4;
    background: #e8e7e3;
    box-shadow: inset 0 -50px 0 #d8d2c8, 0 18px 42px rgba(23, 32, 51, 0.12);
}

.certificate-wall::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 49px;
    left: 0;
    border-top: 1px solid #c6c0b6;
}

.wall-frame {
    position: relative;
    width: min(92%, 660px);
    margin: 0 auto;
    padding: 9px;
    border: 3px solid #5b4632;
    background: #24282d;
    box-shadow: 0 16px 24px rgba(36, 40, 45, 0.24);
    transform: rotate(-0.7deg);
}

.frame-mat {
    padding: 13px;
    background: #f6f3eb;
}

.certificate-print {
    position: relative;
    overflow: hidden;
    border: 1px solid #d6d7da;
    background: #fff;
}

.certificate-print img {
    width: 100%;
    height: auto;
    display: block;
}

.wall-sample {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    color: rgba(22, 61, 112, 0.18);
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 3px;
}

.wall-plaque {
    position: relative;
    width: max-content;
    max-width: 80%;
    margin: 24px auto 0;
    padding: 8px 18px;
    border: 1px solid #b5aa99;
    background: #f4efe5;
    color: #363d47;
    text-align: center;
    box-shadow: 0 5px 10px rgba(36, 40, 45, 0.12);
}

.wall-plaque strong,
.wall-plaque span {
    display: block;
}

.wall-plaque strong {
    font: 600 0.76rem/1.3 Georgia, serif;
}

.wall-plaque span {
    margin-top: 2px;
    color: #777166;
    font-size: 0.58rem;
}

.certificate-wall .credential-disclaimer {
    position: relative;
    margin-top: 22px;
    color: #625f59;
    font-size: 0.7rem;
}

.certificate-wall-photo {
    min-height: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 18px 42px rgba(23, 32, 51, 0.12);
}

.certificate-wall-photo::before {
    display: none;
}

.certificate-scene {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    display: block;
    object-fit: cover;
    object-position: 25% center;
}

.scene-sample {
    position: absolute;
    right: 14px;
    bottom: 54px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 4px;
    background: rgba(20, 31, 45, 0.78);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
}

.certificate-wall-photo .credential-disclaimer {
    margin: 0;
    padding: 12px 16px;
    border-top: 1px solid #d6dee7;
    background: #f7f8fa;
    color: var(--muted);
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 350px));
    justify-content: center;
    gap: 28px;
}

.credential-sample {
    position: relative;
    isolation: isolate;
    aspect-ratio: 0.72 / 1;
    overflow: hidden;
    border: 1px solid #b7c5d4;
    background: #fff;
    box-shadow: 0 16px 36px rgba(23, 32, 51, 0.14);
}

.credential-sample::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 0;
    width: 18px;
    background: #31579f;
}

.credential-sample::after {
    content: "";
    z-index: 0;
    position: absolute;
    right: -75px;
    bottom: -105px;
    width: 180px;
    height: 180px;
    border: 20px solid #5bb9dc;
    border-radius: 50%;
    box-shadow: 0 0 0 16px #f3a100;
    opacity: 0.95;
}

.credential-logo {
    position: absolute;
    z-index: 2;
    top: 5.5%;
    left: 10%;
    width: 31%;
    max-height: 9%;
    object-fit: contain;
    object-position: left center;
}

.credential-cycle {
    position: absolute;
    z-index: 2;
    top: 6.3%;
    right: 7%;
    padding-bottom: 5px;
    border-bottom: 2px solid #f3a100;
    color: #31579f;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.credential-content {
    position: absolute;
    z-index: 2;
    inset: 16% 9% 19% 12%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.credential-seal {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 124, 111, 0.55);
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 7px rgba(0, 124, 111, 0.32);
    background: #e8f5f1;
    color: #007c6f;
    font-size: 0.72rem;
    font-weight: 900;
}

.credential-content > span {
    color: #007c6f;
    font-size: 0.6rem;
    font-weight: 850;
    text-transform: uppercase;
}

.credential-content h3 {
    max-width: 94%;
    margin: 8px 0 22px;
    color: #31579f;
    font: 500 1.8rem/1.05 Georgia, serif;
}

.credential-content small {
    color: var(--ink);
    font-size: 0.54rem;
    text-transform: uppercase;
}

.credential-content > strong {
    width: 82%;
    margin: 8px auto 9px;
    padding-bottom: 8px;
    border-bottom: 1px solid #8e9baa;
    color: #31579f;
    font: 600 1.35rem/1.1 Georgia, serif;
}

.credential-affiliation {
    margin-bottom: 14px;
    color: #4b5a6d;
    font-size: 0.61rem;
}

.credential-content p {
    max-width: 94%;
    color: #253044;
    font: 0.61rem/1.55 Georgia, serif;
}

.credential-footer {
    position: absolute;
    z-index: 2;
    left: 12%;
    right: 8%;
    bottom: 5.5%;
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #ccd5de;
    color: #526174;
    font-size: 0.5rem;
}

.credential-watermark {
    position: absolute;
    z-index: 3;
    top: 52%;
    left: 53%;
    color: rgba(49, 87, 159, 0.1);
    font-size: 3.2rem;
    font-weight: 900;
    transform: translate(-50%, -50%) rotate(-20deg);
}

.credential-sample.recognition::before {
    background: #173d73;
}

.credential-sample.recognition::after {
    border-color: #f3a100;
    box-shadow: 0 0 0 16px #31579f;
}

.credential-sample.recognition .credential-seal {
    border-color: rgba(226, 142, 0, 0.62);
    box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 7px rgba(226, 142, 0, 0.34);
    background: #fff5df;
    color: #d98200;
}

.credential-sample.recognition .credential-content > span {
    color: #d98200;
}

.credential-sample.recognition .credential-content h3 {
    font-size: 1.55rem;
}

.credential-disclaimer {
    max-width: 900px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 0.86rem;
    text-align: center;
}

.note-box {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--teal);
    background: var(--green-wash);
    color: var(--muted);
}

.note-box strong {
    color: var(--teal);
}

.process-grid {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

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

.process-grid.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-note {
    margin-top: 24px;
}

.launch-facts {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-top: 4px solid var(--orange);
    border-radius: 6px;
    background: #fff;
}

.launch-facts > div {
    min-width: 0;
    padding: 18px;
    border-right: 1px solid var(--line);
}

.launch-facts > div:last-child {
    border-right: 0;
}

.launch-facts small,
.launch-facts strong {
    display: block;
}

.launch-facts small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
    text-transform: uppercase;
}

.launch-facts strong {
    margin-top: 5px;
    color: var(--blue);
    font-size: 1.02rem;
}

.process-step {
    counter-increment: step;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    margin-bottom: 28px;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 850;
}

.process-step h3 {
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 1.12rem;
}

.process-step p {
    color: var(--muted);
    font-size: 0.92rem;
}

.roles-layout {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.role-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.role-head {
    padding: 22px 24px;
    background: var(--blue);
    color: #fff;
}

.role-panel.center-role .role-head {
    background: #0e766a;
}

.role-head span {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.role-head h3 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 1.45rem;
}

.role-list {
    list-style: none;
}

.role-list li {
    position: relative;
    padding: 16px 22px 16px 50px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.role-list li:last-child {
    border-bottom: 0;
}

.role-list li::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 24px;
    width: 9px;
    height: 9px;
    border: 3px solid var(--orange);
    border-radius: 50%;
}

.center-role .role-list li::before {
    border-color: var(--teal);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.faq-item summary {
    position: relative;
    padding: 18px 52px 18px 22px;
    cursor: pointer;
    color: var(--blue);
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 1.4rem;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--muted);
}

.cta {
    padding: 58px 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.78);
}

.cta .hero-actions {
    justify-content: center;
}

.fine-print {
    margin-top: 18px !important;
    font-size: 0.84rem;
}

@media (max-width: 900px) {
    .hub-model {
        grid-template-columns: 1fr;
    }

    .hub-path {
        grid-template-columns: repeat(3, minmax(0, 1fr)) 74px;
    }

    .hub-assets-head,
    .hub-asset-row {
        grid-template-columns: minmax(155px, 0.65fr) minmax(0, 1fr) minmax(0, 1fr);
    }

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

    .launch-facts > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .launch-facts > div:nth-child(2) {
        border-right: 0;
    }

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

    .possibility-equation {
        flex-wrap: wrap;
    }

    .possibility-choice {
        width: auto;
        flex: 1 1 calc(50% - 10px);
    }

    .possibility-operator {
        display: none;
    }

    .possibility-result {
        flex: 1 1 calc(100% - 50px);
    }

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

    .credential-grid {
        max-width: 700px;
        margin: 0 auto;
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 20px;
    }

    .grid-3,
    .model-grid,
    .process-grid,
    .process-grid.six,
    .process-grid.five,
    .model-grid.center-pathway {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .model-item:nth-child(2) {
        border-right: 0;
    }

    .model-item:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .requirements-layout,
    .certificate-layout,
    .resource-layout {
        grid-template-columns: 1fr;
    }

    .requirements-copy {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .topbar-inner {
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .path-nav {
        width: 100%;
    }

    .path-nav a {
        flex: 1;
        justify-content: center;
        padding: 8px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: 560px;
        background-position: 57% center;
    }

    .hero-copy {
        padding: 58px 0;
    }

    h1 {
        font-size: 2.45rem;
    }

    .hero p {
        font-size: 1.04rem;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    section {
        padding: 58px 0;
    }

    .innovation-hub .section-title h2 {
        font-size: 2.3rem;
        line-height: 1.18;
    }

    .innovation-hub .hub-intro {
        font-size: 1rem;
    }

    .hub-path {
        grid-template-columns: 1fr;
    }

    .hub-assets-head {
        display: none;
    }

    .hub-asset-row {
        grid-template-columns: 1fr;
    }

    .hub-asset-row > div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .hub-asset-row > div > span {
        display: block;
    }

    .hub-growth-title {
        display: block;
    }

    .hub-growth-title strong {
        display: block;
        margin-top: 7px;
    }

    .hub-stage {
        min-height: 0;
    }

    .hub-stage strong {
        margin-top: 18px;
    }

    .hub-more {
        min-height: 104px;
    }

    .training-list {
        grid-template-columns: 1fr;
    }

    .training-item,
    .training-item:last-child {
        grid-column: auto;
        min-height: 0;
    }

    .launch-facts {
        grid-template-columns: 1fr;
    }

    .launch-facts > div,
    .launch-facts > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .launch-facts > div:last-child {
        border-bottom: 0;
    }

    .institution-system-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .institution-system-body {
        grid-template-columns: 1fr;
    }

    .institution-system-nav {
        padding: 10px;
        flex-direction: row;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid #d6dee7;
    }

    .institution-system-nav strong {
        display: none;
    }

    .institution-system-nav span {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .institution-system-main {
        padding: 20px 16px;
    }

    .institution-system-heading {
        flex-direction: column;
    }

    .institution-system-stats {
        grid-template-columns: 1fr;
    }

    .institution-system-stats > div,
    .institution-system-stats > div:last-child {
        border-right: 0;
        border-bottom: 1px solid #d6dee7;
    }

    .institution-system-stats > div:last-child {
        border-bottom: 0;
    }

    .institution-team-list .institution-team-head {
        display: none;
    }

    .institution-team-list > div {
        grid-template-columns: 1fr auto;
        gap: 5px 12px;
    }

    .institution-team-list > div > span {
        grid-column: 1 / -1;
    }

    .certificate-wall {
        min-height: 0;
        padding: 28px 18px 22px;
    }

    .certificate-wall-photo {
        padding: 0;
    }

    .wall-frame {
        width: 100%;
        padding: 6px;
    }

    .frame-mat {
        padding: 8px;
    }

    .grid-2,
    .grid-3,
    .model-grid,
    .process-grid,
    .process-grid.six,
    .process-grid.five,
    .model-grid.center-pathway,
    .roles-layout {
        grid-template-columns: 1fr;
    }

    .model-item,
    .model-item:nth-child(2),
    .model-item:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-top: 0;
    }

    .model-item:last-child {
        border-bottom: 0;
    }

    .resource-body {
        grid-template-columns: 1fr;
    }

    .credential-content h3 {
        margin: 4px 0 6px;
        font-size: 1.2rem;
    }

    .credential-sample.recognition .credential-content h3 {
        font-size: 1.02rem;
    }

    .credential-content > span {
        font-size: 0.54rem;
    }

    .credential-content > strong {
        margin: 3px auto 5px;
        font-size: 0.96rem;
    }

    .credential-content p {
        font-size: 0.47rem;
    }

    .credential-watermark {
        font-size: 2.4rem;
    }

    .credential-grid {
        grid-template-columns: minmax(270px, 350px);
    }

    .project-landscape-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-landscape-meta {
        flex-wrap: wrap;
    }

    .possibility-choice,
    .possibility-result {
        flex-basis: 100%;
    }

    .possibility-more {
        width: 100%;
    }

    .possibility-palette {
        grid-template-columns: 1fr;
    }

    .possibility-message {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .resource-sidebar {
        display: flex;
        gap: 4px;
        overflow-x: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .resource-sidebar span {
        white-space: nowrap;
    }

    .certificate {
        padding: 28px 22px;
    }

    .certificate p {
        max-width: 90%;
        font-size: 0.58rem;
    }

    .certificate-meta {
        width: 90%;
    }
}
