:root {
  --white: #ffffff;
  /* ネイビー調整: 元色は #06162c / #08284a / #0b2d52 / #10213f */
  --navy-950: #06213d;
  --navy-900: #07355f;
  --navy-800: #0a3a68;
  --navy-700: #123452;
  --blue-light: #58c7ff;
  --blue: #1aa7ff;
  --gold-light: #f2d57b;
  --gold: #d8b45a;
  --gold-dark: #b88a2e;
  --gray-50: #f4f7fb;
  --gray-100: #edf2f7;
  --gray-300: #cfd8e3;
  --gray-500: #667085;
  --gray-700: #344054;
  --gray-900: #101828;
  --alert-red: #d00000;
  --wine: #d94d68;
  --wine-dark: #bd2d4a;
  --wine-deep: #991d38;
  --font-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Noto Serif JP", "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-label-serif: "Cinzel", "Times New Roman", serif;
  --container: 1200px;
  --header-height: 76px;
  --section-space: 88px;
  --section-space-sp: 64px;
  --radius-small: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(16, 33, 63, 0.1);
  box-shadow: 0 10px 26px rgba(16, 33, 63, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.site-header .header-inner {
  width: 100%;
  max-width: none;
  padding: 0 32px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  white-space: nowrap;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.header-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.sub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  letter-spacing: 0;
}

.header-cta {
  gap: 10px;
  min-width: 188px;
  border-color: rgba(142, 24, 48, 0.38);
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 58%, var(--wine-deep) 100%);
  color: var(--white);
  box-shadow: none;
}

.header-cta-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  pointer-events: none;
}

.header-cta-icon circle {
  fill: var(--white);
  stroke: none;
}

.header-cta-icon path {
  stroke: var(--wine-dark);
}

.section {
  padding: var(--section-space) 0;
}

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

.section-gray {
  background: #edf3f8;
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

main > section {
  border-top: 1px solid rgba(16, 33, 63, 0.1);
}

main {
  padding-top: var(--header-height);
  background: rgb(0 18 40);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: 64px 0 70px;
  background:
    radial-gradient(circle at 83% 18%, rgba(26, 167, 255, 0.48) 0 1px, transparent 2px 8px),
    radial-gradient(circle at 74% 16%, rgba(88, 199, 255, 0.28), transparent 28%),
    radial-gradient(circle at 64% 42%, rgba(26, 167, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, var(--navy-950) 100%);
  background-size: auto, auto, auto, auto;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(88, 199, 255, 0.16) 45.2%, transparent 46%),
    linear-gradient(145deg, transparent 0 57%, rgba(88, 199, 255, 0.12) 57.2%, transparent 58%),
    repeating-linear-gradient(18deg, transparent 0 56px, rgba(88, 199, 255, 0.11) 57px, transparent 58px);
  opacity: 0.85;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -28%;
  z-index: -1;
  width: min(820px, 64vw);
  aspect-ratio: 1;
  border: 1px solid rgba(88, 199, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 52%, rgba(88, 199, 255, 0.16) 52.4% 52.8%, transparent 53.2%),
    repeating-radial-gradient(circle, rgba(88, 199, 255, 0.32) 0 1px, transparent 2px 12px);
  opacity: 0.7;
}

.hero-grid,
.two-column,
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(390px, 0.82fr) minmax(590px, 1.18fr);
  gap: 46px;
}

.hero-copy h1,
.section-heading h2,
.closing h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(58px, 5.4vw, 76px);
  line-height: 1.18;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.hero-copy h1 span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.hero-lead span {
  color: var(--gold-light);
  font-weight: 700;
}

.label,
.tag,
.semester-label {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
}

.section-heading .label {
  margin-bottom: 1em;
  color: var(--gold-dark);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.section-dark .label,
.section-dark .note {
  color: var(--gray-300);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.hero-points span {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.cta-row,
.center-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

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

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 340px;
  height: 70px;
  padding: 0 24px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-small);
  background: linear-gradient(135deg, rgba(8, 40, 74, 0.9), rgba(6, 22, 44, 0.98));
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(242, 213, 123, 0.18), 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(242, 213, 123, 0.25), 0 20px 40px rgba(0, 0, 0, 0.28);
}

.cta-button span {
  font-size: 36px;
  line-height: 1;
}

.section-dark .cta-button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
}

.note {
  margin: 16px 0 0;
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.7;
}

.hero-kicker {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.hero-kicker::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-term {
  display: inline-block;
  margin: 30px 0 0;
  padding: 10px 30px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
  background: linear-gradient(100deg, var(--gold-light), rgba(242, 213, 123, 0.72));
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-course {
  display: inline-block;
  min-width: 330px;
  margin: 18px 0 0;
  padding: 11px 28px;
  clip-path: polygon(3% 0, 100% 0, 96% 100%, 0 100%);
  border: 1px solid rgba(88, 199, 255, 0.85);
  background: linear-gradient(100deg, rgba(10, 53, 98, 0.94), rgba(16, 72, 130, 0.58));
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.photo-large,
.photo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-small);
  background: var(--gray-100);
  color: var(--alert-red);
  text-align: center;
  font-weight: 700;
}

.hero .photo-large {
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--white);
  min-height: 620px;
  color: var(--navy-900);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.hero-person {
  display: grid;
  grid-template-rows: minmax(390px, 1fr) auto auto auto;
  gap: 8px;
  align-content: start;
  justify-items: center;
  padding: 0 0 24px;
  width: 100%;
  background: linear-gradient(180deg, var(--white), #f7f8fb);
}

.hero-photo-area {
  display: block;
  width: 100%;
  height: 390px;
  margin-bottom: 16px;
  border-radius: 0;
  background: var(--gray-100);
  object-fit: cover;
  object-position: center top;
}

.hero-person p {
  margin: 0;
  width: 100%;
  padding: 0 24px;
  color: var(--navy-700);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.hero-person .hero-person-name {
  margin-top: 4px;
  color: var(--navy-950);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero {
  min-height: 0;
  padding: 0;
  background-color: var(--navy-950);
  background-image: url("../img/bg_movie.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  color: inherit;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero-picture {
  display: contents;
}

.hero-image {
  display: block;
  width: auto;
  min-width: 100%;
  height: min(1000px, calc(100vw * 0.694444));
  object-fit: contain;
  object-position: center top;
}

.hero-cta-hotspot {
  position: absolute;
  left: max(0px, calc(50% - 800px + 50px));
  top: min(830px, calc(82.4%));
  z-index: 2;
  width: min(560px, 37vw);
  height: 94px;
  border-radius: var(--radius-small);
}

.hero-cta-hotspot:focus-visible {
  outline: 3px solid rgba(242, 213, 123, 0.85);
  outline-offset: 4px;
}

.photo-block {
  min-height: 180px;
}

.photo-block.small {
  min-height: 140px;
}

.section-heading {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 880px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.compact {
  margin: 0 auto;
}

.section-heading h2,
.closing h2 {
  position: relative;
  display: block;
  font-size: 36px;
}

.section-heading h2 {
  padding: 0;
}

.section-dark .section-heading h2,
.closing h2 {
  color: var(--white);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: 16px;
}

.section-heading .label {
  display: block;
  min-height: 0;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  font-family: var(--font-label-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.featured-lecturers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}

.faculty-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  min-height: 360px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
}

.faculty-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--alert-red);
  font-size: 14px;
  font-weight: 700;
}

.faculty-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

#lecturers .faculty-photo img[src*="fujita"] {
  object-fit: cover;
  object-position: center 18%;
  background: none;
}

.faculty-body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.faculty-body h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.faculty-position {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.faculty-position p {
  margin: 0;
}

.faculty-bio {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.8;
}

.lecturer-feature,
.card,
.support-item,
.score-box,
.outline-table,
.faq-list details,
.process-box {
  padding: 24px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
}

.lecturer-feature {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
}

.lecturer-feature h3,
.lecturer-card h3,
.feature-card h3,
.support-item h3,
.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.lecturer-feature p,
.lecturer-card p,
.feature-card p,
.support-item p,
.timeline-item p {
  margin: 0;
  color: var(--gray-700);
}

.lecturer-grid,
.feature-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lecturer-card {
  display: grid;
  gap: 16px;
}

.card-note {
  padding-top: 16px;
  border-top: 1px solid var(--gray-300);
  font-size: 14px;
}

.section-gray .card,
.section-gray .support-item {
  border: 0;
}

.semester-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.semester {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.semester h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 150px 1fr 180px;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.session,
.date {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
}

.session {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 48px;
  border-radius: 8px;
  background: var(--gray-100);
}

.timeline-item.spring .session {
  background: var(--gray-300);
}

.curriculum-tables {
  display: grid;
  gap: 32px;
}

.curriculum-block {
  display: grid;
  gap: 16px;
}

.curriculum-title {
  text-align: left;
}

.curriculum-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.table-scroll {
  overflow-x: auto;
}

.curriculum-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  table-layout: fixed;
  font-size: 14px;
  line-height: 1.6;
}

.curriculum-table th,
.curriculum-table td {
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  text-align: left;
  vertical-align: top;
}

.curriculum-table th {
  background: var(--gray-900);
  color: var(--white);
  font-weight: 700;
}

.curriculum-table th:nth-child(1),
.curriculum-table td:nth-child(1) {
  width: 17%;
}

.curriculum-table th:nth-child(2),
.curriculum-table td:nth-child(2) {
  width: 38%;
}

.curriculum-table th:nth-child(3),
.curriculum-table td:nth-child(3) {
  width: 15%;
}

.curriculum-table th:nth-child(4),
.curriculum-table td:nth-child(4) {
  width: 30%;
}

.curriculum-cta-area {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 32px;
  border-radius: 8px;
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
}

.curriculum-cta-area p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.curriculum-cta-area .cta-button {
  background: var(--white);
  color: var(--gray-900);
}

#lecturers {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 96px;
  padding-bottom: calc(var(--section-space) + 24px);
  border-top: 0;
  background: #f7f9fb;
  color: var(--navy-950);
}

#lecturers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(88, 199, 255, 0.12) 47px 48px, transparent 49px 92px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(88, 199, 255, 0.09) 43px 44px, transparent 45px 84px);
  opacity: 0.54;
}

#lecturers::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 8px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
}

#lecturers .container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 160px));
}

#curriculum .container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 160px));
}

#lecturers .section-heading,
#curriculum .section-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 880px;
  margin: 0 auto 68px;
  padding: 0 34px;
}

#lecturers .section-heading .label,
#lecturers .section-heading h2,
#lecturers .section-heading p,
#curriculum .section-heading .label,
#curriculum .section-heading h2,
#curriculum .section-heading p {
  grid-column: 1;
}

#lecturers .section-heading {
  background: none;
}

#lecturers .section-heading .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding-top: 0;
  border-top: 0;
  color: var(--gold-dark);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

