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

:root {
  --primary: #17557a;
  --primary-dark: #0b3a5b;
  --ctc-blue: #3B6F97;
  --ctc-light-blue: #AFDEF5;
  --ctc-pale-blue: #B4E0F2;
  --ctc-grey: #E3E2E7;
  --ctc-mid-grey: #C5C5C5;
  --ctc-student-green: #C7E1C0;
  --ctc-student-purple: #B5B0E6;
  --green: #305846;
  --mint: #bfeccc;
  --sky: #bde9ff;
  --surface: #faf9fe;
  --soft: #f4f3f8;
  --line: #dfe3e8;
  --text: #1a1b1f;
  --muted: #5f6670;
  --white: #fff;
  --shadow: 0 18px 45px rgba(12, 35, 54, 0.12);
  --soft-shadow: 0 8px 24px rgba(12, 35, 54, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-feature-settings: "liga";
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.utility-bar {
  width: 100%;
  background: #b7dced;
  border-bottom: 1px solid rgba(23, 85, 122, 0.14);
}

.utility-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.utility-link {
  padding: 6px 0;
  color: #0b3a5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.utility-link:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.utility-link:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

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

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

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

.brand img {
  width: 188px;
  max-height: 62px;
  object-fit: contain;
}

.footer .brand img {
  width: 230px;
  max-height: 76px;
}

.footer-brand-line {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  color: #20242a;
}

.nav-links a {
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(23, 85, 122, 0.2);
  cursor: pointer;
}

.button:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: var(--white);
  color: var(--primary);
  border-color: #c9d3dc;
  box-shadow: none;
}

.button.pill {
  border-radius: 999px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  padding: 86px 0;
}

.hero.split {
  background: var(--soft);
}

.home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eef2f4;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.84) 44%, rgba(255,255,255,0.12) 80%);
}

.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 76px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

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

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #d7dde3;
  box-shadow: var(--shadow);
}

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

.hero-image {
  aspect-ratio: 1.45 / 1;
}

.business-hero-image img {
  object-position: center;
}

.business-hero-image .floating-card {
  left: 24px;
  bottom: 24px;
  max-width: min(300px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.78);
}

.course-hero-image img {
  object-position: center;
}

.course-hero-image .floating-card {
  left: 24px;
  bottom: 24px;
  max-width: min(300px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.78);
}

.about-hero-image img {
  object-position: center;
}

.about-hero-image .floating-card {
  left: 24px;
  bottom: 24px;
  max-width: min(300px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.78);
}

.home-training-image .floating-card {
  left: 24px;
  bottom: 24px;
  max-width: min(300px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.78);
}

.funding-hero-image img {
  object-position: center;
}

.funding-hero-image .floating-card {
  left: 24px;
  bottom: 24px;
  max-width: min(300px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.78);
}

