:root {
  --navy: #182457;
  --navy-deep: #0d1638;
  --purple: #4c49b9;
  --violet: #8a3ffc;
  --teal: #168f92;
  --mint: #55cfb6;
  --mist: #f4f6fb;
  --paper: #fffefb;
  --ink: #14172b;
  --muted: #61677c;
  --line: rgba(20, 23, 43, 0.14);
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 80px rgba(13, 22, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -100px;
  padding: 10px 16px;
  color: white;
  background: var(--navy-deep);
  border-radius: 4px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 8px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 254, 251, 0.96);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  min-height: 68px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(13, 22, 56, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.05;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 23px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: white;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(86px, 10vw, 150px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: var(--teal);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.8);
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 90px;
  color: white;
  overflow: hidden;
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("assets/board-wide.png");
  background-position: center 38%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 14, 42, 0.94) 0%, rgba(13, 22, 56, 0.74) 46%, rgba(13, 22, 56, 0.26) 78%),
    linear-gradient(0deg, rgba(7, 14, 42, 0.7) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.75rem, 8vw, 7.7rem);
}

.hero h1 em {
  color: #79dac8;
}

.hero-copy {
  max-width: 570px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  color: white;
  background: var(--teal);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.46);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--purple);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: white;
  background: var(--ink);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  place-items: center;
  animation: bob 1.8s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  right: -9vw;
  bottom: -30vw;
  border: 1px solid rgba(121, 218, 200, 0.32);
  border-radius: 50%;
}

.orbit-one {
  width: 58vw;
  height: 58vw;
}

.orbit-two {
  right: 2vw;
  bottom: -23vw;
  width: 42vw;
  height: 42vw;
}

.mission {
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 10vw, 150px);
}