#lecturers .section-heading .label::before,
#lecturers .section-heading .label::after,
#curriculum .section-heading .label::before,
#curriculum .section-heading .label::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 18px;
  background: linear-gradient(90deg, transparent, rgba(242, 213, 123, 0.92), transparent);
}

#lecturers .section-heading h2 {
  width: 100%;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--navy-950);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.08;
}

#lecturers .section-heading p:not(.label) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--navy-700);
  font-weight: 500;
}

#curriculum .section-heading {
  background: none;
}

#curriculum .section-heading .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding-top: 0;
  border-top: 0;
  color: var(--gold-dark);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

#curriculum .section-heading h2 {
  width: 100%;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--navy-950);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.08;
}

#curriculum .section-heading p:not(.label) {
  color: var(--navy-700);
  font-weight: 500;
}

#lecturers .faculty-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 32px;
  row-gap: 36px;
}

#lecturers .faculty-card {
  position: relative;
  overflow: visible;
  align-items: start;
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 0;
  min-height: 0;
  height: auto;
  padding: 24px;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  box-shadow: none;
}

#lecturers .faculty-card::after {
  content: none;
}

#lecturers .faculty-photo {
  position: relative;
  grid-row: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(216, 180, 90, 0.42);
  border-radius: var(--radius-small);
  background: #f8fafc;
  box-shadow: 0 10px 24px rgba(16, 33, 63, 0.08);
}

#lecturers .faculty-photo::before {
  content: none;
}

#lecturers .faculty-body {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 0;
}

#lecturers .faculty-head {
  display: grid;
  gap: 12px;
  padding-left: 0;
  border-left: 0;
}

#lecturers .faculty-body h3 {
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.18;
}

#lecturers .faculty-position {
  color: var(--navy-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
}

#lecturers .faculty-bio {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.78;
}

#curriculum {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 96px;
  border-top: 0;
  background: #f7f9fb;
  color: var(--navy-950);
}

#curriculum::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(88, 199, 255, 0.12) 47px 48px, transparent 49px 92px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(88, 199, 255, 0.09) 43px 44px, transparent 45px 84px);
  opacity: 0.54;
}

#curriculum::after {
  content: none;
}

#curriculum .curriculum-tables {
  gap: 56px;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#curriculum .curriculum-block {
  gap: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#curriculum .curriculum-block + .curriculum-block {
  border-top: 0;
}

#curriculum .curriculum-title {
  padding: 0;
  background: none;
}

#curriculum .curriculum-title h3 {
  position: relative;
  padding-left: 16px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

#curriculum .curriculum-title h3 span {
  color: var(--white);
}

#curriculum .curriculum-title h3::before {
  content: "";
  position: absolute;
  top: 0.18em;
  bottom: 0.18em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

#curriculum .table-scroll {
  overflow: hidden;
  border: 1px solid rgba(6, 22, 44, 0.16);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 33, 63, 0.08);
}

#curriculum .curriculum-table {
  font-size: 15px;
  line-height: 1.72;
}

#curriculum .curriculum-table th,
#curriculum .curriculum-table td {
  padding: 18px 20px;
  border: 0;
}

#curriculum .curriculum-table th {
  padding-top: 22px;
  padding-bottom: 22px;
  background: var(--navy-950);
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.04em;
}

#curriculum .curriculum-table td {
  background: var(--white);
  color: var(--navy-700);
  font-weight: 500;
  vertical-align: middle;
}

#curriculum .curriculum-table td:nth-child(1) {
  color: var(--gold-dark);
  font-weight: 500;
}

#curriculum .curriculum-table td:nth-child(3),
#curriculum .curriculum-table td:nth-child(4) {
  font-weight: 500;
}

#curriculum .curriculum-table tbody tr:nth-child(even) {
  background: #f5f7fa;
}

#curriculum .curriculum-table tbody tr:nth-child(even) td {
  background: #f5f7fa;
}

#curriculum .note {
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gray-700);
}

#curriculum .curriculum-cta-area {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 46px;
  border: 1px solid rgba(216, 180, 90, 0.56);
  border-radius: var(--radius-small);
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(16, 33, 63, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#curriculum .curriculum-cta-area::before {
  content: none;
}

#curriculum .curriculum-cta-area > * {
  position: relative;
  z-index: 1;
}

#curriculum .curriculum-cta-area p {
  color: var(--white);
  letter-spacing: 0.04em;
}

#curriculum .curriculum-cta-main,
#curriculum .curriculum-cta-sub {
  display: block;
}

#curriculum .curriculum-cta-main {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

#curriculum .curriculum-cta-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 400;
}

#curriculum .curriculum-cta-area .cta-button {
  width: 390px;
  height: 82px;
  padding: 0 70px 0 36px;
  border-color: rgba(142, 24, 48, 0.38);
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 58%, var(--wine-deep) 100%);
  color: var(--white);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 36px rgba(5, 17, 34, 0.34);
}

#curriculum .curriculum-cta-icon {
  position: absolute;
  right: 28px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  pointer-events: none;
}

#curriculum .curriculum-cta-icon circle {
  fill: var(--white);
  stroke: none;
}

#curriculum .curriculum-cta-icon path {
  stroke: var(--wine-dark);
}

#features {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  border-top: 0;
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
  padding-top: 56px;
}

#features::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: min(560px, 42%);
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 70%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 46%, rgba(242, 213, 123, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 74%, rgba(88, 199, 255, 0.3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 79% 42%, rgba(88, 199, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 199, 255, 0.13) 12% 34%, transparent 34% 45%, rgba(88, 199, 255, 0.16) 45% 78%, transparent 78%),
    linear-gradient(90deg, transparent 0 58%, rgba(242, 213, 123, 0.14) 58% 74%, transparent 74%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(88, 199, 255, 0.1) 51px 52px, transparent 53px 100px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(88, 199, 255, 0.08) 45px 46px, transparent 47px 88px),
    radial-gradient(ellipse at 50% 82%, rgba(26, 167, 255, 0.14) 0%, transparent 62%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 42%, center 68%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
}

#features::after {
  content: none;
}

#features .container {
  position: relative;
  z-index: 1;
}

#features .section-heading {
  max-width: 900px;
  margin-bottom: 40px;
  color: var(--white);
}

#features .section-heading .course-kicker {
  margin: 0 0 2px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

#features .section-heading .label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  font-family: var(--font-label-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

#features .section-heading .label::before,
#features .section-heading .label::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 46, 0.16), rgba(242, 213, 123, 0.92));
}

#features .section-heading .label::after {
  background: linear-gradient(90deg, rgba(242, 213, 123, 0.92), rgba(184, 138, 46, 0.16));
}

#features .section-heading h2 {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

#features .section-heading p:not(.label):not(.course-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

#features .feature-grid.six {
  gap: 28px;
}

#features .feature-grid.six .feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  min-height: 300px;
  padding: 34px 30px 32px;
  border: 1px solid rgba(216, 180, 90, 0.28);
  border-radius: var(--radius-small);
  background: var(--white);
  text-align: center;
  box-shadow: 0 16px 38px rgba(16, 33, 63, 0.09);
}

#features .feature-grid.six .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
}

#features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-dark);
}

#features .feature-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

#features .feature-card h3 {
  margin-bottom: 14px;
  color: var(--navy-950);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#features .feature-card p {
  color: var(--navy-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.82;
  text-align: left;
}

#features .flow-connector {
  background: linear-gradient(180deg, transparent, rgba(242, 213, 123, 0.74), transparent);
}

#features .outcome-section {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin: 80px calc(50% - 50vw) calc(var(--section-space) * -1);
  padding: 80px max(120px, calc((100vw - var(--container)) / 2)) 88px;
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
}

#features .outcome-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: min(560px, 42%);
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 70%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 46%, rgba(242, 213, 123, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 74%, rgba(88, 199, 255, 0.3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 79% 42%, rgba(88, 199, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 199, 255, 0.13) 12% 34%, transparent 34% 45%, rgba(88, 199, 255, 0.16) 45% 78%, transparent 78%),
    linear-gradient(90deg, transparent 0 58%, rgba(242, 213, 123, 0.14) 58% 74%, transparent 74%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(88, 199, 255, 0.1) 51px 52px, transparent 53px 100px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(88, 199, 255, 0.08) 45px 46px, transparent 47px 88px),
    radial-gradient(ellipse at 50% 82%, rgba(26, 167, 255, 0.14) 0%, transparent 62%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 42%, center 68%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
}

#features .outcome-section .flow-connector {
  position: absolute;
  top: -92px;
  left: 50%;
  width: 2px;
  height: 72px;
  margin: 0;
  background: linear-gradient(180deg, rgba(242, 213, 123, 0), rgba(242, 213, 123, 0.94));
  transform: translateX(-50%);
}

#features .outcome-section .flow-connector::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -9px;
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(242, 213, 123, 0.94);
  border-bottom: 2px solid rgba(242, 213, 123, 0.94);
  transform: translateX(50%) rotate(45deg);
}

#features .outcome-section .section-heading h2 {
  color: var(--white);
  font-size: 36px;
}

#features .outcome-section .section-heading h2 span {
  color: var(--gold-light);
}

#features .outcome-section .section-heading p:not(.label) {
  color: rgba(255, 255, 255, 0.84) !important;
}

#features .outcome-card {
  overflow: hidden;
  border-color: rgba(216, 180, 90, 0.26);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 33, 63, 0.08);
}

#features .outcome-card h3 {
  color: var(--navy-950);
  font-family: var(--font-sans);
  font-weight: 700;
  text-align: center;
}

#features .outcome-cta-area {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 48px;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  box-shadow: none;
}

#features .outcome-cta-area p {
  color: var(--white);
  letter-spacing: 0.04em;
}

#features .outcome-cta-main,
#features .outcome-cta-sub {
  display: block;
}

#features .outcome-cta-main {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

#features .outcome-cta-sub {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 400;
}

#features .outcome-cta-area .cta-button {
  width: 390px;
  height: 82px;
  padding: 0 70px 0 36px;
  border-color: rgba(142, 24, 48, 0.38);
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 58%, var(--wine-deep) 100%);
  color: var(--white);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 36px rgba(5, 17, 34, 0.34);
}

#features .outcome-cta-icon {
  position: absolute;
  right: 28px;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  pointer-events: none;
}

#features .outcome-cta-icon circle {
  fill: var(--white);
  stroke: none;
}

#features .outcome-cta-icon path {
  stroke: var(--wine-dark);
}

.feature-flow {
  display: grid;
  gap: 48px;
}

.flow-connector {
  width: 1px;
  height: 80px;
  margin: -8px auto;
  background: var(--gray-300);
}

.challenge-grid,
.outcome-grid {
  display: grid;
  gap: 24px;
}

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

.challenge-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
}

.challenge-card h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.challenge-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.red-lead {
  color: var(--alert-red) !important;
  font-weight: 700;
}