.floating-card {
  position: absolute;
  left: -28px;
  bottom: -26px;
  max-width: 255px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section {
  padding: 94px 0;
  background: var(--white);
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: #172128;
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

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

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.content-card {
  padding: 30px;
}

.icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #e8f4fb;
  color: var(--primary);
}

.feature-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-row + .feature-row {
  margin-top: 28px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.home-workplace-grid .bento-card.large,
.home-workplace-grid .bento-card.small {
  grid-column: span 4;
}

.bento-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
  box-shadow: var(--soft-shadow);
}

.bento-card.large {
  grid-column: span 8;
}

.bento-card.small {
  grid-column: span 4;
  padding: 30px;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(to top, rgba(10, 69, 99, 0.72), rgba(10, 69, 99, 0.06));
}

.problem-card {
  display: grid;
  grid-template-columns: 1fr 46px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.step-card {
  padding: 34px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.step-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
}

.course-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course-card .button {
  margin-top: auto;
}

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

.course-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
}

.tag {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 5px;
  background: #c8ead7;
  color: #244e3b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.course-list {
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.course-list li {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
}

.course-filters {
  margin-top: 26px;
}

.course-filters .filter-pill {
  border: 0;
  cursor: pointer;
}

.course-filter {
  cursor: pointer;
}

.course-filter.is-active {
  background: var(--primary, #0b5f87);
  color: #ffffff;
}

.course-filters .filter-pill:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.course-card.is-hidden {
  display: none;
}

.course-empty-state {
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.course-detail-list {
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.course-detail-list li {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.course-detail-list strong {
  color: var(--text);
}

.method-steps {
  margin-top: 32px;
}

.course-quote-image {
  aspect-ratio: 1.1 / 1;
}

.quote-overlay {
  position: absolute;
  inset: auto 28px 28px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(10, 53, 88, 0.74);
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}

.cta-panel {
  padding: 58px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), #377aa3);
  color: var(--white);
  box-shadow: var(--shadow);
}

.course-guide-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(23, 85, 122, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(175, 222, 245, 0.34), rgba(199, 225, 192, 0.22)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.course-guide-panel h2 {
  max-width: 760px;
}

.course-guide-panel p {
  margin-bottom: 0;
}

.course-guide-panel .button {
  white-space: nowrap;
}

.stats-box {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}

.about-copy {
  color: var(--muted);
  font-size: 17px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-focus-grid .content-card {
  min-height: 100%;
}

.about-capta-image {
  aspect-ratio: 1.35 / 1;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 40px;
  align-items: center;
}

.about-cta p {
  max-width: 760px;
  margin-bottom: 0;
}

.about-cta .button {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.about-cta .button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.mission-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.mission-preview p {
  max-width: 720px;
  margin-bottom: 0;
}

.mission-preview .eyebrow {
  color: rgba(255,255,255,0.76);
}

.mission-preview .button,
.mission-feature .button {
  background: var(--white);
  color: var(--primary);
  box-shadow: none;
}

.mission-hero-image img {
  object-position: center;
}

.mission-hero-image .floating-card {
  left: 24px;
  bottom: 24px;
  max-width: min(310px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.8);
}

.mission-card-grid {
  align-items: stretch;
}

.mission-item {
  min-height: 100%;
  padding: 30px;
}

.mission-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #e8f4fb;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mission-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.mission-highlight {
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(175, 222, 245, 0.36), rgba(199, 225, 192, 0.18)),
    var(--white);
}

.mission-highlight h3 {
  margin-top: 22px;
}

.mission-highlight p {
  color: var(--muted);
  margin-bottom: 0;
}

.mission-affiliations {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(23, 85, 122, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.mission-affiliations p {
  margin-bottom: 0;
}

.mission-logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.mission-logo-strip img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.training-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.training-tag-grid span,
.training-tag-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: var(--soft-shadow);
}

.training-tag-grid a:hover,
.training-tag-grid a:focus-visible {
  color: var(--primary);
  border-color: rgba(23, 85, 122, 0.38);
}

.business-card-grid .content-card,
.benefit-card {
  min-height: 100%;
}

.benefit-card h3 {
  margin: 18px 0 0;
  font-size: 17px;
}

.funding-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.funding-card p {
  color: rgba(255,255,255,0.78);
}

.funding-note {
  max-width: 880px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.funding-note p {
  color: rgba(255,255,255,0.78);
}

.funding-note .button {
  margin: 10px 0 20px;
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.credential-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e8f4fb;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: "check";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  line-height: 1;
}

.final-business-cta {
  max-width: 760px;
  margin: auto;
  padding: 58px;
  text-align: center;
  background: linear-gradient(135deg, #f9fcfd, #e9f2f5);
}

.important-info {
  max-width: 860px;
  margin: auto;
  background: linear-gradient(135deg, #f9fcfd, #e9f2f5);
}

.access-equity-panel {
  background: linear-gradient(135deg, #eef8fb 0%, #f7fbfd 100%);
  border: 1px solid rgba(13, 94, 132, 0.12);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 18px 45px rgba(13, 94, 132, 0.08);
}

.access-equity-panel h2 {
  margin-top: 0;
}

.section-intro {
  max-width: 850px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.access-card {
  background: #ffffff;
  border: 1px solid rgba(13, 94, 132, 0.10);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(15, 45, 65, 0.06);
}

.access-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #dff3fb;
  color: #0b5f87;
}

.access-card:nth-child(2) .access-icon {
  background: #e4f6ec;
  color: #2d7a5f;
}

.access-card:nth-child(3) .access-icon {
  background: #eef0ff;
  color: #3856a3;
}

.access-card:nth-child(4) .access-icon {
  background: #fff0e5;
  color: #9a541d;
}

.access-card:nth-child(5) .access-icon {
  background: #e9f8f2;
  color: #28745e;
}

.access-card:nth-child(6) .access-icon {
  background: #f4ecff;
  color: #7050a6;
}

.access-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.25;
}

.access-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.access-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.student-theme {
  --student-accent: var(--ctc-student-green);
  --student-accent-strong: #8fbe88;
  --student-accent-soft: #eef8ec;
  --student-blue-soft: #eef8fd;
  --student-purple-soft: #f2f0ff;
}

.student-theme .student-label,
.student-theme .eyebrow.student-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  margin-bottom: 18px;
  border: 1px solid rgba(36, 91, 59, 0.14);
  border-radius: 999px;
  background: var(--student-accent-soft);
  color: #245b3b;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.student-theme .student-label::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--student-accent-strong);
  box-shadow: 0 0 0 4px rgba(199, 225, 192, 0.6);
}

.student-theme .hero,
.student-theme .page-hero,
.student-theme .student-hero {
  position: relative;
  overflow: hidden;
}

.student-theme .hero::after,
.student-theme .page-hero::after,
.student-theme .student-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% 38%;
  width: 70%;
  height: 65%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 40%, rgba(199, 225, 192, 0.55), transparent 28%),
    radial-gradient(circle at 60% 20%, rgba(180, 224, 242, 0.45), transparent 30%),
    linear-gradient(135deg, rgba(199, 225, 192, 0.35), rgba(175, 222, 245, 0.2));
  border-radius: 999px;
  transform: rotate(-8deg);
  opacity: 0.85;
  z-index: 0;
}

.student-theme .hero > *,
.student-theme .page-hero > *,
.student-theme .student-hero > * {
  position: relative;
  z-index: 1;
}

.student-theme .student-pathway-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(59, 111, 151, 0.12);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 225, 192, 0.45), rgba(180, 224, 242, 0.38));
}

.student-theme .student-pathway-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #21445d;
  font-weight: 700;
  font-size: 0.92rem;
}

.student-theme .student-pathway-strip span:not(:last-child)::after {
  content: "•";
  margin-left: 0.75rem;
  color: var(--ctc-blue);
  opacity: 0.7;
}

.student-theme .student-card,
.student-theme .pathway-card,
.student-theme .support-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 111, 151, 0.12);
  box-shadow: 0 16px 38px rgba(27, 60, 82, 0.08);
}

.student-theme .student-card::before,
.student-theme .pathway-card::before,
.student-theme .support-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--ctc-student-green), var(--ctc-pale-blue));
}

