.pillars__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.pillars__head .eyebrow {
  margin-bottom: var(--sp-2);
}

.pillars__head .body-md {
  max-width: 34ch;
}

.pillars__signal {
  position: relative;
  width: 100%;
  height: 52px;
  margin-bottom: var(--sp-4);
  overflow: hidden;
}

.pillars__signal svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pillars__signal-path {
  fill: none;
  stroke: url(#pillarSignalGradient);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}

@media (max-width: 560px) {
  .pillars__signal {
    height: 36px;
  }
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-4);
}

.pillar {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-4) var(--sp-5);
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(10, 23, 38, 0.05);
  transition: transform var(--dur-med) var(--ease-out),
    box-shadow var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.pillar:nth-child(1) {
  --accent: var(--blue-600);
}

.pillar:nth-child(2) {
  --accent: var(--sage-600);
}

.pillar:nth-child(3) {
  --accent: var(--gold-500);
}

.pillar:nth-child(4) {
  --accent: var(--ink-700);
}

.pillar:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border-hair));
  box-shadow: 0 34px 64px -30px color-mix(in srgb, var(--accent) 45%, rgba(10, 23, 38, 0.35));
}

.pillar__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 20%),
      color-mix(in srgb, var(--accent) 16%, transparent), transparent 68%);
  transition: opacity var(--dur-fast) var(--ease-out);
  pointer-events: none;
}

.pillar:hover .pillar__glow {
  opacity: 1;
}

.pillar__ghost {
  position: absolute;
  right: -0.25rem;
  bottom: -1.35rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 3rem + 4.5vw, 7rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.pillar:hover .pillar__ghost {
  opacity: 0.13;
  transform: translateY(-4px);
}

.pillar__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}

.pillar__icon svg {
  width: 24px;
  height: 24px;
}

.pillar__icon-ring {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1.5px solid var(--accent);
  opacity: 0;
}

.pillar:hover .pillar__icon-ring {
  animation: pillarRingPulse 1.5s var(--ease-out) infinite;
}

@keyframes pillarRingPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.pillar:hover .pillar__icon {
  background: var(--accent);
  color: var(--bone-100);
}

.pillar__index {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--grey-500);
  margin-bottom: var(--sp-3);
}

.pillar__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar__desc {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pillar__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: auto;
  padding-top: var(--sp-4);
  background-clip: content-box;
  transition: width var(--dur-med) var(--ease-out);
}

.pillar:hover .pillar__bar {
  width: 48px;
}

@media (max-width: 900px) {
  .pillars__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillars__head .body-md {
    max-width: none;
  }

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

@media (max-width: 560px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .pillar {
    padding: var(--sp-5) var(--sp-4);
  }

  .pillar__ghost {
    font-size: 4rem;
  }
}

.compare {
  position: relative;
  margin-top: var(--sp-8);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-raised);
  box-shadow: 0 30px 60px -30px rgba(10, 23, 38, 0.16);
}

.compare__ribbon {
  position: absolute;
  top: var(--sp-4);
  right: calc(-1 * var(--sp-6));
  z-index: 4;
  transform: rotate(38deg);
  background: linear-gradient(100deg,
      var(--sage-600) 0%, var(--sage-500) 45%, var(--sage-600) 100%);
  background-size: 220% 100%;
  animation: ribbonShine 3.4s linear infinite;
  color: var(--bone-100);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 3.25rem;
  box-shadow: 0 4px 12px rgba(10, 23, 38, 0.2);
}

@keyframes ribbonShine {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -220% 0;
  }
}

.compare__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-top: 1px solid var(--border-hair);
}

.compare__row:first-child {
  border-top: none;
}

.compare__row--head {
  background: var(--bone-200);
}

.compare__label,
.compare__col {
  padding: var(--sp-4) var(--sp-4);
  font-size: 0.92rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.compare__label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.96rem;
}

.compare__row--head .compare__col {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.compare__col--typical {
  color: var(--text-secondary);
}

.compare__row--head .compare__col--typical {
  color: var(--grey-500);
}

.compare__col--sugam {
  position: relative;
  color: var(--ink-900);
  font-weight: 500;
  background: color-mix(in srgb, var(--sage-500) 8%, transparent);
  box-shadow:
    inset 1px 0 0 color-mix(in srgb, var(--sage-500) 30%, transparent),
    6px 0 24px -12px color-mix(in srgb, var(--sage-600) 55%, transparent);
}

.compare__row:first-child .compare__col--sugam {
  border-top-right-radius: var(--radius-md);
}

.compare__row:last-child .compare__col--sugam {
  border-bottom-right-radius: var(--radius-md);
}

.compare__row--head .compare__col--sugam {
  color: var(--sage-600);
  background: color-mix(in srgb, var(--sage-500) 14%, transparent);
}

.compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-right: 0.7em;
}

