:root {
  --navy: #051d35;
  --navy-2: #092a4b;
  --olive: #858938;
  --olive-dark: #6e722e;
  --stone: #f5f3ee;
  --sky: #eaf4fb;
  --white: #ffffff;
  --ink: #0c2340;
  --muted: #5f6872;
  --line: rgba(12, 35, 64, 0.14);
  --shadow: 0 24px 70px rgba(8, 26, 46, 0.16);
  --radius: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(22px, 5vw, 70px);
  background: linear-gradient(90deg, #061b31, #082844);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 54px;
  height: 42px;
  border-top: 4px solid var(--olive);
  border-radius: 50% 50% 0 0;
}

.brand-wing {
  position: absolute;
  left: 6px;
  top: 17px;
  width: 43px;
  height: 8px;
  background: var(--white);
  border-radius: 100px;
  transform: skewX(-24deg);
}

.brand-wing::after {
  content: "";
  position: absolute;
  right: 7px;
  top: -8px;
  width: 15px;
  height: 24px;
  background: var(--white);
  clip-path: polygon(45% 0, 100% 100%, 0 100%);
}

.brand-text {
  display: grid;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: .92;
}

.brand-text strong {
  font-size: 1.55rem;
  font-weight: 800;
}

.brand-text span {
  font-size: .94rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-button) {
  opacity: .94;
}

.nav-button,
.button-primary,
.support-form button {
  background: var(--olive);
  color: var(--white);
  border: 0;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.nav-button {
  padding: 14px 20px;
}

.hero {
  position: relative;
  min-height: 630px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 20, 35, .88) 0%, rgba(5, 20, 35, .68) 34%, rgba(5, 20, 35, .18) 67%, rgba(5, 20, 35, .08) 100%),
    linear-gradient(180deg, rgba(5, 20, 35, .15), rgba(5, 20, 35, .34));
}

.hero-content {
  width: min(570px, calc(100% - 44px));
  margin-left: clamp(24px, 5vw, 70px);
  color: var(--white);
  padding-bottom: 50px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  margin-top: 17px;
  background: var(--olive);
}

.eyebrow.dark {
  color: var(--ink);
}

.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 650;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .3);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.button-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 5px;
  background: rgba(5, 20, 35, .25);
  backdrop-filter: blur(4px);
}

.concept-label {
  position: absolute;
  right: clamp(18px, 4vw, 55px);
  bottom: 28px;
  margin: 0;
  color: var(--white);
  font-size: .86rem;
  font-style: italic;
  font-weight: 650;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}

.stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -50px;
  padding-inline: 24px;
}

.stats {
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.stats article {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  text-transform: uppercase;
}

.stats article:last-child {
  border-right: 0;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid rgba(133, 137, 56, .75);
  border-radius: 50%;
  color: var(--olive);
}

.stats strong {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1;
}

.stats span:last-child {
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.15;
}

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

.mission {
  display: grid;
  grid-template-columns: .92fr 1.58fr;
  gap: clamp(38px, 6vw, 84px);
  padding: 82px 0 30px;
}

.round-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-weight: 900;
}

.mission h2,
.support-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.mission-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #25364a;
}

.text-link,
.design-card a,
.footer-cta {
  display: inline-flex;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.path-card {
  position: relative;
  min-height: 275px;
  padding: 42px 24px 26px;
  border: 1px solid rgba(12, 35, 64, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(8, 26, 46, .08);
  text-align: center;
}

.step {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
}

.card-icon {
  display: block;
  margin: 18px auto 18px;
  color: var(--olive);
  font-size: 3.1rem;
  line-height: 1;
}

.path-card h3,
.design-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
}

.path-card p,
.design-card p {
  margin: 0;
  color: #4b5866;
  font-size: .94rem;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(310px, .75fr) minmax(420px, 1fr);
  margin-top: 52px;
  background: var(--white);
}

.support-copy {
  padding: clamp(38px, 5vw, 70px);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.support-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
}

.support-form {
  align-self: center;
  padding: clamp(34px, 5vw, 70px) clamp(28px, 5vw, 54px);
}

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

input {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #d6d9dc;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

input:focus {
  outline: 3px solid rgba(133, 137, 56, .2);
  border-color: var(--olive);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  color: #4a5561;
  font-size: .92rem;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.support-form button {
  width: min(360px, 100%);
  min-height: 54px;
  padding: 0 24px;
  cursor: pointer;
  font: inherit;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.designs {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 42px clamp(24px, 4vw, 54px) 48px;
  background: var(--sky);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: min(var(--max), 100%);
  margin: 0 auto 24px;
  color: var(--ink);
  text-align: center;
}

.section-title span {
  height: 1px;
  background: rgba(12, 35, 64, .35);
}

.section-title p {
  margin: 0;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.design-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.design-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 22px;
  padding: 14px;
  border: 1px solid rgba(12, 35, 64, .15);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(8, 26, 46, .08);
}

.thumb {
  min-height: 130px;
  border-radius: 4px;
  overflow: hidden;
  background: #d9d0bd;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-runway {
  display: grid;
  place-items: end start;
  padding: 14px;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(12,35,64,.15), rgba(12,35,64,.55)),
    linear-gradient(135deg, #d6c8ae, #879287);
}

.thumb-blueprint {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.9);
  font-weight: 900;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    #153e6d;
  background-size: 18px 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1.1fr 1fr;
  gap: 44px;
  padding: 44px clamp(24px, 5vw, 70px) 28px;
  background: var(--navy);
  color: var(--white);
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: .78rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-footer div:not(:first-child) a {
  display: block;
  margin-bottom: 7px;
}

.footer-cta {
  color: var(--white) !important;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

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

  .mission,
  .support-section {
    grid-template-columns: 1fr;
  }

  .pathway-grid,
  .stats,
  .design-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .stats article:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .design-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    display: block;
  }

  .site-nav {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .site-nav .nav-button {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 70px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 20, 35, .9), rgba(5, 20, 35, .55));
  }

  .stats,
  .pathway-grid,
  .form-grid,
  .design-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 34px, var(--max));
  }

  .section-title {
    grid-template-columns: 1fr;
  }

  .section-title span {
    display: none;
  }
}