.normal-lead {
  color: var(--gray-900) !important;
  font-weight: 400;
}

.video-section {
  padding: 80px 0;
  border-top: 0;
  background-color: #06162c;
  background-image: url("../img/bg_movie.png");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
}

.video-embed {
  width: min(800px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  padding: 4px;
  border: 1px solid rgba(242, 213, 123, 0.72);
  background: rgba(6, 22, 44, 0.45);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading .course-kicker {
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 22px;
  font-weight: 700;
}

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

.feature-grid.six .feature-card {
  min-height: 240px;
}

.feature-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gray-900);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}

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

.outcome-card {
  padding: 32px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
}

.outcome-card h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.outcome-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.8;
}

.outcome-cta-area {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-top: 8px;
  padding: 32px;
  border-radius: 8px;
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
}

.outcome-cta-area p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.outcome-cta-area .cta-button {
  background: var(--white);
  color: var(--gray-900);
}

.student-voice-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
}

.student-voice-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.student-voice-card {
  display: grid;
  gap: 24px;
  min-height: 320px;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  scroll-snap-align: start;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--gray-900);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.student-voice-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.student-voice-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.student-voice-card .voice-industry {
  align-self: end;
  font-weight: 700;
}

.survey-results {
  margin-top: 80px;
  color: var(--gray-900);
}

.survey-results .section-heading {
  margin-bottom: 56px;
}

.survey-results .section-heading p {
  color: var(--gray-700);
  font-weight: 700;
}

.survey-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.survey-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  color: var(--gray-900);
}

.survey-card-heading {
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 4px solid var(--gray-300);
}

.survey-card-heading h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.survey-card-heading p {
  margin: 0;
  color: var(--gray-700);
  font-weight: 700;
}

.survey-meta-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 24px;
  background: var(--gray-100);
  color: var(--gray-900);
}

.survey-score {
  display: grid;
  align-content: center;
  gap: 8px;
}

.survey-score p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 700;
}

.survey-score strong {
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.survey-score span {
  color: var(--gray-700);
  font-size: 20px;
  font-weight: 700;
}

.survey-meta {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--gray-300);
}

.survey-meta div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
}

.survey-meta dt {
  color: var(--gray-500);
  font-weight: 700;
}

.survey-meta dd {
  margin: 0;
  font-weight: 700;
}

.survey-comment-list {
  display: grid;
  gap: 16px;
}

.survey-comment-list p {
  margin: 0;
  padding: 24px;
  border-left: 6px solid var(--gray-300);
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 700;
  line-height: 1.8;
}

.survey-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.survey-cta .sub-button {
  background: var(--white);
  color: var(--gray-900);
}

.info-list {
  display: grid;
  gap: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
}

.overview-inner {
  display: grid;
  gap: 48px;
}

.overview-table-block {
  display: grid;
  gap: 1.5em;
}

.info-list div,
.outline-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-300);
}

.info-list div {
  grid-template-columns: 320px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--gray-300);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list span {
  display: flex;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--gray-300);
  background: var(--gray-100);
}

.info-list strong {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 24px;
}

.info-list span,
.outline-table span {
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}

.info-list strong,
.outline-table p {
  margin: 0;
  font-weight: 400;
}

.overview-table-note {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

#voice,
#flow,
#faq,
#overview {
  position: relative;
  overflow: hidden;
  border-top: 0;
}

#voice .section-heading,
#flow .section-heading,
#faq .section-heading,
#overview .section-heading {
  max-width: 900px;
  margin-bottom: 64px;
}

#voice .section-heading .label,
#flow .section-heading .label,
#faq .section-heading .label,
#overview .section-heading .label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-dark);
  font-family: var(--font-label-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

#voice .section-heading .label::before,
#voice .section-heading .label::after,
#flow .section-heading .label::before,
#flow .section-heading .label::after,
#faq .section-heading .label::before,
#faq .section-heading .label::after,
#overview .section-heading .label::before,
#overview .section-heading .label::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 46, 0.16), rgba(216, 180, 90, 0.84));
}

#voice .section-heading .label::after,
#flow .section-heading .label::after,
#faq .section-heading .label::after,
#overview .section-heading .label::after {
  background: linear-gradient(90deg, rgba(216, 180, 90, 0.84), rgba(184, 138, 46, 0.16));
}

#voice .section-heading h2,
#flow .section-heading h2,
#faq .section-heading h2,
#overview .section-heading h2 {
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.32;
}

#voice {
  isolation: isolate;
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
}

#voice::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: min(560px, 42%);
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 70%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 46%, rgba(242, 213, 123, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 74%, rgba(88, 199, 255, 0.3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 79% 42%, rgba(88, 199, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 199, 255, 0.13) 12% 34%, transparent 34% 45%, rgba(88, 199, 255, 0.16) 45% 78%, transparent 78%),
    linear-gradient(90deg, transparent 0 58%, rgba(242, 213, 123, 0.14) 58% 74%, transparent 74%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(88, 199, 255, 0.1) 51px 52px, transparent 53px 100px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(88, 199, 255, 0.08) 45px 46px, transparent 47px 88px),
    radial-gradient(ellipse at 50% 82%, rgba(26, 167, 255, 0.14) 0%, transparent 62%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 42%, center 68%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
}

#voice::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: min(430px, 34%);
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 12% 28%, rgba(88, 199, 255, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 36% 54%, rgba(88, 199, 255, 0.22) 0 1.5px, transparent 3px),
    radial-gradient(circle at 58% 22%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 48%, rgba(88, 199, 255, 0.28) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 10%, rgba(88, 199, 255, 0.13) 10% 28%, transparent 28% 42%, rgba(88, 199, 255, 0.1) 42% 66%, transparent 66%),
    linear-gradient(90deg, transparent 0 52%, rgba(242, 213, 123, 0.12) 52% 68%, transparent 68%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(88, 199, 255, 0.1) 47px 48px, transparent 49px 92px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(88, 199, 255, 0.08) 43px 44px, transparent 45px 84px),
    radial-gradient(ellipse at 50% 18%, rgba(26, 167, 255, 0.12) 0%, transparent 60%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center 34%, center 62%, center, center, center;
  background-size: auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.46;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 54%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.7) 54%, transparent 100%);
}

#voice .section-heading .label {
  color: var(--gold-light);
}

#voice .section-heading h2 {
  color: var(--white);
}

#voice .container,
#flow .container,
#faq .container,
#overview .container {
  position: relative;
  z-index: 1;
}

#voice .student-voice-carousel {
  position: relative;
  display: block;
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

#voice .student-voice-track {
  display: block;
  width: 100vw;
  margin: 0;
  overflow: visible;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

#voice .splide__list {
  align-items: stretch;
}

#voice .student-voice-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  height: 100%;
  min-height: 0;
  width: 100%;
  max-width: 600px;
  padding: 42px 40px 36px;
  border: 1px solid rgba(216, 180, 90, 0.36);
  border-radius: var(--radius-small);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 33, 63, 0.08);
  scroll-snap-align: center;
}

#voice .student-voice-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-small) var(--radius-small) 0 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light) 46%, rgba(216, 180, 90, 0.18));
}

#voice .student-voice-card .voice-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a36f16;
  font-family: var(--font-label-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

#voice .student-voice-card .voice-number::before {
  content: "";
  position: static;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: none;
}

#voice .student-voice-card h3 {
  position: relative;
  margin-bottom: 2px;
  color: var(--navy-950);
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#voice .student-voice-card p {
  position: relative;
  color: var(--navy-700);
  font-size: 17px;
  line-height: 1.9;
}

#voice .student-voice-card .voice-industry {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(216, 180, 90, 0.4);
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.04em;
}

#voice .student-voice-card .voice-person {
  align-self: end;
  display: grid;
  gap: 2px;
  justify-items: end;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 180, 90, 0.28);
  text-align: right;
}

#voice .student-voice-card .voice-person p {
  margin: 0;
  color: var(--navy-700);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

#voice .student-voice-card .voice-person p:last-child {
  margin-top: 4px;
  font-size: 17px;
  line-height: 1.4;
}

#voice .carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--white) !important;
  font-size: 80px;
  opacity: 1;
  box-shadow: none;
}

#voice .carousel-button svg {
  width: 80px;
  height: 80px;
  fill: currentColor;
}

#voice .carousel-button-prev {
  left: max(24px, calc(50% - 300px - 92px));
}

#voice .carousel-button-next {
  right: max(24px, calc(50% - 300px - 92px));
}

#voice .survey-results {
  margin-top: 92px;
  padding: 56px;
  border: 1px solid rgba(216, 180, 90, 0.2);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 22px 54px rgba(5, 17, 34, 0.18);
}

#voice .survey-results .section-heading h2 {
  color: var(--gold-dark);
  font-size: 30px;
}

#voice .survey-results .section-heading p {
  color: var(--navy-700);
  font-size: 18px;
  font-weight: 700;
}

#voice .survey-card {
  border: 1px solid rgba(216, 180, 90, 0.26);
  border-radius: var(--radius-small);
  padding: 38px 34px;
  box-shadow: none;
}

#voice .survey-card-heading {
  border-bottom: 4px solid var(--gold);
}

#voice .survey-card-heading h3 {
  color: var(--navy-950);
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 700;
}

#voice .survey-meta-panel {
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 18px;
  background: var(--navy-950);
  color: var(--white);
}

#voice .survey-score p,
#voice .survey-meta dt {
  color: var(--gold-light);
}

#voice .survey-score strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-label-serif);
  font-size: 56px;
}

#voice .survey-score span {
  white-space: nowrap;
  color: var(--gold-light);
  font-size: 18px;
}

#voice .survey-meta {
  border-left-color: rgba(255, 255, 255, 0.28);
}

#voice .survey-meta div {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
}

#voice .survey-meta dd {
  color: var(--white);
  white-space: nowrap;
}

#voice .survey-meta .lecturer-title {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  white-space: normal;
}

#voice .survey-comment-list p {
  border-left: 4px solid var(--gold);
  background: #f6f4ef;
  color: var(--gray-700);
  font-size: 16px;
}

#voice .survey-cta .sub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 420px;
  min-height: 68px;
  padding: 0 34px;
  border-color: rgba(242, 213, 123, 0.72);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 19px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

#voice .survey-cta-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

#flow {
  isolation: isolate;
  background: #edf3f8;
  color: var(--navy-950);
}

#flow::before {
  content: none;
}

#flow .section-heading .label {
  color: var(--gold-dark);
}

#flow .section-heading h2 {
  color: var(--navy-950);
}

#faq .section-heading .label,
#overview .section-heading .label {
  font-size: 18px;
}

#faq .section-heading h2,
#overview .section-heading h2 {
  font-size: 36px;
}

#flow .section-heading p:not(.label) {
  max-width: 680px;
  color: var(--navy-700);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}

#flow .flow-list {
  position: relative;
  gap: 0;
  padding: 28px 0 0;
}