.compare__icon svg {
  width: 13px;
  height: 13px;
}

.compare__col--typical .compare__icon {
  color: var(--grey-500);
  background: color-mix(in srgb, var(--grey-500) 16%, transparent);
}

.compare__col--sugam .compare__icon {
  color: var(--bone-100);
  background: var(--sage-600);
}

.compare__row--head .compare__icon {
  display: none;
}

@media (max-width: 720px) {
  .compare__row {
    grid-template-columns: 1fr;
    padding: var(--sp-4) 0;
    row-gap: 0.4rem;
  }

  .compare__row--head {
    display: none;
  }

  .compare__label,
  .compare__col {
    padding: 0 var(--sp-4);
  }

  .compare__label {
    color: var(--grey-500);
    font-size: 0.74rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }

  .compare__col--sugam {
    box-shadow: none;
    border-radius: var(--radius-sm);
  }

  .compare__row:first-child .compare__col--sugam,
  .compare__row:last-child .compare__col--sugam {
    border-radius: var(--radius-sm);
  }

  .compare__ribbon {
    top: var(--sp-3);
    right: calc(-1 * var(--sp-5));
    padding: 0.26rem 2.75rem;
    font-size: 0.6rem;
  }
}

.why-sugam__cta {
  position: relative;
  margin-top: var(--sp-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-hair);
  background: linear-gradient(120deg, var(--bone-200) 0%, var(--surface-raised) 65%);
  overflow: hidden;
}

.why-sugam__cta-text {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.why-sugam__cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 560px) {
  .why-sugam__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-5) var(--sp-4);
  }

  .why-sugam__cta-actions {
    width: 100%;
  }

  .why-sugam__cta-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

.outcomes {
  background: var(--ink-900);
  color: var(--bone-100);
  position: relative;
  overflow: hidden;
}

.outcomes::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(116, 168, 84, 0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(63, 139, 196, 0.16), transparent 50%);
  pointer-events: none;
}

.outcomes__inner {
  position: relative;
  z-index: 1;
}

.outcomes__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}

.outcomes__head p {
  max-width: 38ch;
  color: var(--text-on-dark-muted);
  text-align: right;
}

.outcomes__dash {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: var(--sp-5);
  align-items: stretch;
}

.outcomes__hero {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-hair-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
}

.outcomes__ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}

.outcomes__ring {
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}

.outcomes__ring-track {
  fill: none;
  stroke: var(--border-hair-dark);
  stroke-width: 10;
}

.outcomes__ring-fill {
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 427;
  stroke-dashoffset: 427;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.outcomes__ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.outcomes__ring-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 1.8rem + 1.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--bone-100);
  display: flex;
  align-items: baseline;
  gap: 0.05rem;
}

.outcomes__ring-num .unit {
  font-size: 1.2rem;
  color: var(--gold-300);
}

.outcomes__ring-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.outcomes__hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.6rem;
}

.outcomes__hero-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
}

.outcomes__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.outcomes__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hair-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}

.outcomes__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.outcomes__card-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
}

.outcomes__card-icon svg {
  width: 16px;
  height: 16px;
}

.outcomes__card-num {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  color: var(--bone-100);
}

.outcomes__card-num .unit {
  font-size: 1rem;
  color: var(--gold-300);
}

.outcomes__card-label {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  line-height: 1.4;
}

.outcomes__card--quote {
  background: rgba(201, 154, 61, 0.08);
  border-color: rgba(201, 154, 61, 0.22);
  justify-content: space-between;
}

.outcomes__card-quote-mark {
  width: 22px;
  height: 22px;
  color: var(--gold-300);
  opacity: 0.6;
}

.outcomes__card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--bone-200);
}

.outcomes__card-quote-by {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.outcomes__journey {
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-hair-dark);
}

.outcomes__journey-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  display: block;
  margin-bottom: var(--sp-5);
}

.outcomes__journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.outcomes__journey-step {
  position: relative;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--border-hair-dark);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.outcomes__journey-step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold-300);
}

.outcomes__journey-step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-300);
}

.outcomes__journey-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bone-100);
}

.outcomes__journey-step-desc {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  line-height: 1.45;
}

.outcomes__journey-step--final .outcomes__journey-step-title {
  color: var(--gold-300);
}

.outcomes__partners {
  position: relative;
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-5);
}

.outcomes__partners-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  flex-shrink: 0;
}

