@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  --black: #050505;
  --ink: #0f0f0f;
  --muted: #5f626d;
  --paper: #f5f5f5;
  --white: #ffffff;
  --accent: #5057ff;
  --accent-2: #eeeeee;
  --deep-green: #1f3700;
  --deep-olive: #354b1a;
  --line: #dddddd;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.wrap {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  min-height: 34vh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12)),
    url("assets/ie-scitech-hero.jpg") center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #252525;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
}

.subhead {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.22;
  font-weight: 400;
  text-transform: uppercase;
}

.nav {
  display: grid;
  gap: 14px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 8px;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

section {
  padding: 76px 0;
}

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

h2 {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 30px;
}

h3 {
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.14;
  font-weight: 400;
  margin-bottom: 22px;
}

h4 {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.large,
.section-lead {
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.45;
  font-weight: 300;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.62fr;
  gap: 42px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.intro-copy p {
  font-size: 18px;
}

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

.plain-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.plain-list strong {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
}

.intro-image img {
  min-height: 240px;
  max-height: 300px;
  object-fit: cover;
}

.school-banner {
  padding: 12px 0;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
}

.school-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.school-banner p {
  margin: 0;
}

.school-banner .eyebrow {
  color: var(--accent);
  white-space: nowrap;
}

.school-banner a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.hub-showcase {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0 78px;
  border-bottom: 1px solid var(--line);
}

.hub-blue-banner {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) 1fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 30px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--deep-green);
  color: var(--white);
}

.hub-blue-banner .eyebrow,
.hub-blue-banner h2,
.hub-blue-banner h3,
.hub-blue-banner p {
  margin: 0;
  color: inherit;
}

.hub-blue-banner h2 {
  margin-bottom: 14px;
  font-size: clamp(29px, 3vw, 44px);
}

.hub-blue-banner h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.hub-blue-banner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
}

.hub-kicker {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.hub-kicker p {
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
}

.hub-header {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 32px;
}

.hub-header h2 {
  margin-bottom: 0;
  color: var(--ink);
}

.hub-header .large {
  color: var(--ink);
}

.hub-feature-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.hub-feature-panel img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hub-feature-panel div {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 70px);
}

.hub-feature-panel h3 {
  font-size: clamp(29px, 3.1vw, 46px);
  margin-bottom: 22px;
}

.hub-feature-panel p {
  color: var(--muted);
  font-size: clamp(19px, 1.85vw, 25px);
  line-height: 1.45;
}

.source-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 0 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.source-strip a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.source-strip small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-transform: none;
}

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

.hub-card {
  min-height: 270px;
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.hub-card span {
  color: var(--accent);
  font-weight: 400;
  font-size: 12px;
}

.hub-card h3 {
  color: var(--ink);
  font-size: 20px;
  margin: 18px 0 12px;
}

.hub-card p {
  color: var(--muted);
  line-height: 1.55;
}

.hub-card a {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  width: fit-content;
}

.feature-card {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
}

.feature-card img {
  height: 205px;
  object-fit: cover;
}

.feature-card div {
  padding: 24px;
}

.synthesis-card {
  background: var(--accent-2);
  color: var(--ink);
}

.synthesis-card h3,
.synthesis-card p {
  color: var(--ink);
}

.transversal-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.transversal-inner {
  display: grid;
  grid-template-columns: 94px minmax(230px, 0.5fr) 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 126px;
}

.transversal-media {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--white);
}

.transversal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transversal-inner .eyebrow,
.transversal-inner h2,
.transversal-inner p {
  margin: 0;
}

.transversal-inner h2 {
  font-size: clamp(24px, 2.6vw, 38px);
}

.transversal-inner p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.35;
}

.transversal-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.synthesis-transversal {
  background: #f7f7f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sv-transversal {
  background: #ffffff;
}

.learning-transversal {
  background: #eeeeee;
}

.summit-transversal {
  background: #f4f4f4;
}

.insurance-transversal {
  background: #f7f7f7;
}

.cwv-transversal {
  background: #eeeeee;
}

.immersion-transversal {
  background: #f8f8f4;
}

.dual-degree-transversal {
  background: #f7f7f7;
}

.mxt-transversal {
  background: #eeeeee;
}

.bootcamp-transversal {
  background: #ffffff;
}

.gsk-transversal {
  background: #f7f7f7;
}

.ripple-transversal {
  background: #eeeeee;
}

.activity-section {
  padding: clamp(42px, 5.5vw, 70px) 0;
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}

