:root {
  --navy: #062957;
  --deep: #021b3d;
  --blue: #1778ff;
  --orange: #f2a018;
  --orange-dark: #c97900;
  --ink: #16243b;
  --muted: #66758a;
  --paper: #fbfaf7;
  --sand: #f4efe6;
  --sky: #eef6fb;
  --line: #e1ded7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 41, 87, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  display: block;
  width: 158px;
  height: auto;
}

.brand span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #263b5d;
  font-size: 14px;
  font-weight: 800;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(6, 41, 87, 0.18);
}

.header-action {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.secondary {
  color: var(--orange-dark);
  background: #fff7e8;
  border: 1px solid #f2d39b;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px) 76px;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 58%, var(--sand) 58%, var(--sand) 100%);
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  position: relative;
  margin: 0 0 20px;
  padding-top: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 4px;
  content: "";
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.about-text p,
.about-card p,
.steps-grid p,
.partners p,
.faq p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-text {
  max-width: 760px;
  color: #2f415e;
  font-size: clamp(19px, 1.7vw, 23px);
}

.partnership-lockup {
  display: inline-grid;
  grid-template-columns: auto minmax(180px, 270px);
  gap: 18px;
  align-items: center;
  margin-top: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partnership-lockup span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partnership-lockup img {
  display: block;
  width: 270px;
  height: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-row span {
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 600px;
}

.hero-media::before {
  position: absolute;
  inset: -20px -20px 46px 82px;
  z-index: 0;
  content: "";
  background: #e6dac9;
  border-radius: 8px;
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(460px, 92%);
  height: 600px;
  margin-left: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  left: 0;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(410px, 88%);
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-note strong {
  color: var(--orange);
}

.media-note span {
  color: rgba(255, 255, 255, 0.82);
}

.context-band {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -32px clamp(20px, 5vw, 72px) 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(6, 41, 87, 0.12);
}

.context-band div {
  display: grid;
  gap: 8px;
  min-height: 145px;
  padding: 24px;
  background: var(--white);
}

.context-band span,
.steps-grid span,
.role-gallery span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.context-band strong {
  color: var(--navy);
  font-size: 23px;
}

.context-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.about,
.pathway,
.roles,
.partners,
.faq,
.final-cta {
  padding: clamp(62px, 8vw, 106px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 28px;
  align-items: stretch;
}

.about-text {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-text p:last-child,
.about-card p:last-child {
  margin-bottom: 0;
}

.about-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.about-card strong {
  color: var(--orange);
  font-size: 24px;
}

.about-card p {
  color: rgba(255, 255, 255, 0.8);
}

.pathway {
  background: var(--paper);
}

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

.steps-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.roles {
  background: var(--white);
}

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

.role-gallery article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(6, 41, 87, 0.08);
}

.role-gallery img {
  display: block;
  width: 100%;
  height: clamp(205px, 20vw, 260px);
  object-fit: cover;
}

.role-gallery article:nth-child(1) img {
  object-position: center;
}

.role-gallery article:nth-child(2) img {
  object-position: 54% center;
}

.role-gallery article:nth-child(3) img {
  object-position: 42% center;
}

.role-gallery div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.role-gallery strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.role-list span {
  padding: 11px 13px;
  color: var(--navy);
  background: var(--sky);
  border: 1px solid #d7e8f4;
  border-radius: 8px;
  font-weight: 800;
}

.partners {
  background: var(--sand);
}

.partnership-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partnership-panel .eyebrow {
  margin-bottom: 14px;
}

.partnership-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.partnership-panel p:last-child {
  margin-bottom: 0;
}

.partnership-panel img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-left: auto;
}

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

.partner-grid > div {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.partner-logo {
  background: rgba(255, 255, 255, 0.28);
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 82%;
  max-height: 88px;
  object-fit: contain;
}

.partner-logo:nth-child(3) img {
  max-width: 88%;
  max-height: 102px;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 16px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  color: var(--white);
  background: var(--deep);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta small {
  display: block;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.final-cta small a {
  color: var(--orange);
  font-weight: 800;
}

.final-cta .button {
  min-width: 260px;
}

.legal-hero {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px) clamp(40px, 5vw, 70px);
  background: var(--paper);
}

.legal-hero h1 {
  max-width: 840px;
  font-size: clamp(44px, 6vw, 78px);
}

.legal-hero p {
  max-width: 860px;
  color: #2f415e;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(62px, 8vw, 106px);
  background: var(--paper);
}

.legal-content article {
  max-width: 980px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.4vw, 34px);
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--orange-dark);
  font-weight: 800;
}

.legal-note {
  max-width: 980px;
  padding: 18px 22px;
  color: var(--muted);
  background: #fff7e8;
  border: 1px solid #f2d39b;
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.site-footer img {
  width: 138px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  color: var(--orange);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .about-grid,
  .partnership-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--paper);
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media img {
    width: 100%;
    height: 540px;
  }

  .media-note {
    left: 24px;
  }

  .steps-grid,
  .role-gallery,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .brand,
  .context-band,
  .steps-grid,
  .role-gallery,
  .partner-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .brand {
    display: grid;
  }

  .brand img {
    width: 140px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .header-action,
  .button,
  .final-cta .button {
    width: 100%;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .partnership-lockup {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .partnership-lockup img {
    width: min(310px, 100%);
  }

  .context-band {
    margin-top: 0;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    height: auto;
  }

  .media-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .role-gallery img {
    height: 260px;
  }
}
