:root {
  --navy: #071a32;
  --navy-2: #0c274a;
  --blue: #1475cc;
  --blue-light: #eaf5ff;
  --orange: #ff9d16;
  --green: #68c73a;
  --ink: #10233c;
  --muted: #5d6b7c;
  --line: #dbe5ef;
  --white: #fff;
  --off: #f6f9fc;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(10, 39, 74, .12)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: #fff;
  line-height: 1.6
}

a {
  color: inherit
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto
}

.skip {
  position: absolute;
  left: -9999px
}

.skip:focus {
  left: 20px;
  top: 20px;
  z-index: 99;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px
}

header {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 0;
  color: #fff
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px
}

.brand span i {
  font-style: normal;
  color: #65c83e
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .78)
}

.nav-links a:hover {
  color: #fff
}

.nav-links .nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #06172d 0%, #0a2a50 58%, #0a3a69 100%);
  display: flex;
  align-items: center;
  padding: 140px 0 90px
}

.hero:before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(100, 199, 58, .17);
  border-radius: 50%;
  right: -160px;
  top: -100px;
  box-shadow: 0 0 0 85px rgba(20, 117, 204, .05), 0 0 0 170px rgba(255, 157, 22, .035)
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8ed56c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green)
}

h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  line-height: 1.12;
  margin-top: 0
}

h1 {
  font-size: clamp(46px, 6vw, 76px);
  letter-spacing: -.055em;
  margin: 20px 0 24px;
  max-width: 780px
}

h1 span {
  color: #85d65e
}

.hero-copy>p {
  font-size: 19px;
  line-height: 1.7;
  color: #b9c8d9;
  max-width: 630px;
  margin: 0
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  padding: 15px 21px;
  border-radius: 12px;
  transition: .2s
}

.button.primary {
  background: var(--orange);
  color: #172337;
  box-shadow: 0 12px 30px rgba(255, 157, 22, .22)
}

.button.primary:hover {
  transform: translateY(-2px);
  background: #ffad34
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff
}

.button.ghost:hover {
  background: rgba(255, 255, 255, .08)
}

.arrow {
  font-size: 19px
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  padding: 34px;
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .25);
  transform: rotate(1.2deg)
}

.hero-panel:before {
  content: "";
  position: absolute;
  inset: -7px 20px auto;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--green));
  border-radius: 9px 9px 0 0
}

.platform-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent
}

.platform-mark {
  width: 76px;
  height: 76px;
  object-fit: contain
}

.platform-name {
  display: flex;
  align-items: baseline;
  font-family: Manrope, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  white-space: nowrap
}

.platform-name .sitename {
  color: #66758a
}

.platform-name .intel {
  color: #fa930b
}

.panel-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  font-weight: 800;
  margin-top: 20px
}

.hero-panel h2 {
  font-size: 32px;
  letter-spacing: -.035em;
  margin: 7px 0 12px
}

.hero-panel p {
  color: var(--muted);
  margin: 0
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid var(--line)
}

.metric b {
  display: block;
  font-family: Manrope;
  font-size: 17px
}

.metric span {
  font-size: 11px;
  color: var(--muted)
}

.intro {
  padding: 105px 0 78px
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 46px
}

.kicker {
  font-size: 13px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 12px
}

.section-head h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -.045em;
  margin: 0;
  max-width: 700px
}

.section-head>p {
  max-width: 390px;
  color: var(--muted);
  margin: 0
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  padding: 38px;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.service-card.supply {
  background: linear-gradient(145deg, #eef7ff, #fff);
  border: 1px solid #cfe4f6
}

.service-card.travel {
  background: linear-gradient(145deg, #fff9ef, #fff);
  border: 1px solid #f5dfb8
}

.service-card:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -100px;
  top: -100px;
  background: rgba(20, 117, 204, .07)
}

.service-card.travel:after {
  background: rgba(255, 157, 22, .08)
}

.card-top {
  position: relative;
  z-index: 1
}

.service-logo {
  height: 72px;
  width: 180px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 26px
}

.service-platform-brand {
  margin-bottom: 26px
}

.service-platform-mark {
  width: 72px;
  height: 72px;
  object-fit: contain
}

.service-platform-brand .platform-name {
  font-size: 22px
}

.tag {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  background: #d9edff;
  color: #0860aa;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.travel .tag {
  background: #fff0d5;
  color: #a96100
}

.service-card h3 {
  font-size: 30px;
  letter-spacing: -.03em;
  margin: 14px 0 11px
}

.service-card p {
  color: var(--muted);
  max-width: 590px;
  margin: 0
}

.service-description {
  display: grid;
  gap: 14px
}

.service-description h4 {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 18px;
  line-height: 1.4
}

.service-description ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted)
}

