:root {
  --navy: #0b253f;
  --blue: #1470af;
  --steel: #8eb6dc;
  --white: #ffffff;
  --soft: #eaeaee;
  --soft-2: #f7f8fa;
  --text: #373434;
  --muted: #667085;
  --border: #d8dee6;
  --success: #207a4c;
  --shadow: 0 22px 60px rgba(11, 37, 63, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 222, 230, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 74px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-links a,
.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a {
  padding: 0 14px;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--soft-2);
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 91px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before,
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background:
    linear-gradient(120deg, #071d32 0%, var(--navy) 52%, #103f65 100%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 37, 63, 0.96) 0%, rgba(11, 37, 63, 0.86) 44%, rgba(11, 37, 63, 0.54) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 116px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.hero-media {
  display: grid;
  place-items: center;
  min-width: 0;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    rgba(11, 37, 63, 0.48);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  opacity: 0.98;
}

.video-topline {
  display: flex;
  gap: 8px;
  padding: 16px;
}

.video-topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
}

.play-lockup {
  height: calc(100% - 42px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.play-lockup p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.18);
  position: relative;
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--white);
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--steel);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
}

.hero h1 {
  max-width: 660px;
  color: var(--white);
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 800;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

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

.schedule-actions {
  display: grid;
  gap: 8px;
}

.schedule-actions .button {
  width: 100%;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  color: var(--navy);
  background: var(--white);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
}

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

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

.section-heading h2,
.app-copy h2,
.team-tease-copy h2,
.cta-band h2,
.bio-intro h1,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.app-copy p,
.team-tease-copy p,
.cta-band p,
.page-hero p,
.bio-intro p {
  color: var(--muted);
  font-size: 16px;
}

.intro-band {
  padding-top: 82px;
}

.intro-grid,
.service-grid,
.resource-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-grid article,
.service-card,
.resource-columns div,
.roster-card,
.service-detail,
.bio-aside,
.person-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.intro-grid article,
.service-card,
.resource-columns div {
  padding: 26px;
}

.intro-grid h3,
.service-card h3,
.resource-columns h3 {
  font-size: 18px;
}

.intro-grid p,
.service-card p,
.resource-columns p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.app-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--soft-2);
  width: 100%;
  max-width: none;
  padding: clamp(64px, 8vw, 112px) max(18px, calc((100vw - var(--max)) / 2));
}