.student-theme .student-highlight-panel {
  background:
    linear-gradient(135deg, rgba(199, 225, 192, 0.35), rgba(180, 224, 242, 0.28)),
    #ffffff;
  border: 1px solid rgba(59, 111, 151, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(27, 60, 82, 0.08);
}

.student-theme .student-section-divider {
  position: relative;
  min-height: 3rem;
}

.student-theme .student-section-divider::before {
  content: "";
  display: block;
  width: min(480px, 70vw);
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--ctc-student-green), var(--ctc-pale-blue), transparent);
}

.student-theme .access-equity-panel {
  background:
    linear-gradient(135deg, rgba(199, 225, 192, 0.32) 0%, rgba(180, 224, 242, 0.35) 100%),
    #ffffff;
  border: 1px solid rgba(59, 111, 151, 0.12);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 18px 45px rgba(13, 94, 132, 0.08);
}

.student-theme .access-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 94, 132, 0.10);
}

.student-theme .access-icon {
  color: var(--ctc-blue);
  background: var(--ctc-pale-blue);
}

.student-theme .access-card:nth-child(2) .access-icon {
  background: var(--ctc-student-green);
  color: #245b3b;
}

.student-theme .access-card:nth-child(3) .access-icon {
  background: #eef0ff;
  color: #3856a3;
}

