:root {
  --navy: #071f39;
  --navy2: #0c3154;
  --blue: #08a9ea;
  --ink: #092746;
  --muted: #667b8f;
  --line: #dbe5ec;
  --soft: #f5f8fa;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
header {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  background: rgba(7, 31, 57, 0.94);
  color: white;
  border-bottom: 1px solid #ffffff15;
  transition:
    box-shadow 0.25s,
    background 0.25s;
}
header.scrolled {
  background: #071f39fa;
  box-shadow: 0 10px 30px #020d1866;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
}
.brand span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--blue);
  border: 2px solid var(--blue);
}
nav {
  display: flex;
  gap: 38px;
  margin: auto;
  color: #b4c2cf;
  font-size: 14px;
}
nav a {
  position: relative;
  transition: color 0.2s;
}
nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  background: var(--blue);
  transition: right 0.25s;
}
nav a:hover,
nav a.active {
  color: white;
}
nav a:hover:after,
nav a.active:after {
  right: 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 17px;
}
.actions button {
  background: none;
  border: 0;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #08a9ea44;
  background: #2dbbf1;
}
.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}
.btn.small {
  min-height: 42px;
  font-size: 13px;
}
.grid {
  background-color: var(--navy);
  background-image: linear-gradient(#19486e2e 1px, transparent 1px),
    linear-gradient(90deg, #19486e2e 1px, transparent 1px);
  background-size: 105px 105px;
}
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: white;
}
.hero > img {
  position: absolute;
  width: min(64vw, 1080px);
  right: -3vw;
  bottom: 7%;
  opacity: 0.55;
  will-change: transform;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy) 11%,
    #071f39e8 43%,
    #071f3925 80%
  );
}
.wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, 88vw);
  margin: auto;
  padding: 11vh 0 48px;
}
.tag,
em {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 2px;
}
.tag {
  padding: 10px 14px;
  border: 1px solid #08a9ea55;
}
.hero h1 {
  font-size: clamp(54px, 6vw, 90px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin: 30px 0;
}
.hero h1 b {
  color: var(--blue);
}
.lead {
  max-width: 760px;
  color: #b6c6d4;
  font-size: 19px;
  line-height: 1.65;
}
.buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}
.more {
  font-weight: 800;
}
.stats {
  display: flex;
  gap: 70px;
  margin-top: 10vh;
}
.stats div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats b {
  font-size: 34px;
  color: var(--blue);
}
.stats span {
  font-size: 12px;
  color: #90a5b8;
}
section:not(.hero):not(.contact) {
  padding: 112px 6vw;
}
.section-head {
  max-width: 880px;
  margin-bottom: 62px;
}
.section-head h2,
.contact h2 {
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -2.4px;
  margin: 20px 0;
}
.section-head p,
.contact p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 800px;
}
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: end;
}
.props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.props article {
  position: relative;
  min-height: 375px;
  padding: 42px;
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.props article:hover,
.people article:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px #0927461f;
}
.props article.dark {
  background: var(--navy);
  color: white;
}
.props i,
.cards i,
.platform-cards i {
  position: absolute;
  right: 30px;
  top: 28px;
  color: #9aabb9;
  font-style: normal;
  font-size: 12px;
}
.props strong {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 52px;
  background: #eaf8fe;
  color: var(--blue);
  font-size: 24px;
}
.props h3 {
  font-size: 29px;
  margin: 0 0 16px;
}
.props p,
.cards p,
.platform-cards p,
.people p {
  color: var(--muted);
  line-height: 1.65;
}
.props .dark p {
  color: #aec0d0;
}
.props a {
  position: absolute;
  bottom: 38px;
  color: var(--blue);
  font-weight: 800;
}
.soft {
  background: var(--soft);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.cards article {
  position: relative;
  min-height: 270px;
  padding: 36px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s,
    transform 0.25s;
}
.cards article:hover {
  background: #fafdff;
  transform: translateY(-3px);
}
.cards h3,
.platform-cards h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 48px 0 14px;
}
.platform {
  color: white;
}
.platform .section-head p {
  color: #aebfd0;
}
.phases {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 55px;
}
.phases span {
  padding: 25px 18px;
  border: 1px solid #73a6c533;
  color: var(--blue);
  font-size: 11px;
}
.phases b {
  display: block;
  margin-top: 14px;
  color: white;
  font-size: 14px;
}
.platform-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.platform-cards article {
  position: relative;
  min-height: 220px;
  padding: 36px;
  border: 1px solid #73a6c544;
  background: #133c5c66;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.platform-cards article:hover {
  border-color: #08a9eaaa;
  background: #174a70aa;
}
.platform-cards h3 {
  color: white;
}
.platform-cards p {
  color: #aec0d0;
}
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.people article {
  padding: 38px;
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.people article > div {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}
.people h3 {
  font-size: 25px;
  margin: 27px 0 5px;
}
.people > b {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.people a {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.contact {
  padding: 115px 6vw;
  color: white;
}
.contact-intro {
  text-align: center;
}
.contact h2 {
  max-width: 950px;
  margin: 22px auto;
}
.contact-intro > p {
  color: #afc0cf;
  margin: 0 auto 45px;
}
.contact-form {
  max-width: 920px;
  margin: auto;
  padding: 38px;
  background: #0d3457e6;
  border: 1px solid #70b7dd55;
  text-align: left;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.form-grid label > span {
  font-size: 13px;
  color: #b9cad8;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #6d9bb955;
  background: #061c32;
  color: white;
  padding: 14px 15px;
  font: inherit;
  border-radius: 0;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #08a9ea22;
}
.form-grid textarea {
  resize: vertical;
}
.form-grid select option {
  color: #071f39;
  background: white;
}
.consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
}
.consent input {
  width: auto;
  margin-top: 2px;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.contact-form .btn {
  margin-top: 26px;
}
.form-status {
  min-height: 24px;
  margin: 18px 0 0 !important;
  font-size: 14px !important;
}
.form-status.success {
  color: #78dbac;
}
.form-status.error {
  color: #ffadad;
}
footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  padding: 35px 6vw;
  background: #041729;
  color: #8297a9;
  font-size: 12px;
}
footer p {
  text-align: center;
}
footer > a:last-child {
  text-align: right;
}
@media (max-width: 880px) {
  header {
    padding: 0 22px;
  }
  nav {
    display: none;
  }
  .actions {
    margin-left: auto;
  }
  .actions .btn {
    display: none;
  }
  .hero > img {
    width: 120vw;
    right: -43%;
    opacity: 0.35;
  }
  .hero:after {
    background: linear-gradient(90deg, var(--navy) 10%, #071f39dc 80%);
  }
  .wrap {
    width: auto;
    padding: 11vh 24px;
  }
  .hero h1 {
    letter-spacing: -2px;
  }
  .stats {
    gap: 25px;
  }
  .section-head.split {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .props,
  .people,
  .platform-cards {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .phases {
    grid-template-columns: repeat(3, 1fr);
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  footer > a:last-child {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 49px;
  }
  .lead {
    font-size: 16px;
  }
  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats {
    margin-top: 55px;
  }
  .stats b {
    font-size: 27px;
  }
  .stats span {
    max-width: 92px;
  }
  section:not(.hero):not(.contact) {
    padding: 78px 24px;
  }
  .section-head h2,
  .contact h2 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }
  .props article {
    padding: 30px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .phases {
    grid-template-columns: 1fr 1fr;
  }
  .contact {
    padding: 85px 24px;
  }
  .contact-form {
    padding: 25px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .props article,
  .cards article,
  .platform-cards article,
  .people article {
    transition: none;
  }
}