.student-engagement {
  background: #f7f7f7;
}

.resource-section {
  background: #ffffff;
  border-top: 8px solid var(--deep-green);
}

.research-section {
  background: #f5f5f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.activity-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 22px;
}

.activity-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.98;
}

.activity-heading .eyebrow {
  margin: 0 0 8px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.student-engagement .activity-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.student-engagement .activity-card {
  grid-column: span 2;
}

.student-engagement .activity-card.wide-card {
  grid-column: span 3;
}

.activity-card {
  min-height: 300px;
  aspect-ratio: 1 / 1;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  display: grid;
  grid-template-rows: 96px auto auto 1fr;
  gap: 11px;
  transition: transform 180ms ease, background 180ms ease;
}

.activity-grid .activity-card:nth-child(4n + 1) {
  background: #ffffff;
}

.activity-grid .activity-card:nth-child(4n + 2) {
  background: #f7f7f7;
}

.activity-grid .activity-card:nth-child(4n + 3) {
  background: #ffffff;
}

.activity-grid .activity-card:nth-child(4n) {
  background: #eeeeee;
}

.resource-grid .activity-card:nth-child(3n + 1) {
  background: #ffffff;
}

.resource-grid .activity-card:nth-child(3n + 2) {
  background: #f7f7f7;
}

.resource-grid .activity-card:nth-child(3n) {
  background: #eeeeee;
}

.research-section .activity-card:nth-child(2) {
  background: #ffffff;
}

.activity-grid .activity-card.white-card {
  background: #ffffff;
}

.activity-card:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.activity-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.activity-card > span:not(.research-icon) {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.activity-card strong {
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  line-height: 1.02;
}

.activity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  align-self: end;
}

.activity-card.wide-card {
  aspect-ratio: auto;
  grid-column: span 2;
  min-height: 220px;
  grid-template-columns: minmax(158px, 0.38fr) 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 18px;
}

.activity-card.wide-card img {
  grid-row: 1 / 4;
  height: 100%;
  min-height: 180px;
}

.activity-card.compact-card,
.resource-grid .activity-card {
  aspect-ratio: auto;
  min-height: 220px;
  grid-template-rows: 84px auto auto 1fr;
}

.activity-card.compact-card img,
.resource-grid .activity-card img {
  height: 84px;
}

.resource-grid .research-icon {
  width: 70px;
  height: 70px;
}

.research-card {
  border-color: #cfcfcf;
}

.research-icon {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  border: 1px solid var(--ink);
}

.research-card .research-icon + span {
  align-self: end;
}

.hub-notes {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(249, 249, 254, 0.2);
}

.hub-notes h3 {
  color: #ffffff;
  margin-bottom: 0;
}

.hub-notes ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 34px;
  color: #d6dce8;
}

.hub-notes li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.black-band {
  background: var(--black);
  color: var(--paper);
}

.collider-model {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.collider-title-band {
  padding: clamp(24px, 4vw, 46px) 24px;
  background: var(--deep-green);
  text-align: center;
}

.collider-title-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 700;
  line-height: 1;
}

.collider-model-inner {
  padding: clamp(42px, 5vw, 76px) 0 clamp(50px, 6vw, 92px);
}

.collider-static-image {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 6px);
  max-width: none;
  margin: 0;
  object-fit: contain;
  background: var(--white);
  transform: translate(-6px, -13.5%);
}

.collider-image-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2.76 / 1;
  background: var(--white);
}

.collider-lead {
  margin: 0 auto clamp(28px, 4vw, 46px);
  color: #003da6;
  font-size: clamp(24px, 3.3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.collider-diagram {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) 90px minmax(120px, 0.36fr) minmax(280px, 1fr);
  min-height: clamp(430px, 43vw, 560px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 4.5vw, 64px);
  background:
    radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.92) 0 5.8%, rgba(255, 255, 255, 0) 12%),
    linear-gradient(90deg, rgba(206, 232, 176, 0.96), rgba(72, 112, 39, 0.96)),
    #5c7e3d;
  border-radius: 999px;
  isolation: isolate;
}

.collider-diagram::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 66%, transparent 66%);
  pointer-events: none;
}

.collider-inputs,
.collider-outputs {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(28px, 3.4vw, 42px);
  text-transform: uppercase;
}

.collider-inputs span,
.collider-outputs span {
  font-size: clamp(16px, 1.75vw, 25px);
  font-weight: 500;
  line-height: 1.08;
}

