:root {
  color-scheme: light;
  --ink: #08111f;
  --muted: #4d5867;
  --teal: #15827c;
  --orange: #ff8c1a;
  --coral: #ef6a62;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.86);
  --line: rgba(255, 255, 255, 0.68);
  --shadow: 0 28px 76px rgba(28, 48, 70, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 16%, rgba(117, 211, 220, 0.52) 0 72px, transparent 74px),
    radial-gradient(circle at 91% 66%, rgba(255, 118, 99, 0.48) 0 78px, transparent 80px),
    radial-gradient(circle at 83% 24%, rgba(255, 190, 119, 0.52), transparent 36%),
    radial-gradient(circle at 10% 82%, rgba(29, 129, 139, 0.58), transparent 36%),
    linear-gradient(132deg, #c9eef0 0%, #f6f7f9 46%, #ffc2b6 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 106vw;
  height: 58vw;
  left: -11vw;
  bottom: -19vw;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.18);
  transform: rotate(-9deg);
}

body::after {
  width: 18rem;
  height: 18rem;
  right: 3vw;
  top: 12vh;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(2px);
}

button,
a {
  font: inherit;
}

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

.site-shell {
  width: min(920px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 0;
  display: grid;
  align-content: center;
  gap: 22px;
}

.intro {
  min-height: 264px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.intro::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -98px;
  top: -84px;
  border-radius: 50%;
  background: rgba(255, 197, 151, 0.28);
}

.intro::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px auto;
  width: 140px;
  height: 72px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.summary {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.hub-mark {
  width: min(100%, 210px);
  justify-self: end;
  position: relative;
  z-index: 1;
  border-radius: 24%;
  opacity: 0.72;
  filter: drop-shadow(0 22px 38px rgba(255, 145, 104, 0.22));
}

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

.person-card {
  min-height: 98px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-strong);
  box-shadow: 0 16px 42px rgba(28, 48, 70, 0.13);
  backdrop-filter: blur(18px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.person-card:hover,
.person-card:focus-visible {
  border-color: rgba(21, 130, 124, 0.54);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(28, 48, 70, 0.17);
  transform: translateY(-2px);
  outline: none;
}

.person-card[aria-current="page"] {
  border-color: var(--teal);
  box-shadow:
    0 16px 42px rgba(28, 48, 70, 0.13),
    inset 0 0 0 2px rgba(21, 130, 124, 0.16);
}

.person-image {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(28, 48, 70, 0.12);
}

.person-card strong,
.person-card small {
  display: block;
}

.person-card strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.person-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.25;
}

.card-arrow {
  justify-self: end;
  color: var(--ink);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 32px, 620px);
    padding: 32px 0;
  }

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

  .hub-mark {
    width: 150px;
    justify-self: start;
  }

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

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 22px, 440px);
    padding: 22px 0;
  }

  .intro {
    min-height: 0;
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .person-card {
    grid-template-columns: 54px minmax(0, 1fr) 20px;
    gap: 13px;
    padding: 14px;
  }

  .person-image {
    width: 54px;
    height: 54px;
  }
}
