:root {
    --ink: #061944;
    --ink-2: #08245f;
    --muted: #4f6280;
    --cyan: #04a7c7;
    --cyan-dark: #027fa4;
    --cyan-soft: #e9faff;
    --line: #dce9f3;
    --wash: #f5fbff;
    --paper: #ffffff;
    --shadow: 0 22px 55px rgba(8, 36, 95, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 15px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid rgba(4, 167, 199, .55);
    outline-offset: 3px;
}

button,
input,
select,
textarea {
    font: inherit;
}

main:focus {
    outline: 0;
}

.skip-link {
    background: var(--ink);
    border-radius: 0 0 7px 0;
    color: #fff;
    font-weight: 900;
    left: 0;
    padding: 12px 16px;
    position: fixed;
    top: 0;
    transform: translateY(-120%);
    transition: transform .16s ease;
    z-index: 1000;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    margin: 0 auto;
    max-width: 1160px;
    padding: 0 45px;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 28px;
    min-height: 80px;
    padding: 0 45px;
    position: sticky;
    top: 0;
    z-index: 30;
}

.brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    height: 34px;
    max-width: 226px;
    object-fit: contain;
    width: auto;
}

.site-nav {
    align-items: stretch;
    display: flex;
    gap: clamp(16px, 2.1vw, 30px);
    margin-left: auto;
    white-space: nowrap;
}

.site-nav a {
    align-items: center;
    color: #001b4e;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    min-height: 80px;
    position: relative;
}

.site-nav a.active {
    color: var(--cyan);
}

.site-nav a.active::after {
    background: var(--cyan);
    bottom: 16px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
}

.signin {
    background: linear-gradient(135deg, #10b8d1, #0285a8);
    border: 1px solid rgba(5, 168, 199, .2);
    border-radius: 7px;
    box-shadow: 0 12px 24px rgba(5, 168, 199, .2);
    color: #fff;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 22px;
}

.section {
    padding: 20px 0;
}

.section-tight {
    padding: 12px 0;
}

.section-eyebrow,
.eyebrow {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 20px;
    text-transform: uppercase;
}

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

.eyebrow.boxed {
    border: 1px solid var(--cyan);
    border-radius: 999px;
    display: inline-flex;
    padding: 7px 13px;
}

.pill {
    border: 1px solid var(--cyan);
    border-radius: 999px;
    color: #24e1f4;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 25px;
    padding: 8px 13px;
    text-transform: uppercase;
}

.section-heading {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.12;
    margin: 0 auto 18px;
    max-width: 820px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-heading span,
.hero-copy h1 span {
    color: var(--cyan);
}

.section-subtitle {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
    margin: -18px auto 28px;
    max-width: 720px;
    text-align: center;
}

.hero {
    overflow: hidden;
    position: relative;
}

.hero-light {
    background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
    padding: 36px 0 18px;
}

.hero-photo {
    background: #f7fbfe;
    padding: 38px 0 0;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .95fr);
}

.hero-grid-wide {
    gap: 28px;
    grid-template-columns: minmax(390px, .92fr) minmax(430px, 1.08fr);
}

.hero-curriculum .hero-grid,
.hero-cohorts .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
}

.page-curriculum .hero-light {
    padding-bottom: 0;
}

.page-curriculum .modules-section {
    padding-top: 8px;
}

.page-cohorts .hero-light {
    padding-bottom: 72px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    color: var(--ink-2);
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0 0 16px;
}

.hero-copy .hero-lede {
    color: #244063;
    font-size: 15px;
    line-height: 1.52;
    margin: 0 0 20px;
    max-width: 520px;
}

.hero-copy-dark h1,
.hero-copy-dark .hero-lede {
    color: #fff;
}

.hero-copy-dark .hero-lede {
    opacity: .95;
}

.hero-home {
    min-height: 620px;
}