.collider-inputs {
  color: rgba(13, 41, 16, 0.83);
  text-align: right;
}

.collider-inputs span {
  position: relative;
  padding-right: 62px;
}

.collider-inputs span::before,
.collider-inputs span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.collider-inputs span::before {
  width: 44px;
  height: 5px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: -120px 0 24px rgba(255, 255, 255, 0.42);
}

.collider-inputs span::after {
  width: 13px;
  height: 13px;
  background: var(--white);
  border-radius: 50%;
}

.collider-lens {
  position: relative;
  z-index: 4;
  width: 54px;
  height: 320px;
  justify-self: center;
  background: radial-gradient(ellipse at center, #ffffff 0 16%, rgba(255, 255, 255, 0.82) 23%, rgba(255, 255, 255, 0.08) 58%, transparent 70%);
  filter: blur(1px);
}

.collider-particles {
  position: relative;
  z-index: 3;
  height: 250px;
}

.collider-particles i {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #5dd0ff;
  border-radius: 50%;
}

.collider-particles i:nth-child(1) { left: 15%; top: 16%; background: #8c5cff; }
.collider-particles i:nth-child(2) { left: 42%; top: 8%; }
.collider-particles i:nth-child(3) { left: 72%; top: 30%; background: #58c53d; }
.collider-particles i:nth-child(4) { left: 24%; top: 44%; background: #58c53d; width: 15px; height: 15px; }
.collider-particles i:nth-child(5) { left: 56%; top: 52%; background: #8c5cff; }
.collider-particles i:nth-child(6) { left: 82%; top: 62%; background: #60d6b5; }
.collider-particles i:nth-child(7) { left: 34%; top: 72%; background: #60d6b5; width: 17px; height: 17px; }
.collider-particles i:nth-child(8) { left: 62%; top: 84%; background: #5dd0ff; }
.collider-particles i:nth-child(9) { left: 10%; top: 76%; background: #8c5cff; }
.collider-particles i:nth-child(10) { left: 48%; top: 32%; background: #d8efc1; }
.collider-particles i:nth-child(11) { left: 69%; top: 12%; background: #8c5cff; }
.collider-particles i:nth-child(12) { left: 20%; top: 28%; background: #d8efc1; }

.collider-core {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(128px, 13vw, 174px);
  height: clamp(128px, 13vw, 174px);
  color: #204113;
  background: radial-gradient(circle, #ffffff 0 48%, rgba(255, 255, 255, 0.68) 60%, rgba(255, 255, 255, 0) 72%);
  border: 3px dotted rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 700;
  justify-self: center;
}

.collider-beams {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.collider-beams span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37%;
  height: 32px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.56), rgba(101, 216, 195, 0.2));
  filter: blur(1px);
}

.collider-beams span:nth-child(1) { transform: rotate(-20deg); }
.collider-beams span:nth-child(2) { transform: rotate(-6deg); background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(140, 92, 255, 0.28)); }
.collider-beams span:nth-child(3) { transform: rotate(8deg); background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(85, 230, 44, 0.26)); }
.collider-beams span:nth-child(4) { transform: rotate(22deg); background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(96, 214, 181, 0.26)); }

.collider-outputs {
  color: rgba(255, 255, 255, 0.92);
}

.collider-outputs span {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.collider-outputs b {
  display: block;
  width: 58px;
  height: 58px;
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.65), #5dd0ff 56%, #2b89d8);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.22);
}

.collider-outputs span:nth-child(2) b {
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.62), #8c5cff 56%, #5a23c8);
}

.collider-outputs span:nth-child(3) b {
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.62), #83d646 56%, #4a9b23);
}

.collider-outputs span:nth-child(4) b {
  background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.62), #60d6b5 56%, #28a183);
}

.yaix-stub-page {
  --yaix-card: var(--white);
  --yaix-text: var(--ink);
  --yaix-text-2: var(--muted);
  --yaix-accent: var(--accent);
  --yaix-rule: var(--line);
  --yaix-white: var(--white);
  --yaix-display: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --yaix-ui: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --yaix-shadow: none;
}

.yaix-stub-hero {
  min-height: 44vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.24)),
    var(--project-image) center / cover;
}

.yaix-stub-summary {
  padding-top: 52px;
  padding-bottom: 34px;
}

.yaix-stub-summary img {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.yaix-stub-outbound {
  margin-top: 10px;
  padding: 0;
  background: var(--black);
  color: var(--paper);
  border: 0;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 0;
}

.yaix-stub-outbound > div {
  padding: clamp(28px, 4vw, 44px);
}

.yaix-stub-outbound h2 {
  color: var(--paper);
}

.yaix-stub-outbound p {
  color: #d8d8df;
}

.yaix-stub-outbound .accent {
  color: #8d93ff;
}

.yaix-stub-outbound .yaix-course-card {
  min-height: 100%;
  border: 0;
  border-left: 1px solid #333;
  border-radius: 0;
  background: var(--white);
}

.yaix-stub-outbound .yaix-course-card-mark {
  background: var(--accent);
}

.yaix-stub-outbound .yaix-course-card strong {
  color: var(--ink);
  font-family: var(--yaix-display);
  font-size: clamp(24px, 3vw, 36px);
}

.project-page .hero {
  min-height: 40vh;
}

.project-page .hero h1 {
  max-width: 950px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1;
  font-weight: 400;
}

.project-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.16)),
    var(--project-image) center / cover;
}

.synthesis-clean-hero {
  background:
    linear-gradient(115deg, #050505 0%, #071027 54%, #003da6 100%);
}

.synthesis-clean-hero .wrap {
  max-width: 980px;
}

.yaix-hero {
  min-height: 48vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.12)),
    var(--project-image) center / cover;
}