#flow .flow-list::before {
  content: none;
}

#flow .flow-list li {
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto auto 1fr;
  min-height: 320px;
  margin: 0 12px;
  padding: 34px 24px;
  border: 1px solid rgba(216, 180, 90, 0.28);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--navy-950);
  text-align: center;
  box-shadow: 0 16px 38px rgba(16, 33, 63, 0.08);
}

#flow .flow-list li:not(:last-child)::after {
  content: none;
}

#flow .flow-list li::before {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold-dark);
  font-family: var(--font-label-serif);
  font-size: 44px;
  line-height: 1;
  box-shadow: none;
}

#flow .flow-list h3 {
  min-height: 68px;
  margin-bottom: 24px;
  color: var(--navy-950);
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#flow .flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin: 0 0 28px;
  border-radius: 50%;
  background: #f7f1e5;
  color: var(--gold-dark);
}

#flow .flow-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

#flow .flow-list p {
  color: var(--navy-700);
  font-size: 15px;
  line-height: 1.85;
}

#faq {
  isolation: isolate;
  padding-bottom: 44px;
  background: var(--white);
  color: var(--navy-950);
}

#faq::before {
  content: none;
}

#faq .section-heading .label,
#faq .section-heading h2 {
  color: var(--navy-950);
}

#faq .section-heading .label {
  color: var(--gold-dark);
}

#faq .faq-list {
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

#faq .faq-list details {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(216, 180, 90, 0.32);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-950);
  box-shadow: 0 18px 44px rgba(16, 33, 63, 0.1);
}

#faq .faq-list summary {
  position: relative;
  display: block;
  padding: 22px 60px 22px 64px;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  list-style: none;
}

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

#faq .faq-list summary::before {
  content: "Q";
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

#faq .faq-list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--gold-dark);
  font-family: var(--font-label-serif);
  font-size: 22px;
  line-height: 1;
}

#faq .faq-list details[open] summary::after {
  content: "−";
}

#faq .faq-list p {
  margin: 0;
  padding: 0 28px 24px 64px;
  color: var(--navy-700);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
}

#overview {
  padding-top: 44px;
  background: var(--white);
  color: var(--navy-950);
}

#overview .overview-inner {
  gap: 52px;
}

#overview .section-heading.compact {
  margin-bottom: 0;
}

#overview .section-heading .label,
#overview .section-heading h2 {
  color: var(--navy-950);
}

#overview .section-heading .label {
  color: var(--gold-dark);
}

#overview .overview-table-block {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  box-shadow: none;
}

#overview .info-list {
  border-color: rgba(88, 199, 255, 0.34);
  border-radius: var(--radius-small);
  background: var(--white);
}

#overview .info-list div {
  grid-template-columns: 280px minmax(0, 1fr);
  border-bottom-color: rgba(88, 199, 255, 0.24);
}

#overview .info-list span {
  border-right-color: rgba(88, 199, 255, 0.22);
  background: #edf7ff;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

#overview .info-list strong {
  color: var(--navy-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.78;
}

#overview .overview-table-note {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
  color: var(--navy-700);
  font-size: 14px;
}

.number {
  color: var(--gray-500);
  font-size: 32px;
  font-weight: 700;
}

.process-box {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--gray-100);
  font-weight: 700;
}

.process-step p {
  margin: 0;
  font-weight: 700;
}

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

.issue-item {
  min-height: 180px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.score-box {
  text-align: center;
}

.score-box strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 48px;
  line-height: 1;
}

.voice-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.voice-list p {
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--gray-50);
  font-weight: 500;
}

.outline-table {
  display: grid;
  gap: 0;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 48px;
  counter-increment: flow;
  min-height: 420px;
  padding: 48px 32px;
  border: 0;
  border-radius: 8px;
  background: var(--gray-50);
  text-align: center;
  font-weight: 700;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid var(--gray-300);
  transform: translateY(-50%);
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  display: block;
  color: var(--gray-900);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.flow-list h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.flow-list p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 16px;
  padding: 0;
  border: 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--gray-700);
}

.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 56px;
  border-top: 0;
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 8% 32%, rgba(88, 199, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 58%, rgba(88, 199, 255, 0.28) 0 1.5px, transparent 3px),
    radial-gradient(circle at 46% 24%, rgba(242, 213, 123, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 48%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 30%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 7%, rgba(88, 199, 255, 0.18) 7% 26%, transparent 26% 34%, rgba(88, 199, 255, 0.12) 34% 56%, transparent 56%),
    linear-gradient(90deg, transparent 0 18%, rgba(242, 213, 123, 0.18) 18% 31%, transparent 31%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(88, 199, 255, 0.12) 47px 48px, transparent 49px 92px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(88, 199, 255, 0.09) 43px 44px, transparent 45px 84px),
    radial-gradient(ellipse at 50% 18%, rgba(26, 167, 255, 0.16) 0%, transparent 58%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 30%, center 62%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.54;
}

#lecturers,
#curriculum,
#flow,
#faq,
#overview {
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
}

#flow::before,
#faq::before,
#overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 8% 32%, rgba(88, 199, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 58%, rgba(88, 199, 255, 0.28) 0 1.5px, transparent 3px),
    radial-gradient(circle at 46% 24%, rgba(242, 213, 123, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 48%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 30%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 7%, rgba(88, 199, 255, 0.18) 7% 26%, transparent 26% 34%, rgba(88, 199, 255, 0.12) 34% 56%, transparent 56%),
    linear-gradient(90deg, transparent 0 18%, rgba(242, 213, 123, 0.18) 18% 31%, transparent 31%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(88, 199, 255, 0.12) 47px 48px, transparent 49px 92px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(88, 199, 255, 0.09) 43px 44px, transparent 45px 84px),
    radial-gradient(ellipse at 50% 18%, rgba(26, 167, 255, 0.16) 0%, transparent 58%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 30%, center 62%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.54;
}

#lecturers .container,
#curriculum .container,
#flow .container,
#faq .container,
#overview .container {
  position: relative;
  z-index: 1;
}

#lecturers .section-heading .label,
#curriculum .section-heading .label,
#flow .section-heading .label,
#faq .section-heading .label,
#overview .section-heading .label {
  color: var(--gold-light);
}

#lecturers .section-heading h2,
#curriculum .section-heading h2,
#flow .section-heading h2,
#faq .section-heading h2,
#overview .section-heading h2 {
  color: var(--white);
}

#lecturers .section-heading p:not(.label),
#curriculum .section-heading p:not(.label),
#flow .section-heading p:not(.label),
#faq .section-heading p:not(.label),
#overview .section-heading p:not(.label) {
  color: rgba(255, 255, 255, 0.84);
}

#lecturers .faculty-card .faculty-body h3 {
  color: var(--navy-950);
}

#lecturers .faculty-card .faculty-position {
  color: var(--navy-700);
}

#lecturers .faculty-card .faculty-bio {
  color: var(--gray-700);
}

#faq,
#overview {
  background: #edf3f8;
  color: var(--navy-950);
}

#faq::before,
#overview::before {
  content: none;
}

#faq .section-heading .label,
#overview .section-heading .label {
  color: var(--gold-dark);
}

#faq .section-heading h2,
#overview .section-heading h2 {
  color: var(--navy-950);
}

#lecturers,
#curriculum,
#features .outcome-section {
  background: #f8fafc;
  color: var(--navy-950);
}

#lecturers::before,
#curriculum::before,
#features .outcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: normal;
  background-image:
    radial-gradient(ellipse at 16% 12%, rgba(255, 255, 255, 0.92) 0%, transparent 46%),
    radial-gradient(ellipse at 86% 24%, rgba(216, 180, 90, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(237, 243, 248, 0.34) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

#lecturers .section-heading .label,
#curriculum .section-heading .label {
  color: var(--gold-dark);
}

#lecturers .section-heading h2,
#curriculum .section-heading h2,
#features .outcome-section .section-heading h2 {
  color: var(--navy-950);
}

#lecturers .section-heading p:not(.label),
#curriculum .section-heading p:not(.label),
#features .outcome-section .section-heading p:not(.label) {
  color: var(--navy-700) !important;
}

#curriculum .curriculum-title h3 {
  color: var(--gold-dark);
}

#curriculum .curriculum-title h3 span {
  color: var(--navy-950);
}

#curriculum .curriculum-cta-area p,
#features .outcome-cta-area p {
  color: var(--navy-950);
}

#curriculum .curriculum-cta-main,
#features .outcome-cta-main {
  color: var(--gold-dark);
}

#curriculum .curriculum-cta-sub,
#features .outcome-cta-sub {
  color: var(--navy-700);
}

#features .outcome-section .section-heading h2 span {
  color: var(--gold-dark);
}

#curriculum .curriculum-cta-area p,
#curriculum .curriculum-cta-main {
  color: var(--white);
}

#curriculum .curriculum-cta-main {
  color: var(--gold-light);
}

#curriculum .curriculum-cta-sub {
  color: rgba(255, 255, 255, 0.84);
}

#features .section-heading {
  max-width: none;
}

#features .section-heading p.normal-lead {
  max-width: none !important;
  width: 100%;
  text-align: left;
}

#lecturers::before,
#curriculum::before,
#features .outcome-section::before {
  content: none;
}

#lecturers::before,
#curriculum::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(216, 180, 90, 0.12) 0%, transparent 34%),
    radial-gradient(ellipse at 88% 78%, rgba(8, 40, 74, 0.055) 0%, transparent 38%),
    linear-gradient(135deg, transparent 0 62%, rgba(216, 180, 90, 0.06) 62.08%, transparent 62.2%);
  opacity: 1;
}

#features::before {
  background-image:
    radial-gradient(circle at 14% 70%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 46%, rgba(242, 213, 123, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 74%, rgba(88, 199, 255, 0.3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 79% 42%, rgba(88, 199, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 199, 255, 0.13) 12% 34%, transparent 34% 45%, rgba(88, 199, 255, 0.16) 45% 78%, transparent 78%),
    linear-gradient(90deg, transparent 0 58%, rgba(242, 213, 123, 0.14) 58% 74%, transparent 74%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(88, 199, 255, 0.14) 51px 52px, transparent 53px 100px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(88, 199, 255, 0.11) 45px 46px, transparent 47px 88px),
    radial-gradient(ellipse at 50% 82%, rgba(26, 167, 255, 0.14) 0%, transparent 62%);
}

#features .outcome-cta-area {
  border: 1px solid rgba(216, 180, 90, 0.56);
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  box-shadow: 0 18px 42px rgba(16, 33, 63, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#features .outcome-cta-area p,
#features .outcome-cta-main {
  color: var(--white);
}

#features .outcome-cta-sub {
  color: rgba(255, 255, 255, 0.84);
}

#voice .carousel-button {
  border-color: transparent;
  background: transparent !important;
  color: var(--white) !important;
}

