:root {
  --bg: #f7f4fb;
  --bg-soft: #efe8fb;
  --surface: #ffffff;
  --surface-alt: #faf7ff;
  --ink: #171322;
  --ink-soft: #4f4861;
  --ink-faint: #756f86;
  --brand: #6f2cff;
  --brand-deep: #4e19bc;
  --brand-soft: #efe6ff;
  --dark: #12091c;
  --dark-2: #1b0f2c;
  --line: rgba(23, 19, 34, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(29, 18, 47, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(111, 44, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #fcfaff 0%, var(--bg) 100%);
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.announcement-bar,
.site-header,
.page-hero,
.section,
.site-footer {
  padding-left: clamp(1.1rem, 3vw, 2rem);
  padding-right: clamp(1.1rem, 3vw, 2rem);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  background: linear-gradient(135deg, #1a0928, #2a0f43);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.announcement-bar p,
.announcement-bar span {
  margin: 0;
}

.announcement-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: calc(var(--content) + 4rem);
  margin: 0 auto;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 19, 34, 0.08);
}

.brand {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 1.65rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--small {
  min-height: 40px;
  padding: 0.65rem 1rem;
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 16px 32px rgba(79, 33, 188, 0.22);
}

.button--secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(111, 44, 255, 0.22);
}

.button--dark {
  color: #ffffff;
  background: var(--dark);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button--full {
  width: 100%;
}

.page-hero {
  max-width: calc(var(--content) + 4rem);
  margin: 0 auto;
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.hero-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(18, 9, 28, 0.96) 0%, rgba(18, 9, 28, 0.9) 45%, rgba(18, 9, 28, 0.58) 100%),
    linear-gradient(180deg, rgba(18, 9, 28, 0.3), rgba(18, 9, 28, 0.85)),
    url("campus-hero-bg.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.page-hero--compact {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(141, 105, 255, 0.28), transparent 22%),
    linear-gradient(140deg, #221035 0%, #140a22 55%, #0f0a18 100%);
  box-shadow: var(--shadow);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.page-hero__grid--home {
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.page-hero--compact .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.page-hero--compact .quote-panel,
.page-hero--compact .placeholder-card--dark,
.page-hero--compact .media-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-copy {
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a882ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero h1,
.section-heading h2,
.story-card h3,
.feature-card h3,
.page-card h3,
.placeholder-card strong,
.quote-panel blockquote,
.metric-card strong,
.campus-stat strong,
.tier-card h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.page-hero h1 span {
  color: #c9b3ff;
}

.page-hero__lede {
  max-width: 40rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-logo {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-copy .button--secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-note {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
}

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

.hero-stats article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stats strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.hero-visual {
  height: 100%;
}

.hero-visual__frame,
.media-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, #2d1842 0%, #180e25 52%, #0d0914 100%);
  border: 1px solid var(--line-light);
}

.hero-visual__frame--campus,
.media-panel--campus,
.media-panel--program {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-visual__frame--campus,
.media-panel--campus {
  background-image:
    linear-gradient(180deg, rgba(18, 9, 28, 0.04), rgba(18, 9, 28, 0.66)),
    url("campus-hero-bg.jpg");
}

.media-panel--program {
  background-image:
    linear-gradient(180deg, rgba(18, 9, 28, 0.08), rgba(18, 9, 28, 0.74)),
    url("program-model.jpg");
}

.hero-visual__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual__overlay,
.media-panel__glow {
  position: absolute;
  inset: 0;
}

.hero-visual__overlay {
  background:
    radial-gradient(circle at 72% 18%, rgba(111, 44, 255, 0.38), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(12, 10, 18, 0.04), rgba(12, 10, 18, 0.64));
}

.hero-visual__grid,
.media-panel__grid {
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  opacity: 0.26;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 24%, rgba(0, 0, 0, 1) 100%);
}

.hero-visual__content,
.media-panel__content {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  max-width: 25rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(10, 10, 15, 0.56);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual__content p,
.hero-visual__content span,
.media-panel__content p,
.media-panel__content span {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero-visual__content p,
.media-panel__content p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-visual__content h2,
.media-panel__content h2 {
  margin: 0.55rem 0 0.6rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.media-panel {
  padding: 1.5rem;
  color: #ffffff;
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.media-panel__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-panel__glow {
  background: radial-gradient(circle at 72% 22%, rgba(111, 44, 255, 0.44), transparent 18%);
}

.media-panel__title,
.media-panel__subtext {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.media-panel__title {
  top: 5.4rem;
  max-width: 16rem;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.media-panel__subtext {
  bottom: 1.5rem;
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.hero-photo-panel {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-photo-panel div {
  padding: 1.25rem;
  background: rgba(10, 8, 16, 0.72);
}

.hero-photo-panel span {
  display: block;
  margin-bottom: 0.5rem;
  color: #bca4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-photo-panel strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.05;
}

.hero-photo-panel p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.hero-photo-panel--campus img {
  min-height: 520px;
}

.section {
  max-width: calc(var(--content) + 4rem);
  margin: 0 auto;
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.page-leadership .section {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.grid-2,
.grid-3,
.grid-4,
.split-layout,
.contact-layout,
.campus-layout,
.metric-grid,
.form-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.story-card,
.feature-card,
.page-card,
.contact-card,
.form-card,
.placeholder-card,
.metric-card,
.campus-stat,
.quote-panel,
.tier-card,
.status-card,
.oversight-card,
.campaign-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story-card,
.feature-card,
.page-card,
.contact-card,
.form-card,
.placeholder-card,
.tier-card,
.status-card,
.oversight-card {
  padding: 1.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.story-card,
.feature-card,
.page-card,
.contact-card,
.tier-card,
.status-card,
.oversight-card,
.image-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.story-card:hover,
.feature-card:hover,
.page-card:hover,
.contact-card:hover,
.tier-card:hover,
.status-card:hover,
.oversight-card:hover,
.image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 68px rgba(29, 18, 47, 0.14);
  border-color: rgba(111, 44, 255, 0.18);
}

.page-card--feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 233, 255, 0.98));
}

.story-card--dark,
.page-card--dark,
.quote-panel,
.placeholder-card--dark {
  color: #ffffff;
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  border-color: rgba(255, 255, 255, 0.08);
}

.story-card h3,
.feature-card h3,
.page-card h3,
.tier-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.52rem;
  line-height: 1.08;
}

.story-card--wide {
  grid-column: 1 / -1;
}

.story-card p,
.feature-card p,
.page-card p,
.contact-card p,
.form-card p,
.placeholder-card p,
.tier-card p,
.quote-panel cite {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.card-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bio-quote {
  margin: 1.35rem 0 0;
  padding-left: 1rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  border-left: 3px solid var(--brand);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.board-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.board-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 68px rgba(29, 18, 47, 0.14);
  border-color: rgba(111, 44, 255, 0.18);
}

.board-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(111, 44, 255, 0.12), rgba(111, 44, 255, 0.22));
}

.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.board-photo-placeholder {
  padding: 1.25rem;
  color: var(--brand-deep);
  text-align: center;
}

.board-photo-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(111, 44, 255, 0.16);
  font-weight: 800;
}

.board-card__body {
  padding: 1.35rem;
}

.board-badge {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.board-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.05;
}

.board-role {
  margin: 0.45rem 0 1rem;
  color: var(--brand);
  font-weight: 800;
}

.board-card p:not(.board-role) {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.story-card--dark p,
.page-card--dark p,
.placeholder-card--dark p,
.quote-panel cite {
  color: rgba(255, 255, 255, 0.76);
}

.feature-card {
  min-height: 220px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 44, 255, 0.12), rgba(111, 44, 255, 0.22));
  color: var(--brand);
  font-weight: 800;
}

.metric-card,
.campus-stat {
  padding: 1.5rem 1.25rem;
  color: #ffffff;
  background: linear-gradient(155deg, #25143a 0%, #120a1d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card span,
.campus-stat span,
.placeholder-card span,
.status-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-card strong,
.campus-stat strong,
.status-card strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

.status-card span {
  color: var(--brand);
}

.status-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.oversight-card {
  position: relative;
  min-height: 360px;
}

.oversight-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oversight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 1.1rem 0 1rem;
  border-radius: 16px;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(111, 44, 255, 0.1), rgba(111, 44, 255, 0.2));
  font-weight: 900;
}

.oversight-card h3 {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.08;
}

.oversight-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.oversight-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  line-height: 1.45;
}

.transparency-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(111, 44, 255, 0.24), transparent 26%),
    linear-gradient(145deg, #25143a 0%, #12091c 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.transparency-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
}

.transparency-panel p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.transparency-list {
  display: grid;
  gap: 0.75rem;
}

.transparency-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.transparency-list span::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #bca4ff;
  box-shadow: 0 0 0 4px rgba(188, 164, 255, 0.14);
}

.campaign-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(111, 44, 255, 0.28), transparent 26%),
    linear-gradient(145deg, #25143a 0%, #12091c 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.campaign-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.campaign-card p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.campaign-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign-list li {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.metric-card p,
.campus-stat p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.quote-panel {
  padding: 2rem;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.quote-panel cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
}

.placeholder-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.image-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-card--dark {
  color: #ffffff;
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  border-color: rgba(255, 255, 255, 0.08);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #ffffff;
}

.image-card--hero img {
  aspect-ratio: 4 / 3;
}

.image-card div {
  padding: 1.35rem;
}

.image-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-card--dark span {
  color: #bca4ff;
}

.image-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.image-card p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.image-card--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.founder-portrait {
  overflow: hidden;
  min-height: 480px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(111, 44, 255, 0.18), transparent 30%),
    linear-gradient(160deg, #2d1842 0%, #12091c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 16%;
}

.placeholder-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 170px;
  height: 170px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(111, 44, 255, 0.18), rgba(111, 44, 255, 0.04));
  transform: rotate(18deg);
}

.placeholder-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  line-height: 1.08;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 800;
}

.list-clean {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

.story-card--dark .list-clean,
.page-card--dark .list-clean {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-card h3,
.form-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
}

.contact-card a {
  color: var(--brand);
  font-weight: 700;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

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

.form-card label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(23, 19, 34, 0.12);
  background: #fcfbff;
  color: var(--ink);
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(111, 44, 255, 0.12);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.25rem 0 0;
  color: var(--brand-deep);
  font-weight: 700;
}

.tier-card {
  min-height: 220px;
}

.tier-card__price {
  margin: 1rem 0 0;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  max-width: calc(var(--content) + 4rem);
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 2.2rem;
}

.site-footer__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a0928, #2a0f43);
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__shell p {
  margin: 0;
  line-height: 1.7;
}

.site-footer__shell--stacked {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr) minmax(220px, 0.8fr);
  align-items: start;
  gap: 1.5rem;
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.05;
}

.footer-brand span {
  display: block;
  margin-top: 0.45rem;
  color: #bca4ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand p,
.footer-action p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-email {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #ffffff;
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-action {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .page-hero__grid,
  .page-hero--compact .page-hero__grid,
  .page-hero__grid--home,
  .grid-4,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 920px) {
  .site-footer__shell--stacked {
    grid-template-columns: 1fr;
  }

  .site-footer__shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .announcement-bar {
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .announcement-bar__actions {
    justify-content: space-between;
    width: 100%;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    margin-top: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .announcement-bar {
    font-size: 0.82rem;
  }

  .announcement-bar__actions span {
    display: none;
  }

  .announcement-bar__actions {
    width: auto;
  }

  .site-header {
    position: sticky;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .brand {
    width: 98px;
    height: 98px;
  }

  .site-nav {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(29, 18, 47, 0.12);
  }

  .page-hero__grid,
  .page-hero--compact .page-hero__grid,
  .page-hero__grid--home,
  .board-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .split-layout,
  .contact-layout,
  .campus-layout,
  .metric-grid,
  .form-grid--two,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
  }

  .page-hero__grid--home,
  .page-hero--compact .page-hero__grid {
    gap: 1.25rem;
    padding: 1rem;
  }

  .hero-shell,
  .page-hero--compact {
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(18, 9, 28, 0.92) 0%, rgba(18, 9, 28, 0.88) 58%, rgba(18, 9, 28, 0.74) 100%),
      url("campus-hero-bg.jpg") center / cover no-repeat;
  }

  .hero-copy {
    padding: 0.75rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.35;
    letter-spacing: 0.14em;
  }

  .hero-visual__frame,
  .media-panel,
  .hero-photo-panel img,
  .hero-photo-panel--campus img {
    min-height: 340px;
    border-radius: 22px;
  }

  .page-hero h1 {
    color: #ffffff;
    font-size: clamp(2.35rem, 10vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  .page-hero__lede,
  .hero-note {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-stats article,
  .metric-card,
  .campus-stat {
    border-radius: 18px;
  }

  .section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .story-card,
  .feature-card,
  .page-card,
  .contact-card,
  .form-card,
  .placeholder-card,
  .image-card,
  .tier-card,
  .status-card,
  .oversight-card,
  .campaign-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .campaign-card,
  .transparency-panel {
    grid-template-columns: 1fr;
  }

  .image-card {
    padding: 0;
  }

  .image-card div {
    padding: 1.2rem;
  }

  .image-card--hero img,
  .image-card img {
    aspect-ratio: 4 / 3;
  }

  .hero-photo-panel {
    border-radius: 22px;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 94px;
    height: 94px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .announcement-bar .button {
    min-height: 36px;
    padding: 0.55rem 0.9rem;
  }

  .hero-shell {
    border-radius: 24px;
  }

  .hero-copy {
    padding: 0.5rem;
  }

  .section {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