.project-main {
  padding: 0 0 90px;
}

.project-summary {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
  padding-top: 70px;
  padding-bottom: 42px;
}

.project-summary img {
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.author-card {
  margin: 0;
}

.author-card img {
  display: block;
  width: min(340px, 100%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border: 0;
  object-fit: cover;
}

.author-card figcaption {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.author-card figcaption strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.yaix-summary img {
  aspect-ratio: 1 / 1.05;
  border: 10px solid var(--white);
  box-shadow: none;
}

.project-copy .large {
  margin-bottom: 22px;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.project-facts div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.project-facts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.project-facts strong {
  display: block;
  margin-top: 7px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
}

.project-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 24px;
}

.project-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 28px;
}

.project-panel ul {
  margin: 0;
  padding-left: 18px;
}

.project-panel li {
  margin-bottom: 10px;
}

.yaix-atlas-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 34px;
}

.yaix-atlas-section img {
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  border: 10px solid var(--white);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  padding: 0;
  margin-top: 22px;
}

.idea-card {
  min-height: 232px;
  padding: 26px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.idea-card span {
  color: var(--accent);
  font-weight: 400;
  font-size: 13px;
}

.idea-card h3 {
  margin: 28px 0 12px;
}

.idea-card p {
  margin: 0;
  color: var(--muted);
}

.idea-card.dark {
  background: var(--accent-2);
  color: var(--ink);
}

.idea-card.dark p {
  color: var(--muted);
}

.single-outbound {
  margin-top: 42px;
  padding: 36px;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.single-outbound h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 44px);
}

.single-outbound p {
  margin-bottom: 0;
  color: var(--muted);
}

.single-outbound a {
  min-height: 56px;
  padding: 15px 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.page-return {
  display: inline-flex;
  margin-top: 24px;
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.accent {
  color: var(--accent);
}

.collider {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.diagram {
  background: #111;
  border: 1px solid #2a2a2a;
}

.impact-line {
  font-size: clamp(28px, 4.8vw, 76px);
  line-height: 1.05;
  font-weight: 300;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
}

.compact-about {
  padding: 28px 0;
  background: var(--deep-green);
  color: var(--white);
  border-top: 0;
  border-bottom: 0;
}

.compact-about-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 32px;
  align-items: start;
}

.compact-about h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 36px);
  color: var(--white);
}

.compact-about p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.45;
}

