:root {
  --ink: #06101f;
  --ink2: #08182d;
  --paper: #f3f5f7;
  --blue: #31c5ff;
  --warm: #f9b55b;
  --line: rgba(255, 255, 255, 0.14);
  --font: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--ink);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
.sr-only {
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  width: 1px;
}
.site-header {
  height: 82px;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 84px);
}
.brand {
  font: 800 18px/1 var(--display);
  letter-spacing: -0.07em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.brand em {
  font-style: normal;
  color: var(--blue);
}
.brand small {
  font: 700 7px/1 var(--display);
  letter-spacing: 0.18em;
  align-self: flex-end;
  margin: 0 0 1px 4px;
}
.brand-dot {
  width: 7px;
  height: 7px;
  border: 2px solid var(--warm);
  border-radius: 50%;
  margin-right: 4px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: #c5d3e4;
}
.main-nav > a:not(.nav-cta):hover {
  color: #fff;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 11px 16px;
  border-radius: 4px;
  color: white;
}
.nav-cta span {
  color: var(--blue);
  padding-left: 7px;
}
.menu-toggle {
  display: none;
}
.section-dark {
  background: var(--ink);
}
.section-light {
  background: var(--paper);
  color: var(--ink);
}
.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  padding: 176px clamp(22px, 9vw, 150px) 88px;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: 49%;
  z-index: 2;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #91aac6;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 21px;
}
.eyebrow span {
  display: inline-block;
  height: 1px;
  width: 31px;
  background: var(--blue);
}
.eyebrow.dark {
  color: #617186;
}
.eyebrow.dark span {
  background: #2a8fc1;
}
.hero h1,
.section-intro h2,
.projects h2,
.contact h2 {
  font: 800 clamp(43px, 5vw, 78px)/0.98 var(--display);
  letter-spacing: -0.075em;
  margin: 0;
}
.hero h1 i,
h2 i {
  color: var(--blue);
  font-style: normal;
}
.hero-text {
  font-size: 18px;
  line-height: 1.55;
  color: #b6c6d9;
  max-width: 526px;
  margin: 30px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}