#voice .survey-results {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#voice .survey-results .section-heading h2 {
  color: var(--gold-light);
}

#voice .survey-results .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

#flow {
  background: #f8fafc;
  color: var(--navy-950);
}

#flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: normal;
  background-image:
    radial-gradient(ellipse at 16% 12%, rgba(255, 255, 255, 0.92) 0%, transparent 46%),
    radial-gradient(ellipse at 86% 24%, rgba(216, 180, 90, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(237, 243, 248, 0.34) 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 1;
}

#flow .section-heading .label {
  color: var(--gold-dark);
}

#flow .section-heading h2 {
  color: var(--navy-950);
}

#flow .section-heading p:not(.label) {
  color: var(--navy-700) !important;
}

#faq {
  background: linear-gradient(90deg, #092442 0%, #0b3159 50%, #092442 100%);
  color: var(--white);
}

#faq .section-heading .label {
  color: var(--gold-light);
}

#faq .section-heading h2 {
  color: var(--white);
}

.section-heading .label,
#lecturers .section-heading .label,
#curriculum .section-heading .label,
#features .section-heading .label,
#voice .section-heading .label,
#flow .section-heading .label,
#faq .section-heading .label,
#overview .section-heading .label,
.closing .label {
  font-size: 20px;
}

.closing-inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 0 48px;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--white);
  text-align: center;
  box-shadow: none;
}

.closing-inner::before {
  content: none;
}

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

.closing .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-family: var(--font-label-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.11em;
}

.closing .label::before,
.closing .label::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 213, 123, 0.92), transparent);
}

.closing h2 {
  color: var(--white);
  letter-spacing: 0.1em;
}

.closing p {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: 20px;
}

.closing .cta-button {
  position: relative;
  width: 420px;
  height: 82px;
  margin-top: 42px;
  padding: 0 64px;
  border-color: rgba(142, 24, 48, 0.38);
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 58%, var(--wine-deep) 100%);
  color: var(--white);
  gap: 18px;
  font-size: 22px;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 36px rgba(5, 17, 34, 0.34);
}

.closing .note {
  font-size: 12px;
}

.entry-cta-icon {
  position: absolute;
  right: 28px;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.entry-cta-icon circle {
  fill: var(--white);
  stroke: none;
}

.entry-cta-icon path {
  stroke: var(--wine-dark);
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 48px 0 0;
  background: transparent;
  text-align: center;
}

.corp-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: none;
}

#overview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
}

#overview::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: min(560px, 58%);
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 70%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 46%, rgba(242, 213, 123, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 74%, rgba(88, 199, 255, 0.3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 79% 42%, rgba(88, 199, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 199, 255, 0.13) 12% 34%, transparent 34% 45%, rgba(88, 199, 255, 0.16) 45% 78%, transparent 78%),
    linear-gradient(90deg, transparent 0 58%, rgba(242, 213, 123, 0.14) 58% 74%, transparent 74%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(88, 199, 255, 0.1) 51px 52px, transparent 53px 100px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(88, 199, 255, 0.08) 45px 46px, transparent 47px 88px),
    radial-gradient(ellipse at 50% 82%, rgba(26, 167, 255, 0.14) 0%, transparent 62%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 42%, center 68%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
}

#overview .section-heading .label {
  color: var(--gold-light);
}

#overview .section-heading h2 {
  color: var(--white);
}

#overview .info-list {
  border-color: rgba(216, 180, 90, 0.42);
  background: var(--white);
}

#overview .info-list div {
  border-bottom-color: rgba(216, 180, 90, 0.26);
}

#overview .info-list span {
  border-right-color: rgba(216, 180, 90, 0.28);
  background: #fbf5e7;
  color: var(--navy-950);
}

#overview .overview-table-note {
  border-left-color: var(--gold);
  color: rgba(255, 255, 255, 0.82);
}

.closing {
  overflow: visible;
  background: var(--white);
  color: var(--navy-950);
}

.closing::before {
  content: none;
}

.closing-inner {
  padding: 96px 48px;
  background: linear-gradient(90deg, #06162c 0%, #071d38 50%, #06162c 100%);
  color: var(--white);
}

.closing-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 8% 32%, rgba(88, 199, 255, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 46% 24%, rgba(242, 213, 123, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 48%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 7%, rgba(88, 199, 255, 0.18) 7% 26%, transparent 26% 34%, rgba(88, 199, 255, 0.12) 34% 56%, transparent 56%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(88, 199, 255, 0.12) 47px 48px, transparent 49px 92px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(88, 199, 255, 0.09) 43px 44px, transparent 45px 84px);
  opacity: 0.5;
}

.site-footer {
  padding-top: 34px;
}

.corp-link-button {
  border-color: rgba(184, 138, 46, 0.62);
  color: var(--navy-950);
}

.copyright {
  color: var(--navy-700);
}

.copyright {
  margin: 0;
  color: var(--navy-700);
  font-size: 13px;
  letter-spacing: 0.04em;
}

#features .outcome-section .flow-connector {
  top: -116px;
  width: 112px;
  height: 104px;
  background: none;
}

#features .outcome-section .flow-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 92px;
  background: linear-gradient(180deg, rgba(242, 213, 123, 0), rgba(242, 213, 123, 0.95));
  box-shadow:
    -28px 28px 0 -1px rgba(242, 213, 123, 0.55),
    28px 48px 0 -1px rgba(88, 199, 255, 0.32);
  transform: translateX(-50%);
}

#features .outcome-section .flow-connector::after {
  right: auto;
  bottom: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(242, 213, 123, 0.96);
  border-bottom: 2px solid rgba(242, 213, 123, 0.96);
  background: rgba(6, 22, 44, 0.92);
  box-shadow: 0 0 0 10px rgba(242, 213, 123, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

#features .outcome-section .section-heading p.normal-lead {
  margin-right: auto;
  margin-left: auto;
  text-align: center !important;
}

#faq .faq-list summary {
  padding-right: 86px;
  cursor: pointer;
}

#faq .faq-list summary::after {
  top: 50%;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216, 180, 90, 0.62);
  border-radius: 50%;
  background: #fbf5e7;
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

#faq .faq-list details[open] summary::after {
  content: "−";
  background: var(--gold-dark);
  color: var(--white);
}

#faq .faq-list p {
  overflow: hidden;
}

#faq .faq-list details:not([open]) p {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

#faq .faq-list p strong {
  font-weight: 700;
}

#features::before,
.closing-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 70%, rgba(88, 199, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 31% 46%, rgba(242, 213, 123, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 74%, rgba(88, 199, 255, 0.3) 0 1.5px, transparent 3px),
    radial-gradient(circle at 79% 42%, rgba(88, 199, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(242, 213, 123, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 199, 255, 0.13) 12% 34%, transparent 34% 45%, rgba(88, 199, 255, 0.16) 45% 78%, transparent 78%),
    linear-gradient(90deg, transparent 0 58%, rgba(242, 213, 123, 0.14) 58% 74%, transparent 74%),
    repeating-linear-gradient(90deg, transparent 0 50px, rgba(88, 199, 255, 0.1) 51px 52px, transparent 53px 100px),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(88, 199, 255, 0.08) 45px 46px, transparent 47px 88px),
    radial-gradient(ellipse at 50% 82%, rgba(26, 167, 255, 0.14) 0%, transparent 62%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat;
  background-position: center, center, center, center, center, center 42%, center 68%, center, center, center;
  background-size: auto, auto, auto, auto, auto, 100% 1px, 100% 1px, auto, auto, 100% 100%;
  opacity: 0.5;
  -webkit-mask-image: none;
  mask-image: none;
}

#overview {
  background: #f8fafc;
  color: var(--navy-950);
}

#overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 16% 12%, rgba(255, 255, 255, 0.92) 0%, transparent 46%),
    radial-gradient(ellipse at 86% 24%, rgba(216, 180, 90, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(237, 243, 248, 0.34) 100%);
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

#overview .section-heading .label {
  color: var(--gold-dark);
}

#overview .section-heading h2 {
  color: var(--navy-950);
}

#overview .overview-table-note {
  color: var(--navy-700);
}

#flow .flow-list {
  gap: 20px;
  padding-top: 12px;
}

#flow .flow-list li {
  overflow: visible;
  grid-template-rows: auto auto auto 1fr;
  gap: 0;
  min-height: 300px;
  margin: 0;
  padding: 28px 22px 26px;
}

#flow .flow-list li::before {
  margin: 0 auto 8px;
  font-size: 38px;
}

#flow .flow-list h3 {
  min-height: 0;
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.45;
}

#flow .flow-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 16px;
}

#flow .flow-icon svg {
  width: 40px;
  height: 40px;
}

#flow .flow-list p {
  text-align: left;
  line-height: 1.75;
}

#flow .flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 2;
  width: 20px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, rgba(216, 180, 90, 0.15), rgba(216, 180, 90, 0.9));
  transform: translateY(-50%);
}

#flow .flow-list h3 {
  position: relative;
}

.video-section {
  padding: 0 100px;
  background-color: var(--navy-950);
}

#features,
#voice,
#faq,
.closing-inner {
  background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
}

#features .section-heading p.normal-lead {
  margin-top: 28px;
  margin-bottom: 36px;
}

#features .outcome-section {
  padding-top: 92px;
}

#features .outcome-section .flow-connector {
  top: -132px;
  left: 50%;
  width: 2px;
  height: 184px;
  background: linear-gradient(180deg, rgba(242, 213, 123, 0), rgba(242, 213, 123, 0.92) 34%, rgba(242, 213, 123, 0.92));
  transform: translateX(-50%);
}

#features .outcome-section .flow-connector::before,
#features .outcome-section .flow-connector::after {
  content: none;
}

#features .outcome-section .section-heading h2 {
  margin-top: 18px;
}

.curriculum-cta-area,
.outcome-cta-area,
#curriculum .curriculum-cta-area,
#features .outcome-cta-area {
  padding-top: 46px;
  padding-bottom: 46px;
}

#curriculum .curriculum-cta-area,
#features .outcome-cta-area {
  background: linear-gradient(90deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
}

.closing-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

#flow .section-heading {
  margin-bottom: 48px;
}

#flow .section-heading p:not(.label) {
  display: none;
}

#flow .flow-list li {
  gap: 14px;
  padding-top: 30px;
}

#flow .flow-list li::before {
  margin-bottom: 2px;
  font-size: 19px;
}

#flow .flow-list h3 {
  margin-bottom: 8px;
}

#flow .flow-icon {
  margin-top: 4px;
  margin-bottom: 20px;
}

.video-section {
  padding: 0 0 100px;
}

#voice .survey-card {
  grid-template-rows: auto auto 1fr;
  align-content: start;
  align-items: start;
}

#voice .survey-card-heading {
  width: 100%;
  min-height: 104px;
}

#voice .survey-card-heading h3 {
  font-size: 26px;
}