.feature-stack {
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.feature-stack article {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.locations {
  color: var(--muted);
  font-weight: 500;
}

.spaces {
  background: var(--white);
  border-top: 8px solid var(--deep-green);
  border-bottom: 1px solid var(--line);
}

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

figure {
  margin: 0;
}

.image-grid img {
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  filter: saturate(0.92);
}

figcaption {
  padding-top: 12px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

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

.focus-grid article {
  border-top: 1px solid #444;
  padding-top: 24px;
}

.faculty-band {
  background: #eeeeee;
  border-top: 8px solid var(--deep-green);
  border-bottom: 1px solid var(--line);
}

.faculty h2 {
  max-width: 920px;
  margin-bottom: 42px;
}

.faculty .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
}

.faculty .two-col > div {
  padding-top: 22px;
  border-top: 1px solid var(--deep-green);
}

.name-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
}

.industry h2 {
  max-width: 740px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.profile {
  border-top: 1px solid #4b4b4b;
  padding-top: 18px;
}

.profile img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 78%;
  margin-bottom: 18px;
  filter: grayscale(1);
}

.profile h3 {
  margin-bottom: 12px;
}

.profile p {
  color: #d6d6df;
}

.applications {
  text-align: left;
  background: #f5f5f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.applications h2 {
  max-width: 900px;
  margin-inline: auto;
  color: #003da6;
  text-align: center;
}

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

.app-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid #aac3f4;
  background: var(--white);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.app-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: #fbfdff;
}

.app-icon {
  position: relative;
  display: block;
  width: 82px;
  height: 82px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.climate-icon {
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 28%, #ffffff 0 8%, transparent 9%),
    linear-gradient(150deg, #65d6ff 0 36%, var(--deep-olive) 37% 58%, #003da6 59% 100%);
}

.climate-icon::before,
.climate-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}

.climate-icon::before {
  width: 54px;
  height: 12px;
  left: 14px;
  top: 45px;
}

.climate-icon::after {
  width: 32px;
  height: 8px;
  left: 24px;
  top: 28px;
}

.regulation-icon {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 48%, var(--ink) 48% 52%, transparent 52%),
    linear-gradient(#f7f7f7, #ffffff);
}

.regulation-icon::before {
  content: "";
  width: 58px;
  height: 44px;
  border: 2px solid var(--accent);
  border-top-width: 8px;
  transform: skewX(-8deg);
}

.regulation-icon::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 8px;
  left: 15px;
  bottom: 15px;
  background: var(--ink);
}

.app-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.app-copy strong {
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1.05;
}

.app-copy span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.app-action {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 20px 24px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}

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

.support-section {
  padding: 70px 0;
  background: #05006f;
}

.support-wrap {
  width: min(1420px, calc(100% - 112px));
  margin: 0 auto;
  padding: 32px;
  background: #0d0d0d;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.support-card {
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  display: block;
  height: 48px;
  color: #343434;
  font-size: 74px;
  line-height: 0.9;
  font-weight: 300;
}

.support-card p {
  color: #3d3d3d;
  font-size: clamp(18px, 1.6vw, 24px);
  font-style: italic;
  line-height: 1.48;
}

.support-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.support-person img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.support-person strong,
.support-person span {
  display: block;
}

.support-person strong {
  font-size: 16px;
  font-weight: 700;
}

.support-person span {
  color: #444;
  font-size: 16px;
  font-style: italic;
}

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

.program-card {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.program-card img {
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  margin-bottom: 14px;
}

.program-card span {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
}

.ecosystem h2 {
  max-width: 840px;
}

.ecosystem-columns {
  column-count: 3;
  column-gap: 48px;
}

.ecosystem-columns ul {
  break-inside: avoid;
  margin: 0 0 28px;
  padding-left: 18px;
}

.ecosystem-columns li {
  margin-bottom: 11px;
}

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

.stat-grid strong {
  display: block;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 1;
  font-weight: 300;
}

.stat-grid span {
  display: block;
  margin-top: 12px;
  font-weight: 400;
}

.faculty-program {
  max-width: 920px;
}

.faculty-program .button {
  display: inline-flex;
  min-height: auto;
  margin-top: 18px;
}

.footer {
  background: var(--black);
  color: var(--paper);
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.footer h2 {
  font-size: clamp(24px, 3vw, 44px);
}

.footer h2 span {
  color: var(--accent);
}

.footer p {
  color: #d9d9df;
}

.yaix-page {
  --yaix-bg: #faf6ec;
  --yaix-bg-warm: #f4ecd8;
  --yaix-card: #fffdf8;
  --yaix-text: #1a1a1a;
  --yaix-text-2: #5a5142;
  --yaix-muted: #9a8c78;
  --yaix-accent: #e05c00;
  --yaix-accent-dark: #bf4f00;
  --yaix-rule: #e2dccb;
  --yaix-white: #ffffff;
  --yaix-body: Lora, Georgia, serif;
  --yaix-display: "Cormorant Garamond", Georgia, serif;
  --yaix-ui: Inter, system-ui, sans-serif;
  --yaix-shadow: 0 26px 60px -34px rgba(120, 60, 0, 0.5);
  background:
    radial-gradient(circle at 15% 10%, rgba(224, 92, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, #fdfaf3 0%, var(--yaix-bg) 42%, var(--yaix-bg-warm) 100%);
  color: var(--yaix-text);
  font-family: var(--yaix-body);
  font-weight: 400;
  line-height: 1.5;
}

.yaix-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(16px, 4vw, 48px);
  background: rgba(250, 246, 236, 0.88);
  border-bottom: 1px solid var(--yaix-rule);
  backdrop-filter: blur(16px);
}

.yaix-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--yaix-text);
  font-family: var(--yaix-display);
  font-weight: 700;
  text-decoration: none;
}

.yaix-brand-mark {
  display: inline-grid;
  min-width: 64px;
  min-height: 38px;
  place-items: center;
  color: var(--yaix-white);
  background: var(--yaix-accent);
  border-radius: 999px;
  font-family: var(--yaix-ui);
  font-size: 14px;
  font-weight: 900;
}

.yaix-brand-text {
  font-size: 16px;
}

.yaix-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--yaix-text-2);
  font-family: var(--yaix-ui);
  font-size: 15px;
  font-weight: 700;
}

