:root {
  --brand-500: #087352;
  --brand-600: #065f46;
  --ink-900: #1d212b;
  --ink-850: #1c1f27;
  --bg-50: #f3f4f9;
  --surface-0: #ffffff;
  --text-900: #1d212b;
  --text-700: #374151;
  --text-600: #4f5965;
  --text-500: #596270;
  --border-200: #abaeae;
  --candidate: #3f939f;
  --employer: #de7b66;
  --line: color-mix(in srgb, var(--border-200) 48%, white);
  --white: #ffffff;
  --surface-shadow: 0 12px 32px rgba(29, 33, 43, 0.08);
  --surface-shadow-soft: 0 8px 24px rgba(29, 33, 43, 0.06);
  --header-height: 76px;
}

@font-face {
  font-family: "Geist";
  src: url("/fonts/Geist-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  size-adjust: 100%;
  ascent-override: 94%;
  descent-override: 24%;
  line-gap-override: 0%;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--bg-50);
  color: var(--text-900);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--surface-0);
  color: var(--text-900);
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--surface-shadow-soft);
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--text-900);
  background: color-mix(in srgb, var(--surface-0) 94%, transparent);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--surface-shadow-soft);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: color-mix(in srgb, var(--surface-0) 97%, transparent);
  border-bottom-color: color-mix(in srgb, var(--border-200) 68%, white);
  box-shadow: var(--surface-shadow);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img { width: 156px; height: auto; }

.footer-brand--text {
  min-height: 44px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--text-600);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  color: var(--brand-500);
  background: color-mix(in srgb, var(--brand-500) 7%, transparent);
}

.legal-nav { flex-wrap: wrap; justify-content: flex-end; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-0);
  color: var(--text-600);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 1.06fr) minmax(360px, 0.94fr);
  gap: 32px;
  align-items: start;
  overflow: hidden;
  color: var(--text-900);
  border-radius: 32px;
  padding: 28px clamp(20px, 3vw, 40px) 40px;
  background: #efedf2;
  margin: calc(var(--header-height) + 16px) clamp(16px, 3vw, 40px) 0;
  min-height: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  grid-column: 1;
  grid-row: 1;
  padding-top: clamp(10px, 4vw, 54px);
}

.hero__media {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding-top: clamp(0px, 3vw, 56px);
}

.hero__frame {
  position: relative;
  overflow: hidden;
  border: 14px solid #e5e2e8;
  border-radius: 28px;
  background: var(--surface-0);
  box-shadow: var(--surface-shadow);
}

.hero__frame-inner {
  position: relative;
  aspect-ratio: 15 / 10;
}

.hero__frame-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.02);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-500);
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: normal;
  hyphens: manual;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 span { display: block; }

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.hero__lede {
  max-width: 58ch;
  margin-bottom: 18px;
  color: var(--text-600);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero__date {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-left: 3px solid var(--brand-500);
  border-radius: 0 12px 12px 0;
  background: color-mix(in srgb, var(--brand-500) 10%, white);
  color: var(--brand-600);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, filter 180ms ease;
}

.button:hover { transform: translateY(-1px); }

.button--primary,
.button--dark {
  background: var(--brand-500);
  color: var(--white);
}

.button--primary:hover,
.button--dark:hover { filter: brightness(0.95); }

.button--secondary {
  border: 1px solid var(--line);
  background: var(--surface-0);
  color: var(--text-900);
}

.button--secondary:hover {
  border-color: color-mix(in srgb, var(--brand-500) 36%, white);
  background: color-mix(in srgb, var(--bg-50) 78%, white);
  color: var(--brand-500);
}

.section { padding-inline: clamp(16px, 3vw, 40px); }
.section--major { padding-block: clamp(28px, 3.5vw, 44px); }
.section--standard { padding-block: clamp(24px, 3vw, 36px); }
.section--compact { padding-block: clamp(20px, 2.5vw, 30px); }

.section__inner {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: clamp(38px, 4.6vw, 64px);
  border-radius: 28px;
  background: var(--surface-0);
  box-shadow: var(--surface-shadow-soft);
}

.section__inner > *,
.intro__copy,
.partners__content,
.audience__panel {
  min-width: 0;
}

.prose { max-width: 64ch; }
.prose p { color: var(--text-600); font-weight: 500; }
.prose p:last-child { margin-bottom: 0; }

.intro .section__inner { background: var(--surface-0); }

.intro__grid,
.partners__grid,
.company__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.intro__copy,
.partners__content {
  padding-top: 4px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.audience .section__inner {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 38px);
}

.audience__panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid color-mix(in srgb, var(--candidate) 34%, white);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 249, 247, 0.96) 100%);
  box-shadow: var(--surface-shadow-soft);
}

.audience__panel--accent {
  border-color: color-mix(in srgb, var(--employer) 34%, white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 244, 241, 0.96) 100%);
}

.audience__panel h2 {
  margin-bottom: 4px;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
}