.service-description li::marker {
  color: var(--orange)
}

.text-link {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  text-decoration: none;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.travel .text-link {
  color: #a96100
}

.value {
  padding: 90px 0;
  background: var(--off)
}

.value-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center
}

.value-visual {
  min-height: 450px;
  border-radius: 30px;
  background: linear-gradient(145deg, #0d315b, #071a32);
  position: relative;
  overflow: hidden;
  padding: 44px;
  color: #fff
}

.value-visual:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(104, 199, 58, .12);
  right: -100px;
  bottom: -100px
}

.line-label {
  color: #79d84d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em
}

.value-visual h3 {
  font-size: 37px;
  letter-spacing: -.04em;
  margin: 15px 0
}

.value-visual p {
  color: #afc0d3
}

.signal {
  margin-top: 60px;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 100px
}

.signal i {
  display: block;
  width: 14%;
  background: linear-gradient(var(--green), var(--blue));
  border-radius: 6px 6px 0 0
}

.signal i:nth-child(1) {
  height: 26%
}

.signal i:nth-child(2) {
  height: 42%
}

.signal i:nth-child(3) {
  height: 34%
}

.signal i:nth-child(4) {
  height: 65%
}

.signal i:nth-child(5) {
  height: 76%
}

.signal i:nth-child(6) {
  height: 100%
}

.value-copy h2 {
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -.045em;
  margin: 0 0 22px
}

.value-copy>p {
  color: var(--muted);
  font-size: 17px
}

.points {
  display: grid;
  gap: 22px;
  margin-top: 34px
}

.point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px
}

.point-num {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #e5f2ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-family: Manrope;
  font-weight: 800
}

.point h3 {
  font-size: 17px;
  margin: 2px 0 4px
}

.point p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.contact {
  padding: 100px 0
}

.contact-kicker {
  color: #8ed56c
}

.contact-box {
  background: linear-gradient(120deg, #0b2649, #123c6c);
  color: #fff;
  border-radius: 32px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden
}

.contact-box:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 157, 22, .09);
  right: -80px;
  top: -100px
}

.contact-box h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.04em;
  margin: 0 0 13px
}

.contact-box p {
  color: #b8c8d9;
  margin: 0;
  max-width: 650px
}

.contact-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: max-content
}

.contact-details a {
  text-decoration: none;
  font-weight: 700
}

.contact-details a:hover {
  color: #8ed56c
}

.contact-details span {
  color: #b8c8d9;
  font-size: 14px
}

footer {
  background: #061529;
  color: #9bacc0;
  padding: 55px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  padding-bottom: 40px
}

.footer-brand {
  color: #fff;
  margin-bottom: 14px
}

.footer-blurb {
  max-width: 400px;
  font-size: 14px
}

.legal {
  display: grid;
  gap: 13px;
  font-size: 12px;
  line-height: 1.7
}

.legal p {
  margin: 0
}

.legal strong {
  color: #d7e1ec
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px
}

@media(max-width:900px) {

  .hero-grid,
  .value-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 150px
  }

  .hero-panel {
    max-width: 580px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 18px
  }

  .value-grid {
    gap: 45px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .nav-links a:not(.nav-cta) {
    display: none
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1160px)
  }

  .nav {
    height: 76px
  }

  .brand span {
    font-size: 16px
  }

  .nav-cta {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 120px 0 70px
  }

  .hero-grid {
    gap: 50px
  }

  h1 {
    font-size: 45px
  }

  .hero-copy>p {
    font-size: 17px
  }

  .hero-panel {
    padding: 27px
  }

  .platform-brand {
    gap: 4px
  }

  .platform-mark {
    width: 62px;
    height: 62px
  }

  .platform-name {
    font-size: 18px
  }

  .metrics {
    grid-template-columns: 1fr
  }

  .intro,
  .value,
  .contact {
    padding: 70px 0
  }

  .service-card {
    padding: 28px;
    min-height: 370px
  }

  .value-visual {
    padding: 30px;
    min-height: 390px
  }

  .contact-box {
    padding: 38px 28px;
    display: block
  }

  .contact-details {
    margin-top: 30px;
    min-width: 0
  }

  .footer-grid {
    gap: 35px
  }

  .copyright {
    flex-direction: column
  }
}

@media(max-width:360px) {
  .platform-mark {
    width: 50px;
    height: 50px
  }

  .platform-name {
    font-size: 16px
  }
}