.button {
  border: 0;
  font: 700 14px var(--font);
  cursor: pointer;
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 16px 19px;
  border-radius: 3px;
}
.button-primary {
  background: var(--blue);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(49, 197, 255, 0.17);
}
.button-primary span {
  font-size: 20px;
  line-height: 12px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  color: #d7e3ee;
}
.text-link span {
  color: var(--blue);
  margin-left: 7px;
}
.trust-row {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 72px;
  color: #8396ac;
  font-size: 11px;
}
.trust-row b {
  height: 14px;
  width: 1px;
  background: #4b5a6b;
}
.hero-art {
  position: absolute;
  width: 68%;
  right: -9%;
  top: 108px;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art:after {
  content: "";
  position: absolute;
  inset: 4%;
  background: linear-gradient(
    90deg,
    var(--ink) 0%,
    transparent 36%,
    transparent
  );
  z-index: 1;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.orb {
  border-radius: 50%;
  filter: blur(100px);
  position: absolute;
  opacity: 0.22;
}
.orb-one {
  width: 440px;
  height: 330px;
  background: #006ab7;
  right: 4%;
  bottom: -230px;
}
.orb-two {
  width: 250px;
  height: 240px;
  background: #724018;
  left: -100px;
  top: 220px;
}
.problems {
  padding: 130px clamp(22px, 9vw, 150px);
}
.section-intro h2 {
  color: var(--ink);
  font-size: clamp(37px, 4.2vw, 64px);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c9d0d8;
  margin-top: 72px;
}
.problem-grid article {
  padding: 31px 36px 12px 0;
  border-right: 1px solid #c9d0d8;
  margin: 0 30px 0 0;
}
.problem-grid article:last-child {
  border: 0;
  margin: 0;
}
.number {
  font: 700 12px var(--display);
  color: #2d91bf;
}
.problem-grid h3 {
  font: 800 23px var(--display);
  letter-spacing: -0.05em;
  margin: 49px 0 12px;
}
.problem-grid p {
  font-size: 15px;
  line-height: 1.55;
  color: #516174;
  max-width: 280px;
}
.answer-card {
  position: relative;
  overflow: hidden;
  margin-top: 98px;
  background: #09192e;
  color: #fff;
  padding: 75px 72px;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.answer-card > div {
  position: relative;
  z-index: 2;
  width: 50%;
}
.answer-card h2 {
  font-size: clamp(35px, 4vw, 61px);
  color: white;
}
.answer-card p:not(.eyebrow) {
  font-size: 16px;
  color: #afc1d5;
  line-height: 1.55;
  max-width: 410px;
  margin: 25px 0;
}
.answer-card img {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}
.answer-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #09192e 28%,
    rgba(9, 25, 46, 0.45) 58%,
    transparent
  );
}
.light {
  color: #fff;
}
.services {
  padding: 129px clamp(22px, 9vw, 150px);
}
.services-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 100px;
}
.services-title .eyebrow {
  grid-column: 1/-1;
}
.services-title h2 {
  color: white;
}
.services-title > p:last-child {
  align-self: end;
  color: #9eb1c8;
  max-width: 360px;
  line-height: 1.6;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.service-grid article {
  min-height: 235px;
  padding: 27px 31px 28px 0;
  margin-right: 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.service-grid article:nth-child(3n) {
  margin-right: 0;
}
.service-icon {
  color: var(--blue);
  font-size: 25px;
}
.service-grid h3 {
  font: 800 21px var(--display);
  letter-spacing: -0.045em;
  margin: 42px 0 8px;
}
.service-grid p {
  font-size: 14px;
  line-height: 1.55;
  color: #9cb0c8;
  max-width: 270px;
  margin: 0;
}
.service-grid article > span {
  position: absolute;
  right: 2px;
  top: 29px;
  font-size: 12px;
  color: #566b85;
}
.method {
  padding: 129px clamp(22px, 9vw, 150px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
}
.method-steps {
  border-top: 1px solid #c9d0d8;
}
.method-steps article {
  display: flex;
  gap: 28px;
  padding: 27px 0;
  border-bottom: 1px solid #c9d0d8;
}
.method-steps span {
  color: #2b91bf;
  font: 700 14px var(--display);
}
.method-steps h3 {
  font: 800 23px var(--display);
  letter-spacing: -0.05em;
  margin: 0 0 7px;
}
.method-steps p {
  margin: 0;
  color: #536376;
  line-height: 1.55;
  font-size: 15px;
}
.projects {
  padding: 129px clamp(22px, 9vw, 150px);
}
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.projects h2 {
  color: #fff;
}
.projects-head > p {
  color: #9eb1c8;
  max-width: 310px;
  line-height: 1.55;
  font-size: 15px;
}
.project-card {
  margin-top: 75px;
  min-height: 370px;
  background: linear-gradient(120deg, #0d2d48, #0a182b 58%, #102f43);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: end;
  padding: 53px;
  overflow: hidden;
  position: relative;
}
.project-mark {
  font: 800 clamp(31px, 4vw, 54px)/0.77 var(--display);
  letter-spacing: -0.1em;
  z-index: 1;
}
.project-mark small {
  font-size: 12px;
  letter-spacing: 0.32em;
  margin-left: 4px;
}
.project-copy {
  z-index: 1;
  max-width: 390px;
}
.project-copy p {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.project-copy h3 {
  font: 700 25px/1.17 var(--display);
  letter-spacing: -0.05em;
}
.project-copy a {
  font-size: 14px;
  font-weight: 700;
}
.project-copy a span {
  color: var(--blue);
  margin-left: 7px;
}
.project-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, #147eac 0%, rgba(8, 23, 42, 0) 68%);
  right: -5%;
  top: -30%;
  opacity: 0.8;
}
.faq {
  padding: 129px clamp(22px, 9vw, 150px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
}
.faq-list {
  border-top: 1px solid #c9d0d8;
}
.faq details {
  border-bottom: 1px solid #c9d0d8;
  padding: 23px 0;
}
.faq summary {
  font: 700 17px/1.35 var(--display);
  letter-spacing: -0.035em;
  list-style: none;
  cursor: pointer;
  padding-right: 28px;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  position: absolute;
  right: 0;
  font-size: 24px;
  font-weight: 400;
  color: #2a90be;
  top: -5px;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 14px;
  color: #556578;
  line-height: 1.6;
  margin: 15px 22px 0 0;
}
.contact {
  padding: 128px clamp(22px, 9vw, 150px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.contact-copy {
  z-index: 1;
}
.contact h2 {
  font-size: clamp(39px, 4vw, 64px);
  color: #fff;
}
.contact-copy > p:last-child {
  color: #a9bdd2;
  line-height: 1.55;
  font-size: 16px;
  max-width: 390px;
  margin-top: 25px;
}
.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  color: #b3c7dc;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding: 11px 0;
  background: transparent;
  color: #fff;
  font: 16px var(--font);
  outline: 0;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6e849d;
}
.contact-form .button {
  align-self: start;
  margin-top: 8px;
}
.form-note {
  font-size: 11px;
  color: #778fa9;
  margin: 0;
}
.contact-orb {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  right: -260px;
  bottom: -350px;
  background: radial-gradient(
    circle,
    rgba(15, 127, 192, 0.48),
    transparent 68%
  );
}
footer {
  background: #040b15;
  padding: 45px clamp(22px, 5vw, 84px);
  display: flex;
  align-items: center;
  gap: 28px;
  color: #8ea4bd;
  font-size: 13px;
}
footer p {
  margin: 0;
}
footer > a:not(.brand) {
  margin-left: auto;
  color: #d8e4ef;
  font-weight: 600;
}
footer small:last-child {
  font-size: 10px;
  color: #687f98;
}
@media (max-width: 820px) {
  .site-header {
    height: 68px;
    padding: 0 22px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #08182d;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px 24px;
    gap: 20px;
    border-top: 1px solid var(--line);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-cta {
    text-align: center;
  }
  .menu-toggle {
    display: flex;
    border: 0;
    background: transparent;
    padding: 7px;
    flex-direction: column;
    gap: 4px;
  }
  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: #fff;
  }
  .hero {
    min-height: 735px;
    padding: 136px 22px 52px;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-text {
    font-size: 16px;
    max-width: 470px;
  }
  .hero-art {
    width: 125%;
    right: -53%;
    top: 335px;
    height: 390px;
    opacity: 0.75;
  }
  .hero-art:after {
    background: linear-gradient(180deg, var(--ink), transparent 36%);
  }
  .trust-row {
    margin-top: 42px;
    max-width: 290px;
    flex-wrap: wrap;
    gap: 7px;
  }
  .problems,
  .services,
  .method,
  .projects,
  .faq,
  .contact {
    padding: 83px 22px;
  }
  .problem-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    margin-top: 45px;
  }
  .problem-grid article {
    padding: 22px 0;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid #c9d0d8;
  }
  .problem-grid h3 {
    margin: 20px 0 7px;
  }
  .answer-card {
    margin-top: 55px;
    padding: 42px 28px;
    min-height: 530px;
    align-items: flex-start;
  }
  .answer-card > div {
    width: 100%;
  }
  .answer-card img {
    width: 120%;
    height: 45%;
    bottom: 0;
    top: auto;
  }
  .answer-card:after {
    background: linear-gradient(
      180deg,
      #09192e 42%,
      rgba(9, 25, 46, 0.25) 81%,
      transparent
    );
  }
  .services-title,
  .method,
  .faq,
  .contact {
    display: block;
  }
  .services-title > p:last-child {
    margin-top: 22px;
  }
  .service-grid {
    margin-top: 48px;
  }
  .service-grid article {
    min-height: 174px;
    margin: 0;
  }
  .service-grid h3 {
    margin: 24px 0 7px;
  }
  .method-steps {
    margin-top: 48px;
  }
  .projects-head {
    display: block;
  }
  .projects-head > p {
    margin-top: 22px;
  }
  .project-card {
    grid-template-columns: 1fr;
    gap: 72px;
    padding: 30px;
    margin-top: 48px;
    min-height: 420px;
  }
  .faq-list {
    margin-top: 48px;
  }
  .contact-form {
    margin-top: 54px;
  }
  .contact h2 {
    font-size: 42px;
  }
  footer {
    padding: 36px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  footer p {
    width: 100%;
  }
  footer > a:not(.brand) {
    margin-left: 0;
  }
  footer small:last-child {
    width: 100%;
  }
}

.brand-logo {
  display: inline-flex;
  width: 208px;
  height: 58px;
  align-items: center;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.brand-icon {
  width: 235px;
  height: 66px;
}
.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.hero-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  max-width: 480px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-services a {
  font-size: 13px;
  font-weight: 700;
  color: #d3e0ec;
}
.hero-services b {
  margin-right: 8px;
  color: var(--blue);
  font: 700 10px var(--display);
}
@media (max-width: 820px) {
  .brand-icon img {
    width: 100%;
    height: 100%;
  }
  .brand-icon { width: 180px; height: 51px; }
  .brand-logo {
    width: 170px;
    height: 48px;
  }
  .hero-services {
    max-width: 330px;
    gap: 10px 13px;
    margin-top: 28px;
  }
  .hero-services a {
    font-size: 12px;
  }
  .hero {
    min-height: 795px;
  }
  .hero-art {
    top: 390px;
  }
  .trust-row {
    margin-top: 29px;
  }
}
