:root {
  --navy: #071b2d;
  --navy-soft: #0d2940;
  --ink: #091d30;
  --blue: #43819d;
  --orange: #cf5929;
  --yellow: #f4bd35;
  --white: #fff;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.button {
  font-weight: 800;
}

.content-width {
  width: min(var(--page-width), calc(100% - 72px));
  margin-inline: auto;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 600px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.welcome-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(44px, 6vw, 110px) 72px max(36px, calc((100vw - var(--page-width)) / 2));
  background:
    linear-gradient(135deg, transparent 74%, rgba(67, 129, 157, .12) 74%),
    var(--navy);
}

.welcome h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.25vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.welcome h1 span {
  color: var(--blue);
}

.welcome h1 em {
  color: var(--orange);
  font-style: normal;
}

.welcome-copy > p {
  max-width: 630px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 2px solid transparent;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
footer a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-primary {
  background: var(--yellow);
  color: #071421;
}

.button-primary:hover {
  background: #ffd05b;
}

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

.button-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.chip-feature {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  background: #d7b37d;
  color: var(--ink);
}

.chip-feature > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.chip-copy {
  padding: 26px clamp(32px, 5vw, 82px) 34px;
  background: rgba(255, 255, 255, .9);
}

.chip-copy h2 {
  margin-bottom: 4px;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.1;
}

.chip-copy p {
  margin-bottom: 10px;
}

.text-link {
  color: #005fb8;
  font-weight: 700;
  text-underline-offset: 4px;
}

.work {
  padding: 58px 0 50px;
  background: var(--white);
}

.work h2,
.custom h2 {
  margin-bottom: 4px;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-intro {
  margin-bottom: 28px;
  color: #405367;
}

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

.product img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  margin-bottom: 16px;
  border-radius: 5px;
  object-fit: cover;
}

.product h3 {
  margin-bottom: 2px;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  line-height: 1.15;
}

.product p {
  margin-bottom: 0;
  color: #405367;
}

.centered-action {
  margin-top: 30px;
  text-align: center;
}

.custom {
  background: var(--navy-soft);
  color: var(--white);
}

.custom-inner {
  padding-top: 64px;
  padding-bottom: 68px;
}

.custom h2 {
  margin-bottom: 22px;
}

.custom p {
  max-width: 800px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

footer {
  padding: 26px 0;
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 42px;
}

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

.footer-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-name {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.footer-name em {
  color: var(--orange);
  font-style: normal;
}

footer nav {
  display: flex;
  gap: 40px;
  padding-left: 42px;
  border-left: 1px solid var(--blue);
}

footer a {
  text-underline-offset: 7px;
  text-decoration-color: var(--blue);
}

footer a:hover {
  text-decoration-color: var(--yellow);
}

@media (max-width: 850px) {
  .content-width {
    width: min(100% - 40px, 680px);
  }

  .welcome {
    display: block;
  }

  .welcome-copy {
    padding: 58px 24px 54px;
    text-align: center;
  }

  .welcome-copy > p {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .chip-feature {
    display: block;
  }

  .chip-feature > img {
    min-height: 0;
    max-height: 540px;
    aspect-ratio: 1 / 1;
    object-position: center;
  }

  .chip-copy {
    padding: 28px max(24px, calc((100vw - 640px) / 2)) 34px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product img {
    aspect-ratio: 1.5 / 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  footer nav {
    width: 100%;
    padding: 20px 0 0;
    border-top: 1px solid var(--blue);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .content-width {
    width: calc(100% - 30px);
  }

  .welcome-copy {
    padding-inline: 20px;
  }

  .welcome h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .chip-copy {
    padding-inline: 20px;
  }

  .work {
    padding-top: 44px;
  }

  .work h2,
  .custom h2 {
    font-size: 2.3rem;
  }

  .product img {
    aspect-ratio: 1 / 1;
  }

  .custom-inner {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  footer nav {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