.outcomes__partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.outcomes__partner-tag {
  font-size: 0.84rem;
  color: var(--bone-200);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-hair-dark);
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .outcomes__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .outcomes__head p {
    text-align: left;
  }

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

  .outcomes__journey-track {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 560px) {
  .outcomes__cards {
    grid-template-columns: 1fr;
  }

  .outcomes__journey-track {
    grid-template-columns: 1fr;
  }

  .outcomes__partner-tag {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }
}

.alumni__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}

.alumni__track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.alumni__track {
  display: flex;
  gap: var(--sp-5);
  width: max-content;
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
  padding-right: clamp(1.25rem, 4vw, 3.5rem);
}

.alumni__track.is-dragging {
  user-select: none;
  -webkit-user-select: none;
}

.alumni__track.is-dragging .alumni-card {
  pointer-events: none;
}

.alumni-card {
  flex-shrink: 0;
  width: min(420px, 86vw);
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.alumni-card__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-primary);
}

.alumni-card__person {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-hair);
}

.alumni-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-900);
  flex-shrink: 0;
}

.alumni-card__name {
  font-weight: 600;
  font-size: 0.92rem;
}

.alumni-card__role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .alumni__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.final-cta {
  background: linear-gradient(135deg, var(--ink-900) 0%, #122a3f 60%, #173d2c 100%);
  color: var(--bone-100);
  border-radius: var(--radius-lg);
  margin: 0 var(--container-pad);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 154, 61, 0.18), transparent 60%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.05;
}

.final-cta__sub {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  max-width: 46ch;
}

.final-cta__ctas {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 640px) {
  .final-cta {
    margin: 0 var(--sp-3);
    padding: var(--sp-7) var(--sp-4);
    border-radius: var(--radius-md);
  }
}

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-6);
  align-items: center;
}

.about-teaser__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-600), var(--sage-600));
}

.about-teaser__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-teaser__copy p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-primary);
}

.about-teaser__copy .em {
  font-style: italic;
  color: var(--blue-600);
}

.about-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 0.2rem;
  transition: gap var(--dur-fast) var(--ease-out);
}

.about-teaser__link:hover {
  gap: 0.8rem;
}

.about-teaser__link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 800px) {
  .about-teaser {
    grid-template-columns: 1fr;
  }

  .about-teaser__visual {
    aspect-ratio: 16/9;
  }
}

.footer {
  background: var(--ink-900);
  color: var(--bone-100);
  padding-top: var(--sp-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-7);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--sp-4);
}

.footer__brand img {
  height: 36px;
  width: 36px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.footer__tagline {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  max-width: 30ch;
  line-height: 1.6;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__links a:hover {
  color: var(--bone-100);
}

.footer__newsletter-form {
  display: flex;
  border: 1px solid var(--border-hair-dark);
  border-radius: 999px;
  padding: 0.3rem 0.3rem 0.3rem 1.1rem;
  align-items: center;
  margin-top: var(--sp-3);
}

.footer__newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--bone-100);
  font-size: 0.88rem;
  flex: 1;
  min-width: 0;
}

.footer__newsletter-form input::placeholder {
  color: var(--text-on-dark-muted);
}

.footer__newsletter-form button {
  background: var(--gold-500);
  color: var(--ink-900);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out);
}

.footer__newsletter-form button:hover {
  background: var(--gold-300);
}

.footer__newsletter-form button svg {
  width: 14px;
  height: 14px;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--border-hair-dark);
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  gap: var(--sp-3);
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-hair-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.footer__socials a:hover {
  border-color: var(--bone-100);
  background: rgba(255, 255, 255, 0.06);
}

.footer__socials a svg {
  width: 15px;
  height: 15px;
  stroke: var(--bone-100);
}

.footer__credit {
  text-align: right;
  justify-self: end;
}

.footer__credit a {
  color: var(--text-on-dark-muted);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__credit a:hover {
  color: var(--bone-100);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--sp-3);
  }

  .footer__credit {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .footer__newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    gap: 0.75rem;
    align-items: stretch;
  }

  .footer__newsletter-form button {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-sm);
  }
}

.nav__brand-tag {
  margin-top: 0.5rem;
}

.notice-bar {
  position: relative;
  z-index: 210;
  background: var(--ink-900);
  color: var(--bone-100);
  overflow: hidden;
  max-height: 44px;
  transition: max-height var(--dur-med) var(--ease-in-out),
    opacity var(--dur-fast) var(--ease-out);
}

@media (max-width: 720px) {
  .notice-bar {
    max-height: 140px;
  }
}