.app-feature.compact {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.app-copy {
  max-width: 690px;
}

.app-copy p {
  margin-top: 18px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 6px;
  padding: 0 12px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
}

.app-preview {
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-header img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.preview-header strong,
.voice-card strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.preview-header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.voice-card {
  display: flex;
  gap: 12px;
  margin: 22px 0;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.voice-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.status-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(32, 122, 76, 0.18);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.preview-grid div {
  min-height: 76px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

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

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.team-tease {
  display: block;
}

.team-tease-copy {
  max-width: 780px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.leader-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.leader-strip img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.cta-band {
  width: min(var(--max), calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-band .button {
  flex: 0 0 auto;
  min-width: 190px;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--border);
  background: var(--soft-2);
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer p {
  margin: 14px 0 4px;
  color: var(--navy);
  font-weight: 800;
}

.site-footer small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px 18px;
}

.site-footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) 0 clamp(42px, 6vw, 76px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
}

.team-page-hero {
  max-width: 1050px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 12px;
}

.service-detail {
  padding: 30px;
}

.service-detail.highlight {
  background: var(--navy);
  color: var(--white);
}

.service-detail span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service-detail.highlight span {
  color: var(--steel);
}

.service-detail h2 {
  margin-top: 12px;
  font-size: 24px;
}

.service-detail.highlight h2,
.service-detail.highlight p,
.service-detail.highlight li {
  color: var(--white);
}

.service-detail p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-detail ul,
.bio-aside ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.executive-bios {
  display: grid;
  gap: 20px;
}

.executive-bio {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.executive-bio:nth-child(even) {
  background: var(--soft-2);
}

.executive-bio-heading,
.executive-bio-copy {
  min-width: 0;
}

.executive-bio-heading h3 {
  font-size: clamp(28px, 3.3vw, 42px);
  overflow-wrap: break-word;
}

.executive-title {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.executive-bio-copy > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.executive-bio-copy > p:last-child {
  margin-bottom: 0;
}

.focus-areas {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.focus-areas h4 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
}

.focus-areas ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

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

.person-card {
  overflow: hidden;
}

.person-card img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.person-card img.alex-headshot {
  object-position: center 36%;
}

.person-card h3,
.person-card .person-department,
.person-card p,
.person-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.person-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.person-card .person-department {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-card p {
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.person-card a {
  display: inline-flex;
  margin-top: 12px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.featured-person {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: center;
}

.featured-person img {
  height: 100%;
  aspect-ratio: auto;
}

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

.roster-card {
  padding: 28px;
}

.roster-card h3 {
  font-size: 24px;
}

.roster-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.roster-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.roster-card strong {
  color: var(--navy);
  font-size: 14px;
}

.roster-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.bio-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) 0 36px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.bio-image img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bio-intro p {
  max-width: 680px;
  margin: 18px 0 26px;
}

.bio-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
  padding-top: 42px;
}

.bio-main {
  max-width: 780px;
}

.bio-main p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.bio-aside {
  padding: 26px;
}

.bio-aside h2 {
  font-size: 22px;
}

.app-hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
}

.app-hero-card img {
  width: 72px;
  height: 72px;
  padding: 8px;
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
}

.app-hero-card h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
}

.app-hero-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.launch-pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-status {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 37, 63, 0.08);
}

.launch-status strong {
  color: var(--navy);
  font-size: 14px;
}

.launch-status span {
  color: var(--muted);
  font-size: 13px;
}

.app-launch-button {
  width: fit-content;
  margin-top: 24px;
}

.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

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

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

.supporting-leadership {
  padding-top: 24px;
}

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

.support-grid.partner-grid {
  grid-template-columns: minmax(0, 420px);
}

.contact-role-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.contact-role-card .initials {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.contact-role-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.contact-role-card p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-role-card a {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-role-card .text-link {
  margin-top: 12px;
}

.partner-card {
  background: var(--soft-2);
}

.professor-page-hero {
  padding-bottom: 42px;
}

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

.professor-summary div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft-2);
}

.professor-summary strong,
.professor-summary span {
  display: block;
}

.professor-summary strong {
  color: var(--navy);
  font-size: 22px;
}

.professor-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.professor-finder-shell {
  padding-top: 28px;
}

.professor-finder-intro,
.professor-data-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.professor-finder-intro h2,
.professor-data-note h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.professor-finder-intro > p,
.professor-data-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.professor-data-note p + p {
  margin-top: 16px;
}

.professor-controls {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: 14px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft-2);
}

.professor-controls label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.professor-controls select,
.professor-controls input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-size: 13px;
}

.professor-controls select:focus,
.professor-controls input:focus {
  outline: 3px solid rgba(20, 112, 175, 0.18);
  border-color: var(--blue);
}

.professor-status {
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.professor-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.professor-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.professor-card h2 {
  font-size: 18px;
  overflow-wrap: anywhere;
}

.professor-card-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.professor-section {
  flex: 0 0 auto;
  max-width: 42%;
  padding: 5px 7px;
  border-radius: 4px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.professor-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.professor-metrics div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--soft-2);
}

.professor-metrics dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.professor-metric dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.professor-data-notice {
  margin: 12px 0 0;
  padding: 9px 10px;
  border-radius: 6px;
  color: #92400e;
  background: #fffbeb;
  font-size: 11px;
  line-height: 1.45;
}

#professor-load-more {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.professor-data-note {
  margin-bottom: 72px;
  padding: 34px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--soft-2);
}

.inquiry-section,
.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.inquiry-section {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--soft-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.inquiry-copy h2,
.application-intro h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
}

.inquiry-copy > p:not(.eyebrow),
.application-intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.tsh-form {
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(11, 37, 63, 0.1);
}

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

.tsh-form label,
.tsh-form fieldset {
  min-width: 0;
}

.tsh-form label > span,
.tsh-form legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.tsh-form input[type="text"],
.tsh-form input[type="email"],
.tsh-form input[type="tel"],
.tsh-form input[type="file"],
.tsh-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-size: 13px;
}

.tsh-form textarea {
  min-height: 132px;
  resize: vertical;
}

.tsh-form input:focus,
.tsh-form textarea:focus {
  outline: 3px solid rgba(20, 112, 175, 0.18);
  border-color: var(--blue);
}

.form-submit {
  min-width: 180px;
  margin-top: 22px;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.join-page-hero {
  padding-bottom: 26px;
}

.application-layout {
  padding-top: 30px;
}

.application-paths {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.application-paths article {
  display: grid;
  gap: 3px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  background: var(--soft-2);
}

.application-paths strong {
  color: var(--navy);
  font-size: 14px;
}

.application-paths span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.application-form {
  display: grid;
  gap: 26px;
}

.application-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.application-form legend {
  margin-bottom: 14px;
  font-size: 14px;
}

.form-full,
.form-block {
  display: block;
  grid-column: 1 / -1;
}

.interest-options {
  display: grid;
  gap: 10px;
}

.interest-options label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.interest-options label:has(input:checked) {
  border-color: var(--blue);
  background: #eff6ff;
}

.interest-options input {
  margin: 4px 0 0;
  accent-color: var(--blue);
}

.interest-options label > span {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.interest-options strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 13px;
}

.file-field small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.submission-page {
  min-height: calc(100vh - 91px);
  display: grid;
  place-items: center;
  padding: 54px 18px;
  background: var(--soft-2);
}

.submission-card {
  width: min(620px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.submission-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.submission-card h1 {
  font-size: clamp(38px, 6vw, 58px);
}

.submission-card > p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--muted);
}

/* Weekly schedule */
.schedule-hero {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - 980px) / 2));
  padding-right: max(18px, calc((100vw - 980px) / 2));
  background:
    linear-gradient(135deg, rgba(11, 37, 63, 0.98), rgba(20, 112, 175, 0.9)),
    var(--navy);
}

