@font-face {
  font-family: 'Sora';
  src: url('/assets/fonts/sora-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-var.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: 'Newsreader';
  src: url('/assets/fonts/newsreader-var.woff2') format('woff2');
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('/assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: #f7f8f4;
  color: #17201a;
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: #17201a;
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.resource-shell {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.resource-hero {
  padding: clamp(64px, 9vw, 116px) 0 58px;
}

.resource-eyebrow,
.resource-breadcrumb {
  color: #237a3c;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.resource-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 28px;
  color: #626a63;
}

.resource-breadcrumb a { color: #175f2e; text-decoration: none; }

.resource-hero h1 {
  max-width: 850px;
  margin: 16px 0 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(43px, 6.1vw, 74px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.02;
}

.resource-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: #4f574f;
  font-size: clamp(17px, 2vw, 20px);
}

.resource-directory {
  padding: 0 0 clamp(76px, 10vw, 124px);
}

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

.resource-grid.resource-grid--stacked {
  grid-template-columns: 1fr;
}

.resource-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid #dde2db;
  border-radius: 16px;
  background: #fff;
  color: #17201a;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.resource-card:hover {
  border-color: #237a3c;
  transform: translateY(-2px);
}

.resource-card__label {
  color: #237a3c;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin: 34px 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 21px;
  line-height: 1.25;
}

.resource-card p { margin: 0; color: #626a63; }

.resource-card__window {
  display: block;
  margin-top: 18px;
  padding-right: 32px;
  color: #237a3c;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-card::after {
  content: '→';
  position: absolute;
  right: 26px;
  bottom: 23px;
  color: #237a3c;
  font-size: 20px;
}

.resource-card--new-window::after { content: '↗'; }

/* First-party press room */
.press-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) 0 clamp(58px, 7vw, 86px);
  border-bottom: 1px solid #dfe4dc;
  background:
    radial-gradient(circle at 92% 22%, rgba(84, 39, 143, .12), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(35, 132, 71, .11), transparent 34%),
    #f7f8f4;
}

.press-hero .resource-shell { position: relative; }

.press-hero__trace {
  position: absolute;
  top: 76px;
  right: 2%;
  width: 28%;
  height: 3px;
  background: linear-gradient(90deg, #238447 0 54%, #54278f 54% 100%);
}

.press-hero .resource-eyebrow { display: flex; gap: 10px; }

.press-hero h1 {
  max-width: 1050px;
  margin: 18px 0 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(42px, 5.7vw, 70px);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1.01;
}

.press-hero .resource-lede { max-width: 830px; }

.press-release-label {
  color: #237a3c !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.press-hero-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 24px;
  border-radius: 12px;
  background: #17201a;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.press-hero-action span {
  font-size: 1.25em;
  transition: transform 180ms ease;
}

.press-hero-action:hover {
  background: #238447;
  color: #fff;
  transform: translateY(-2px);
}

.press-hero-action:hover span { transform: translateX(3px); }

.press-hero-action:focus-visible {
  outline: 3px solid #54278f;
  outline-offset: 4px;
}

.press-body { padding: clamp(58px, 8vw, 96px) 0 clamp(82px, 10vw, 128px); }

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(50px, 8vw, 106px);
  align-items: start;
}

.press-article { max-width: 760px; }

.press-article > p,
.press-clarification p {
  color: #4f574f;
  font-size: 17px;
}

.press-article > p { margin: 0 0 24px; }

.press-article a {
  color: #175f2e;
  font-weight: 650;
  text-underline-offset: 3px;
}

.press-article h2 {
  margin: 56px 0 18px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
}

.press-dateline { font-size: 18px !important; }

.press-article blockquote {
  margin: 42px 0;
  padding: 28px 30px 30px;
  border-left: 4px solid #238447;
  background: #edf5ed;
}

.press-article blockquote p {
  margin: 0;
  color: #253027;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(22px, 2.7vw, 29px);
  line-height: 1.4;
}

.press-boilerplate,
.press-contact {
  margin-top: 58px;
  padding-top: 4px;
  border-top: 1px solid #dfe4dc;
}

.press-boilerplate h2,
.press-contact h2 { margin-top: 34px; }

.press-boilerplate p,
.press-contact p {
  margin: 0 0 24px;
  color: #4f574f;
  font-size: 17px;
}

.press-contact {
  padding: 4px 0 8px;
}

.press-clarification {
  margin: 58px 0;
  padding: 30px 32px 32px;
  border-left: 4px solid #54278f;
  background: #eeebf6;
}

.press-clarification__label,
.press-facts__label {
  margin: 0 0 12px !important;
  color: #54278f !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.press-clarification h2 { margin: 0 0 10px; }
.press-clarification p:last-child { margin-bottom: 0; }

.press-facts {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid #dce2da;
  border-radius: 18px;
  background: #fff;
}

.press-facts__badge-frame {
  position: relative;
  display: block;
  width: min(100%, 150px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  overflow: hidden;
}

.press-facts__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 273px;
  height: 273px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.press-facts dl { margin: 0; }

.press-facts dl div {
  padding: 18px 0;
  border-top: 1px solid #e6eae3;
}

.press-facts dt {
  margin-bottom: 4px;
  color: #6a726a;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.press-facts dd {
  margin: 0;
  color: #17201a;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 30px;
}

.press-button,
.press-text-link {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.press-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #17201a;
  color: #fff;
}

.press-button:hover { background: #238447; color: #fff; }
.press-text-link { color: #175f2e; }

.press-button:focus-visible,
.press-text-link:focus-visible {
  outline: 3px solid #54278f;
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .press-layout { grid-template-columns: minmax(0, 1fr); }
  .press-facts { position: static; order: -1; }
  .press-hero__trace { display: none; }
}

@media (max-width: 600px) {
  .press-hero h1 { font-size: clamp(36px, 9.8vw, 42px); }
  .press-hero-action {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 17px 18px;
    font-size: 16px;
  }
  .press-clarification { padding: 25px 22px 27px; }
  .press-article blockquote { padding: 24px 22px 26px; }
  .press-actions { align-items: stretch; flex-direction: column; }
  .press-button { justify-content: center; text-align: center; }
}

.resource-placeholder {
  margin-bottom: clamp(76px, 10vw, 124px);
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid #dde2db;
  border-radius: 24px;
  background: #fff;
}

.resource-placeholder h2 {
  max-width: 720px;
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(34px, 4.2vw, 44px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.08;
}

.resource-placeholder p { max-width: 680px; margin: 18px 0 0; color: #626a63; }

.resource-action {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #17201a;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.about-hero {
  padding-bottom: clamp(72px, 10vw, 128px);
  background:
    radial-gradient(circle at 82% 24%, rgba(79, 70, 229, .12), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(35, 122, 60, .12), transparent 31%);
}

.about-hero .resource-lede { max-width: 760px; }

.about-story { padding: clamp(76px, 10vw, 128px) 0; background: #fff; }

.about-story__grid,
.about-mission__inner,
.about-leadership__intro {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 3fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.about-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  color: #237a3c;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-section-label span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #cfd8ce;
  border-radius: 50%;
}

.about-section-label p { margin: 0; }

.about-story__copy h2,
.about-mission__copy h2,
.about-leadership__intro h2 {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.05;
}

.about-story__copy p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #4f574f;
  font-size: 18px;
}

.about-mission {
  padding: clamp(80px, 11vw, 136px) 0;
  background: #17201a;
  color: #fff;
}

.about-section-label--light { color: #b8dfbf; }
.about-section-label--light span { border-color: rgba(255, 255, 255, .26); }

.about-mission__kicker {
  margin: 0 0 22px;
  color: #9fd0aa;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.about-mission__copy h2 { max-width: 880px; }

.about-mission__copy > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: #c4cbc3;
  font-size: 18px;
}

.about-leadership { padding: clamp(84px, 11vw, 140px) 0; }

.about-leadership__intro { margin-bottom: clamp(48px, 7vw, 80px); }

.about-leadership__intro > div:last-child > p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #626a63;
  font-size: 18px;
}

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

@media (min-width: 901px) {
  .leadership-grid--tiered {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .leadership-grid--tiered > .leader-card {
    height: 100%;
  }

  .leadership-grid--tiered > .leader-card--randy { grid-area: 1 / 1 / auto / span 2; }
  .leadership-grid--tiered > .leader-card--joe { grid-area: 1 / 3 / auto / span 2; }
  .leadership-grid--tiered > .leader-card--mark { grid-area: 1 / 5 / auto / span 2; }
  .leadership-grid--tiered > .leader-card--andrew { grid-area: 2 / 2 / auto / span 2; }
  .leadership-grid--tiered > .leader-card--tina { grid-area: 2 / 4 / auto / span 2; }
}

.leader-card {
  overflow: hidden;
  border: 1px solid #dde2db;
  border-radius: 20px;
  background: #fff;
}

.leader-card__portrait {
  display: grid;
  overflow: hidden;
  min-height: 340px;
  place-content: center;
  justify-items: center;
  gap: 12px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, .5), transparent 20%),
    linear-gradient(145deg, #dcefe0, #a9d4b2);
  color: #175f2e;
}

.leader-card__portrait img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.leader-card__body { padding: clamp(26px, 4vw, 38px); }

.leader-card__role {
  margin: 0 0 12px;
  color: #237a3c;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.leader-card h3 {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.08;
}

.leader-card__body > p:last-child { margin: 20px 0 0; color: #626a63; }

.resource-card:focus-visible,
.resource-action:focus-visible,
.resource-breadcrumb a:focus-visible {
  outline: 3px solid #4f46e5;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-story__grid,
  .about-mission__inner,
  .about-leadership__intro { grid-template-columns: 1fr; gap: 30px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr); }
  .leadership-grid--tiered > .leader-card--randy { order: 1; }
  .leadership-grid--tiered > .leader-card--joe { order: 2; }
  .leadership-grid--tiered > .leader-card--mark { order: 3; }
  .leadership-grid--tiered > .leader-card--andrew { order: 4; }
  .leadership-grid--tiered > .leader-card--tina { order: 5; }
  .leader-card__portrait { min-height: 100%; }
  .leader-card__portrait img { height: 100%; min-height: 340px; }
}

@media (max-width: 620px) {
  .resource-shell { width: min(calc(100% - 32px), 1180px); }
  .resource-hero { padding-top: 54px; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 210px; }
  .leader-card { display: block; }
  .leader-card__portrait { min-height: 280px; }
  .leader-card__portrait img { height: 280px; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  .resource-card:hover { transform: none; }
}