.notice-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(201, 154, 61, 0.16), transparent 60%),
    radial-gradient(circle at 88% 50%, rgba(63, 139, 196, 0.14), transparent 60%);
  pointer-events: none;
}

.notice-bar.is-dismissed {
  max-height: 0;
  opacity: 0;
}

.notice-bar__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: var(--sp-4);
  height: 44px;
}

@media (max-width: 720px) {
  .notice-bar__inner {
    height: auto;
    min-height: 44px;
  }
}

.notice-bar__tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0 var(--sp-4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.notice-bar__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(201, 154, 61, 0.6);
  animation: notice-pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes notice-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 154, 61, 0.55);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(201, 154, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 154, 61, 0);
  }
}

.notice-bar__viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.notice-bar__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-med) var(--ease-out),
    transform var(--dur-med) var(--ease-out);
  pointer-events: none;
}

.notice-bar__item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.notice-bar__item-label {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-300);
  background: rgba(116, 168, 84, 0.14);
  border: 1px solid rgba(116, 168, 84, 0.28);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.notice-bar__item-text {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--bone-100);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-bar__item-text a {
  color: var(--gold-300);
  text-decoration: underline;
  text-decoration-color: rgba(227, 199, 133, 0.4);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.notice-bar__item-text a:hover {
  text-decoration-color: var(--gold-300);
}

.notice-bar__dots {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: var(--sp-2);
}

.notice-bar__dots button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  padding: 0;
}

.notice-bar__dots button.is-active {
  background: var(--gold-500);
  transform: scale(1.3);
}

.notice-bar__dots button:hover {
  background: var(--bone-100);
}

.notice-bar__close {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark-muted);
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.notice-bar__close:hover {
  color: var(--bone-100);
  background: rgba(255, 255, 255, 0.06);
}

.notice-bar__close svg {
  width: 14px;
  height: 14px;
}

.nav {
  top: var(--notice-offset, 0px);
  transition: top var(--dur-fast) var(--ease-out),
    padding var(--dur-fast) var(--ease-out);
}

.nav.is-scrolled {
  top: 0;
}

@media (max-width: 720px) {
  .notice-bar__tag {
    padding: 0 var(--sp-3);
    font-size: 0.62rem;
  }

  .notice-bar__item-label {
    display: none;
  }

  .notice-bar__viewport {
    padding-left: 0;
  }

  .notice-bar__dots {
    display: none;
  }

  .notice-bar__viewport {
    position: relative;
    overflow: visible;
  }

  .notice-bar__item {
    position: absolute;
    align-items: flex-start;
    padding: 0.5rem 0;
  }

  .notice-bar__item.is-active {
    position: relative;
  }

  .notice-bar__item-text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.4;
    display: block;
  }

  .notice-bar__item-text a {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .notice-bar__inner {
    align-items: flex-start;
  }

  .notice-bar__tag {
    padding-top: 0.5rem;
  }

  .notice-bar__close {
    align-self: flex-start;
    margin-top: 0.2rem;
  }
}

@media (max-width: 480px) {
  .notice-bar__inner {
    gap: var(--sp-2);
  }

  .notice-bar__item-text {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .notice-bar__tag-dot {
    animation: none;
  }
}

.depth-section {
  --blur: 0px;
  --dim: 1;
  filter: blur(var(--blur));
  opacity: var(--dim);
  will-change: filter, opacity;
  transform: translateZ(0);
}

.depth-section {
  filter: blur(0px);
  opacity: 1;
}

.js-depth-ready .depth-section {
  filter: blur(var(--blur));
  opacity: var(--dim);
}

@media (prefers-reduced-motion: reduce) {
  .depth-section {
    filter: none !important;
    opacity: 1 !important;
  }
}

.depth-section {
  isolation: isolate;
}

.about-pro {
  position: relative;
}

.about-pro__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: flex-start;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border-hair);
}

.about-pro__header-left .eyebrow {
  margin-bottom: var(--sp-4);
}

.about-pro__title {
  max-width: 18ch;
  margin-bottom: 0;
}

.about-pro__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
}

.about-pro__intro-text {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 46ch;
  margin-bottom: var(--sp-5);
}

.about-pro__accreditation {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.about-pro__acc-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.about-pro__acc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-pro__acc-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-hair);
  background: var(--bone-200);
  color: var(--text-secondary);
}

.about-pro__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: flex-start;
}

.about-pro__media {
  position: relative;
}

.about-pro__img-primary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 64px rgba(10, 23, 38, 0.14);
}

.about-pro__img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.about-pro__img-primary:hover img {
  transform: scale(1.03);
}

