:root {
  --ink: #171614;
  --ink-soft: #4f4b45;
  --paper: #f7f3ea;
  --paper-deep: #ebe3d5;
  --surface: #fffaf1;
  --line: rgba(23, 22, 20, 0.14);
  --saffron: #d66f24;
  --green: #1d7a52;
  --blue: #274f8e;
  --white: #fffdfa;
  --shadow: 0 20px 60px rgba(26, 24, 21, 0.16);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.site-nav {
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: flex;
  min-height: 78svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 56px) 50px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 12, 11, 0.84) 0%, rgba(11, 12, 11, 0.58) 48%, rgba(11, 12, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 12, 11, 0.78) 0%, rgba(11, 12, 11, 0) 38%),
    url("https://images.unsplash.com/photo-1761818645907-8bed418b415b?auto=format&fit=crop&fm=jpg&q=82&w=2200")
      center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: 42px;
  width: min(28vw, 360px);
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker,
.partner-role {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.intro-band h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(3rem, 5.6vw, 5rem);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 253, 250, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--saffron);
  color: #120f0c;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

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

.hero-metrics {
  display: grid;
  width: min(640px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.22);
}

.hero-metrics div {
  padding: 16px;
  background: rgba(11, 12, 11, 0.4);
}

.hero-metrics dt {
  color: rgba(255, 253, 250, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 6px 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 850;
}

.section,
.intro-band {
  padding: clamp(68px, 9vw, 112px) clamp(20px, 5vw, 56px);
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.3fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.intro-grid h2,
.section h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 253, 250, 0.76);
  font-size: 1.03rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 860px;
}

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

.feature-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.feature-number {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
}

.feature-card h3,
.partner-card h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.feature-card h3 {
  font-size: 1.45rem;
}

.feature-card p,
.fit-list p,
.fit-list li,
.partner-body p,
.apply-panel p,
.site-footer p {
  color: var(--ink-soft);
}

.feature-card p {
  margin: 16px 0 0;
}

.section-contrast {
  background: var(--paper-deep);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 6vw, 84px);
}

.fit-list {
  border-left: 4px solid var(--green);
  padding-left: clamp(22px, 4vw, 42px);
}

.fit-list p {
  margin-top: 0;
  font-size: 1.14rem;
}

.fit-list ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 24px;
}

.fit-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

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

.partner-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) 1fr;
  gap: clamp(24px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.partner-media,
.partner-placeholder {
  min-height: 100%;
  background: var(--ink);
}

.partner-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.partner-body {
  padding: clamp(26px, 5vw, 54px) clamp(24px, 5vw, 62px) clamp(28px, 5vw, 56px) 0;
}

.partner-body h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.partner-body p {
  margin: 18px 0 0;
}

.partner-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: rgba(255, 253, 250, 0.72);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 850;
}

.partner-card-empty {
  box-shadow: none;
}

.bio-placeholder {
  min-height: 92px;
  border: 1px dashed rgba(23, 22, 20, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.4);
}

.section-apply {
  background: var(--green);
  color: var(--white);
}

.section-apply .section-kicker,
.section-apply p {
  color: rgba(255, 253, 250, 0.82);
}

.apply-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.apply-panel h2 {
  max-width: 720px;
}

.apply-panel p {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.06rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 56px);
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 250, 0.7);
}

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

@media (max-width: 960px) {
  .intro-grid,
  .section-heading,
  .split-layout,
  .partner-card,
  .apply-panel {
    grid-template-columns: 1fr;
  }

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

  .partner-body {
    padding: 0 clamp(22px, 5vw, 38px) clamp(28px, 6vw, 46px);
  }

  .partner-card-empty .partner-body {
    padding-top: clamp(24px, 5vw, 38px);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .brand span:last-child {
    max-width: 110px;
    line-height: 1.05;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 70svh;
    padding-top: 94px;
    padding-bottom: 36px;
    background-position: 58% center;
  }

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

  .hero-copy {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero::after {
    right: 20px;
    bottom: 24px;
    width: 42vw;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-metrics div {
    padding: 10px 8px;
  }

  .hero-metrics dt {
    font-size: 0.66rem;
  }

  .hero-metrics dd {
    font-size: 1.08rem;
  }
  }

  .feature-card {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 34px;
  }

  .partner-media img {
    min-height: 320px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 145px;
  }

  .site-footer {
    flex-direction: column;
  }
}