.audience__panel p,
.audience__panel li {
  max-width: 62ch;
}

.audience__panel p {
  margin-bottom: 0;
  color: var(--text-600);
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-600);
  font-weight: 500;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 12px;
  height: 2px;
  background: var(--brand-500);
}

.principles .section__inner {
  background: color-mix(in srgb, var(--brand-500) 6%, white);
}

.section__heading { max-width: min(850px, 64ch); }

.section__heading p:not(.eyebrow) {
  color: var(--text-600);
  font-size: 1.03rem;
  font-weight: 500;
}

.principles__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: 36px;
  border-top: 1px solid color-mix(in srgb, var(--brand-500) 18%, white);
}

.principles__list article { padding: 28px 0 0; }

.principles__list p {
  margin-bottom: 0;
  color: var(--text-600);
  font-weight: 500;
}

.partners .section__inner { background: var(--surface-0); }
.partners__cta { margin-top: 12px; }

.partner-points,
.company-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.partner-points div,
.company-facts div {
  display: grid;
  grid-template-columns: minmax(150px, auto) 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.partner-points dt,
.company-facts dt {
  color: var(--brand-500);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partner-points dd,
.company-facts dd {
  margin: 0;
  color: var(--text-900);
  font-size: 1.02rem;
  font-weight: 600;
}

.partner-points dd a,
.company-facts dd a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.company .section__inner {
  background: color-mix(in srgb, var(--surface-0) 92%, var(--bg-50));
}

.company__grid {
  align-items: center;
}

.site-footer {
  padding: 36px clamp(20px, 5vw, 76px);
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer__inner {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(250px, 1fr) auto;
  gap: 24px 34px;
  align-items: center;
}

.site-footer p { margin: 0; }

.site-footer a {
  color: var(--white);
  font-weight: 600;
}

.site-footer__copy {
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.56);
}

.legal-page {
  min-height: 100vh;
  background: var(--bg-50);
}

.legal-page .site-header {
  background: color-mix(in srgb, var(--surface-0) 96%, transparent);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--surface-shadow-soft);
  backdrop-filter: blur(14px);
}

.legal-hero {
  padding: calc(var(--header-height) + 70px) clamp(20px, 5vw, 76px) clamp(42px, 6vw, 76px);
  color: var(--text-900);
}

.legal-hero__inner,
.legal-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.legal-hero h1 { max-width: 760px; }

.legal-content {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 76px);
  border-radius: 28px;
  background: var(--surface-0);
  box-shadow: var(--surface-shadow-soft);
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.legal-content p,
.legal-content li {
  max-width: 64ch;
  color: var(--text-600);
  font-weight: 500;
}

@media (max-width: 1060px) {
  .site-nav {
    position: absolute;
    left: clamp(18px, 4vw, 56px);
    right: clamp(18px, 4vw, 56px);
    top: calc(100% - 6px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    background: var(--surface-0);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--surface-shadow);
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-nav a { width: auto; }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; }
  .nav-toggle { display: inline-flex; }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .hero__content,
  .hero__media { grid-column: 1; }

  .hero__media {
    grid-row: 2;
    padding-top: 0;
  }

  .intro__grid,
  .partners__grid,
  .company__grid,
  .audience__grid,
  .principles__list,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__inner { align-items: start; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }

  .site-header { padding: 10px 18px; }
  .brand img { width: 138px; }

  .hero {
    display: grid;
    margin: calc(var(--header-height) + 12px) 12px 0;
    padding: 22px 18px 26px;
    border-radius: 24px;
    gap: 18px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-top: 0;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.58rem, 7vw, 1.85rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.45rem, 6.8vw, 1.9rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero__lede {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .hero__date {
    margin-bottom: 14px;
    font-size: 0.86rem;
  }

  .hero__actions { gap: 8px; }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 9px 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__frame {
    border-width: 8px;
    border-radius: 20px;
  }

  .hero__frame-inner { aspect-ratio: 15 / 10; }

  .section { padding-inline: 12px; }

  .section--major,
  .section--standard,
  .section--compact {
    padding-block: 20px;
  }

  .section__inner {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .audience .section__inner { padding: 0; }

  .section__inner,
  .prose,
  .intro__copy,
  .partners__content,
  .audience__panel {
    width: 100%;
    max-width: 100%;
  }

  .section p,
  .section li,
  .partner-points dd,
  .company-facts dd {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .audience__panel {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .audience__panel h2 {
    font-size: clamp(1.35rem, 6.5vw, 1.8rem);
  }

  .partner-points div,
  .company-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-hero {
    padding: 42px 20px 26px;
  }

  .legal-hero__inner,
  .legal-content {
    width: 100%;
    max-width: 100%;
  }

  .legal-content {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .legal-content p,
  .legal-content li {
    overflow-wrap: anywhere;
  }

  .legal-page .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px;
  }

  .legal-page .legal-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 6px 14px;
  }

  .legal-page .legal-nav a {
    width: auto;
    min-height: 44px;
    padding: 6px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