.about-pro__img-primary::before {
  content: "";
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--gold-300);
  border-left: 2px solid var(--gold-300);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

.about-pro__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 23, 38, 0.82) 0%, transparent 100%);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}

.about-pro__img-label-loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(250, 249, 245, 0.85);
  letter-spacing: 0.04em;
}

.about-pro__img-label-loc svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-300);
  flex-shrink: 0;
}

.about-pro__img-label-year {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(250, 249, 245, 0.55);
  letter-spacing: 0.08em;
}

.about-pro__img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 42%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--surface);
  box-shadow: 0 12px 32px rgba(10, 23, 38, 0.18);
  z-index: 2;
}

.about-pro__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-pro__float-card {
  position: absolute;
  top: 1.75rem;
  right: -2.5rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  box-shadow: 0 8px 28px rgba(10, 23, 38, 0.12);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  z-index: 3;
  min-width: 180px;
}

.about-pro__float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-pro__float-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
}

.about-pro__float-body {
  display: flex;
  flex-direction: column;
}

.about-pro__float-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1;
}

.about-pro__float-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-top: 2px;
}

.about-pro__float-text span {
  color: var(--grey-500);
}

.about-pro__content {
  display: flex;
  flex-direction: column;
  padding-top: var(--sp-4);
}

.about-pro__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-hair);
  margin-bottom: var(--sp-6);
}

.about-pro__tab {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.65rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.about-pro__tab.is-active {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}

.about-pro__tab:hover:not(.is-active) {
  color: var(--text-primary);
}

.about-pro__panel {
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
}

.about-pro__panel.is-active {
  display: flex;
  animation: panel-fade 0.35s var(--ease-out) both;
}

@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-pro__panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.about-pro__panel p {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

.about-pro__panel em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
  font-weight: 500;
}

.about-pro__mission-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.about-pro__mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-pro__mission-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-pro__mission-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--sage-500);
  fill: none;
}

.about-pro__faculty-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.about-pro__faculty-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  background: var(--bone-200);
  transition: border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.about-pro__faculty-card:hover {
  border-color: var(--blue-300);
  background: var(--surface-raised);
}

.about-pro__faculty-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink-800);
  color: var(--gold-300);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.about-pro__faculty-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.about-pro__faculty-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.about-pro__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: var(--sp-3);
  transition: gap var(--dur-fast) var(--ease-out);
}

.about-pro__panel-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.about-pro__panel-link:hover {
  gap: 0.9rem;
}

.about-pro__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--sp-5);
  margin-top: var(--sp-3);
}

.about-pro__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--blue-500), var(--sage-500));
}

.about-pro__tl-item {
  position: relative;
  padding: 0 0 var(--sp-5) 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-3);
  align-items: flex-start;
}

.about-pro__tl-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-5) - 5px);
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 3px rgba(63, 139, 196, 0.2);
}

.about-pro__tl-item:last-child {
  padding-bottom: 0;
}

.about-pro__tl-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-600);
  padding-top: 4px;
}

.about-pro__tl-body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.about-pro__tl-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.about-pro__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--sp-6);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bone-200);
}

.about-pro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: var(--sp-4) var(--sp-4);
  border-right: 1px solid var(--border-hair);
  position: relative;
}

.about-pro__stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.about-pro__stat:nth-child(1)::before {
  background: var(--blue-500);
}

.about-pro__stat:nth-child(2)::before {
  background: var(--sage-500);
}

.about-pro__stat:nth-child(3)::before {
  background: var(--gold-500);
}

.about-pro__stat:last-child {
  border-right: none;
}

.about-pro__stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-pro__stat-num span {
  color: var(--gold-500);
  font-size: 0.8em;
}

.about-pro__stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .about-pro__float-card {
    right: -1rem;
  }

  .about-pro__img-secondary {
    right: -1rem;
  }
}

@media (max-width: 900px) {
  .about-pro__header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .about-pro__body {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .about-pro__media {
    max-width: 560px;
  }

  .about-pro__img-primary {
    aspect-ratio: 16 / 11;
  }

  .about-pro__img-secondary {
    bottom: -1.5rem;
    right: -0.5rem;
    width: 38%;
  }

  .about-pro__float-card {
    top: 1rem;
    right: 0.5rem;
  }
}

@media (max-width: 640px) {
  .about-pro__tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .about-pro__tabs::-webkit-scrollbar {
    display: none;
  }

  .about-pro__tab {
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
    white-space: nowrap;
  }

  .about-pro__tabs {
    justify-content: center;
  }

  .about-pro__stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-pro__stat:nth-child(2) {
    border-right: none;
  }

  .about-pro__stat:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--border-hair);
  }

  .about-pro__img-secondary {
    display: none;
  }

  .about-pro__float-card {
    position: static;
    margin-top: var(--sp-4);
    width: 100%;
  }
}