.yaix-nav a,
.yaix-site-footer a {
  text-decoration: none;
}

.yaix-nav a:hover,
.yaix-site-footer a:hover {
  color: var(--yaix-accent);
}

.yaix-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(304px, 0.55fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(64px, 8vw, 112px) clamp(16px, 6vw, 80px) clamp(48px, 6vw, 80px);
}

.yaix-eyebrow,
.yaix-section-kicker,
.yaix-label {
  margin: 0 0 16px;
  color: var(--yaix-accent);
  font-family: var(--yaix-ui);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yaix-hero-copy h1 {
  max-width: 12ch;
  margin: 0 0 16px;
  color: var(--yaix-text);
  font-family: var(--yaix-display);
  font-size: clamp(44px, 6.8vw, 93px);
  font-weight: 700;
  line-height: 0.96;
}

.yaix-hero-copy h1 span {
  color: var(--yaix-accent);
}

.yaix-hero-line {
  margin-bottom: 16px;
  color: var(--yaix-accent);
  font-family: var(--yaix-display);
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.05;
}

.yaix-hero-body {
  max-width: 704px;
  color: var(--yaix-text-2);
  font-size: clamp(18px, 1.7vw, 22px);
}

.yaix-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.yaix-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 2px solid var(--yaix-text);
  border-radius: 999px;
  font-family: var(--yaix-ui);
  font-weight: 900;
  text-decoration: none;
}

.yaix-button.primary {
  color: var(--yaix-white);
  background: var(--yaix-accent);
  border-color: var(--yaix-accent);
}

.yaix-button.secondary {
  background: var(--yaix-card);
  border-color: var(--yaix-rule);
}

.yaix-hero-panel {
  padding: clamp(20px, 2.5vw, 32px);
  background: var(--yaix-card);
  border: 1px solid var(--yaix-rule);
  border-radius: 8px;
  box-shadow: var(--yaix-shadow);
}

.yaix-date-lockup {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--yaix-rule);
}

.yaix-month {
  color: var(--yaix-accent);
  font-family: var(--yaix-ui);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
}

.yaix-day {
  font-family: var(--yaix-ui);
  font-size: clamp(51px, 6.8vw, 84px);
  font-weight: 900;
  line-height: 0.9;
}

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

.yaix-label {
  display: block;
  margin-bottom: 4px;
  color: var(--yaix-muted);
  font-size: 12px;
}

.yaix-snapshot-grid strong {
  font-family: var(--yaix-ui);
  font-size: 16px;
}

.yaix-time-note {
  margin: 24px 0 0;
  padding: 16px;
  color: var(--yaix-white);
  background: var(--yaix-accent);
  border-radius: 6px;
  font-family: var(--yaix-ui);
  font-weight: 800;
}

.yaix-deadline-note {
  margin-top: 16px;
  padding: 16px;
  color: var(--yaix-white);
  background: linear-gradient(135deg, var(--yaix-accent), var(--yaix-accent-dark));
  border: 1px solid var(--yaix-accent-dark);
  border-radius: 6px;
  box-shadow: 0 18px 34px -22px rgba(224, 92, 0, 0.8);
}

.yaix-deadline-note .yaix-label {
  color: rgba(255, 255, 255, 0.82);
}

