.iad-hero,
.iad-hero * {
  box-sizing: border-box;
}

.iad-hero {
  --iad-hero-ink: #101914;
  --iad-hero-deep: #102018;
  --iad-hero-deeper: #0b1611;
  --iad-hero-green: #a8df43;
  --iad-hero-green-dark: #315f32;
  --iad-hero-paper: #f4f6f3;
  --iad-hero-line: rgba(16, 25, 20, .14);
  width: 100%;
  color: var(--iad-hero-ink);
  background: var(--iad-hero-paper);
  overflow: hidden;
}

.iad-hero__shell {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.iad-hero__main {
  position: relative;
  color: #fff;
  background: #252827;
}

.iad-hero__main::before {
  display: none;
}

.iad-hero__grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 180px;
  align-items: center;
  padding-block: 20px;
  border-top: 1px solid rgba(168, 223, 67, .24);
}

.iad-hero__content {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  column-gap: clamp(28px, 4.5vw, 64px);
  align-items: end;
}

.iad-hero__content > .iad-hero__eyebrow,
.iad-hero__content > h1,
.iad-hero__lead {
  text-shadow: none;
}

.iad-hero__eyebrow,
.iad-hero__route-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--iad-hero-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.iad-hero__eyebrow::before {
  width: 30px;
  height: 2px;
  flex: 0 0 30px;
  content: "";
  background: currentColor;
}

.iad-hero h1,
.iad-hero h2,
.iad-hero h3,
.iad-hero p {
  font-family: inherit;
}

.iad-hero h1 {
  max-width: 24ch;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 800;
  line-height: .99;
  letter-spacing: -.045em;
}

.iad-hero__lead {
  max-width: 46ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.58;
}

.iad-hero__actions {
  display: flex;
  grid-column: 2;
  grid-row: 1 / span 3;
  flex-wrap: nowrap;
  align-self: center;
  justify-self: end;
  gap: 12px;
  margin-top: 0;
}

.iad-hero__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.iad-hero__button span,
.iad-hero__route-action span {
  transition: transform .2s ease;
}

.iad-hero__button:hover span,
.iad-hero__button:focus-visible span,
.iad-hero__route:hover .iad-hero__route-action span,
.iad-hero__route:focus-visible .iad-hero__route-action span {
  transform: translateX(3px);
}

.iad-hero__button--primary {
  color: #102018 !important;
  background: var(--iad-hero-green);
}

.iad-hero__button--primary:hover,
.iad-hero__button--primary:focus-visible {
  color: #07110b !important;
  background: #b8ec56;
}

.iad-hero__button--secondary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .04);
}

.iad-hero__button--secondary:hover,
.iad-hero__button--secondary:focus-visible {
  border-color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .09);
}

.iad-hero__button:focus-visible,
.iad-hero__route:focus-visible {
  outline: 3px solid #d5ff86;
  outline-offset: 4px;
}

.iad-hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(420px, 38vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #1d2923;
  box-shadow: none;
}

.iad-hero__media::after {
  display: none;
}

.iad-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.iad-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

.iad-hero__routes {
  padding: 20px 0 34px;
  border-bottom: 1px solid var(--iad-hero-line);
  background: var(--iad-hero-paper);
}

.iad-hero__routes-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr);
  column-gap: 36px;
  align-items: end;
  margin-bottom: 16px;
}

.iad-hero__routes-heading .iad-hero__eyebrow {
  grid-column: 1;
  margin-bottom: 7px;
  color: var(--iad-hero-green-dark);
}

.iad-hero__routes-heading h2 {
  grid-column: 1;
  margin: 0;
  color: var(--iad-hero-ink);
  font-size: clamp(28px, 2.35vw, 34px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.iad-hero__routes-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: #58625c;
  font-size: 16px;
  line-height: 1.55;
}

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

.iad-hero__route {
  position: relative;
  display: grid;
  min-height: 170px;
  align-content: start;
  padding: 22px 24px 20px;
  overflow: hidden;
  border: 1px solid var(--iad-hero-line);
  border-radius: 12px;
  color: var(--iad-hero-ink) !important;
  text-decoration: none !important;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.iad-hero__route::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--iad-hero-green-dark);
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform .2s ease;
}

.iad-hero__route:hover,
.iad-hero__route:focus-visible {
  border-color: rgba(49, 95, 50, .42);
  box-shadow: 0 15px 34px rgba(16, 32, 24, .08);
}

.iad-hero__route:hover::before,
.iad-hero__route:focus-visible::before {
  transform: scaleX(1);
}

.iad-hero__route--solutions {
  background: #fff;
}

.iad-hero__route--projects {
  color: #f7faf8 !important;
  border-color: rgba(255, 255, 255, .12);
  background: #26332d;
}

.iad-hero__route--projects:hover,
.iad-hero__route--projects:focus-visible {
  border-color: rgba(168, 223, 67, .7);
  background: #2b3a33;
}

.iad-hero__route--services {
  background: #e8f1e5;
}

.iad-hero__route-eyebrow {
  margin-bottom: 7px;
  color: var(--iad-hero-green-dark);
  font-size: 10px;
}

.iad-hero__route--projects .iad-hero__route-eyebrow,
.iad-hero__route--projects .iad-hero__route-action {
  color: var(--iad-hero-green);
}

.iad-hero__route h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.iad-hero__route p {
  margin: 9px 0 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  opacity: .78;
}

.iad-hero__route-meta {
  display: block;
  margin-top: 8px;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .025em;
  opacity: .64;
}

.iad-hero__route-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--iad-hero-green-dark);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .iad-hero__grid {
    min-height: 260px;
  }

  .iad-hero__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .iad-hero__actions {
    grid-column: 1;
    grid-row: auto;
    justify-self: end;
    margin-top: 20px;
  }

  .iad-hero h1 {
    font-size: clamp(36px, 4.4vw, 46px);
  }

  .iad-hero__route {
    padding-inline: 20px;
  }
}

@media (max-width: 900px) {
  .iad-hero__shell {
    width: min(100% - 36px, 760px);
  }

  .iad-hero__grid {
    padding-block: 24px;
  }

  .iad-hero__content {
    max-width: none;
  }

  .iad-hero h1 {
    max-width: 18ch;
  }

  .iad-hero__media {
    max-width: none;
  }

  .iad-hero__routes-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .iad-hero__routes-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
    max-width: 62ch;
  }

  .iad-hero__route-grid {
    grid-template-columns: 1fr;
  }

  .iad-hero__route {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .iad-hero__shell {
    width: min(100% - 28px, 640px);
  }

  .iad-hero__grid {
    min-height: 0;
    padding: 22px 0 24px;
  }

  .iad-hero__eyebrow {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .iad-hero h1 {
    max-width: 18ch;
    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1.01;
  }

  .iad-hero__lead {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }

  .iad-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: stretch;
    margin-top: 16px;
  }

  .iad-hero__button {
    width: 100%;
  }

  .iad-hero__media {
    height: 320px;
    border-radius: 0;
  }

  .iad-hero__routes {
    padding: 25px 0 30px;
  }

  .iad-hero__routes-heading {
    margin-bottom: 18px;
  }

  .iad-hero__routes-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .iad-hero__routes-heading > p:last-child {
    font-size: 15px;
  }

  .iad-hero__route {
    min-height: 128px;
    padding: 18px 19px 17px;
  }

  .iad-hero__route h3 {
    font-size: 26px;
  }

  .iad-hero__route-meta {
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .iad-hero h1 {
    font-size: 34px;
  }

  .iad-hero__route {
    padding-inline: 17px;
  }
}

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