.schedule-hero h1,
.schedule-hero p:not(.eyebrow) {
  color: var(--white);
}

.schedule-hero p:not(.eyebrow) {
  opacity: 0.82;
}

.schedule-overview {
  padding-bottom: clamp(72px, 9vw, 120px);
}

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

.availability-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 37, 63, 0.08);
}

.availability-card.current-week {
  border-color: rgba(20, 112, 175, 0.42);
}

.availability-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.availability-card h3 {
  margin-top: 8px;
  font-size: clamp(20px, 2.5vw, 26px);
}

.schedule-badge,
.availability-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-badge {
  color: var(--white);
  background: var(--blue);
}

.schedule-badge.secondary {
  color: var(--navy);
  background: var(--soft);
}

.availability-type {
  color: var(--blue);
  background: #eff6ff;
  white-space: nowrap;
}

.hours-list {
  margin: 18px 0 0;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--soft);
}

.hours-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list .today-hours {
  margin: 0 -12px;
  padding: 15px 12px;
  border-radius: 6px;
  border-bottom: 0;
  background: #eff6ff;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.hours-list dd {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.appointment-banner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.appointment-banner h3 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
}

.appointment-banner p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}

.button.outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.schedule-events-section {
  background: var(--soft-2);
  border-top: 1px solid var(--border);
}

.schedule-events-inner {
  width: min(var(--max), calc(100% - 36px));
}

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

.day-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.day-card.current-day {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 46px rgba(20, 112, 175, 0.12);
}

.day-card.featured-day {
  grid-column: 1 / -1;
}

.day-card > header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.day-card > header > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.day-card.current-day > header > span,
.day-card.featured-day > header > span {
  background: var(--blue);
}

.day-card h3 {
  font-size: 20px;
}

.day-card header p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.day-notice {
  margin-top: 16px;
  padding: 11px 14px;
  border-radius: 6px;
  color: var(--success);
  background: #edf8f2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft);
}

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

.event-list time {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.event-list strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
}

.event-list div span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 37, 63, 0.72) 0%, rgba(11, 37, 63, 0.94) 42%, rgba(11, 37, 63, 0.98) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 0 72px;
  }

  .hero-media {
    order: -1;
    width: min(100%, 680px);
    margin: 0 auto;
  }

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

  .intro-grid,
  .service-grid,
  .app-feature,
  .team-tease,
  .resource-columns,
  .service-detail-grid,
  .roster-grid,
  .bio-hero,
  .bio-content,
  .professor-finder-intro,
  .professor-data-note,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .appointment-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .appointment-actions {
    justify-content: flex-start;
  }

  .inquiry-section,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .leadership-grid,
  .support-grid,
  .app-feature.compact .resource-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .executive-bio {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featured-person {
    grid-column: span 2;
  }

  .app-feature {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .nav-links a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .nav-links {
    display: grid;
    flex: 0 0 100%;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .nav-links a {
    text-align: center;
  }

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

  .day-card.featured-day {
    grid-column: auto;
  }

  .availability-card-heading,
  .hours-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .event-list li {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    gap: 28px;
    padding: 24px 0 58px;
  }

  .hero-media {
    width: min(100%, 520px);
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .cta-band .button {
    min-width: 0;
    white-space: normal;
  }

  .section,
  .page-hero,
  .bio-hero,
  .cta-band {
    width: min(100% - 28px, var(--max));
  }

  .section-heading h2,
  .app-copy h2,
  .team-tease-copy h2,
  .cta-band h2,
  .bio-intro h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .leader-strip,
  .service-grid,
  .leadership-grid,
  .support-grid,
  .app-feature.compact .resource-columns,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .executive-bio {
    padding: 24px;
  }

  .focus-areas ul {
    grid-template-columns: 1fr;
  }

  .featured-person {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .roster-card li {
    display: block;
  }

  .roster-card span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .professor-summary,
  .professor-controls,
  .professor-results {
    grid-template-columns: 1fr;
  }

  .professor-controls,
  .professor-card,
  .professor-data-note {
    padding: 18px;
  }

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

  .tsh-form {
    padding: 20px;
  }

  .professor-card-heading {
    display: block;
  }

  .professor-section {
    display: inline-flex;
    max-width: 100%;
    margin-top: 10px;
    text-align: left;
  }
}
