:root {
  --ink: #11140f;
  --ink-soft: #30342d;
  --paper: #f3f1e8;
  --paper-deep: #e8e5da;
  --white: #fffefa;
  --signal: #d9ff43;
  --signal-dark: #a7cb0a;
  --blue: #3658d4;
  --line: rgba(17, 20, 15, 0.17);
  --muted: #6c7168;
  --shadow: 0 24px 70px rgba(17, 20, 15, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 10;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topbar__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__inner > * { min-width: 0; }

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup img {
  display: block;
  width: 180px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.24);
}

.partner-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 12px;
}

.partner-lockup > span:first-child {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-logo-panel {
  display: grid;
  place-items: center;
  padding: 5px 8px;
  background: #fff;
}

.partner-logo-panel img {
  display: block;
  width: 132px;
  height: auto;
}

.opportunities-nav {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 11px 19px 11px 13px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--signal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: color 160ms ease, background 160ms ease;
}

.opportunities-nav__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  font-size: 16px;
}

.opportunities-nav:hover {
  color: var(--white);
  background: transparent;
}

.opportunities-nav:hover .opportunities-nav__icon {
  color: var(--ink);
  background: var(--signal);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(217, 255, 67, 0.3);
  border-radius: 50%;
}

.hero::before {
  width: 560px;
  height: 560px;
  right: -210px;
  top: -310px;
}

.hero::after {
  width: 300px;
  height: 300px;
  right: 40px;
  bottom: -250px;
}

.hero__inner {
  min-height: 560px;
  padding: 84px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 64px;
}

.detail-hero .hero__inner {
  min-height: 470px;
  grid-template-columns: minmax(0, 1fr) 300px;
  padding-top: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: currentColor;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(45px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
}

.detail-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5.7vw, 68px);
}

.hero__lede {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
}

.hero__stats {
  padding: 26px;
  color: var(--ink);
  background: var(--signal);
  box-shadow: 18px 18px 0 rgba(217, 255, 67, 0.11);
}

.hero__stats strong {
  display: block;
  font-size: 68px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero__stats span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status--open { color: #2f7600; }
.status--upcoming { color: var(--blue); }
.hero .status--open { color: var(--signal); }
.hero .status--upcoming { color: #9eb0ff; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  margin-bottom: 38px;
  padding: 13px 19px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 7px 7px 0 rgba(217, 255, 67, 0.28);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.back-link:hover {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
  box-shadow: 3px 3px 0 rgba(217, 255, 67, 0.2);
}

.section { padding: 92px 0; }
.section--tight { padding: 68px 0; }
.section--white { background: var(--white); }

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.48fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2,
.cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.partner-help {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;
  margin: 0 0 30px;
  padding: 28px 30px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 9px 9px 0 #cdd5ff;
}

.partner-help__marker {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.partner-help__eyebrow {
  margin: 0 0 7px !important;
  color: #dfe4ff !important;
  font-size: 10px !important;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.partner-help h3 {
  margin: 0 0 7px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.partner-help p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
}

.partner-help .button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.partner-help .button--ghost:hover {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.partner-help--detail {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px 22px;
  margin: 5px 0 35px;
  padding: 25px;
  box-shadow: 7px 7px 0 #cdd5ff;
}

.partner-help--detail .partner-help__marker {
  width: 58px;
  height: 58px;
}

.partner-help--detail .button {
  grid-column: 2;
  justify-self: start;
}

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

.call-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.call-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.call-card__number {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.call-card h3 {
  margin: 42px 0 15px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.call-card__summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.call-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.call-card__partnership {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.meta-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-value {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
}

.card-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.card-link { margin-top: 24px; align-self: flex-start; }
.card-link:hover, .button:hover { color: var(--ink); background: var(--signal); }

.button--signal { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.button--signal:hover { color: var(--white); background: transparent; }
.button--ghost { color: var(--ink); background: transparent; }
.button--ghost:hover { color: var(--ink); background: var(--signal); }

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 70px;
  align-items: start;
}

.detail-main > p:first-child {
  margin-top: 0;
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.content-block {
  padding: 35px 0;
  border-top: 1px solid var(--line);
}

.content-block h2 {
  margin: 0 0 13px;
  font-size: 19px;
  line-height: 1.25;
}

.content-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.fit-box {
  margin: 40px 0;
  padding: 30px;
  background: var(--signal);
}

.fit-box .meta-label { color: rgba(17, 20, 15, 0.62); }
.fit-box p { margin: 8px 0 0; font-size: 17px; font-weight: 700; line-height: 1.55; }

.facts {
  position: sticky;
  top: 24px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 18px 18px 0 var(--paper-deep);
}

.facts h2 {
  margin: 0 0 23px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.fact {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.fact .meta-label { color: rgba(255, 255, 255, 0.52); }
.fact .meta-value { color: var(--white); font-size: 15px; }
.facts .button { width: 100%; margin-top: 18px; }

.notice {
  padding: 22px 25px;
  color: #473c00;
  background: #fff2a8;
  border-left: 5px solid #d4a900;
  font-size: 14px;
  line-height: 1.6;
}

.cta {
  color: var(--white);
  background: var(--blue);
}

.cta__inner {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 80px;
  align-items: center;
  padding-block: 78px;
}

.cta p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.cta__actions { display: flex; flex-direction: column; gap: 12px; }
.cta__actions .button { min-height: 56px; }

.footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.67);
  background: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 54px;
}

.footer strong { display: block; margin-bottom: 9px; color: var(--white); }
.footer a { text-decoration-color: rgba(255, 255, 255, 0.35); text-underline-offset: 3px; }
.footer a:hover { color: var(--signal); }
.footer__note { margin: 40px 0 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }

@media (max-width: 860px) {
  .hero__inner,
  .detail-hero .hero__inner,
  .section-head,
  .detail-layout,
  .cta__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner { min-height: 0; padding: 68px 0; gap: 44px; }
  .hero__stats { width: min(280px, 100%); }
  .detail-hero .hero__inner { min-height: 0; }
  .call-grid { grid-template-columns: 1fr; }
  .facts { position: static; }
  .cta__inner { gap: 40px; }
  .partner-help { grid-template-columns: 66px 1fr; }
  .partner-help .button { grid-column: 2; justify-self: start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar__inner {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  .brand-partners { width: 100%; justify-content: space-between; }
  .topbar nav { width: 100%; }
  .opportunities-nav { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .topbar__inner { min-height: 0; }
  .brand-partners { gap: 10px; }
  .brand-lockup img { width: 134px; }
  .brand-divider { height: 38px; }
  .partner-lockup > span:first-child { display: none; }
  .partner-logo-panel { padding: 4px 6px; }
  .partner-logo-panel img { width: 104px; }
  .hero h1 { font-size: 44px; }
  .detail-hero h1 { font-size: 39px; }
  .hero__lede { font-size: 17px; }
  .section { padding: 66px 0; }
  .section-head { gap: 24px; margin-bottom: 34px; }
  .call-card { min-height: 0; padding: 25px; }
  .call-card h3 { margin-top: 34px; }
  .call-card__meta { grid-template-columns: 1fr; }
  .call-card__top { flex-wrap: wrap; }
  .partner-help,
  .partner-help--detail {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 24px;
    box-shadow: 6px 6px 0 #cdd5ff;
  }
  .partner-help .button,
  .partner-help--detail .button { grid-column: 1; width: 100%; }
  .detail-main > p:first-child { font-size: 20px; }
  .facts { box-shadow: 8px 8px 0 var(--paper-deep); }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