.yaix-deadline-note p {
  margin: 6px 0 0;
  font-family: var(--yaix-ui);
  font-size: 16px;
  font-weight: 800;
}

.yaix-intro-band,
.yaix-details-section,
.yaix-cohort-section,
.yaix-faculty-section,
.yaix-interest-section {
  padding: clamp(56px, 7vw, 96px) clamp(16px, 6vw, 80px);
}

.yaix-intro-band {
  display: grid;
  grid-template-columns: minmax(224px, 0.38fr) minmax(0, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: linear-gradient(160deg, var(--yaix-card), #f6ecd7);
  border-top: 1px solid var(--yaix-rule);
  border-bottom: 1px solid var(--yaix-rule);
}

.yaix-intro-art {
  padding: 16px;
  background: var(--yaix-card);
  border: 1px solid var(--yaix-rule);
  border-radius: 8px;
}

.yaix-intro-copy h2,
.yaix-section-heading h2,
.yaix-interest-copy h2 {
  margin-bottom: 16px;
  color: var(--yaix-text);
  font-family: var(--yaix-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.yaix-intro-copy p:last-child,
.yaix-section-heading,
.yaix-interest-copy p {
  color: var(--yaix-text-2);
  font-size: 18px;
}

.yaix-details-section,
.yaix-faculty-section {
  background: var(--yaix-bg);
}

.yaix-section-heading {
  max-width: 928px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.yaix-detail-grid,
.yaix-cohort-grid,
.yaix-faculty-list {
  display: grid;
  gap: 16px;
}

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

.yaix-detail-card,
.yaix-cohort,
.yaix-faculty-card {
  min-height: 256px;
  padding: 21px;
  background: var(--yaix-card);
  border: 1px solid var(--yaix-rule);
  border-radius: 8px;
}

.yaix-detail-card:nth-child(2) {
  background: #fff7e9;
}

.yaix-detail-card:nth-child(3) {
  background: #f7eddc;
}

.yaix-card-number {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--yaix-accent);
  font-family: var(--yaix-ui);
  font-weight: 900;
}

.yaix-detail-card h3,
.yaix-cohort h3,
.yaix-faculty-card h3 {
  margin-bottom: 8px;
  color: var(--yaix-text);
  font-family: var(--yaix-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.yaix-detail-card p,
.yaix-cohort li,
.yaix-faculty-card p {
  color: var(--yaix-text-2);
}

.yaix-cohort-section {
  background: var(--yaix-bg-warm);
}

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

.yaix-cohort-count {
  margin-bottom: 16px;
  color: var(--yaix-accent);
  font-family: var(--yaix-ui);
  font-weight: 900;
  text-transform: uppercase;
}

.yaix-cohort ul {
  padding-left: 19px;
  margin: 0;
}

.yaix-cohort li + li {
  margin-top: 10px;
}

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

.yaix-faculty-card {
  display: flex;
  flex-direction: column;
}

.yaix-faculty-card h3 {
  margin-bottom: 20px;
  color: var(--yaix-accent);
}

.yaix-faculty-card p {
  margin: 0;
  font-weight: 500;
}

.yaix-interest-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(272px, 0.4fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  background: var(--yaix-card);
  border-top: 1px solid var(--yaix-rule);
}

.yaix-course-card {
  display: grid;
  min-height: 272px;
  align-content: space-between;
  padding: 24px;
  background: var(--yaix-card);
  border: 1px solid var(--yaix-rule);
  border-radius: 8px;
  box-shadow: var(--yaix-shadow);
  color: var(--yaix-text);
  text-decoration: none;
}

.yaix-course-card-mark {
  display: inline-grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--yaix-white);
  background: var(--yaix-accent);
  border-radius: 999px;
  font-family: var(--yaix-ui);
  font-size: 16px;
  font-weight: 900;
}

.yaix-course-card strong {
  color: var(--yaix-accent);
  font-family: var(--yaix-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.yaix-course-card span:last-child {
  color: var(--yaix-text-2);
  font-family: var(--yaix-ui);
  font-weight: 800;
}

.yaix-site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 19px clamp(16px, 6vw, 80px);
  color: var(--yaix-white);
  background: var(--yaix-accent);
  font-family: var(--yaix-ui);
  font-size: 15px;
  font-weight: 800;
}

.yaix-site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .wrap {
    width: min(100% - 34px, var(--max));
  }

  .hero-grid,
  .intro,
  .school-banner-inner,
  .collider,
  .about-grid,
  .compact-about-inner,
  .yaix-atlas-section,
  .faculty .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .school-banner-inner {
    gap: 10px;
  }

  .school-banner .eyebrow {
    white-space: normal;
  }

  .nav {
    grid-template-columns: repeat(5, auto);
    justify-content: start;
  }

  .hub-header {
    grid-template-columns: 1fr;
  }

  .hub-blue-banner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .hub-feature-panel img {
    min-height: 300px;
  }

  .hub-kicker,
  .transversal-inner {
    grid-template-columns: 1fr;
  }

  .activity-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .activity-card.wide-card {
    grid-column: span 2;
  }

  .transversal-inner {
    gap: 10px;
    min-height: auto;
  }

  .transversal-media {
    width: 64px;
    height: 64px;
  }

  .transversal-inner a {
    width: fit-content;
  }

  .source-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .collider-diagram {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 34px;
    border-radius: 36px;
  }

  .collider-inputs,
  .collider-outputs {
    text-align: left;
  }

  .collider-inputs span {
    padding-right: 0;
    padding-left: 30px;
  }

  .collider-inputs span::before {
    display: none;
  }

  .collider-inputs span::after {
    right: auto;
    left: 0;
  }

  .collider-lens,
  .collider-particles,
  .collider-beams {
    display: none;
  }

  .collider-core {
    justify-self: start;
  }

  .collider-outputs span {
    grid-template-columns: 44px 1fr;
  }

  .collider-outputs b {
    width: 38px;
    height: 38px;
  }

  .support-wrap {
    width: min(100% - 34px, var(--max));
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .hub-notes {
    grid-template-columns: 1fr;
  }

  .feature-stack {
    border-left: 0;
    padding-left: 0;
  }

  .project-summary,
  .single-outbound {
    grid-template-columns: 1fr;
  }

  .yaix-stub-outbound .yaix-course-card {
    min-height: 220px;
    border-left: 0;
    border-top: 1px solid #333;
  }

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

  .project-facts {
    grid-template-columns: 1fr;
  }

  .image-grid,
  .focus-grid,
  .profile-grid,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-columns {
    column-count: 2;
  }

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

  .yaix-landing-hero,
  .yaix-intro-band,
  .yaix-interest-section {
    grid-template-columns: 1fr;
  }

  .yaix-landing-hero {
    min-height: auto;
  }

  .yaix-detail-grid,
  .yaix-faculty-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  section {
    padding: 64px 0;
  }

  .hero {
    min-height: 56vh;
  }

  .hero h1 {
    font-size: 58px;
  }

  .nav,
  .hub-kicker,
  .source-strip,
  .app-links,
  .activity-grid,
  .image-grid,
  .focus-grid,
  .hub-grid,
  .idea-grid,
  .support-wrap,
  .profile-grid,
  .program-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hub-kicker {
    display: grid;
  }

  .feature-card {
    grid-column: auto;
  }

  .activity-card,
  .activity-card.compact-card,
  .activity-card.wide-card {
    aspect-ratio: auto;
    grid-template-columns: 1fr;
    min-height: 230px;
  }

  .activity-card.wide-card {
    grid-column: auto;
  }

  .activity-card.wide-card img {
    grid-row: auto;
    height: 96px;
    min-height: 0;
  }

  .compact-about {
    padding: 22px 0;
  }

  .collider-title-band {
    padding: 22px 18px;
  }

  .collider-model-inner {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .collider-diagram {
    padding: 26px;
  }

  .support-section {
    padding: 38px 0;
  }

  .support-wrap {
    width: calc(100% - 28px);
    padding: 14px;
  }

  .support-card {
    min-height: auto;
    padding: 26px;
  }

  .support-card p {
    font-size: 17px;
  }

  .support-person {
    align-items: flex-start;
  }

  .support-person img {
    width: 68px;
    height: 68px;
  }

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

  .hub-notes ul {
    columns: 1;
  }

  .ecosystem-columns {
    column-count: 1;
  }

  .yaix-site-header {
    padding: 14px 16px;
  }

  .yaix-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .yaix-landing-hero,
  .yaix-intro-band,
  .yaix-details-section,
  .yaix-cohort-section,
  .yaix-faculty-section,
  .yaix-interest-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .yaix-detail-grid,
  .yaix-cohort-grid,
  .yaix-faculty-list,
  .yaix-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .yaix-hero-actions,
  .yaix-site-footer {
    flex-direction: column;
  }

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