#voice .survey-meta-panel {
  align-items: start;
  width: 100%;
  min-height: 176px;
}

#voice .survey-score {
  align-content: start;
}

#flow .section-heading .label {
  font-size: 20px;
}

#flow .section-heading h2 {
  font-size: 36px;
}

#faq,
#overview {
  padding-top: var(--section-space);
}

#faq .faq-list details {
  background: var(--white);
}

#faq .faq-list summary::after {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 180, 90, 0.7);
  background: transparent;
  font-size: 28px;
}

#faq .faq-list details[open] summary::after {
  background: transparent;
  color: var(--gold-dark);
}

#faq .faq-list p {
  transform: none;
  transition: none;
  will-change: auto;
}

.campaign-box {
  display: grid;
  gap: 28px;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(216, 180, 90, 0.42);
  border-radius: var(--radius-small);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.72) 0 18%, rgba(247, 242, 232, 0.94) 18.1% 100%);
  box-shadow: 0 18px 46px rgba(16, 33, 63, 0.08);
}

.campaign-banner {
  width: min(900px, 100%);
  margin: 0 auto 8px;
}

.campaign-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-list {
  display: grid;
  gap: 16px;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  list-style: none;
}

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

.campaign-list li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.campaign-note {
  width: min(900px, 100%);
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

#overview .overview-table-note {
  padding-left: 0;
  border-left: 0;
}

#flow .flow-list p {
  font-weight: 400;
}

#flow .flow-list li:not(:last-child)::after {
  right: -24px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(216, 180, 90, 0.22), rgba(216, 180, 90, 1));
  box-shadow: 0 0 14px rgba(216, 180, 90, 0.38);
}

#flow .flow-list li:not(:last-child) h3::after {
  content: "";
  position: absolute;
  top: calc(50% + 62px);
  right: -38px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(216, 180, 90, 0.98);
  border-right: 2px solid rgba(216, 180, 90, 0.98);
  transform: rotate(45deg);
}

#faq .faq-list summary::after {
  width: 32px;
  height: 32px;
  font-size: 24px;
}

.corp-link-button {
  color: rgba(184, 138, 46, 0.82);
  font-weight: 400;
}

.copyright {
  font-size: 13px;
  font-weight: 400;
}

.site-footer .copyright {
  font-size: 13px;
  font-weight: 400;
}

.cta-button,
.sub-button,
.header-cta,
.corp-link-button {
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover,
.sub-button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.corp-link-button:hover {
  transform: translateY(-2px);
  color: var(--gold-dark);
}

#features .outcome-card ul {
  display: grid;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}

#features .outcome-card li {
  position: relative;
  padding-left: 18px;
}

#features .outcome-card li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  bottom: 0.42em;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
}

#features .feature-flow > .section-heading {
  margin-bottom: 42px;
}

#features .feature-flow > .section-heading h2 {
  margin-bottom: 26px;
}

#features .feature-flow > .section-heading p.normal-lead {
  margin-top: 30px;
  margin-bottom: 24px;
}

#features .feature-grid.six {
  margin-top: 0;
}

.external-link,
.corp-link-button {
  gap: 6px;
}

.external-link-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-nav .external-link {
  display: inline-flex;
  align-items: center;
}

.corp-link-button .external-link-icon {
  width: 16px;
  height: 16px;
}

#contact {
  background: #f8fafc;
}

.campaign-box {
  box-shadow: none;
}

.campaign-list {
  gap: 10px;
  line-height: 1.55;
}

.campaign-note {
  line-height: 1.6;
}

#overview .overview-table-block,
#overview .info-list,
.campaign-box {
  width: min(960px, 100%);
  margin-right: auto;
  margin-left: auto;
}

#overview .info-list {
  border-color: var(--gray-300);
}

#overview .info-list div {
  border-bottom-color: var(--gray-300);
}

#overview .info-list span {
  border-right-color: var(--gray-300);
}

#contact {
  padding-top: 40px;
}

#overview {
  padding-bottom: 56px;
}

#flow .flow-list li:not(:last-child) h3::after {
  content: none;
}

#voice .survey-comment-list p {
  color: var(--gray-900);
  font-weight: 400;
}

#voice .carousel-button {
  color: var(--gold) !important;
}

#features .outcome-card ul {
  gap: 16px;
}

#features .outcome-card li {
  min-height: 22px;
  padding-left: 30px;
}

#features .outcome-card li::before {
  top: 0.36em;
  bottom: auto;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background-color: var(--gold-dark);
  background-image: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z'/%3E%3C/svg%3E") center / contain no-repeat;
}

#overview .info-list {
  border-color: #dde4ec;
}

#overview .info-list div {
  grid-template-columns: 240px 1fr;
  border-bottom-color: #dde4ec;
}

#overview .info-list span {
  border-right-color: #dde4ec;
}

#faq {
  padding-bottom: 88px;
}

#voice .survey-meta-panel {
  padding-bottom: 18px;
}

#voice .survey-meta {
  gap: 10px;
}

#voice .survey-comment-list p {
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 500;
}

#features .outcome-card li {
  padding-left: 28px;
}

#features .outcome-card li::before {
  top: 0.24em;
  width: 20px;
  height: 20px;
  background-color: var(--gold-dark);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

#features .feature-flow > .section-heading p.normal-lead {
  margin-bottom: 60px;
}

#lecturers {
  padding-bottom: 72px;
}

#features .outcome-card li {
  padding-left: calc(25px + 1em);
}

#features .outcome-card li::before {
  top: 0.12em;
  width: 25px;
  height: 25px;
}

#features .feature-flow > .section-heading {
  margin-bottom: 0;
}

#features .feature-flow {
  gap: 0;
}

#features .feature-flow > .section-heading p.normal-lead {
  margin-bottom: 60px;
}

#features .feature-grid.six {
  margin-top: 0;
}

@media (max-width: 960px) {
  .container {
    width: calc(100% - 40px);
  }

  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    gap: 16px;
  }

  .site-header .header-inner {
    padding: 16px 20px;
  }

  .header-nav {
    order: 3;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    margin-left: auto;
  }

  .section,
  .hero,
  .closing {
    padding: var(--section-space-sp) 0;
  }

  .closing-inner {
    padding: 56px 24px;
  }

  .hero-grid,
  .two-column,
  .voice-grid,
  .featured-lecturers,
  .faculty-grid,
  .semester-grid,
  .lecturer-grid,
  .feature-grid,
  .support-grid,
  .issue-grid,
  .challenge-grid,
  .feature-grid.six,
  .outcome-grid,
  .survey-card-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .student-voice-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .student-voice-track {
    grid-auto-columns: 100%;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 10vw, 64px);
  }

  .section-heading h2,
  .closing h2 {
    font-size: 36px;
  }

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

  .hero .photo-large {
    min-height: 520px;
  }

  .hero-person {
    grid-template-rows: minmax(330px, 1fr) auto auto auto;
  }

  .hero-photo-area {
    height: 330px;
  }

  .lecturer-feature {
    grid-template-columns: 140px 1fr;
  }

  .faculty-card {
    grid-template-columns: 180px 1fr;
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
  }

  .timeline-item h3,
  .timeline-item p {
    grid-column: 1 / -1;
  }

  .curriculum-table {
    min-width: 820px;
    font-size: 12px;
  }

  .curriculum-table th,
  .curriculum-table td {
    padding: 8px 10px;
  }

  .info-list div,
  .outline-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .info-list div {
    grid-template-columns: 240px 1fr;
    gap: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .site-logo {
    width: 176px;
    font-size: 16px;
  }

  .header-cta {
    min-width: auto;
    min-height: 48px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-kicker {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 18px;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    width: 42px;
  }

  .hero-term {
    margin-top: 24px;
    padding: 9px 22px;
    font-size: 20px;
  }

  .hero-course {
    min-width: 0;
    width: 100%;
    padding: 10px 20px;
    font-size: 20px;
  }

  .hero-lead,
  .closing p {
    font-size: 16px;
  }

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

  .feature-flow {
    gap: 56px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 36px;
  }

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

  .hero .photo-large {
    min-height: auto;
  }

  .hero-person {
    grid-template-rows: auto auto auto auto;
    padding-bottom: 22px;
  }

  .hero-photo-area {
    height: 310px;
  }

  .hero-person .hero-person-name {
    font-size: 28px;
  }

  .hero-person p {
    padding: 0 22px;
  }

  .cta-button {
    width: min(340px, 100%);
    height: 70px;
  }

  .sub-button {
    width: 100%;
  }

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

  .curriculum-cta-area,
  .challenge-card,
  .student-voice-card,
  .survey-card,
  .outcome-cta-area,
  .outcome-card {
    padding: 24px;
  }

  .info-list {
    border-radius: 8px;
  }

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

  .info-list span {
    border-right: 0;
    border-bottom: 1px solid var(--gray-300);
  }

  .survey-results {
    margin-top: 64px;
  }

  .survey-results .section-heading {
    margin-bottom: 40px;
  }

  .survey-meta-panel,
  .survey-meta div {
    grid-template-columns: 1fr;
  }

  .survey-meta {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--gray-300);
  }

  .survey-score strong {
    font-size: 40px;
  }

  .flow-list li {
    min-height: auto;
    gap: 32px;
    padding: 40px 24px;
  }

  .flow-list li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    border-top: 18px solid var(--gray-300);
    border-right: 14px solid transparent;
    border-bottom: 0;
    border-left: 14px solid transparent;
    transform: translateX(-50%);
  }

  .faculty-card {
    grid-template-columns: 1fr;
    min-height: 580px;
  }

  .faculty-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .faculty-body {
    text-align: center;
  }

  .faculty-body h3 {
    font-size: 24px;
  }

  .photo-block,
  .photo-block.small {
    min-height: 180px;
  }

  .semester h3 {
    font-size: 20px;
  }

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

  .session {
    width: 48px;
  }

  .issue-item {
    min-height: auto;
    font-size: 16px;
  }

  .score-box strong {
    font-size: 40px;
  }
}

.hero {
  min-height: 0;
  padding: 0;
}

.hero::before,
.hero::after {
  content: none;
}

@media (max-width: 960px) {
  #lecturers .container,
  #curriculum .container {
    width: calc(100% - 40px);
  }

  #lecturers .faculty-card {
    grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
    gap: 28px;
    min-height: auto;
    padding: 26px;
  }

  #lecturers .faculty-photo {
    max-width: none;
  }

  #lecturers .faculty-body {
    padding: 0;
  }

  #curriculum .curriculum-title {
    padding: 24px 26px;
  }

  #curriculum .curriculum-table {
    min-width: 880px;
  }
}