.mission h2,
.section-heading h2,
.recruitment h2,
.closing-cta h2 {
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.mission-copy {
  padding-top: 45px;
}

.mission-copy .lead {
  margin-bottom: 26px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.mission-copy > p:not(.lead) {
  max-width: 570px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 750;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 13px;
  color: var(--teal);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(80px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values div {
  min-width: 0;
  padding: 32px clamp(16px, 3vw, 35px);
  border-right: 1px solid var(--line);
}

.values div:last-child {
  border-right: 0;
}

.values span,
.values strong {
  display: block;
}

.values span {
  margin-bottom: 20px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
}

.values strong {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.community {
  color: white;
  background: var(--navy-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading h2 em {
  color: var(--mint);
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.64);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.program-card {
  position: relative;
  min-height: 390px;
  padding: 28px clamp(24px, 3vw, 42px) 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 220ms ease;
}

.program-card:last-child {
  border-right: 0;
}

.program-card:hover {
  background: rgba(84, 207, 182, 0.07);
}

.card-number {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
}

.card-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 72px 0 34px;
  color: var(--mint);
  border: 1px solid rgba(84, 207, 182, 0.45);
  border-radius: 50%;
  font-size: 1.6rem;
  place-items: center;
}

.program-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.program-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.recruitment {
  position: relative;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #c2eee7 0%, #e0ddfa 50%, #f4dfe9 100%);
  overflow: hidden;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 80px;
}

.recruitment-copy {
  position: relative;
  z-index: 2;
}

.recruitment-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 32px;
  color: rgba(13, 22, 56, 0.72);
  font-size: 1.08rem;
}

.recruitment-copy .button-row {
  gap: 24px;
}

.recruitment-art {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
}

.recruitment-art img {
  position: relative;
  z-index: 2;
  width: min(48%, 210px);
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.art-ring {
  position: absolute;
  border: 1px solid rgba(76, 73, 185, 0.33);
  border-radius: 50%;
}

.ring-one {
  width: 380px;
  height: 380px;
}

.ring-two {
  width: 490px;
  height: 240px;
  transform: rotate(-25deg);
}

.art-label {
  position: absolute;
  z-index: 3;
  padding: 8px 14px;
  color: white;
  background: var(--navy-deep);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-one {
  top: 16%;
  left: 8%;
}

.label-two {
  right: 0;
  top: 47%;
  background: var(--purple);
}

.label-three {
  bottom: 12%;
  left: 22%;
  background: var(--teal);
}

.board {
  background: var(--paper);
}

.board-heading {
  color: var(--ink);
}

.board-heading h2 em {
  color: var(--purple);
}

.board-heading > p {
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
}

.photo-grid .photo-wide {
  grid-row: 1 / 3;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.photo-grid figure:hover img {
  transform: scale(1.025);
}

.photo-grid figure:nth-child(2) img {
  object-position: center 43%;
}

.photo-grid figure:nth-child(3) img {
  object-position: center 35%;
}

.board-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 40px;
}

.board-link p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.closing-cta {
  position: relative;
  padding: clamp(105px, 14vw, 190px) 0;
  color: white;
  background:
    linear-gradient(rgba(13, 22, 56, 0.84), rgba(13, 22, 56, 0.9)),
    url("assets/board-candid.jpeg") center 42% / cover;
  text-align: center;
}

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

.closing-cta h2 {
  margin-bottom: 38px;
}

.closing-cta h2 em {
  color: var(--mint);
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: #080e25;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 66px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand p {
  margin-bottom: 0;
  color: white;
  font-weight: 650;
  line-height: 1.35;
}

.footer-established {
  display: block;
  margin-top: 9px;
  color: var(--mint);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer div > a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  font-size: 0.88rem;
}

.site-footer div > a:hover,
.site-footer div > a:focus-visible {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-corner {
  display: flex;
  align-items: flex-end;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}

.asuc-sponsor {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: white;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.asuc-sponsor img {
  display: block;
  width: 40px;
  height: 50px;
  object-fit: contain;
  border-radius: 5px;
}

.site-credit {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.floating-applications {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.floating-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  color: white;
  background: var(--purple);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(35, 35, 115, 0.26);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.floating-apply-secondary {
  color: var(--navy-deep);
  background: var(--mint);
}

.floating-apply:hover,
.floating-apply:focus-visible {
  color: var(--navy-deep);
  background: var(--mint);
  transform: translateY(-2px);
}

.floating-apply-secondary:hover,
.floating-apply-secondary:focus-visible {
  color: white;
  background: var(--purple);
}

.values-editorial {
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(55px, 9vw, 135px);
  margin-top: clamp(80px, 9vw, 130px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.values-intro .eyebrow {
  margin-bottom: 22px;
}

.values-intro h3 {
  max-width: 340px;
  color: var(--navy-deep);
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.values-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 18px;
  padding: 19px 0 22px;
  border-bottom: 1px solid var(--line);
}

.values-list li:nth-child(even) {
  padding-left: clamp(24px, 5vw, 78px);
}

.values-list li::after {
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  content: "";
}

.values-list li:nth-child(even)::after {
  background: var(--teal);
}

.values-list span {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.values-list strong {
  color: var(--navy-deep);
  font-size: clamp(1.9rem, 4vw, 4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

@media (max-width: 760px) {
  .floating-applications {
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .floating-apply {
    padding: 11px 14px;
    font-size: 0.68rem;
  }

  .values-editorial {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 70px;
  }

  .values-intro h3 {
    max-width: 290px;
  }

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

  .values-list li:nth-child(even) {
    padding-left: 20px;
  }
}

.site-nav > a.active:not(.nav-cta)::after {
  transform: scaleX(1);
}

.subpage-body {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 76svh;
  padding: 180px 0 clamp(70px, 9vw, 120px);
  color: white;
  overflow: hidden;
}

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

.subpage-hero::before {
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.subpage-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 14, 42, 0.95) 0%, rgba(13, 22, 56, 0.73) 55%, rgba(13, 22, 56, 0.32) 100%),
    linear-gradient(0deg, rgba(7, 14, 42, 0.7), transparent 54%);
}

.events-hero::before {
  background-image: url("assets/events/industry-speaker-panel.jpg");
  background-position: center 48%;
}

.people-hero::before {
  background-image: url("assets/board-wide.png");
  background-position: center 38%;
}

.subpage-hero .section-shell {
  position: relative;
  z-index: 2;
}

.subpage-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8rem);
}

.subpage-hero h1 em {
  color: var(--mint);
}

.subpage-hero .section-shell > p:last-child {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.intro-grid .lead {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.events-intro {
  padding-bottom: clamp(65px, 8vw, 110px);
}

.event-archive {
  padding-bottom: clamp(90px, 11vw, 160px);
}

.event-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.event-row.reverse .event-image {
  grid-column: 2;
}

.event-row.reverse .event-copy {
  grid-column: 1;
  grid-row: 1;
}

.event-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--mist);
  overflow: hidden;
}

.event-image::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.event-image:hover img,
.event-image:focus-visible img {
  transform: scale(1.025);
}

.event-copy {
  max-width: 610px;
}

.event-number {
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.event-date {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.45rem, 4.5vw, 4.55rem);
  line-height: 1.02;
}

.event-copy > p:not(.event-number, .event-date) {
  color: var(--muted);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 30px;
}

.event-tags span {
  padding: 6px 11px;
  color: var(--navy);
  background: rgba(76, 73, 185, 0.08);
  border: 1px solid rgba(76, 73, 185, 0.16);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
}

.next-event-cta,
.people-closing {
  padding: clamp(100px, 13vw, 175px) 0;
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgba(84, 207, 182, 0.22), transparent 30%),
    var(--navy-deep);
  text-align: center;
}

.next-event-cta .eyebrow,
.people-closing .eyebrow {
  justify-content: center;
}

.next-event-cta h2,
.people-closing h2 {
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
}

.next-event-cta h2 em,
.people-closing h2 em {
  color: var(--mint);
}

.next-event-cta p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.66);
}

.coffee-chat-strip {
  color: white;
  background: var(--purple);
}

.coffee-chat-strip .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 104px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.coffee-chat-strip span,
.coffee-chat-strip strong {
  display: block;
}

.coffee-chat-strip span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.coffee-chat-strip strong {
  font-size: 1.12rem;
}

.coffee-chat-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  text-align: right;
}

.team-section {
  overflow: hidden;
}

.team-tinted {
  background: var(--mist);
}

.team-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.team-title .eyebrow {
  position: absolute;
  top: -5px;
  left: 0;
}

.team-title h2 {
  margin: 45px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.team-title > span {
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

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

.people-grid.single-card {
  grid-template-columns: minmax(0, calc(50% - 14px));
}

.person-card {
  min-width: 0;
  background: white;
  border: 1px solid var(--line);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.person-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.person-photo {
  aspect-ratio: 4 / 4.7;
  background: #e7e9f1;
  overflow: hidden;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.person-card:hover .person-photo img {
  transform: scale(1.025);
}

.person-info {
  padding: clamp(24px, 3vw, 38px);
}

.person-role {
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.person-info h3 {
  margin-bottom: 27px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.person-info dl {
  margin: 0 0 28px;
}

.person-info dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.person-info dt,
.person-info dd {
  margin: 0;
}

.person-info dt {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-info dd {
  font-size: 0.82rem;
  line-height: 1.45;
}

.coffee-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  color: var(--purple);
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 180ms ease, gap 180ms ease;
}

.coffee-link:hover,
.coffee-link:focus-visible {
  gap: 12px;
  color: var(--teal);
}

.coffee-link.unavailable {
  color: var(--muted);
  border-bottom-style: dashed;
}

.people-closing {
  background:
    linear-gradient(rgba(13, 22, 56, 0.84), rgba(13, 22, 56, 0.9)),
    url("assets/board-candid.jpeg") center / cover;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.program-card:nth-child(2) {
  transition-delay: 100ms;
}

.program-card:nth-child(3) {
  transition-delay: 200ms;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
    backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-open .menu-toggle > span:nth-child(1) {
    background: white;
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle > span:nth-child(3) {
    background: white;
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    padding: 110px 36px 50px;
    color: white;
    background: var(--navy-deep);
    font-size: clamp(1.8rem, 8vw, 3.4rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 18px;
    padding: 12px 26px;
    border-color: white;
    font-size: 1rem;
  }

  .mission-grid,
  .section-heading,
  .recruitment-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid,
  .section-heading {
    gap: 28px;
  }

  .mission-copy {
    padding-top: 0;
  }

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

  .values div:nth-child(2) {
    border-right: 0;
  }

  .values div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .program-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .program-card:last-child {
    border-bottom: 0;
  }

  .card-icon {
    margin: 44px 0 28px;
  }

  .recruitment-grid {
    gap: 15px;
  }

  .recruitment-art {
    min-height: 390px;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(310px, auto) 270px;
  }

  .photo-grid .photo-wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .subpage-hero {
    min-height: 70svh;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-row {
    gap: 45px;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .hero {
    min-height: 830px;
    padding-right: 16px;
    padding-bottom: 68px;
    padding-left: 16px;
  }

  .hero-photo {
    background-position: 59% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 14, 42, 0.96) 0%, rgba(13, 22, 56, 0.72) 62%, rgba(13, 22, 56, 0.22) 100%);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 82px 0;
  }

  .mission h2,
  .section-heading h2,
  .recruitment h2,
  .closing-cta h2 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

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

  .values div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .recruitment-art {
    min-height: 330px;
    transform: scale(0.84);
  }

  .ring-one {
    width: 330px;
    height: 330px;
  }

  .ring-two {
    width: 390px;
    height: 210px;
  }

  .photo-grid {
    display: block;
  }

  .photo-grid figure {
    margin-bottom: 12px;
  }

  .photo-grid figure:not(.photo-wide) {
    height: 340px;
  }

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

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

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .asuc-sponsor {
    margin-top: 8px;
  }

  .footer-corner {
    align-items: flex-start;
    margin-left: 0;
  }

  .subpage-hero {
    min-height: 690px;
    padding-top: 145px;
  }

  .subpage-hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.1rem);
  }

  .events-hero::before {
    background-position: center;
  }

  .people-hero::before {
    background-position: 58% center;
  }

  .coffee-chat-strip .section-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .coffee-chat-strip p {
    text-align: left;
  }

  .event-row,
  .event-row.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .event-row.reverse .event-image,
  .event-row.reverse .event-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .event-image {
    aspect-ratio: 1 / 1;
  }

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

  .team-title > span {
    padding-bottom: 0;
  }

  .people-grid,
  .people-grid.three-up,
  .people-grid.single-card {
    grid-template-columns: 1fr;
  }

  .person-photo {
    aspect-ratio: 4 / 4.5;
  }

  .person-info dl div {
    grid-template-columns: 72px minmax(0, 1fr);
  }
}

/* Fall 2026 content refresh */
.hero-photo {
  background-image: url("assets/board-leadership-hq.jpeg");
  background-position: center 28%;
}

.club-overview {
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 88% 18%, rgba(84, 207, 182, 0.2), transparent 24%),
    linear-gradient(145deg, #f3f1ff, #f8fffd 62%, #ffffff);
}

.overview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}

.overview-heading h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.overview-heading > p {
  margin: 0;
  color: rgba(13, 22, 56, 0.68);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

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

.membership-grid article {
  position: relative;
  min-height: 330px;
  padding: clamp(30px, 4vw, 52px);
  background: white;
  border: 1px solid rgba(76, 73, 185, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 55px rgba(24, 36, 87, 0.08);
  overflow: hidden;
}

.membership-grid article:nth-child(2) {
  color: white;
  background: var(--navy-deep);
}

.membership-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 64px;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  place-items: center;
}

.membership-grid article:nth-child(2) > span {
  color: var(--navy-deep);
  background: var(--mint);
}

.membership-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.membership-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.045em;
}

.membership-grid article > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(13, 22, 56, 0.66);
  line-height: 1.7;
}

.membership-grid article:nth-child(2) > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.committee-heading {
  margin: clamp(48px, 7vw, 82px) 0 18px;
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
}

.committee-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  background: rgba(76, 73, 185, 0.14);
  border: 1px solid rgba(76, 73, 185, 0.14);
  border-radius: 20px;
  overflow: hidden;
}

.committee-list a {
  position: relative;
  display: block;
  min-height: 150px;
  padding: 26px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.94);
  transition: background 180ms ease, color 180ms ease;
}

.committee-list a::after {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--purple);
  content: "↗";
}

.committee-list a:hover,
.committee-list a:focus-visible {
  color: var(--purple);
  background: #f0fffb;
}

.committee-list strong {
  display: block;
  margin-bottom: 20px;
  font-size: 1rem;
}

.committee-list p {
  margin: 0;
  color: rgba(13, 22, 56, 0.58);
  font-size: 0.83rem;
  line-height: 1.55;
}

#external-committee,
#internal-committee,
#finance-committee,
#communications-committee {
  scroll-margin-top: 96px;
}

.community-photo-break {
  position: relative;
  width: min(1340px, calc(100% - 44px));
  height: clamp(300px, 43vw, 580px);
  margin: 30px auto 80px;
  background: var(--navy-deep);
  border: 10px solid white;
  border-radius: 38px;
  box-shadow: 0 28px 80px rgba(24, 36, 87, 0.14);
  overflow: hidden;
}

.community-photo-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(13, 22, 56, 0.65));
  pointer-events: none;
}

.community-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.community-photo-break figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 28px;
  left: 34px;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recruitment-timeline {
  margin: 0;
  background: white;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(24, 36, 87, 0.18);
  overflow: hidden;
}

.recruitment-timeline img {
  display: block;
  width: 100%;
  height: auto;
}

.event-recap-photo {
  position: relative;
  width: calc(100% - 28px);
  margin: 0 14px;
  aspect-ratio: 16 / 10;
  background: var(--navy-deep);
  border-radius: 18px;
  overflow: hidden;
}

.event-recap-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(84, 207, 182, 0.08), rgba(13, 22, 56, 0.72));
  pointer-events: none;
}

.event-recap-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.event-recap-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.people-hero {
  min-height: 640px;
  background:
    radial-gradient(circle at 82% 32%, rgba(84, 207, 182, 0.25), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(138, 63, 252, 0.14), transparent 23%),
    linear-gradient(135deg, #f9fffd, #f1efff);
}

.people-hero::before {
  display: none;
}

.people-hero::after {
  background:
    radial-gradient(var(--purple) 1.5px, transparent 1.5px) 82% 24% / 14px 14px no-repeat,
    linear-gradient(90deg, transparent, rgba(84, 207, 182, 0.08));
}

.people-hero h1 {
  max-width: 900px;
}

.people-hero .section-shell > p:last-child {
  max-width: 670px;
}

@media (max-width: 900px) {
  .overview-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .recruitment-timeline {
    max-width: 560px;
    margin: 0 auto;
  }

  .people-hero {
    align-items: center;
    min-height: 670px;
    padding-top: 140px;
  }
}

@media (max-width: 620px) {
  .membership-grid,
  .committee-list {
    grid-template-columns: 1fr;
  }

  .membership-grid article {
    min-height: 0;
  }

  .membership-grid article > span {
    margin-bottom: 42px;
  }

  .committee-list a {
    min-height: 120px;
  }

  .community-photo-break {
    width: calc(100% - 24px);
    height: 280px;
    margin-bottom: 54px;
    border-width: 6px;
    border-radius: 26px;
  }

  .community-photo-break figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .people-hero {
    min-height: 620px;
    padding: 135px 0 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Distinct UBA visual direction: bright biotech editorial system */

body {
  background:
    linear-gradient(rgba(76, 73, 185, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 73, 185, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.site-header {
  min-height: 82px;
  color: white;
  background: rgba(13, 22, 56, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-header.scrolled {
  min-height: 72px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(13, 22, 56, 0.15);
}

.brand img {
  padding: 3px;
  background: white;
  box-shadow: 0 0 0 3px rgba(84, 207, 182, 0.2);
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
}

.site-nav > a:not(.nav-cta)::after {
  background: var(--mint);
}

.nav-cta {
  color: var(--navy-deep);
  background: var(--mint);
  border-color: var(--mint);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy-deep);
  background: white;
  border-color: white;
}

.menu-toggle > span:not(.sr-only) {
  background: white;
}

.hero {
  align-items: center;
  min-height: 940px;
  padding-top: 150px;
  padding-bottom: 80px;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 14% 26%, rgba(84, 207, 182, 0.26), transparent 22%),
    radial-gradient(circle at 48% 78%, rgba(138, 63, 252, 0.14), transparent 25%),
    linear-gradient(135deg, #f9fffd 0%, #f3f1ff 58%, #eef8ff 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 135px;
  left: 45%;
  width: 110px;
  height: 110px;
  content: "";
  background-image: radial-gradient(var(--purple) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  opacity: 0.45;
}

.hero-photo {
  inset: 132px max(28px, calc((100vw - 1240px) / 2)) 72px 51%;
  background-position: center;
  border: 10px solid white;
  border-radius: 34px 34px 110px 34px;
  box-shadow: 0 34px 90px rgba(24, 36, 87, 0.24);
  transform: none;
}

.hero-photo::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 112px;
  height: 112px;
  content: "";
  background: var(--mint);
  border: 8px solid #f3f1ff;
  border-radius: 50%;
}

.hero-overlay {
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.12), transparent 48%);
  pointer-events: none;
}

.hero-content {
  width: min(45%, 620px);
}

.hero h1 {
  font-size: clamp(4rem, 6.4vw, 6.7rem);
  letter-spacing: -0.068em;
}

.hero h1 em {
  color: var(--purple);
}

.hero-copy {
  max-width: 530px;
  color: rgba(13, 22, 56, 0.68);
}

.hero .button-primary {
  color: white;
  background: var(--navy-deep);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  color: var(--navy-deep);
  background: var(--mint);
}

.hero .button-ghost {
  color: var(--navy-deep);
  border-color: rgba(13, 22, 56, 0.32);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  border-color: var(--purple);
  background: rgba(76, 73, 185, 0.06);
}

.hero-orbit {
  right: auto;
  bottom: auto;
  border-color: rgba(76, 73, 185, 0.18);
}

.orbit-one {
  top: 18%;
  left: -16vw;
  width: 36vw;
  height: 36vw;
}

.orbit-two {
  top: 28%;
  left: -10vw;
  width: 24vw;
  height: 24vw;
}

.scroll-cue {
  right: auto;
  bottom: 34px;
  left: max(24px, calc((100vw - 1180px) / 2));
  color: rgba(13, 22, 56, 0.55);
}

.scroll-cue span:last-child {
  border-color: rgba(13, 22, 56, 0.22);
}

.mission {
  background: rgba(255, 255, 255, 0.88);
}

.mission-grid {
  gap: clamp(55px, 8vw, 120px);
}

.mission h2 {
  color: var(--navy-deep);
}

.values {
  gap: 14px;
  border: 0;
}

.values div {
  padding: 28px;
  background: linear-gradient(145deg, white, #f5f4ff);
  border: 1px solid rgba(76, 73, 185, 0.12) !important;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(24, 36, 87, 0.06);
}

.values span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  place-items: center;
}

.recruitment {
  width: min(1340px, calc(100% - 44px));
  margin: 30px auto 80px;
  border-radius: 42px;
  box-shadow: 0 28px 80px rgba(24, 36, 87, 0.12);
}

.board {
  background: rgba(255, 255, 255, 0.86);
}

.photo-grid {
  gap: 20px;
}

.photo-grid figure {
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(24, 36, 87, 0.11);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 30%, rgba(84, 207, 182, 0.12), transparent 24%),
    #080e25;
}

/* Events and people now use split editorial headers instead of photo overlays. */
.subpage-hero {
  align-items: center;
  min-height: 780px;
  padding-top: 140px;
  padding-bottom: 70px;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 18% 30%, rgba(84, 207, 182, 0.22), transparent 22%),
    linear-gradient(135deg, #f9fffd, #f1efff);
}

.subpage-hero::before {
  inset: 128px max(28px, calc((100vw - 1240px) / 2)) 58px 52%;
  width: auto;
  border: 9px solid white;
  border-radius: 28px 28px 90px 28px;
  box-shadow: 0 30px 85px rgba(24, 36, 87, 0.22);
  transform: none;
}

.subpage-hero::after {
  background:
    radial-gradient(var(--purple) 1.4px, transparent 1.4px) 45% 18% / 13px 13px no-repeat,
    linear-gradient(90deg, transparent, rgba(138, 63, 252, 0.04));
}

.subpage-hero .section-shell {
  width: var(--shell);
}

.subpage-hero h1 {
  max-width: 49%;
  font-size: clamp(4rem, 6.8vw, 7rem);
}

.subpage-hero h1 em {
  color: var(--purple);
}

.hero h1 em,
.subpage-hero h1 em {
  color: var(--purple);
  background: linear-gradient(90deg, var(--purple), var(--teal));
  background-clip: text;
  font-family: inherit;
  font-style: normal;
  font-weight: 760;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subpage-hero .eyebrow.light {
  color: var(--teal);
}

.subpage-hero .section-shell > p:last-child {
  max-width: 46%;
  color: rgba(13, 22, 56, 0.66);
}

.events-hero::before {
  background-color: #e8ecf6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.events-hero h1 {
  max-width: 48%;
  font-size: clamp(3.8rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.coffee-chat-strip {
  width: min(1180px, calc(100% - 48px));
  margin: -32px auto 0;
  color: var(--navy-deep);
  background: var(--mint);
  border: 7px solid white;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(24, 36, 87, 0.12);
  transform: translateY(50%);
}

.coffee-chat-strip + .team-section {
  padding-top: calc(clamp(86px, 10vw, 150px) + 60px);
}

.coffee-chat-strip span,
.coffee-chat-strip p {
  color: rgba(13, 22, 56, 0.62);
}

.team-tinted {
  background: rgba(241, 239, 255, 0.8);
}

.person-card {
  border: 0;
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(24, 36, 87, 0.08);
  overflow: hidden;
}

.person-photo {
  aspect-ratio: 5 / 4;
}

.person-info {
  position: relative;
}

.person-info::before {
  position: absolute;
  top: 0;
  right: 38px;
  left: 38px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--purple));
  border-radius: 999px;
}

.event-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: var(--shell);
  margin: 0 auto;
}

.event-row,
.event-row.reverse {
  display: flex;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 14px 14px 34px;
  background: white;
  border: 1px solid rgba(76, 73, 185, 0.12);
  border-radius: 26px;
  box-shadow: 0 16px 45px rgba(24, 36, 87, 0.08);
  flex-direction: column;
  gap: 30px;
}

.event-row.reverse .event-image,
.event-row.reverse .event-copy {
  grid-column: auto;
  grid-row: auto;
}

.event-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

.event-copy {
  padding: 0 14px;
}

.event-copy h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
}

.event-copy > p:not(.event-number, .event-date) {
  font-size: 0.9rem;
}

.next-event-cta,
.people-closing {
  width: min(1340px, calc(100% - 44px));
  margin: 0 auto 30px;
  border-radius: 38px;
}

@media (max-width: 900px) {
  .brand strong {
    font-size: 0.78rem;
  }

  .hero {
    align-items: flex-end;
    min-height: 990px;
    padding-top: 500px;
    padding-bottom: 90px;
  }

  .hero-photo {
    inset: 110px 18px auto;
    height: 360px;
    border-width: 7px;
    border-radius: 24px 24px 70px 24px;
  }

  .hero-content {
    width: 100%;
    max-width: 650px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 11vw, 6rem);
  }

  .recruitment {
    width: calc(100% - 28px);
    border-radius: 28px;
  }

  .subpage-hero {
    align-items: flex-end;
    min-height: 960px;
    padding-top: 520px;
  }

  .subpage-hero::before {
    inset: 110px 18px auto;
    width: auto;
    height: 380px;
    border-width: 7px;
    border-radius: 24px 24px 70px 24px;
  }

  .subpage-hero h1,
  .subpage-hero .section-shell > p:last-child {
    max-width: 100%;
  }

  .event-archive {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .site-header {
    background: rgba(13, 22, 56, 0.98);
  }

  .brand strong {
    max-width: 210px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 940px;
    padding: 450px 16px 64px;
  }

  .hero-photo {
    top: 96px;
    height: 320px;
    background-position: 58% center;
  }

  .hero-photo::after {
    right: -12px;
    bottom: -12px;
    width: 74px;
    height: 74px;
    border-width: 5px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .hero-copy {
    color: rgba(13, 22, 56, 0.66);
  }

  .values {
    gap: 10px;
  }

  .recruitment {
    margin-bottom: 54px;
  }

  .subpage-hero {
    min-height: 900px;
    padding: 465px 0 64px;
  }

  .subpage-hero::before {
    top: 96px;
    height: 340px;
  }

  .subpage-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .events-hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.3rem);
  }

  .coffee-chat-strip {
    width: calc(100% - 24px);
    margin-top: -25px;
    transform: translateY(38%);
  }

  .coffee-chat-strip + .team-section {
    padding-top: 150px;
  }

  .person-photo {
    aspect-ratio: 5 / 4.4;
  }

  .event-archive {
    width: calc(100% - 28px);
  }

  .event-row,
  .event-row.reverse {
    padding: 10px 10px 28px;
  }

  .next-event-cta,
  .people-closing {
    width: calc(100% - 24px);
    border-radius: 26px;
  }
}

/* Keep the people page introduction text-only at every screen size. */
.people-hero {
  align-items: center;
  min-height: 640px;
  padding-top: 140px;
  padding-bottom: 72px;
}

.people-hero::before {
  display: none;
}

.people-hero h1 {
  max-width: 900px;
}

.people-hero .section-shell > p:last-child {
  max-width: 670px;
}

@media (max-width: 620px) {
  .people-hero {
    min-height: 620px;
    padding: 125px 0 64px;
  }
}

/* Crop the portraits closer so faces—not background—lead each profile. */
.person-photo img {
  object-position: center 38%;
  transform: scale(1.1);
}

.person-card:hover .person-photo img {
  transform: scale(1.14);
}

.person-photo img.headshot-extra-tight {
  object-position: center 41%;
  transform: scale(1.3);
}

.person-card:hover .person-photo img.headshot-extra-tight {
  transform: scale(1.34);
}

/* Crop the supplied square logo artwork into the circular mark itself. */
.logo-crop {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex: 0 0 auto;
  overflow: hidden;
}

.logo-crop img,
.brand .logo-crop img,
.footer-brand .logo-crop img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  transform: scale(0.96);
}

.footer-brand .logo-crop {
  width: 96px;
  height: 96px;
  margin-top: -2px;
}

/* Individual portrait framing: consistent square cards with face-aware crops. */
.person-photo {
  aspect-ratio: 1 / 1;
}

.person-photo img.headshot {
  transform: scale(1.06);
}

.person-card:hover .person-photo img.headshot {
  transform: scale(1.1);
}

.headshot-aalini { object-position: 50% 39%; }
.headshot-devan { object-position: 50% 35%; }
.headshot-kacie {
  object-position: 50% 0% !important;
  transform: scale(1.06) !important;
  transform-origin: left center;
}
.headshot-aariya { object-position: 50% 37%; }
.headshot-rohan { object-position: 50% 42%; transform: scale(1.16) !important; }
.headshot-anika { object-position: 50% 40%; transform: scale(1.14) !important; }
.headshot-nathaniel { object-position: 50% 34% !important; transform: scale(1) !important; }
.headshot-juhi { object-position: 49% 45% !important; transform: scale(1.26) !important; }
.headshot-emmie { object-position: 50% 34%; }
.headshot-manasi { object-position: 50% 40%; }
.headshot-mahika { object-position: 50% 36%; transform: scale(1.42) !important; }
.headshot-nithiyashree { object-position: 50% 41%; }
.headshot-anshika { object-position: 50% 35%; transform: scale(1.42) !important; }
.headshot-naim { object-position: 50% 40%; }
.headshot-sanjana { object-position: 50% 35%; transform: scale(1.15) !important; }

.person-card:hover .headshot-rohan { transform: scale(1.2) !important; }
.person-card:hover .headshot-anika { transform: scale(1.18) !important; }
.person-card:hover .headshot-nathaniel { transform: scale(1.04) !important; }
.person-card:hover .headshot-juhi { transform: scale(1.3) !important; }
.person-card:hover .headshot-kacie { transform: scale(1.1) !important; }
.person-card:hover .headshot-mahika { transform: scale(1.46) !important; }
.person-card:hover .headshot-anshika { transform: scale(1.46) !important; }
.person-card:hover .headshot-sanjana { transform: scale(1.19) !important; }

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 28px;
}

.profile-links .coffee-link {
  margin-top: 0;
}

.linkedin-link {
  display: inline-block;
  padding-bottom: 4px;
  color: var(--teal);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.linkedin-link:hover,
.linkedin-link:focus-visible {
  color: var(--purple);
}

.contact-section {
  padding-top: 180px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
}

.contact-card,
.contact-links {
  padding: clamp(34px, 5vw, 70px);
  border-radius: 30px;
}

.contact-card {
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(84, 207, 182, 0.22), transparent 26%),
    var(--navy-deep);
}

.contact-card .eyebrow {
  color: var(--mint);
}

.contact-card h2 {
  margin: 34px 0 20px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.06em;
}

.contact-card > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 54px;
  padding: 16px 22px;
  color: var(--navy-deep);
  background: var(--mint);
  border-radius: 999px;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-links {
  background: linear-gradient(145deg, #f3f1ff, white);
  border: 1px solid rgba(76, 73, 185, 0.12);
}

.contact-links > a {
  display: block;
  padding: 28px 0;
  color: var(--navy-deep);
  border-bottom: 1px solid rgba(13, 22, 56, 0.12);
}

.contact-links > a:last-child {
  border-bottom: 0;
}

.contact-links span,
.contact-links strong {
  display: block;
}

.contact-links span {
  margin-bottom: 8px;
  color: rgba(13, 22, 56, 0.58);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-links strong {
  font-size: 1rem;
}

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

}

@media (max-width: 620px) {
  .contact-section {
    padding-top: 125px;
  }

  .contact-email {
    padding: 14px 16px;
  }
}