.hero-home-media {
    background:
        linear-gradient(90deg, rgba(1, 12, 34, .92) 0%, rgba(1, 12, 34, .82) 34%, rgba(1, 12, 34, .35) 62%, rgba(1, 12, 34, .1) 100%),
        url("/assets/images/hero-home.jpg") center right / cover no-repeat;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-home-inner {
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-home .hero-copy {
    max-width: 545px;
}

.hero-home .hero-copy h1 {
    font-size: 46px;
    line-height: 1.2;
    max-width: 545px;
}

.hero-home .hero-copy .hero-lede {
    font-size: 17px;
    line-height: 1.58;
    max-width: 535px;
}

.hero-bullets,
.inline-bullets {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0 0 22px;
}

.hero-bullets span,
.inline-bullets span {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
}

.inline-bullets span {
    color: var(--ink);
}

.hero-bullets svg,
.inline-bullets svg {
    color: var(--cyan);
    height: 18px;
    width: 18px;
}

.actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.actions .btn {
    flex: 0 1 auto;
}

.btn {
    align-items: center;
    border-radius: 7px;
    display: inline-flex;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    line-height: 1.18;
    min-height: 44px;
    min-width: 0;
    padding: 0 20px;
    text-align: center;
}

.btn svg {
    height: 18px;
    width: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #12bfda, #0484a7);
    box-shadow: 0 12px 24px rgba(5, 168, 199, .18);
    color: #fff;
}

.btn-outline {
    background: rgba(255, 255, 255, .84);
    border: 1px solid #9db1c9;
    color: var(--ink);
}

.btn-danger {
    background: #b42318;
    color: #fff;
}

.btn-outline.light {
    background: rgba(0, 10, 25, .15);
    border-color: rgba(255, 255, 255, .8);
    color: #fff;
}

.btn-small {
    min-height: 36px;
    padding: 0 14px;
}

.hero-art {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-art img,
.wide-photo img,
.photo-card-stack img {
    display: block;
    max-width: 100%;
}

.laptop-art img {
    filter: drop-shadow(0 24px 35px rgba(6, 25, 68, .18));
}

.lifecycle-art img {
    max-width: 470px;
}

.calendar-art img {
    filter: drop-shadow(0 24px 35px rgba(6, 25, 68, .12));
    max-width: 470px;
}

.wide-photo {
    align-self: stretch;
    margin-right: calc((1160px - 100vw) / 2);
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.wide-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.fade-left::before,
.wide-photo::before {
    background: linear-gradient(90deg, #f7fbfe 0%, rgba(247, 251, 254, .85) 12%, transparent 38%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 45%;
    z-index: 1;
}

.photo-card-stack {
    min-height: 350px;
    position: relative;
}

.photo-card-stack img {
    border-radius: 0;
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.floating-card {
    align-items: center;
    background: rgba(255, 255, 255, .93);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px 14px;
    grid-template-columns: 48px 1fr;
    padding: 18px 20px;
    position: relative;
}

.floating-card + .floating-card {
    margin-top: 16px;
}

.floating-card svg {
    background: var(--cyan-soft);
    border-radius: 50%;
    color: var(--cyan);
    grid-row: span 2;
    height: 48px;
    padding: 12px;
    width: 48px;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

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

.mini-features div {
    display: grid;
    gap: 7px;
    grid-template-columns: 38px 1fr;
}

.mini-features svg {
    background: #edf9fd;
    border-radius: 8px;
    color: var(--cyan);
    grid-row: span 2;
    height: 38px;
    padding: 9px;
    width: 38px;
}

.mini-features strong {
    color: var(--ink);
}

.mini-features span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.search-box {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    display: flex;
    gap: 12px;
    max-width: 420px;
    padding: 0 16px;
}

.search-box svg {
    color: #879bb7;
    height: 22px;
    width: 22px;
}

.search-box input {
    border: 0;
    height: 54px;
    outline: 0;
    width: 100%;
}

.stats-bar,
.mission-panel,
.table-panel,
.faq-layout,
.application-card,
.next-card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -50px;
    overflow: hidden;
    padding: 18px 8px;
    position: relative;
    z-index: 5;
}

.page-career .stats-bar,
.page-about .stats-bar,
.page-program .stats-bar {
    margin-top: 0;
}

.page-home .stats-bar {
    margin-top: -84px;
}

.stat-item {
    align-items: center;
    border-right: 1px solid var(--line);
    display: grid;
    gap: 2px 12px;
    grid-template-columns: 50px 1fr;
    padding: 0 16px;
}

.stat-item .icon-ring {
    grid-row: 1 / 3;
}

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

.stat-item strong {
    color: #344b72;
    font-size: 11px;
    text-transform: uppercase;
}

.stat-item span:last-child {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.icon-ring {
    align-items: center;
    background: radial-gradient(circle at 35% 20%, #fff, #eaf8fd);
    border: 1px solid #d4edf6;
    border-radius: 50%;
    color: var(--cyan);
    display: inline-flex;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.icon-ring.large {
    height: 64px;
    width: 64px;
}

.icon-ring svg {
    height: 24px;
    width: 24px;
}

.icon-ring.large svg {
    height: 30px;
    width: 30px;
}

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

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

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

.soft-card,
.module-card,
.testimonial,
.quick-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(8, 36, 95, .04);
    padding: 16px;
}

.page-home .soft-card {
    padding: 16px;
}

.page-home .soft-card .icon-ring {
    height: 50px;
    width: 50px;
}

.page-home .soft-card .icon-ring svg {
    height: 24px;
    width: 24px;
}

.soft-card h3,
.module-card h3 {
    font-size: 14px;
    line-height: 1.3;
    margin: 14px 0 8px;
}

.page-home .soft-card h3 {
    font-size: 16px;
    line-height: 1.25;
    margin: 12px 0 8px;
}

.soft-card p,
.module-card p,
.testimonial p,
.quick-card a {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.42;
}

.page-program .soft-card {
    align-items: center;
    display: grid;
    gap: 5px 13px;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 118px;
    padding: 16px 18px;
}

.page-program .soft-card .icon-ring {
    grid-row: span 2;
    height: 46px;
    width: 46px;
}

.page-program .soft-card .icon-ring svg {
    height: 22px;
    width: 22px;
}

.page-program .soft-card h3 {
    font-size: 13px;
    margin: 0;
}

.page-program .soft-card p {
    font-size: 12px;
    line-height: 1.42;
    margin: 0;
}

.page-home .soft-card p {
    font-size: 14px;
    line-height: 1.38;
}

.path-panel {
    background: linear-gradient(135deg, #eefaff, #f8fdff);
    border: 1px solid #dff1f8;
    border-radius: 8px;
    padding: 34px 40px;
}

.path-steps {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-step {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 64px 1fr;
    position: relative;
}

.path-step .icon-ring.large {
    height: 64px;
    width: 64px;
}

.path-step .icon-ring.large svg {
    height: 30px;
    width: 30px;
}

.path-step:not(:last-child)::after {
    border-top: 2px dotted #9fd8e7;
    content: "";
    left: calc(100% + 8px);
    position: absolute;
    top: 32px;
    width: 34px;
}

.path-step h3 {
    margin: 0 0 6px;
}

.path-step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.logo-title {
    color: #6d7e9b;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0;
    margin: 28px 0 32px;
    text-align: center;
    text-transform: uppercase;
}

.logo-strip {
    align-items: center;
    display: grid;
    gap: 34px clamp(28px, 2.8vw, 44px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0 0 42px;
    width: 100%;
}

.logo-strip span {
    color: #71819b;
    font-size: 26px;
    font-weight: 800;
    opacity: .9;
}

.logo-strip img {
    display: block;
    filter: grayscale(1);
    height: clamp(58px, 4.6vw, 74px);
    justify-self: center;
    max-width: 100%;
    object-fit: contain;
    opacity: .52;
    width: 100%;
}

.page-about .logo-strip img {
    height: 38px;
    max-width: 172px;
    opacity: .52;
}

.location-section {
    background: linear-gradient(180deg, #fff 0%, #f7fbfe 100%);
}

.location-layout {
    align-items: stretch;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
}

.location-copy {
    background: #fff;
    border: 1px solid #dbe8f1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 34px;
}

.location-intro {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
    margin: 0;
}

.location-details {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.location-detail {
    align-items: flex-start;
    display: grid;
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr);
}

.location-detail .icon-ring {
    height: 44px;
    width: 44px;
}

.location-detail .icon-ring svg {
    height: 21px;
    width: 21px;
}

.location-detail strong,
.location-detail span,
.location-detail a {
    display: block;
}

.location-detail strong {
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 3px;
}

.location-detail span,
.location-detail a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.location-detail a {
    font-weight: 800;
    text-decoration: none;
}

.location-detail a:hover {
    color: var(--cyan);
}

.location-map-shell {
    background: #dbe8f1;
    border: 1px solid #dbe8f1;
    border-radius: 8px;
    box-shadow: 0 22px 56px rgba(16, 37, 77, .12);
    min-height: 430px;
    overflow: hidden;
}

.location-map-shell iframe {
    border: 0;
    display: block;
    height: 100%;
    min-height: 430px;
    width: 100%;
}

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

.icon-strip.count-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-strip.count-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.icon-strip div {
    border-right: 1px solid var(--line);
    display: grid;
    gap: 6px;
    justify-items: center;
    min-width: 0;
    padding: 6px 10px;
    text-align: center;
}

.icon-strip div:last-child {
    border-right: 0;
}

.icon-strip svg {
    color: var(--cyan);
    height: 30px;
    width: 30px;
}

.icon-strip strong {
    font-size: 12px;
    overflow-wrap: anywhere;
}

.icon-strip span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.cta-band {
    align-items: center;
    background: linear-gradient(135deg, #031b4b, #032d6e);
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 22px;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    min-height: 104px;
    padding: 20px 30px;
}

.cta-band > * {
    min-width: 0;
}

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

.cta-band h2 {
    font-size: 23px;
    overflow-wrap: anywhere;
}

.cta-band p {
    font-size: 13px;
    line-height: 1.5;
    opacity: .9;
}

.cta-icon {
    align-items: center;
    background: linear-gradient(135deg, #0fd3eb, #0380a6);
    border-radius: 50%;
    display: inline-flex;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.cta-icon svg {
    height: 28px;
    width: 28px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    min-width: 0;
}

.cta-features span {
    border-left: 1px solid rgba(255, 255, 255, .38);
    flex: 0 1 auto;
    font-weight: 800;
    overflow-wrap: anywhere;
    padding-left: 28px;
}

.cta-band-light {
    align-items: center;
    background: linear-gradient(120deg, #eaf9ff, #fff);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 22px;
    grid-template-columns: 76px 1fr auto;
    padding: 18px 26px;
}

.cta-band-light h2 {
    font-size: 25px;
    margin: 0 0 8px;
}

.cta-band-light p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.42;
    margin: 0 0 12px;
}

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

.module-card {
    min-height: 198px;
    position: relative;
}

.page-curriculum .module-grid {
    gap: 14px 16px;
}

.page-curriculum .module-card {
    min-height: 158px;
    padding: 13px 15px;
}

.page-curriculum .module-card .icon-ring {
    height: 42px;
    width: 42px;
}

.page-curriculum .module-card .icon-ring svg {
    height: 20px;
    width: 20px;
}

.page-curriculum .module-card h3 {
    font-size: 12px;
    line-height: 1.22;
    margin: 9px 0 5px;
}

.page-curriculum .module-card p {
    font-size: 11px;
    line-height: 1.25;
    margin: 0;
}

.module-card:nth-child(n+9) {
    grid-column: span 1;
}

.module-number {
    align-items: center;
    background: #009ba9;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 31px;
    justify-content: center;
    left: -12px;
    position: absolute;
    top: -17px;
    width: 31px;
}

.module-card ul {
    color: #264263;
    font-size: 12px;
    line-height: 1.36;
    margin: 10px 0 0;
    padding-left: 16px;
}

.page-curriculum .module-card ul {
    font-size: 10px;
    line-height: 1.24;
    margin-top: 6px;
    padding-left: 13px;
}

.tools-strip {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.tool-card {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 112px;
    padding: 14px 7px 12px;
    text-align: center;
}

.tool-card img {
    height: 44px;
    max-width: 58px;
    object-fit: contain;
    width: 58px;
}

.tool-card span {
    align-items: center;
    color: var(--ink);
    display: flex;
    min-height: 26px;
}

.table-panel {
    padding: 24px 28px;
}

.table-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.table-head h2 {
    font-size: 24px;
    margin: 0;
}

.filters {
    display: flex;
    gap: 12px;
}

.filters button {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
}

.filters svg {
    color: var(--cyan);
    height: 17px;
    width: 17px;
}

.cohort-table {
    display: grid;
}

.cohort-row {
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    display: grid;
    gap: 12px;
    grid-template-columns: 1.12fr .82fr 1.42fr .72fr 1.28fr .64fr;
    min-height: 82px;
    padding: 12px 0;
}

.cohort-row-head {
    background: #f8fbfd;
    color: #0b2b64;
    font-size: 13px;
    font-weight: 900;
    min-height: 48px;
    padding: 0 8px;
}

.cohort-row strong,
.cohort-row small,
.cohort-row em {
    display: block;
}

.cohort-row small {
    color: var(--muted);
    margin-top: 6px;
}

.cohort-row em {
    background: #d8fffb;
    border-radius: 999px;
    color: #008e9f;
    display: inline-flex;
    font-size: 11px;
    font-style: normal;
    margin: 0 0 0 6px;
    padding: 3px 8px;
}

.tag-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    max-width: 100%;
    overflow-x: auto;
}

.tag-list b {
    border-radius: 6px;
    color: #075a82;
    font-size: 11px;
    padding: 6px 7px;
    white-space: nowrap;
}

.cohort-row .btn-small {
    white-space: nowrap;
}

.tag-list b:nth-child(1) {
    background: #dcf9d8;
    color: #207d23;
}

.tag-list b:nth-child(2) {
    background: #eaf3ff;
}

.tag-list b:nth-child(3) {
    background: #efe7ff;
    color: #6330d3;
}

.panel-note {
    align-items: center;
    color: var(--ink);
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 13px;
    margin: 16px 0 0;
}

.panel-note svg {
    color: var(--cyan);
    height: 18px;
    width: 18px;
}

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

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

.process-step {
    position: relative;
    text-align: center;
}

.process-step:not(:last-child)::after {
    border-top: 2px dotted var(--cyan);
    content: "";
    left: calc(50% + 43px);
    position: absolute;
    top: 32px;
    width: calc(100% - 56px);
}

.process-step b {
    align-items: center;
    background: var(--cyan);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    height: 20px;
    justify-content: center;
    margin-left: -20px;
    position: relative;
    top: 14px;
    width: 20px;
    z-index: 2;
}

.process-step h3 {
    font-size: 16px;
    margin: 18px 0 8px;
}

.process-step p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.38;
    margin: 0;
}

.cohort-support-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: .95fr 1.05fr;
}

.advisor-panel,
.cohort-faq-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.advisor-panel {
    display: grid;
    grid-template-columns: 1fr 42%;
    min-height: 176px;
    overflow: hidden;
}

.advisor-copy {
    padding: 20px 0 20px 24px;
    position: relative;
    z-index: 1;
}

.advisor-copy .section-eyebrow {
    margin-bottom: 8px;
}

.advisor-copy h2,
.cohort-faq-card h2 {
    font-size: 20px;
    margin: 0 0 8px;
}

.advisor-copy p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    margin: 0 0 12px;
}

.advisor-panel img {
    align-self: end;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.cohort-faq-card {
    padding: 18px 22px;
}

.mini-accordion {
    display: grid;
    gap: 5px;
}

.mini-accordion a {
    align-items: center;
    background: #f8fbfd;
    border: 1px solid #edf4f8;
    border-radius: 6px;
    color: var(--ink);
    display: flex;
    font-size: 11px;
    font-weight: 800;
    justify-content: space-between;
    min-height: 28px;
    padding: 0 10px;
    text-align: left;
    text-decoration: none;
}

.mini-accordion b {
    color: var(--cyan);
}

.testimonial-grid,
.people-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
    background: linear-gradient(180deg, #f8fcff, #fff);
    display: grid;
    gap: 14px;
}

.testimonial-photo {
    aspect-ratio: 4 / 3;
    border-radius: 7px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.testimonial-copy {
    display: grid;
    gap: 9px;
}

.quote-mark {
    color: var(--cyan);
    font-size: 42px;
    font-weight: 900;
    line-height: .8;
}

.testimonial p {
    margin: 0;
}

.testimonial strong,
.testimonial small {
    display: block;
}

.testimonial small {
    color: var(--muted);
    margin-top: 5px;
}

.mission-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: -20px;
    padding: 30px 34px;
    position: relative;
    z-index: 6;
}

.mission-panel article {
    align-items: center;
    border-right: 1px solid var(--line);
    display: grid;
    gap: 20px;
    grid-template-columns: 78px 1fr;
    padding: 0 26px;
}

.mission-panel article:last-child {
    border-right: 0;
}

.mission-panel h3 {
    color: var(--cyan);
    font-size: 22px;
    margin: 0 0 10px;
}

.mission-panel p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.photo-collage {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
    margin: 30px auto 28px;
    max-width: 920px;
}

.photo-collage img {
    border: 5px solid #fff;
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(6, 25, 68, .18);
    height: 135px;
    object-fit: cover;
    transform: rotate(-3deg);
    width: 100%;
}

.photo-collage img:nth-child(2) {
    transform: rotate(3deg);
}

.photo-collage img:nth-child(3) {
    transform: rotate(-2deg);
}

.people-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    text-align: center;
}

.people-grid article h3 {
    margin: 14px 0 8px;
}

.people-grid article p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.faq-layout {
    align-items: start;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) 300px;
    padding: 30px;
}

.faq-tabs {
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 24px;
}

.faq-tabs button {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    min-height: 70px;
}

.faq-tabs button:hover {
    color: var(--cyan);
}

.faq-tabs button.active {
    border-bottom-color: var(--cyan);
    color: var(--cyan);
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
}

.accordion-item button {
    align-items: center;
    background: #fff;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font-size: 17px;
    font-weight: 900;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 24px;
    text-align: left;
    width: 100%;
}

.accordion-body {
    display: none;
    padding: 0 24px 20px;
}

.accordion-body p {
    color: #18345b;
    line-height: 1.65;
    margin: 0;
}

.accordion-item.is-open {
    background: linear-gradient(120deg, #eaf9ff, #fff);
}

.accordion-item.is-open button {
    background: transparent;
    color: var(--cyan);
}

.accordion-item.is-open .accordion-body {
    display: block;
}

.faq-empty {
    background: #f8fcff;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: #18345b;
    font-weight: 800;
    margin: 0;
    padding: 22px 24px;
}

.faq-sidebar {
    display: grid;
    gap: 20px;
}

.advisor-card {
    background: linear-gradient(135deg, #031b4b, #082f70);
    border-radius: 8px;
    color: #fff;
    padding: 32px 24px;
    text-align: center;
}

.advisor-card p {
    line-height: 1.5;
    opacity: .9;
}

.quick-card {
    display: grid;
    gap: 14px;
}

.quick-card h3 {
    margin: 0 0 8px;
}

.quick-card a {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
}

.quick-card a:last-child {
    border-bottom: 0;
}

.apply-section {
    padding-top: 28px;
}

.apply-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.application-card,
.next-card {
    padding: 36px 42px;
}

.application-card h2,
.next-card h2 {
    font-size: 29px;
    margin: 0 0 12px;
}

.application-card > p,
.next-card > p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 28px;
}

.form-alert {
    border-radius: 7px;
    font-weight: 800;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.form-alert.success {
    background: #e8fff1;
    color: #177c35;
}

.form-alert.error {
    background: #fff0f0;
    color: #a32929;
}

.form-grid {
    display: grid;
    gap: 22px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label,
.form-grid fieldset {
    border: 0;
    color: var(--ink);
    display: grid;
    font-weight: 900;
    gap: 10px;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.field-title {
    display: inline-flex;
    gap: 4px;
}

.form-grid b,
.terms b {
    color: #e23b3b;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    background: #fff;
    border: 1px solid #cfdbea;
    border-radius: 6px;
    color: var(--ink);
    min-height: 54px;
    min-width: 0;
    outline: 0;
    padding: 0 16px;
    width: 100%;
}

.form-grid select {
    text-overflow: ellipsis;
}

.form-grid textarea {
    min-height: 92px;
    padding: 15px 16px;
    resize: vertical;
}

.form-grid .wide {
    grid-column: 1 / -1;
}

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

.form-grid legend {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}

.form-grid fieldset label {
    align-items: center;
    border: 1px solid #cfdbea;
    border-radius: 6px;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 6px;
    justify-content: center;
    min-height: 54px;
    min-width: 0;
    padding: 0 8px;
    white-space: nowrap;
}

.form-grid fieldset input {
    flex: 0 0 auto;
    min-height: auto;
    width: 14px;
}

.terms {
    align-items: center;
    color: var(--muted);
    display: flex;
    gap: 10px;
    margin: 24px 0;
}

.terms input {
    flex: 0 0 auto;
}

.terms label {
    cursor: pointer;
}

.submit {
    border: 0;
    cursor: pointer;
    font-size: 18px;
    min-height: 62px;
    width: 100%;
}

.secure-note {
    align-items: center;
    color: var(--muted);
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0 0;
}

.secure-note svg {
    color: var(--cyan);
    height: 18px;
    width: 18px;
}

[hidden] {
    display: none !important;
}

body.modal-open {
    overflow: hidden;
}

.terms span {
    line-height: 1.45;
}

.terms button {
    background: transparent;
    border: 0;
    color: var(--cyan);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bot-field {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.captcha-field {
    align-items: center;
    display: flex;
    margin: 0 0 18px;
    min-height: 66px;
}

.captcha-field .g-recaptcha {
    max-width: 100%;
}

.signin-modal {
    align-items: center;
    display: grid;
    inset: 0;
    padding: 22px;
    position: fixed;
    z-index: 130;
}

.signin-backdrop {
    background: rgba(2, 19, 49, .62);
    inset: 0;
    position: absolute;
}

.signin-dialog {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(2, 19, 49, .28);
    margin: 0 auto;
    max-width: 430px;
    overflow: hidden;
    position: relative;
    width: min(100%, 430px);
}

.signin-close {
    align-items: center;
    background: #eef8fc;
    border: 1px solid #c7eefa;
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 25px;
    font-weight: 400;
    height: 34px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    z-index: 2;
}

.signin-modal-content {
    padding: 28px;
}

.signin-modal-brand {
    padding-right: 42px;
}

.signin-modal-brand img {
    display: block;
    height: 34px;
    max-width: 230px;
    object-fit: contain;
}

.signin-modal-brand p {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    margin: 14px 0 0;
    text-transform: uppercase;
}

.signin-login-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.signin-login-form h2 {
    color: var(--ink);
    font-size: 28px;
    margin: 0;
}

.signin-login-form label {
    display: grid;
    gap: 8px;
}

.signin-login-form label span {
    color: #2d4763;
    font-size: 13px;
    font-weight: 900;
}

.signin-login-form input {
    background: #f8fbfe;
    border: 1px solid #cad9e7;
    border-radius: 7px;
    color: #10254d;
    min-height: 44px;
    padding: 11px 12px;
    width: 100%;
}

.signin-login-form button[disabled] {
    cursor: progress;
    opacity: .72;
}

.signin-loading {
    color: var(--muted);
    font-weight: 800;
    padding: 22px;
    text-align: center;
}

.legal-modal {
    align-items: center;
    display: grid;
    inset: 0;
    padding: 22px;
    position: fixed;
    z-index: 120;
}

.legal-backdrop {
    background: rgba(2, 19, 49, .62);
    inset: 0;
    position: absolute;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(2, 19, 49, .28);
    margin: 0 auto;
    max-height: min(760px, 86vh);
    max-width: 880px;
    overflow: hidden;
    position: relative;
    width: min(100%, 880px);
}

.legal-head {
    align-items: flex-start;
    background: linear-gradient(120deg, #f5fbff, #fff);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 22px 26px;
}

.legal-head p {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.legal-head h2 {
    color: var(--ink);
    font-size: 28px;
    line-height: 1.1;
    margin: 0;
}

.legal-head small {
    color: var(--muted);
    display: block;
    margin-top: 7px;
}

.legal-close {
    align-items: center;
    background: #eef8fc;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 24px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    line-height: 1;
    width: 42px;
}

.legal-body {
    color: #18345b;
    display: grid;
    gap: 15px;
    max-height: calc(min(760px, 86vh) - 118px);
    overflow-y: auto;
    padding: 24px 26px 28px;
}

.legal-body h3 {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
    margin: 8px 0 0;
}

.legal-body p {
    line-height: 1.65;
    margin: 0;
}

.cookie-banner {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    bottom: 20px;
    box-shadow: 0 24px 70px rgba(2, 19, 49, .2);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 20px;
    padding: 18px;
    position: fixed;
    right: 20px;
    z-index: 110;
}

.cookie-banner h2 {
    color: var(--ink);
    font-size: 18px;
    margin: 0 0 5px;
}

.cookie-banner p {
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

.cookie-actions,
.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-actions .btn,
.cookie-modal-actions .btn {
    border-width: 1px;
    min-height: 44px;
    padding: 0 16px;
}

.cookie-option {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px;
}

.cookie-option h3 {
    margin-top: 0;
}

.cookie-option label {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    white-space: nowrap;
}

.cookie-option input {
    accent-color: var(--cyan);
    height: 18px;
    width: 18px;
}

.privacy-choice {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 7px;
    bottom: 18px;
    box-shadow: 0 12px 34px rgba(2, 19, 49, .12);
    color: var(--ink);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    left: 18px;
    min-height: 38px;
    padding: 0 13px;
    position: fixed;
    z-index: 90;
}

.next-card {
    display: grid;
    gap: 8px;
}

.next-step {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-template-columns: 58px 24px 1fr;
    padding: 16px 0;
    position: relative;
}

.next-step b {
    align-items: center;
    background: var(--cyan);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    margin-left: -22px;
    margin-top: 5px;
    width: 24px;
    z-index: 2;
}

.next-step h3 {
    margin: 0 0 8px;
}

.next-step p {
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

.basic-section {
    background: linear-gradient(180deg, #f5fbff, #fff);
    min-height: 430px;
}

.basic-section h1 {
    color: var(--ink-2);
    font-size: 62px;
    line-height: 1.08;
    margin: 0 0 18px;
}

.basic-section p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
    max-width: 720px;
}

.admin-body {
    background: #f3f7fb;
    color: #10254d;
    min-height: 100vh;
}

.admin-topbar {
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid #d9e6f2;
    display: flex;
    gap: 28px;
    min-height: 72px;
    padding: 0 34px;
    position: sticky;
    top: 0;
    z-index: 40;
}

.admin-brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 14px;
    font-weight: 900;
}

.admin-brand img {
    display: block;
    height: 30px;
    max-width: 210px;
    object-fit: contain;
}

.admin-brand span {
    border-left: 1px solid #d9e6f2;
    color: #42607e;
    font-size: 13px;
    letter-spacing: 0;
    padding-left: 14px;
    text-transform: uppercase;
}

.admin-nav {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.admin-nav a,
.admin-logout {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #38536f;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 13px;
}

.admin-nav a.active,
.admin-nav a:hover,
.admin-logout:hover {
    background: #e9faff;
    border-color: #c7eefa;
    color: #027fa4;
}

.admin-main {
    margin: 0;
    max-width: none;
    padding: clamp(28px, 2.4vw, 52px) clamp(32px, 3.2vw, 72px);
    width: 100%;
}

.admin-main.login-main {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.admin-login-panel {
    display: grid;
    gap: 28px;
    max-width: 480px;
    width: 100%;
}

.admin-login-brand {
    text-align: center;
}

.admin-login-brand img {
    height: 42px;
    max-width: 260px;
    object-fit: contain;
}

.admin-login-brand p {
    color: #4c6583;
    font-weight: 800;
    margin: 14px 0 0;
}

.admin-card {
    background: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 37, 77, .07);
}

.admin-login-card {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.admin-login-card h1 {
    font-size: 28px;
    margin: 0;
}

.admin-login-card p {
    color: #536b88;
    line-height: 1.55;
    margin: 0;
}

.admin-login-card label,
.admin-form label {
    display: grid;
    gap: 8px;
}

.admin-login-card label span,
.admin-form label span {
    color: #2d4763;
    font-size: 13px;
    font-weight: 900;
}

.admin-login-card input,
.admin-form input,
.admin-form select,
.admin-form textarea {
    background: #f8fbfe;
    border: 1px solid #cad9e7;
    border-radius: 7px;
    color: #10254d;
    min-height: 44px;
    padding: 11px 12px;
    width: 100%;
}

.admin-form textarea {
    min-height: 130px;
    resize: vertical;
}

.admin-alert {
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 14px;
}

.admin-alert.error {
    background: #fff0f0;
    border: 1px solid #ffcaca;
    color: #9d1c1c;
}

.admin-alert.success {
    background: #effbf4;
    border: 1px solid #bfe9ce;
    color: #176136;
}

.admin-alert.warning {
    background: #fff8e7;
    border: 1px solid #f1d58d;
    color: #836119;
    margin-bottom: 18px;
}

.admin-page-head {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.admin-page-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-page-head p {
    color: #027fa4;
    font-size: 13px;
    font-weight: 900;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.admin-page-head h1 {
    color: #10254d;
    font-size: 34px;
    line-height: 1.15;
    margin: 0;
}

.admin-stat-grid {
    display: grid;
    gap: clamp(14px, 1vw, 22px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 24px;
}

.admin-stat-card {
    background: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 8px;
    padding: 18px;
}

.admin-stat-card span {
    color: #536b88;
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.admin-stat-card strong {
    color: #10254d;
    display: block;
    font-size: 31px;
    line-height: 1;
    overflow-wrap: anywhere;
}

.admin-stat-card small {
    color: #6a7f96;
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    margin-top: 8px;
}

.admin-two-column {
    display: grid;
    gap: clamp(18px, 1.2vw, 28px);
    grid-template-columns: minmax(0, 2.2fr) minmax(360px, .8fr);
}

.admin-two-column > .admin-card:first-child {
    grid-row: span 2;
}

.admin-card-head {
    align-items: center;
    border-bottom: 1px solid #d9e6f2;
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
}

.admin-card-head h2 {
    font-size: 18px;
    margin: 0;
}

.admin-card-head a {
    color: #027fa4;
    font-size: 13px;
    font-weight: 900;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.admin-dashboard-table {
    min-width: 920px;
}

.admin-applications-table {
    min-width: 1220px;
}

.admin-api-table {
    min-width: 1080px;
}

.admin-api-log-table {
    min-width: 1060px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #edf3f8;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #536b88;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-table td {
    color: #203957;
    font-size: 14px;
}

.admin-table td a {
    color: #027fa4;
    font-weight: 900;
}

.admin-status {
    background: #eef8fb;
    border: 1px solid #caedf5;
    border-radius: 999px;
    color: #027fa4;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 5px 9px;
    white-space: nowrap;
}

.admin-status.status-new,
.admin-status.status-no_response {
    background: #fff8e7;
    border-color: #f1d58d;
    color: #836119;
}

.admin-status.status-contacted,
.admin-status.status-advisor_call_scheduled,
.admin-status.status-waitlisted {
    background: #eef8fb;
    border-color: #caedf5;
    color: #027fa4;
}

.admin-status.status-accepted {
    background: #effbf4;
    border-color: #bfe9ce;
    color: #176136;
}

.admin-status.status-not_a_fit {
    background: #f3f6f9;
    border-color: #d9e2eb;
    color: #536b88;
}

.admin-next-action {
    border: 1px solid;
    border-radius: 7px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    padding: 7px 9px;
    white-space: nowrap;
}

.admin-next-action.action-urgent,
.admin-action-strip.action-urgent {
    background: #fff8e7;
    border-color: #f1d58d;
    color: #75500d;
}

.admin-next-action.action-active,
.admin-action-strip.action-active {
    background: #eef8fb;
    border-color: #caedf5;
    color: #027fa4;
}

.admin-next-action.action-success,
.admin-action-strip.action-success {
    background: #effbf4;
    border-color: #bfe9ce;
    color: #176136;
}

.admin-next-action.action-muted,
.admin-action-strip.action-muted {
    background: #f3f6f9;
    border-color: #d9e2eb;
    color: #536b88;
}

.admin-list {
    display: grid;
    gap: 0;
    padding: 4px 20px 20px;
}

.admin-list-row {
    align-items: center;
    border-bottom: 1px solid #edf3f8;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 14px 0;
}

.admin-list-row span {
    color: #38536f;
    font-weight: 800;
}

.admin-list-row strong {
    color: #10254d;
    font-size: 20px;
}

.admin-filter-bar {
    align-items: end;
    display: grid;
    gap: clamp(14px, 1vw, 22px);
    grid-template-columns: minmax(300px, 2fr) repeat(6, minmax(150px, 1fr)) auto;
    margin-bottom: 18px;
    padding: 18px;
}

.admin-filter-bar label,
.admin-stack-form label {
    display: grid;
    gap: 7px;
}

.admin-filter-bar label span,
.admin-stack-form label span {
    color: #536b88;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-filter-bar input,
.admin-filter-bar select,
.admin-stack-form input,
.admin-stack-form select,
.admin-stack-form textarea {
    background: #f8fbfe;
    border: 1px solid #cad9e7;
    border-radius: 7px;
    color: #10254d;
    min-height: 42px;
    padding: 10px 11px;
}

.admin-filter-actions {
    display: flex;
    gap: 8px;
}

.admin-table small {
    color: #6a7f96;
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.admin-inline-code {
    background: #f3f6f9;
    border: 1px solid #d9e2eb;
    border-radius: 6px;
    color: #203957;
    display: inline-block;
    font-size: 12px;
    max-width: 360px;
    overflow-wrap: anywhere;
    padding: 5px 7px;
}

.admin-row-action {
    background: #f0fbfe;
    border: 1px solid #caedf5;
    border-radius: 7px;
    color: #027fa4;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
}

.admin-detail-grid {
    display: grid;
    gap: clamp(18px, 1.2vw, 28px);
    grid-template-columns: minmax(0, 1.6fr) minmax(420px, .75fr);
    margin-bottom: 18px;
}

.admin-action-strip {
    align-items: center;
    border: 1px solid;
    border-radius: 8px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: -6px 0 22px;
    padding: 16px 18px;
}

.admin-action-strip span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.admin-action-strip strong {
    display: block;
    font-size: 20px;
}

.admin-action-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-detail-card {
    min-width: 0;
}

.admin-definition-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 6px 20px 20px;
}

.admin-definition-list div {
    border-bottom: 1px solid #edf3f8;
    display: grid;
    gap: 16px;
    grid-template-columns: 160px minmax(0, 1fr);
    padding: 13px 0;
}

.admin-definition-list dt {
    color: #536b88;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-definition-list dd {
    color: #203957;
    margin: 0;
    overflow-wrap: anywhere;
}

.admin-definition-list a {
    color: #027fa4;
    font-weight: 900;
}

.admin-stack-form {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.admin-stack-form textarea {
    min-height: 150px;
}

.admin-stack-form .admin-check-row {
    align-items: center;
    display: flex;
    gap: 10px;
}

.admin-stack-form .admin-check-row input {
    flex: 0 0 auto;
    height: 18px;
    min-height: 0;
    padding: 0;
    width: 18px;
}

.admin-stack-form .admin-check-row span {
    color: #203957;
    font-size: 14px;
    font-weight: 900;
    text-transform: none;
}

.admin-text-block {
    color: #203957;
    line-height: 1.7;
    padding: 20px;
    white-space: normal;
}

.admin-timeline {
    display: grid;
    gap: 0;
    padding: 4px 20px 20px;
}

.admin-timeline-item {
    border-bottom: 1px solid #edf3f8;
    display: grid;
    gap: 6px;
    padding: 16px 0;
}

.admin-timeline-item strong {
    color: #10254d;
}

.admin-timeline-item time {
    color: #6a7f96;
    font-size: 12px;
    font-weight: 800;
}

.admin-timeline-item p,
.admin-empty {
    color: #536b88;
    line-height: 1.6;
    margin: 0;
}

.admin-email-log-card {
    margin-bottom: 18px;
}

.email-delivery-log-card {
    margin-top: 18px;
}

.email-editor-shell {
    align-items: start;
    display: grid;
    gap: clamp(18px, 1.2vw, 28px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
}

.email-delivery-layout {
    align-items: start;
    display: grid;
    gap: clamp(18px, 1.2vw, 28px);
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
}

.email-delivery-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.email-delivery-field-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1.3fr) minmax(110px, .45fr) minmax(160px, .55fr) minmax(130px, .45fr);
}

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

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

.admin-template-form {
    min-width: 0;
    overflow: hidden;
}

.email-editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.email-editor-actions .btn {
    min-height: 38px;
    padding: 10px 12px;
}

.email-editor-workspace {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
}

.email-editor-code,
.text-fallback-field {
    align-content: start;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-width: 0;
}

.admin-code-field {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 13px;
    line-height: 1.55;
    tab-size: 4;
}

.html-code-field {
    height: 620px;
    min-height: 620px;
    white-space: pre;
}

.text-code-field {
    height: 300px;
    min-height: 300px;
}

.email-preview-panel {
    background: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 8px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 620px;
    min-width: 0;
    overflow: hidden;
}

.email-preview-panel header {
    align-items: center;
    background: #f8fbfe;
    border-bottom: 1px solid #d9e6f2;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 13px 14px;
}

.email-preview-panel header span {
    color: #536b88;
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.email-preview-panel header strong {
    color: #10254d;
    display: block;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.email-preview-panel header b {
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 9px;
}

.email-preview-panel header b.ok {
    background: #effbf4;
    border: 1px solid #bfe9ce;
    color: #176136;
}

.email-preview-panel header b.warning {
    background: #fff8e7;
    border: 1px solid #f1d58d;
    color: #836119;
}

.email-preview-frame {
    background: #f4f8fb;
    min-height: 0;
    overflow: auto;
    padding: 18px;
}

.email-editor-footer {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.email-editor-footer p {
    color: #536b88;
    line-height: 1.45;
    margin: 0;
}

.email-variable-card {
    position: static;
}

.email-editor-side {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.email-test-card .btn {
    width: 100%;
}

.admin-variable-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.admin-variable-list button {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.admin-variable-list code {
    background: #f0fbfe;
    border: 1px solid #caedf5;
    border-radius: 7px;
    color: #027fa4;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 10px;
}

.admin-variable-list button:hover code,
.admin-variable-list button:focus-visible code {
    background: #dff7fc;
    border-color: #9fe4f3;
}

@media (min-width: 1280px) {
    .container {
        max-width: 1360px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .site-header {
        padding-left: 46px;
        padding-right: 46px;
    }

    .hero-light {
        padding-top: 46px;
    }

    .hero-grid {
        gap: 44px;
        grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr);
    }

    .hero-curriculum .hero-grid,
    .hero-cohorts .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
    }

    .hero-copy h1 {
        font-size: 42px;
        line-height: 1.12;
        max-width: 650px;
    }

    .hero-copy .hero-lede {
        font-size: 16px;
        max-width: 650px;
    }

    .lifecycle-art img,
    .calendar-art img {
        max-width: 610px;
    }

    .section-heading {
        font-size: 31px;
        margin-bottom: 22px;
    }

    .stats-bar {
        padding: 20px 12px;
    }

    .stat-item {
        grid-template-columns: 56px 1fr;
        padding: 0 24px;
    }

    .stat-item strong {
        font-size: 13px;
    }

    .stat-item span:last-child {
        font-size: 13px;
    }

    .page-program .soft-card {
        min-height: 136px;
    }

    .page-program .soft-card h3 {
        font-size: 14px;
    }

    .page-program .soft-card p {
        font-size: 13px;
    }

    .page-curriculum .module-card {
        min-height: 178px;
        padding: 15px 16px;
    }

    .page-curriculum .module-card h3 {
        font-size: 13px;
    }

    .page-curriculum .module-card p {
        font-size: 12px;
    }

    .page-curriculum .module-card ul {
        font-size: 11px;
    }

    .table-panel {
        padding: 28px 34px;
    }

    .cohort-row {
        grid-template-columns: 1.1fr .75fr 2.2fr .65fr 1fr .55fr;
        min-height: 88px;
    }
}

@media (max-width: 1500px) {
    .email-editor-shell {
        grid-template-columns: 1fr;
    }

    .email-editor-side {
        position: static;
    }
}

@media (max-width: 1360px) {
    .admin-filter-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-filter-actions {
        grid-column: 1 / -1;
    }

    .email-editor-workspace {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .site-header {
        gap: 18px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .brand img {
        height: 32px;
        max-width: 184px;
    }

    .site-nav {
        gap: 14px;
    }

    .site-nav a {
        font-size: 13px;
    }

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

    .logo-strip img {
        max-width: 220px;
    }
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 16px;
        padding-top: 16px;
        position: relative;
    }

    .site-nav {
        flex-wrap: wrap;
        margin-left: 0;
        padding-right: 104px;
        white-space: normal;
    }

    .site-nav a {
        min-height: 30px;
    }

    .site-nav a.active::after {
        bottom: -5px;
    }

    .signin {
        position: absolute;
        right: 22px;
        top: 13px;
    }

    .hero-grid,
    .hero-curriculum .hero-grid,
    .hero-cohorts .hero-grid,
    .hero-grid-wide,
    .apply-layout,
    .faq-layout,
    .location-layout,
    .cohort-support-grid {
        grid-template-columns: 1fr;
    }

    .wide-photo {
        margin-right: 0;
        min-height: 280px;
    }

    .stats-bar,
    .card-grid,
    .card-grid.six,
    .card-grid.count-5,
    .path-steps,
    .icon-strip,
    .icon-strip.count-4,
    .icon-strip.count-6,
    .module-grid,
    .tools-strip,
    .process-steps,
    .page-cohorts .process-steps,
    .mission-panel,
    .testimonial-grid,
    .people-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-bar {
        margin-top: 0;
    }

    .page-home .stats-bar {
        margin-top: 0;
    }

    .stat-item,
    .mission-panel article {
        border-right: 0;
    }

    .icon-strip div:nth-child(2n) {
        border-right: 0;
    }

    .path-step:not(:last-child)::after,
    .process-step:not(:last-child)::after {
        display: none;
    }

    .cohort-row,
    .cohort-row-head {
        grid-template-columns: 1fr;
    }

    .cohort-row-head {
        display: none;
    }

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

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

    .cta-features {
        gap: 16px 24px;
    }

    .cta-features span {
        flex-basis: calc(50% - 12px);
    }

    .advisor-panel {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-bottom: 16px;
        padding-top: 16px;
        position: relative;
    }

    .admin-nav {
        flex-wrap: wrap;
        margin-left: 0;
    }

    .admin-stat-grid,
    .admin-two-column,
    .admin-detail-grid,
    .email-delivery-layout,
    .email-editor-shell,
    .email-editor-workspace {
        grid-template-columns: 1fr;
    }

    .admin-two-column > .admin-card:first-child {
        grid-row: auto;
    }

    .email-editor-side {
        position: static;
    }

    .admin-filter-bar {
        align-items: stretch;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-filter-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        padding: 0 18px;
    }

    .section {
        padding: 24px 0;
    }

    .section-tight {
        padding: 16px 0;
    }

    .hero-copy h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-art img {
        max-width: 100%;
        width: 100%;
    }

    .mini-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mini-features div {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .section-heading {
        font-size: 29px;
    }

    .basic-section h1 {
        font-size: 38px;
    }

    .hero-home,
    .hero-home-inner {
        min-height: 640px;
    }

    .stats-bar,
    .card-grid,
    .card-grid.six,
    .card-grid.count-5,
    .path-steps,
    .icon-strip,
    .icon-strip.count-4,
    .icon-strip.count-6,
    .module-grid,
    .tools-strip,
    .process-steps,
    .page-cohorts .process-steps,
    .mission-panel,
    .testimonial-grid,
    .people-grid,
    .photo-collage,
    .form-grid,
    .form-grid fieldset {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .mission-panel article,
    .path-step {
        grid-template-columns: 58px 1fr;
        padding: 18px;
    }

    .actions {
        align-items: stretch;
        width: 100%;
    }

    .actions .btn {
        width: 100%;
    }

    .logo-title {
        font-size: 13px;
        margin: 20px 0 24px;
    }

    .logo-strip {
        display: grid;
        gap: 30px 22px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 40px;
    }

    .logo-strip img {
        height: 48px;
        justify-self: center;
        max-width: min(178px, 100%);
    }

    .location-copy {
        padding: 24px;
    }

    .location-map-shell,
    .location-map-shell iframe {
        min-height: 320px;
    }

    .location-detail {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .location-detail .icon-ring {
        height: 40px;
        width: 40px;
    }

    .icon-strip {
        gap: 18px;
    }

    .icon-strip div {
        border-right: 0;
        padding: 10px 18px;
    }

    .icon-strip strong {
        font-size: 14px;
    }

    .icon-strip span {
        font-size: 12px;
    }

    .advisor-panel {
        grid-template-columns: 1fr;
    }

    .advisor-copy {
        padding: 24px;
    }

    .advisor-copy .btn {
        width: 100%;
    }

    .advisor-panel img {
        height: 190px;
    }

    .cta-features {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .cta-features span {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .38);
        padding: 12px 0 0;
    }

    .faq-tabs {
        grid-template-columns: 1fr;
    }

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

    .tool-card {
        min-height: 98px;
    }

    .tool-card img {
        height: 38px;
        width: 48px;
    }

    .application-card,
    .next-card,
    .table-panel,
    .faq-layout,
    .path-panel,
    .cta-band,
    .cta-band-light {
        padding: 24px;
    }

    .table-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .filters {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .filters button {
        width: 100%;
    }

    .cta-band-light {
        grid-template-columns: 1fr;
    }

    .signin-modal,
    .legal-modal {
        padding: 12px;
    }

    .signin-modal-content {
        padding: 22px;
    }

    .signin-modal-brand img {
        max-width: 190px;
    }

    .legal-head {
        padding: 18px;
    }

    .legal-head h2 {
        font-size: 23px;
    }

    .legal-body {
        padding: 18px;
    }

    .cookie-banner,
    .cookie-option {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .cookie-actions,
    .cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cookie-actions .btn,
    .cookie-modal-actions .btn {
        width: 100%;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-page-head .btn,
    .admin-page-actions,
    .admin-page-actions form {
        width: 100%;
    }

    .admin-stat-grid {
        gap: 10px;
    }

    .email-delivery-field-grid,
    .email-delivery-field-grid.two,
    .email-delivery-field-grid.three,
    .email-delivery-status-grid {
        grid-template-columns: 1fr;
    }

    .admin-login-card {
        padding: 22px;
    }

    .admin-filter-bar {
        grid-template-columns: 1fr;
    }

    .admin-filter-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-definition-list div {
        gap: 6px;
        grid-template-columns: 1fr;
    }

    .admin-card-head,
    .admin-action-strip,
    .email-editor-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-action-strip-actions,
    .admin-action-strip-actions .btn,
    .email-editor-actions,
    .email-editor-actions .btn,
    .email-editor-footer .btn {
        width: 100%;
    }

    .html-code-field,
    .email-preview-panel {
        min-height: 460px;
    }
}