@media (max-width: 520px) {
  #lecturers .section-heading,
  #curriculum .section-heading {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 38px;
    padding: 22px 20px;
  }

  #lecturers .section-heading .label,
  #lecturers .section-heading h2,
  #lecturers .section-heading p,
  #curriculum .section-heading .label,
  #curriculum .section-heading h2,
  #curriculum .section-heading p {
    grid-column: 1;
  }

  #lecturers .section-heading h2,
  #curriculum .section-heading h2 {
    font-size: 30px;
  }

  #lecturers .faculty-grid {
    gap: 22px;
  }

  #lecturers .faculty-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  #lecturers .faculty-photo {
    width: 100%;
    max-width: 230px;
    min-height: 0;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  #lecturers .faculty-body {
    padding: 10px 2px 6px;
    text-align: left;
  }

  #lecturers .faculty-body h3 {
    font-size: 32px;
  }

  #lecturers .faculty-position {
    font-size: 16px;
  }

  #curriculum .curriculum-tables {
    gap: 30px;
  }

  #curriculum .curriculum-title {
    padding: 22px;
  }

  #curriculum .curriculum-table {
    min-width: 820px;
    font-size: 13px;
  }

  #curriculum .curriculum-table th,
  #curriculum .curriculum-table td {
    padding: 12px 14px;
  }

  #curriculum .note {
    padding: 16px 22px 24px;
  }

  #curriculum .curriculum-cta-area {
    padding: 28px 22px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-space-sp: 56px;
  }

  body {
    font-size: 15px;
    line-height: 1.75;
  }

  .container,
  #lecturers .container,
  #curriculum .container,
  #features .container,
  #voice .container,
  #flow .container,
  #faq .container,
  #overview .container {
    width: calc(100% - 32px);
  }

  .site-header .header-inner {
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .header-nav {
    display: none;
  }

  .site-logo {
    width: min(172px, 45vw);
  }

  .header-cta {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 42px;
    margin-left: auto;
    padding: 0 12px;
    gap: 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-cta-icon {
    width: 18px;
    height: 18px;
  }

  .hero-image-wrap {
    width: 100%;
    overflow: visible;
  }

  .hero-picture {
    display: block;
    width: 100%;
  }

  .hero-image {
    width: 100%;
    min-width: 0;
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  .hero-cta-hotspot {
    left: 5%;
    top: 78%;
    width: 90%;
    height: 13%;
  }

  .section,
  #lecturers,
  #curriculum,
  #features,
  #voice,
  #flow,
  #faq,
  #overview,
  .closing {
    padding-top: var(--section-space-sp);
    padding-bottom: var(--section-space-sp);
  }

  .video-section {
    padding: 0 0 56px;
  }

  .section-heading,
  #lecturers .section-heading,
  #curriculum .section-heading,
  #features .section-heading,
  #voice .section-heading,
  #flow .section-heading,
  #faq .section-heading,
  #overview .section-heading {
    display: grid;
    justify-items: center;
    row-gap: 8px;
    max-width: none;
    margin-bottom: 32px;
    padding: 0;
    text-align: center;
  }

  .section-heading .label,
  #lecturers .section-heading .label,
  #curriculum .section-heading .label,
  #features .section-heading .label,
  #voice .section-heading .label,
  #flow .section-heading .label,
  #faq .section-heading .label,
  #overview .section-heading .label,
  .closing .label {
    justify-content: center;
    gap: 12px;
    font-size: 15px;
  }

  .section-heading .label::before,
  .section-heading .label::after,
  #features .section-heading .label::before,
  #features .section-heading .label::after,
  #voice .section-heading .label::before,
  #voice .section-heading .label::after,
  #flow .section-heading .label::before,
  #flow .section-heading .label::after,
  #faq .section-heading .label::before,
  #faq .section-heading .label::after,
  #overview .section-heading .label::before,
  #overview .section-heading .label::after {
    width: 38px;
  }

  .section-heading h2,
  #lecturers .section-heading h2,
  #curriculum .section-heading h2,
  #features .section-heading h2,
  #voice .section-heading h2,
  #flow .section-heading h2,
  #faq .section-heading h2,
  #overview .section-heading h2,
  .closing h2 {
    font-size: 30px;
    line-height: 1.38;
  }

  #features .section-heading .course-kicker {
    font-size: 18px;
  }

  #features .section-heading p.normal-lead,
  #lecturers .section-heading p:not(.label),
  #curriculum .section-heading p:not(.label),
  #voice .section-heading p:not(.label),
  #faq .section-heading p:not(.label),
  #overview .section-heading p:not(.label) {
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
  }

  #features .feature-flow {
    gap: 0;
  }

  #features .feature-flow > .section-heading p.normal-lead {
    margin-bottom: 36px;
  }

  .featured-lecturers,
  .faculty-grid,
  .lecturer-grid,
  .feature-grid,
  .feature-grid.six,
  .outcome-grid,
  .survey-card-grid,
  .flow-list,
  .voice-grid,
  .support-grid,
  .issue-grid,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  #lecturers .faculty-grid,
  #features .feature-grid.six,
  #features .outcome-grid,
  #voice .survey-card-grid,
  #flow .flow-list {
    gap: 20px;
  }

  #lecturers .faculty-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  #lecturers .faculty-photo {
    width: min(220px, 72vw);
    max-width: none;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  #lecturers .faculty-body h3 {
    font-size: 26px;
  }

  #lecturers .faculty-position,
  #lecturers .faculty-bio {
    font-size: 14px;
  }

  #curriculum .curriculum-title {
    padding: 18px;
  }

  #curriculum .curriculum-title h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #curriculum .curriculum-table {
    min-width: 760px;
    font-size: 12px;
  }

  #curriculum .curriculum-table th,
  #curriculum .curriculum-table td {
    padding: 10px 12px;
  }

  .curriculum-cta-area,
  .outcome-cta-area,
  #curriculum .curriculum-cta-area,
  #features .outcome-cta-area,
  .closing-inner {
    padding: 28px 20px;
  }

  .cta-button,
  #curriculum .curriculum-cta-area .cta-button,
  #features .outcome-cta-area .cta-button,
  .closing .cta-button {
    width: min(100%, 320px);
    height: 64px;
    padding: 0 18px;
    font-size: 16px;
  }

  #features .feature-card h3,
  .outcome-card h3 {
    font-size: 20px;
  }

  #features .feature-card p,
  .outcome-card ul,
  #features .outcome-card li {
    font-size: 14px;
  }

  #features .feature-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
  }

  #features .feature-icon svg {
    width: 48px;
    height: 48px;
  }

  #features .outcome-section {
    width: auto;
    margin: 56px 0 calc(var(--section-space-sp) * -1);
    padding: 64px 16px 56px;
  }

  #features .outcome-section .section-heading h2 {
    font-size: 28px;
  }

  #features .outcome-card li {
    padding-left: 36px;
  }

  #features .outcome-card li::before {
    width: 22px;
    height: 22px;
  }

  #voice .student-voice-carousel {
    margin-inline: calc(50% - 50vw);
  }

  #voice .carousel-button {
    width: 44px;
    height: 44px;
    font-size: 44px;
  }

  #voice .carousel-button svg {
    width: 44px;
    height: 44px;
  }

  #voice .student-voice-card,
  #voice .survey-card {
    padding: 24px 20px;
  }

  #voice .student-voice-card h3 {
    font-size: 20px;
  }

  #voice .student-voice-card p,
  #voice .student-voice-card .voice-person,
  #voice .survey-comment-list p {
    font-size: 14px;
  }

  #voice .survey-meta-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  #voice .survey-score strong {
    font-size: 42px;
  }

  #voice .survey-meta {
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  #flow .flow-list {
    padding-top: 0;
  }

  #flow .flow-list li {
    min-height: 0;
    padding: 26px 20px;
  }

  #flow .flow-list li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    width: 2px;
    height: 20px;
    transform: translateX(50%);
  }

  #faq .faq-list {
    gap: 12px;
  }

  #faq .faq-list summary {
    padding: 18px 58px 18px 52px;
    font-size: 14px;
  }

  #faq .faq-list summary::before {
    top: 19px;
    left: 20px;
    font-size: 18px;
  }

  #faq .faq-list summary::after {
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  #faq .faq-list p {
    padding: 0 20px 18px 52px;
    font-size: 14px;
  }

  .campaign-box {
    width: 100%;
    gap: 18px;
    padding: 22px 18px;
  }

  .campaign-list {
    gap: 8px;
    font-size: 14px;
  }

  #overview .overview-table-block,
  #overview .info-list {
    width: 100%;
  }

  #overview .info-list div {
    grid-template-columns: 1fr;
  }

  #overview .info-list span {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid #dde4ec;
  }

  #overview .info-list strong {
    min-height: 0;
    padding: 16px;
    font-size: 14px;
  }

  .closing {
    padding-top: 40px;
  }

  .closing-inner {
    width: calc(100% - 32px);
  }

  .site-footer {
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  #lecturers .faculty-grid {
    grid-template-columns: 1fr;
  }

  #lecturers .faculty-card {
    width: 100%;
  }

  #lecturers .faculty-photo {
    width: min(220px, 100%);
  }
}