.notice-board {
  background: var(--surface);
  position: relative;
}

.notice-board__header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-7);
  align-items: flex-end;
  margin-bottom: var(--sp-7);
}

.notice-board__header-left .eyebrow {
  margin-bottom: var(--sp-4);
}

.notice-board__title {
  margin-bottom: 0;
}

.notice-board__header-right p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 44ch;
  margin-bottom: var(--sp-4);
}

.notice-board__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-hair);
  border-radius: 999px;
  background: var(--bone-200);
}

.notice-board__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
  box-shadow: 0 0 0 0 rgba(116, 168, 84, 0.5);
  animation: notice-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}

.notice-board__filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

.nb-filter {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border-hair);
  color: var(--text-secondary);
  background: var(--bone-200);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.nb-filter.is-active,
.nb-filter:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--bone-100);
}

.notice-board__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}

.nb-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.nb-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-hair);
  transition: background var(--dur-fast) var(--ease-out);
}

.nb-card:hover {
  box-shadow: 0 8px 32px rgba(10, 23, 38, 0.1);
  transform: translateY(-2px);
  border-color: var(--blue-300);
}

.nb-card:hover::before {
  background: var(--blue-500);
}

.nb-card--urgent {
  border-color: rgba(201, 100, 61, 0.3);
  background: rgba(255, 250, 245, 0.8);
}

.nb-card--urgent::before {
  background: #c9623d;
}

.nb-card--urgent:hover {
  border-color: rgba(201, 100, 61, 0.6);
}

.nb-card--urgent:hover::before {
  background: #c9623d;
}

.nb-card--highlight {
  border-color: rgba(116, 168, 84, 0.3);
  background: rgba(245, 251, 240, 0.8);
}

.nb-card--highlight::before {
  background: var(--sage-500);
}

.nb-card--highlight:hover {
  border-color: rgba(116, 168, 84, 0.6);
}

.nb-card--highlight:hover::before {
  background: var(--sage-500);
}

.nb-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}

.nb-card__badges {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.nb-badge--urgent {
  background: rgba(201, 98, 61, 0.12);
  color: #a84a2a;
  border: 1px solid rgba(201, 98, 61, 0.3);
}

.nb-badge__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9623d;
  animation: notice-pulse 2s ease-out infinite;
  flex-shrink: 0;
}

.nb-badge--cat {
  background: rgba(63, 139, 196, 0.1);
  color: var(--blue-600);
  border: 1px solid rgba(63, 139, 196, 0.25);
}

.nb-badge--exam {
  background: rgba(201, 154, 61, 0.12);
  color: #8a6520;
  border: 1px solid rgba(201, 154, 61, 0.3);
}

.nb-badge--placement {
  background: rgba(116, 168, 84, 0.12);
  color: var(--sage-600);
  border: 1px solid rgba(116, 168, 84, 0.3);
}

.nb-badge--event {
  background: rgba(122, 134, 153, 0.1);
  color: var(--grey-500);
  border: 1px solid rgba(122, 134, 153, 0.25);
}

.nb-badge--new {
  background: var(--ink-900);
  color: var(--gold-300);
  border: none;
}

.nb-card__date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--grey-500);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.nb-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}

.nb-card__body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

.nb-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-hair);
  margin-top: auto;
}

.nb-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.01em;
  transition: gap var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.nb-card__link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.nb-card__link:hover {
  gap: 0.7rem;
  color: var(--ink-900);
}

.nb-card--urgent .nb-card__link {
  color: #a84a2a;
}

.nb-card--highlight .nb-card__link {
  color: var(--sage-600);
}

.nb-card__ref {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--grey-300);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.notice-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  background: var(--bone-200);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
}

.notice-board__footer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1024px) {
  .notice-board__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .notice-board__header {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

@media (max-width: 640px) {
  .notice-board__grid {
    grid-template-columns: 1fr;
  }

  .notice-board__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
}

@media (max-width: 480px) {
  .notice-board__filters {
    gap: 0.4rem;
  }

  .nb-filter {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }
}

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

.crumb-band {
  padding-top: calc(var(--sp-7) + 3.25rem);
  padding-bottom: var(--sp-3);
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--grey-500);
}

.crumb a {
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease-out);
}

.crumb a:hover {
  color: var(--blue-600);
}

.crumb svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  stroke: var(--grey-300);
}