.student-theme .access-card:nth-child(4) .access-icon {
  background: #fff0e5;
  color: #9a5a22;
}

.student-theme .access-card:nth-child(5) .access-icon {
  background: #e9f8f2;
  color: #28745e;
}

.student-theme .access-card:nth-child(6) .access-icon {
  background: #f4ecff;
  color: #7050a6;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.funding-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.funding-table th,
.funding-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.funding-table th {
  background: #e9f2f5;
  color: var(--primary-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.funding-table tr:last-child td {
  border-bottom: 0;
}

.funding-table td:not(:first-child) {
  font-weight: 700;
  color: var(--primary-dark);
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}

.progress span {
  display: block;
  width: 78%;
  height: 100%;
  background: #b9f0e3;
}

.filters,
.choice-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.filter-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-pill,
.choice {
  padding: 8px 18px;
  border-radius: 999px;
  background: #eeedf2;
  color: var(--muted);
  font-size: 13px;
}

.filter-pill.active,
.filter-pill.is-active,
.choice.active {
  background: var(--primary);
  color: var(--white);
}

.field-row,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid #bec7d1;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

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

.funding-assessment,
.contact-form {
  padding: 34px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-main {
  padding: 82px 0 110px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.85fr);
  gap: 60px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.map-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 38px;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-weight: 600;
}

.accreditation {
  margin-top: 44px;
}

.accreditation-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.accreditation-title::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #c7ccd2;
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.badge-box {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter {
  display: flex;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px 0 0 999px;
  padding: 12px 16px;
}

.newsletter button {
  width: 56px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: var(--primary);
  color: var(--white);
}

.footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: #f7f9fb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
}

.footer h4 {
  margin: 0 0 20px;
  color: #0a3558;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 13px;
}

.footer a,
.footer p {
  color: var(--muted);
  font-size: 14px;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-logos img {
  width: auto;
  max-width: 180px;
  max-height: 58px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #7b838c;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eeedf2;
  color: #2c333a;
}

@media (max-width: 900px) {
  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
    scrollbar-width: thin;
  }

  .nav {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 0 10px;
    white-space: nowrap;
  }

  .brand img {
    width: 152px;
    max-height: 52px;
  }

  .topbar .button {
    flex: 0 0 auto;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-grid,
  .contact-layout,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .field-row,
  .form-grid,
  .problem-card,
  .about-intro,
  .about-cta,
  .mission-affiliations,
  .course-guide-panel {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card.large,
  .bento-card.small {
    grid-column: 1 / -1;
  }

  .home-workplace-grid .bento-card.large,
  .home-workplace-grid .bento-card.small {
    grid-column: 1 / -1;
  }

  .floating-card {
    position: static;
    margin: -40px 18px 18px;
  }

  .form-wide {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logos {
    justify-content: flex-start;
  }

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

  .student-theme .student-pathway-strip {
    border-radius: 24px;
  }

  .course-guide-panel .button {
    justify-self: start;
  }

  .mission-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .mission-logo-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .student-theme .access-grid {
    grid-template-columns: 1fr;
  }

  .student-theme .access-equity-panel {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .student-theme .student-pathway-strip {
    display: grid;
    gap: 0.55rem;
  }

  .student-theme .student-pathway-strip span:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: 36px;
  }

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

  .hero-actions,
  .filters {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .topbar .button {
    width: auto;
  }

  .utility-inner {
    min-height: 28px;
  }

  .utility-link {
    font-size: 11px;
  }

  .content-card,
  .contact-form,
  .funding-assessment,
  .cta-panel,
  .course-guide-panel,
  .final-business-cta {
    padding: 24px;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-equity-panel {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .student-theme .student-pathway-strip {
    display: grid;
    gap: 0.55rem;
  }

  .student-theme .student-pathway-strip span:not(:last-child)::after {
    display: none;
  }
}