@media (max-width: 768px) {
  #lecturers .faculty-card {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 18px;
  }

  #lecturers .faculty-photo {
    width: 104px;
    aspect-ratio: 1 / 1;
  }

  #lecturers .faculty-body {
    min-width: 0;
    padding: 0;
  }

  #lecturers .faculty-head {
    gap: 6px;
  }

  #lecturers .faculty-body h3 {
    font-size: 22px;
  }

  #lecturers .faculty-position {
    font-size: 12px;
    line-height: 1.55;
  }

  #lecturers .faculty-bio {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.7;
  }

  #curriculum .curriculum-title {
    margin-bottom: 12px;
    padding: 16px;
  }

  #curriculum .curriculum-tables {
    gap: 28px;
  }

  #curriculum .table-scroll {
    overflow: visible;
  }

  #curriculum .curriculum-table,
  #curriculum .curriculum-table thead,
  #curriculum .curriculum-table tbody,
  #curriculum .curriculum-table tr,
  #curriculum .curriculum-table th,
  #curriculum .curriculum-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  #curriculum .curriculum-table {
    border: 0;
    background: transparent;
    font-size: 13px;
  }

  #curriculum .curriculum-table thead {
    display: none;
  }

  #curriculum .curriculum-table tbody {
    display: grid;
    gap: 12px;
  }

  #curriculum .curriculum-table tr {
    overflow: hidden;
    border: 1px solid rgba(207, 216, 227, 0.9);
    border-radius: var(--radius-small);
    background: var(--white);
  }

  #curriculum .curriculum-table td {
    display: grid;
    grid-template-columns: 5.8em minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid rgba(207, 216, 227, 0.7);
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  #curriculum .curriculum-table td:last-child {
    border-bottom: 0;
  }

  #curriculum .curriculum-table td::before {
    color: var(--gold-dark);
    font-weight: 700;
  }

  #curriculum .curriculum-table td:nth-child(1)::before {
    content: "時期";
  }

  #curriculum .curriculum-table td:nth-child(2)::before {
    content: "テーマ";
  }

  #curriculum .curriculum-table td:nth-child(3)::before {
    content: "講師";
  }

  #curriculum .curriculum-table td:nth-child(4)::before {
    content: "会社名・役職";
  }

  .curriculum-cta-area p,
  .outcome-cta-area p,
  .closing-inner > p {
    font-size: 13px;
    line-height: 1.75;
  }

  #curriculum .curriculum-cta-main,
  #features .outcome-cta-main {
    font-size: 16px;
  }

  #curriculum .curriculum-cta-sub,
  #features .outcome-cta-sub {
    font-size: 13px;
  }

  #features .section-heading p.normal-lead {
    font-size: 14px;
  }

  #features .feature-flow > .section-heading p.normal-lead {
    font-size: 14px;
  }

  #features .feature-grid.six .feature-card {
    min-height: 0;
    padding: 22px 20px;
  }

  #features .feature-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  #features .outcome-section {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: 16px;
    padding-left: 16px;
  }

  #features .outcome-section .section-heading p.normal-lead {
    font-size: 14px;
  }

  #voice .student-voice-carousel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  #voice .student-voice-carousel .splide__track {
    order: 1;
  }

  #voice .student-voice-carousel .splide__arrows {
    order: 2;
    display: flex;
    justify-content: center;
    gap: 28px;
  }

  #voice .carousel-button {
    position: static;
    transform: none;
  }

  #voice .student-voice-card {
    height: auto !important;
    min-height: 0;
    align-content: start;
  }

  #voice .student-voice-card .voice-person,
  #voice .student-voice-card .voice-person p,
  #voice .student-voice-card .voice-person p:last-child {
    font-size: 12px;
    line-height: 1.35;
  }

  #voice .survey-results .section-heading h2 {
    font-size: 24px;
  }

  #voice .survey-card-heading h3 {
    font-size: 20px;
  }

  #voice .survey-cta .sub-button {
    min-width: 0;
    width: min(360px, calc(100vw - 32px));
    margin-right: auto;
    margin-left: auto;
  }

  #flow .section-heading h2 {
    font-size: 28px;
  }

  #overview .info-list span,
  #overview .info-list strong {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-cta-hotspot {
    left: 7%;
    top: 90%;
    width: 86%;
    height: 7%;
  }

  .video-section {
    padding: 40px 0 56px;
  }

  .section-heading,
  #lecturers .section-heading,
  #curriculum .section-heading,
  #features .section-heading,
  #voice .section-heading,
  #flow .section-heading,
  #faq .section-heading,
  #overview .section-heading {
    row-gap: 4px;
  }

  .section-heading .label,
  #lecturers .section-heading .label,
  #curriculum .section-heading .label,
  #features .section-heading .label,
  #voice .section-heading .label,
  #flow .section-heading .label,
  #faq .section-heading .label,
  #overview .section-heading .label {
    margin-bottom: 0;
  }

  .section-heading h2,
  #lecturers .section-heading h2,
  #curriculum .section-heading h2,
  #features .section-heading h2,
  #voice .section-heading h2,
  #flow .section-heading h2,
  #faq .section-heading h2,
  #overview .section-heading h2 {
    font-size: 26px;
    line-height: 1.35;
  }

  #features .section-heading .course-kicker {
    margin-bottom: 2px;
  }

  #lecturers .faculty-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
    gap: 14px 16px;
    padding: 12px;
  }

  #lecturers .faculty-body {
    display: contents;
  }

  #lecturers .faculty-head {
    grid-column: 2;
    align-self: center;
  }

  #lecturers .faculty-bio {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  #curriculum .curriculum-title {
    margin-bottom: 6px;
    padding: 14px;
  }

  #curriculum .curriculum-block {
    gap: 6px;
  }

  #curriculum .curriculum-tables {
    gap: 24px;
  }

  #curriculum .curriculum-table tbody {
    display: block;
  }

  #curriculum .curriculum-table tr {
    overflow: visible;
    border: 0;
    border-bottom: 1px solid rgba(207, 216, 227, 0.9);
    border-radius: 0;
    background: var(--white);
  }

  #curriculum .curriculum-table tr:last-child {
    border-bottom: 0;
  }

  #curriculum .curriculum-table td {
    gap: 20px;
    padding: 7px 12px;
    border-bottom: 0;
  }

  #curriculum .curriculum-table td::before {
    font-size: 12px;
  }

  #curriculum .curriculum-table td:first-child {
    padding-top: 12px;
  }

  #curriculum .curriculum-table td:last-child {
    padding-bottom: 14px;
  }

  #curriculum .note {
    margin-top: 6px;
    padding-left: 0;
    text-align: left;
  }

  .curriculum-cta-area p,
  .outcome-cta-area p,
  .closing-inner > p {
    font-size: 12px;
  }

  #curriculum .curriculum-cta-main,
  #features .outcome-cta-main {
    font-size: 14px;
    line-height: 1.6;
  }

  #curriculum .curriculum-cta-sub,
  #features .outcome-cta-sub {
    font-size: 12px;
  }

  #features .feature-flow > .section-heading {
    margin-bottom: 0;
  }

  #features .feature-flow > .section-heading h2 {
    margin-bottom: 8px;
  }

  #features .feature-flow > .section-heading p.normal-lead {
    margin-top: 0;
    margin-bottom: 60px;
  }

  #features .feature-grid {
    position: relative;
    z-index: 1;
    justify-items: center;
  }

  #features .feature-grid.six .feature-card {
    width: 100%;
    max-width: 440px;
  }

  #features .outcome-section {
    margin-top: 72px;
  }

  #features .outcome-section .flow-connector {
    top: -56px;
    height: 104px;
  }

  #voice .carousel-button {
    width: 104px;
    height: 42px;
    border: 1px solid rgba(216, 180, 90, 0.9);
    border-radius: 8px;
    background: var(--gold) !important;
    color: var(--white) !important;
    font-size: 30px;
    line-height: 1;
  }

  #voice .carousel-button svg {
    width: 24px;
    height: 24px;
  }

  #voice .student-voice-carousel .splide__arrows {
    justify-content: space-between;
    gap: 0;
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  #voice .survey-results .section-heading h2 {
    font-size: 22px;
  }

  #voice .survey-card-heading h3 {
    display: flex;
    align-items: center;
    height: 34.5px;
    font-size: 18px;
    line-height: 1.35;
    white-space: nowrap;
  }

  #voice .survey-card-heading {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3px;
    padding-bottom: 12px;
  }

  #voice .survey-card-heading p {
    font-size: 13px;
    line-height: 1.55;
  }

  #voice .survey-meta-panel {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 6px;
    align-items: start;
    min-height: 0;
    height: auto;
    padding: 16px 12px;
  }

  #voice .survey-score p,
  #voice .survey-meta dt,
  #voice .survey-score span,
  #voice .survey-meta .lecturer-title {
    font-size: 10.5px;
  }

  #voice .survey-score strong {
    font-size: 36px;
  }

  #voice .survey-score {
    align-content: start;
  }

  #voice .survey-meta {
    gap: 6px;
    align-content: start;
    padding-top: 0;
    padding-left: 8px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  #voice .survey-meta div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px;
  }

  #voice .survey-meta dd,
  #voice .survey-meta .lecturer-title {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  #voice .survey-comment-list p {
    padding: 18px;
  }

  #voice .survey-card {
    align-content: start;
    gap: 16px;
  }

  #voice .survey-cta .sub-button {
    width: auto;
    max-width: calc(100vw - 32px);
    min-height: 54px;
    padding: 0 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  #voice .survey-cta .sub-button svg {
    width: 18px;
    height: 18px;
  }

  #contact {
    padding-top: 20px;
  }

  .closing h2 {
    font-size: 18px;
    line-height: 1.55;
  }

  #overview {
    padding-bottom: 32px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    flex: 0 0 auto;
    margin-left: auto;
    white-space: nowrap;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #lecturers .faculty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  #lecturers .faculty-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  #lecturers .faculty-photo {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  #lecturers .faculty-body {
    padding: 0;
  }

  #lecturers .faculty-body h3 {
    font-size: 22px;
  }

  #lecturers .faculty-position {
    font-size: 13px;
    line-height: 1.55;
  }

  #lecturers .faculty-bio {
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  #lecturers .faculty-card {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  #lecturers .faculty-body h3 {
    font-size: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #features .feature-grid.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  #features .feature-grid.six .feature-card {
    width: 100%;
    max-width: 440px;
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  #curriculum .table-scroll {
    overflow: visible;
  }

  #curriculum .curriculum-table,
  #curriculum .curriculum-table thead,
  #curriculum .curriculum-table tbody,
  #curriculum .curriculum-table tr,
  #curriculum .curriculum-table th,
  #curriculum .curriculum-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  #curriculum .curriculum-table {
    border: 0;
    background: transparent;
    font-size: 13px;
  }

  #curriculum .curriculum-table thead {
    display: none;
  }

  #curriculum .curriculum-table tbody {
    display: block;
  }

  #curriculum .curriculum-table tr {
    overflow: visible;
    border: 0;
    border-bottom: 1px solid rgba(207, 216, 227, 0.9);
    border-radius: 0;
    background: var(--white);
  }

  #curriculum .curriculum-table tr:last-child {
    border-bottom: 0;
  }

  #curriculum .curriculum-table td {
    display: grid;
    grid-template-columns: 5.8em minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 7px 12px;
    border: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  #curriculum .curriculum-table td:first-child {
    padding-top: 12px;
  }

  #curriculum .curriculum-table td:last-child {
    padding-bottom: 14px;
  }

  #curriculum .curriculum-table td::before {
    color: var(--gold-dark);
    font-weight: 700;
  }

  #curriculum .curriculum-table td:nth-child(1)::before {
    content: "時期";
  }

  #curriculum .curriculum-table td:nth-child(2)::before {
    content: "テーマ";
  }

  #curriculum .curriculum-table td:nth-child(3)::before {
    content: "講師";
  }

  #curriculum .curriculum-table td:nth-child(4)::before {
    content: "会社名・役職";
  }
}

.corp-link-button {
  width: min(100%, 250px);
  max-width: 250px;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 14px;
  letter-spacing: 0;
}

@media (min-width: 901px) {
  #curriculum .curriculum-table th {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  #voice .survey-card-heading,
  #voice .survey-meta-panel {
    min-height: 0;
  }

  #voice .survey-meta-panel {
    height: auto;
    padding: 20px clamp(12px, 3vw, 24px);
  }

  #flow .flow-list {
    justify-items: center;
  }

  #flow .flow-list li {
    width: min(100%, 440px);
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  #voice .survey-meta-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    height: auto;
    padding: 24px;
  }

  #voice .survey-score {
    align-content: start;
  }

  #voice .survey-meta {
    gap: 10px;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  #voice .survey-meta div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  #voice .survey-meta dd,
  #voice .survey-meta .lecturer-title {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