.crumb__current {
  color: var(--blue-600);
  font-weight: 600;
}

.page-hero {
  position: relative;
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-8);
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -120px;
  background: var(--blue-300);
}

.page-hero::after {
  width: 460px;
  height: 460px;
  bottom: -220px;
  left: -160px;
  background: var(--gold-300);
  opacity: 0.28;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: flex-start;
}

.page-hero__eyebrow {
  margin-bottom: var(--sp-4);
}

.page-hero__title {
  max-width: 14ch;
  margin-bottom: var(--sp-5);
}

.page-hero__title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-600);
}

.page-hero__lede {
  max-width: 48ch;
  margin-bottom: var(--sp-6);
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-hero__stats {
  margin-top: var(--sp-7);
}

.page-hero__media {
  position: relative;
}

@media (max-width: 980px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  .page-hero__title {
    max-width: none;
  }

  .page-hero__media {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .crumb-band {
    padding-top: calc(var(--sp-6) + 3rem);
  }
}

.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-8);
  align-items: center;
}

.story__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(10, 23, 38, 0.14);
}

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

.story__media-tag {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  background: rgba(10, 23, 38, 0.78);
  backdrop-filter: blur(6px);
  color: var(--bone-100);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.story__content .eyebrow {
  margin-bottom: var(--sp-4);
}

.story__title {
  margin-bottom: var(--sp-5);
  max-width: 16ch;
}

.story__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

.story__content p:last-of-type {
  margin-bottom: 0;
}

.story__quote {
  margin-top: var(--sp-6);
  padding: var(--sp-5) var(--sp-5) var(--sp-5) var(--sp-6);
  border-left: 3px solid var(--gold-500);
  background: var(--bone-200);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
}

.story__quote-by {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.story__quote-by::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}

@media (max-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .story__media {
    aspect-ratio: 16 / 10;
    max-width: 560px;
  }
}

.mv__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: flex-end;
  margin-bottom: var(--sp-7);
}

.mv__head .eyebrow {
  margin-bottom: var(--sp-4);
}

.mv__head p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 44ch;
}

.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}

.mv__card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}

.mv__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mv__card--mission::before {
  background: var(--blue-500);
}

.mv__card--vision::before {
  background: var(--sage-500);
}

.mv__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.mv__card--mission .mv__icon {
  background: rgba(63, 139, 196, 0.12);
}

.mv__card--vision .mv__icon {
  background: rgba(116, 168, 84, 0.12);
}

.mv__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.8;
}

.mv__card--mission .mv__icon svg {
  stroke: var(--blue-600);
}

.mv__card--vision .mv__icon svg {
  stroke: var(--sage-600);
}

.mv__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--text-primary);
}

.mv__card p {
  font-size: 0.9875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.values__subhead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.7rem);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  color: var(--text-primary);
}

@media (max-width: 900px) {

  .mv__head,
  .mv__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
}

.milestones__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--sp-8);
}

.milestones__head .eyebrow {
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.milestones__head p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: var(--sp-4);
}

.milestones {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.milestones::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--blue-500), var(--sage-500), var(--gold-500));
}

.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: var(--sp-5);
  align-items: center;
  margin-bottom: var(--sp-6);
}

.milestone:last-child {
  margin-bottom: 0;
}

.milestone__dot {
  grid-column: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 3px solid var(--blue-500);
  justify-self: center;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--surface);
}

.milestone:nth-child(2n) .milestone__dot {
  border-color: var(--sage-500);
}

.milestone:nth-child(3n) .milestone__dot {
  border-color: var(--gold-500);
}

.milestone__card {
  grid-column: 1;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  text-align: right;
  transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.milestone:nth-child(2n) .milestone__card {
  grid-column: 3;
  text-align: left;
}

.milestone__card:hover {
  box-shadow: 0 12px 32px rgba(10, 23, 38, 0.1);
  transform: translateY(-2px);
}

.milestone__spacer {
  grid-column: 3;
}

.milestone:nth-child(2n) .milestone__spacer {
  grid-column: 1;
}

.milestone__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-600);
  background: rgba(63, 139, 196, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}

.milestone__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.milestone__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 760px) {
  .milestones::before {
    left: 7px;
  }

  .milestone {
    grid-template-columns: 16px 1fr;
    gap: var(--sp-4);
  }

  .milestone__dot {
    grid-column: 1;
    box-shadow: 0 0 0 4px var(--surface);
  }

  .milestone__card,
  .milestone:nth-child(2n) .milestone__card {
    grid-column: 2;
    text-align: left;
  }

  .milestone__spacer,
  .milestone:nth-child(2n) .milestone__spacer {
    display: none;
  }
}

.leader-spotlight {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-6);
  align-items: center;
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  margin-bottom: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.leader-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(201, 154, 61, 0.16), transparent 55%);
  pointer-events: none;
}

.leader-spotlight__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue-600), var(--ink-700));
  color: var(--gold-300);
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.leader-spotlight__body {
  position: relative;
  z-index: 1;
}

.leader-spotlight__quote-mark {
  width: 30px;
  height: 30px;
  fill: var(--gold-500);
  opacity: 0.7;
  margin-bottom: var(--sp-3);
}

.leader-spotlight__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--bone-100);
  margin-bottom: var(--sp-4);
}

.leader-spotlight__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bone-100);
}

.leader-spotlight__role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

@media (max-width: 760px) {
  .leader-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--sp-6);
  }

  .leader-spotlight__quote-mark {
    margin-left: auto;
    margin-right: auto;
  }
}

.cred-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
}

.cred-panel__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(520px circle at 12% -10%, rgba(63, 139, 196, 0.22), transparent 60%),
    radial-gradient(460px circle at 100% 110%, rgba(201, 154, 61, 0.16), transparent 60%);
  pointer-events: none;
}

.cred-panel__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42ch;
  margin: 0 auto var(--sp-6);
}

.cred-panel__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
}

.cred-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.85rem);
  color: var(--bone-100);
  line-height: 1.3;
}

.cred-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-hair-dark);
  border: 1px solid var(--border-hair-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cred-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-800);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  display: flex;
  flex-direction: column;
  transition: background var(--dur-med) var(--ease-out);
}

.cred-card:nth-child(1) {
  --accent: var(--blue-300);
}

.cred-card:nth-child(2) {
  --accent: var(--sage-300);
}

.cred-card:nth-child(3) {
  --accent: var(--gold-300);
}

.cred-card:nth-child(4) {
  --accent: #d7c7f2;
}

.cred-card:hover {
  background: var(--ink-700);
}

.cred-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 20%),
      color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%);
  transition: opacity var(--dur-fast) var(--ease-out);
  pointer-events: none;
}

.cred-card:hover .cred-card__glow {
  opacity: 1;
}

.cred-card__ghost {
  position: absolute;
  z-index: 0;
  right: 0.4rem;
  top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2.6rem + 3vw, 5rem);
  font-weight: 600;
  color: var(--bone-100);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}

.cred-card:hover .cred-card__ghost {
  opacity: 0.09;
}

.cred-card__icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}

.cred-card__icon svg {
  width: 21px;
  height: 21px;
}

.cred-card__stat {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}

.cred-card__stat .unit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.cred-card__title {
  position: relative;
  z-index: 1;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--bone-100);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.cred-card__desc {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.cred-card__bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: auto;
  transition: width var(--dur-med) var(--ease-out);
}

.cred-card:hover .cred-card__bar {
  width: 42px;
}

.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.cred-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 220px;
  padding: 0.85rem 1.1rem;
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.cred-chip:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
}

.cred-chip svg {
  width: 18px;
  height: 18px;
  color: var(--sage-600);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-panel {
    padding: var(--sp-6) var(--sp-4) var(--sp-5);
  }
}

@media (max-width: 560px) {
  .cred-grid {
    grid-template-columns: 1fr;
  }

  .cred-card__ghost {
    font-size: 3rem;
  }

  .cred-strip {
    flex-direction: column;
  }

  .cred-chip {
    flex: 1 1 auto;
  }
}

.accred__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: flex-end;
  margin-bottom: var(--sp-7);
}

.accred__head .eyebrow {
  margin-bottom: var(--sp-4);
}

.accred__head p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 44ch;
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.accred-card {
  background: var(--surface-raised);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.accred-card:hover {
  border-color: var(--blue-300);
  transform: translateY(-2px);
}

.accred-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bone-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.accred-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 1.8;
}

.accred-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.accred-card__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accred__head {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

@media (max-width: 480px) {
  .accred-grid {
    grid-template-columns: 1fr;
  }
}

.gallery__head {
  margin-bottom: var(--sp-7);
}

.gallery__head .eyebrow {
  margin-bottom: var(--sp-4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--sp-4);
  background: linear-gradient(to top, rgba(10, 23, 38, 0.82), transparent);
  color: var(--bone-100);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
    height: auto;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }
}

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(63, 139, 196, 0.22), transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(201, 154, 61, 0.16), transparent 50%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: 0 auto;
}

.cta-band__title {
  margin-bottom: var(--sp-4);
}

.cta-band__lede {
  color: var(--text-on-dark-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}