@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap";

:root {
  --night: #020914;
  --navy: #061225;
  --panel: #07182b;
  --panel2: #0a2037;
  --cyan: #28d9ff;
  --blue: #168cff;
  --gold: #e5ab37;
  --green: #46df8c;
  --white: #f3f7fb;
  --muted: #8da5bb;
  --line: #28d9ff38;
  --paper: #f3f5f6;
  --ink: #07182b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--night);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Manrope, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

.topbar {
  z-index: 20;
  backdrop-filter: blur(14px);
  background: #020914a3;
  border-bottom: 1px solid #ffffff14;
  align-items: center;
  gap: 42px;
  height: 92px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.brand {
  align-items: center;
  gap: 12px;
  margin-right: auto;
  display: flex;
}

.brand img {
  object-fit: cover;
  border: 1px solid #28d9ff73;
  border-radius: 50%;
  width: 63px;
  height: 63px;
}

.brand span {
  flex-direction: column;
  display: flex;
}

.brand b {
  letter-spacing: .05em;
  font: 700 16px / 1 Space Mono;
}

.brand small {
  letter-spacing: .15em;
  color: var(--cyan);
  margin-top: 7px;
  font: 400 8px Space Mono;
}

.topbar nav {
  gap: 38px;
  display: flex;
}

.topbar nav a {
  color: #ced9e3;
  font-size: 13px;
  position: relative;
}

.topbar nav a:after {
  content: "";
  background: var(--gold);
  width: 0;
  height: 1px;
  transition: all .3s;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.topbar nav a:hover:after {
  width: 100%;
}

.topCta {
  letter-spacing: .07em;
  border: 1px solid #e5ab3799;
  padding: 13px 18px;
  font: 600 10px Space Mono;
}

.topCta span {
  color: var(--gold);
  margin-left: 9px;
}

.menuBtn {
  color: #fff;
  background: none;
  border: 0;
  font-size: 24px;
  display: none;
}

.hero {
  background: radial-gradient(circle at 76% 42%, #0e66a033, #0000 38%), linear-gradient(115deg, #020914 0%, #041224 55%, #020914 100%);
  grid-template-columns: minmax(390px, .62fr) minmax(650px, 1.38fr);
  align-items: center;
  gap: 52px;
  min-height: 900px;
  padding: 150px clamp(22px, 5vw, 76px) 100px;
  display: grid;
  position: relative;
}

.gridLines {
  background-image: linear-gradient(#28d9ff09 1px, #0000 1px), linear-gradient(90deg, #28d9ff09 1px, #0000 1px);
  background-size: 54px 54px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#0000 4%, #000 38%, #0000 98%);
}

.heroOrbit {
  border: 1px solid #28d9ff33;
  border-radius: 50%;
  width: 760px;
  height: 260px;
  animation: 6s ease-in-out infinite orbitPulse;
  position: absolute;
  bottom: 65px;
  right: -80px;
  transform: rotate(-7deg);
  box-shadow: 0 0 100px #28d9ff26, inset 0 0 60px #28d9ff1a;
}

.heroOrbit:before, .heroOrbit:after {
  content: "";
  border: 1px solid #e5ab3733;
  border-radius: 50%;
  position: absolute;
  inset: 24px;
}

.heroOrbit:after {
  border-color: #28d9ff40;
  inset: 54px;
}

.heroCopy {
  z-index: 3;
  position: relative;
}

.eyebrow {
  letter-spacing: .16em;
  color: var(--cyan);
  align-items: center;
  gap: 10px;
  font: 700 10px Space Mono;
  display: flex;
}

.eyebrow i {
  background: var(--gold);
  width: 30px;
  height: 1px;
}

h1, h2, h3 {
  margin: 0;
}

h1 {
  letter-spacing: -.055em;
  margin: 26px 0;
  font-size: clamp(54px, 5.3vw, 82px);
  font-weight: 600;
  line-height: 1.02;
}

h1 em, h2 em {
  color: var(--gold);
  font-style: normal;
}

.heroCopy > p:not(.eyebrow) {
  color: #aebecd;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.65;
}

.heroCta {
  border: 1px solid var(--gold);
  width: min(100%, 350px);
  color: var(--gold);
  letter-spacing: .04em;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 18px 20px;
  font: 700 11px Space Mono;
  transition: all .3s;
  display: flex;
}

.heroCta:hover {
  color: #08111e;
  background: var(--gold);
  box-shadow: 0 0 30px #e5ab3738;
}

.heroCta span {
  font-size: 22px;
}

.heroTrust {
  letter-spacing: .09em;
  color: #8195a8;
  align-items: center;
  gap: 11px;
  margin-top: 31px;
  font: 400 8px Space Mono;
  display: flex;
}

.heroTrust i {
  background: var(--cyan);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}

.dashboardWrap {
  z-index: 4;
  perspective: 1400px;
  position: relative;
}

.dashboardWrap .financeCommand {
  animation: 1.1s both dashEnter;
  transform: rotateY(-1deg)rotateX(.6deg);
}

.financeCommand {
  background: linear-gradient(145deg, #06182bf5, #020c19f5);
  border: 1px solid #28d9ff8c;
  border-radius: 13px;
  grid-template-columns: 58px 1fr;
  min-width: 0;
  display: grid;
  overflow: hidden;
  box-shadow: 0 32px 90px #00000080, 0 0 45px #28d9ff14;
}

.dashRail {
  border-right: 1px solid var(--line);
  background: #04101ecc;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 13px 8px;
  display: flex;
}

.railMark {
  border: 1px solid var(--cyan);
  width: 37px;
  height: 37px;
  color: var(--cyan);
  place-items: center;
  margin-bottom: 8px;
  font: 700 17px Space Mono;
  display: grid;
}

.dashRail span {
  color: #7693a9;
  border: 1px solid #0000;
  border-radius: 6px;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 15px;
  display: grid;
}

.dashRail span.active {
  color: var(--cyan);
  background: #28d9ff17;
  border-color: #28d9ff4d;
}

.dashMain {
  min-width: 0;
  padding: 14px;
}

.dashTop {
  color: #e4edf4;
  letter-spacing: .09em;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  font: 400 10px Space Mono;
  display: flex;
}

.dashTop div {
  align-items: center;
  gap: 9px;
  display: flex;
}

.dashTop b {
  font-weight: 700;
}

.dashTop i {
  background: var(--gold);
  width: 5px;
  height: 5px;
  box-shadow: 0 0 10px var(--gold);
  border-radius: 50%;
}

.dashTop > span {
  color: #8fa7b9;
  border: 1px solid #28d9ff26;
  border-radius: 5px;
  padding: 7px 9px;
  font-size: 7px;
}

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

.metric {
  background: linear-gradient(145deg, #081f35cc, #041221bf);
  border: 1px solid #28d9ff61;
  border-radius: 9px;
  min-height: 157px;
  padding: 12px;
  overflow: hidden;
}

.metric header {
  letter-spacing: .03em;
  color: #e7eef4;
  justify-content: space-between;
  font: 700 9px Space Mono;
  display: flex;
}

.metric header small {
  color: #7992a6;
  font-size: 6px;
  font-weight: 400;
}

.metric .big {
  margin-top: 16px;
  font: 500 18px Space Mono;
  display: block;
}

.metric > span, .invoiceBody span, .vatBody span {
  color: #8298aa;
  margin-top: 4px;
  font-size: 7px;
  display: block;
}

.cyanText {
  color: var(--cyan);
}

.goldText {
  color: var(--gold);
}

.invoiceBody, .vatBody, .expenseBody {
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  display: flex;
}

.invoiceBody > div:last-child, .vatBody > div:last-child {
  flex: 1;
}

.invoiceBody b {
  font: 500 13px Space Mono;
}

.invoiceBody em {
  color: #8ca1b2;
  margin-top: 8px;
  font-size: 6px;
  font-style: normal;
  display: block;
}

.invoiceBody em i {
  width: 5px;
  height: 5px;
  margin-right: 4px;
  display: inline-block;
}

.green {
  background: var(--green);
}

.gold {
  background: var(--gold);
}

.ring {
  background: conic-gradient(var(--cyan) 0 69%,#ffffff14 69%);
  border-radius: 50%;
  width: 71px;
  height: 71px;
  padding: 8px;
}

.ring.multi {
  background: conic-gradient(var(--green) 0 69%,var(--gold) 69% 92%,#ffffff14 92%);
}

.ring.green {
  background: conic-gradient(var(--green) 0 84%,#ffffff14 84%);
}

.ring > div {
  text-align: center;
  background: #07182b;
  border-radius: 50%;
  place-content: center;
  width: 100%;
  height: 100%;
  display: grid;
}

.ring strong {
  font: 700 12px Space Mono;
}

.ring span {
  color: #8196a8;
  font: 400 5px Space Mono;
}

.lineChart {
  background: repeating-linear-gradient(#0000 0 21px, #ffffff0a 22px);
  height: 66px;
  margin-top: 8px;
}

.lineChart svg {
  width: 100%;
  height: 100%;
}

.lineChart .area {
  fill: url("#area");
}

.lineChart .line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2px;
  filter: drop-shadow(0 0 4px var(--cyan));
  stroke-dasharray: 500;
  animation: 1.6s both draw;
}

.cash > span {
  justify-content: space-between;
  display: flex;
}

.cash > span em {
  color: var(--green);
  border: 1px solid #46df8c4d;
  padding: 2px 4px;
  font-style: normal;
}

.vatBody b {
  color: var(--green);
  font: 500 12px Space Mono;
  display: block;
}

.vatBody button {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: none;
  width: 100%;
  margin-top: 12px;
  padding: 6px 7px;
  font-size: 6px;
}

.aging {
  margin-top: 12px;
}

.aging label {
  color: #8298aa;
  grid-template-columns: 52px 1fr 48px;
  align-items: center;
  gap: 5px;
  margin: 7px 0;
  font-size: 6px;
  display: grid;
}

.aging label > i {
  background: linear-gradient(90deg,var(--cyan),var(--green));
  border-radius: 4px;
  height: 5px;
}

.aging label:nth-child(2) > i {
  background: var(--gold);
}

.aging label:nth-child(3) > i {
  background: #f07b37;
}

.aging label:nth-child(4) > i {
  background: #e44d45;
}

.aging label b {
  text-align: right;
  font-weight: 400;
}

.donut {
  background: conic-gradient(var(--blue) 0 45%,#59b8ff 45% 70%,var(--gold) 70% 85%,#1b597e 85%);
  border-radius: 50%;
  width: 67px;
  height: 67px;
  position: relative;
}

.donut:after {
  content: "";
  background: #07182b;
  border-radius: 50%;
  position: absolute;
  inset: 17px;
}

.expenseBody ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expenseBody li {
  color: #8da3b4;
  align-items: center;
  gap: 5px;
  margin: 6px 0;
  font-size: 6px;
  display: flex;
}

.expenseBody li i {
  background: var(--blue);
  width: 5px;
  height: 5px;
}

.expenseBody li:nth-child(2) i {
  background: var(--gold);
}

.expenseBody li:nth-child(3) i {
  background: var(--green);
}

.expenseBody li b {
  color: #cbd6df;
  margin-left: auto;
}

.reportBars {
  gap: 8px;
  margin-top: 17px;
  display: grid;
}

.reportBars i {
  background: linear-gradient(90deg,var(--blue) 0 78%,#ffffff0d 78%);
  height: 6px;
}

.reportBars i:nth-child(2) {
  background: linear-gradient(90deg,var(--cyan) 0 62%,#ffffff0d 62%);
}

.reportBars i:nth-child(3) {
  background: linear-gradient(90deg,var(--blue) 0 51%,#ffffff0d 51%);
}

.reportBars i:nth-child(4) {
  background: linear-gradient(90deg,var(--gold) 0 36%,#ffffff0d 36%);
}

.demoNote {
  letter-spacing: .08em;
  color: #5f788d;
  text-align: right;
  margin: 8px 2px 0;
  font: 400 6px Space Mono;
}

.capabilityRail {
  z-index: 5;
  backdrop-filter: blur(10px);
  background: #020914c2;
  border-top: 1px solid #ffffff1a;
  grid-template-columns: repeat(4, 1fr);
  height: 84px;
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.capabilityRail span {
  color: var(--cyan);
  border-right: 1px solid #ffffff14;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 25px;
  display: flex;
}

.capabilityRail b {
  letter-spacing: .12em;
  color: #aebdca;
  font: 500 10px Space Mono;
}

.section {
  background: var(--paper);
  color: var(--ink);
  padding: 120px clamp(22px, 7vw, 110px);
}

.sectionHead {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
  display: grid;
}

.sectionHead > p:last-child {
  color: #607181;
  max-width: 520px;
  line-height: 1.75;
}

.eyebrow.dark {
  color: #0a75a4;
}

.section h2, .zohoCopy h2, .about h2, .contact h2 {
  letter-spacing: -.055em;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
}

.expertiseGrid {
  border-top: 1px solid #d9e1e5;
  border-left: 1px solid #d9e1e5;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.expertiseGrid article {
  background: #fff;
  border-bottom: 1px solid #d9e1e5;
  border-right: 1px solid #d9e1e5;
  min-height: 310px;
  padding: 32px;
  transition: all .3s;
  position: relative;
}

.expertiseGrid article:hover {
  color: #fff;
  background: #07182b;
  transform: translateY(-4px);
  box-shadow: 0 24px 55px -35px #07182b;
}

.expertiseGrid article > span {
  color: #91a0aa;
  font: 400 10px Space Mono;
  position: absolute;
  top: 25px;
  right: 25px;
}

.hex {
  color: #0b9ccc;
  margin-bottom: 34px;
  font-size: 30px;
}

.expertiseGrid h3 {
  font-size: 19px;
}

.expertiseGrid p {
  color: #6b7a86;
  min-height: 89px;
  font-size: 13px;
  line-height: 1.7;
}

.expertiseGrid article:hover p {
  color: #9fb2c1;
}

.expertiseGrid a {
  letter-spacing: .09em;
  color: #0a80b2;
  font: 700 9px Space Mono;
}

.expertiseGrid a b {
  color: var(--gold);
}

.zohoSection {
  background: radial-gradient(circle at 80%, #168cff2e, #0000 38%), #020b18;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 70px;
  padding: 120px clamp(22px, 6vw, 92px);
  display: grid;
  position: relative;
}

.zohoSection:before {
  content: "";
  background-image: linear-gradient(#28d9ff0a 1px, #0000 1px), linear-gradient(90deg, #28d9ff0a 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(90deg, #0000, #000);
}

.zohoCopy {
  z-index: 2;
  position: relative;
}

.zohoCopy > p:not(.eyebrow) {
  color: #93a9bb;
  line-height: 1.7;
}

.zohoCopy ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.zohoCopy li {
  color: #c2d0db;
  border-bottom: 1px solid #ffffff14;
  padding: 11px 0 11px 21px;
  font-size: 12px;
  position: relative;
}

.zohoCopy li:before {
  content: "›";
  color: var(--cyan);
  position: absolute;
  left: 0;
}

.zohoCopy > a {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: .08em;
  gap: 35px;
  padding: 10px 0;
  font: 700 10px Space Mono;
  display: inline-flex;
}

.zohoStage {
  z-index: 2;
  perspective: 1200px;
  position: relative;
}

.financeCommand.compact {
  transform-origin: 100%;
  transform: rotateY(-3deg);
}

.financeCommand.compact .metric {
  min-height: 140px;
}

.solutions {
  background: #fff;
}

.flow {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  display: grid;
}

.flow > i {
  color: #05a8dd;
  margin: 0 18px;
  font-size: 30px;
  font-style: normal;
}

.flow article {
  background: #f5f7f8;
  border-top: 2px solid #0b94c1;
  min-height: 220px;
  padding: 28px;
}

.flow article span {
  color: #0b94c1;
  font: 700 10px Space Mono;
}

.flow article b {
  margin: 45px 0 12px;
  font: 700 14px Space Mono;
  display: block;
}

.flow article p {
  color: #647684;
  font-size: 12px;
  line-height: 1.65;
}

.about {
  background: linear-gradient(135deg, #07182b, #0b2c49);
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 120px clamp(22px, 7vw, 110px);
  display: grid;
}

.about > div > p:not(.eyebrow) {
  color: #9bb0c0;
  max-width: 530px;
  line-height: 1.8;
}

.stats {
  border-top: 1px solid #ffffff1f;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  display: grid;
}

.stats span {
  color: #90a8ba;
  padding: 25px 12px 0 0;
  font-size: 9px;
}

.stats b {
  color: var(--gold);
  margin-bottom: 6px;
  font: 600 24px Space Mono;
  display: block;
}

.contact {
  background: #030b16;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  padding: 120px clamp(22px, 7vw, 110px);
  display: grid;
}

.contactInfo > p:not(.eyebrow) {
  color: #91a7b9;
  max-width: 480px;
  line-height: 1.75;
}

.contactInfo > a, .contactInfo > span {
  color: #c2d1dd;
  margin-top: 14px;
  font-size: 13px;
  display: block;
}

.contact form {
  border: 1px solid var(--line);
  background: #07182ba6;
  padding: 38px;
}

.fieldRow {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid;
}

.contact label {
  letter-spacing: .08em;
  color: #728da2;
  flex-direction: column;
  margin-bottom: 24px;
  font: 700 8px Space Mono;
  display: flex;
}

.contact input, .contact select, .contact textarea {
  color: #fff;
  background: none;
  border: 0;
  border-bottom: 1px solid #ffffff24;
  outline: none;
  padding: 12px 0;
}

.contact option {
  color: #07182b;
}

.contact textarea {
  resize: vertical;
  height: 90px;
}

.contact form button {
  border: 1px solid var(--gold);
  width: 100%;
  color: var(--gold);
  letter-spacing: .08em;
  background: none;
  padding: 16px;
  font: 700 10px Space Mono;
}

.contact form button span {
  margin-left: 15px;
}

.success {
  color: var(--green);
  font-size: 11px;
}

footer {
  color: #71889b;
  letter-spacing: .09em;
  background: #010711;
  align-items: center;
  gap: 50px;
  min-height: 100px;
  padding: 20px clamp(22px, 5vw, 76px);
  font: 400 8px Space Mono;
  display: flex;
}

footer .brand img {
  width: 48px;
  height: 48px;
}

footer p:last-child {
  margin-left: auto;
}

.whatsapp {
  color: #fff;
  z-index: 20;
  background: #21b466;
  border-radius: 50%;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 23px;
  display: grid;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 0 30px #21b4664d;
}

@keyframes draw {
  from {
    stroke-dashoffset: 500px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dashEnter {
  from {
    opacity: 0;
    transform: translateY(20px)rotateY(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0)rotateY(-1deg);
  }
}

@keyframes orbitPulse {
  50% {
    transform: rotate(-7deg)scale(1.03);
    box-shadow: 0 0 150px #28d9ff36;
  }
}

@media (width <= 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .heroCopy {
    max-width: 720px;
  }

  .dashboardWrap {
    margin-bottom: 80px;
  }

  .zohoSection {
    grid-template-columns: 1fr;
  }

  .zohoCopy {
    max-width: 680px;
  }

  .financeCommand.compact {
    transform: none;
  }

  .topbar nav {
    gap: 22px;
  }

  .topCta {
    display: none;
  }
}

@media (width <= 820px) {
  .topbar {
    height: 78px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .topbar nav {
    background: #041224;
    flex-direction: column;
    padding: 24px;
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
  }

  .topbar nav.open {
    display: flex;
  }

  .menuBtn {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 125px 20px 100px;
  }

  .dashboardWrap {
    overflow-x: auto;
  }

  .financeCommand {
    min-width: 730px;
  }

  .capabilityRail {
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin: 50px -20px -100px;
    position: relative;
  }

  .capabilityRail span {
    height: 68px;
  }

  .sectionHead, .about, .contact {
    grid-template-columns: 1fr;
  }

  .expertiseGrid {
    grid-template-columns: 1fr 1fr;
  }

  .flow {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .flow > i {
    display: none;
  }

  .section, .zohoSection, .about, .contact {
    padding: 80px 20px;
  }

  .contact {
    gap: 55px;
  }
}

@media (width <= 560px) {
  h1 {
    font-size: 50px;
  }

  .heroTrust {
    flex-wrap: wrap;
  }

  .capabilityRail, .expertiseGrid {
    grid-template-columns: 1fr;
  }

  .sectionHead {
    gap: 20px;
    margin-bottom: 45px;
  }

  .section h2, .zohoCopy h2, .about h2, .contact h2 {
    font-size: 40px;
  }

  .financeCommand {
    min-width: 670px;
  }

  .flow, .fieldRow, .stats {
    grid-template-columns: 1fr;
  }

  .stats span {
    padding-bottom: 15px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  footer p {
    margin: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
  }
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 72%, #28d9ff17, #0000 38%);
  position: absolute;
  inset: 0;
}

.pictureStage {
  border: 1px solid #28d9ff5c;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 35px 90px #0000008c, 0 0 50px #28d9ff1a;
}

.pictureStage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.automationSummary {
  z-index: 2;
  border: 1px solid #28d9ff2e;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  position: relative;
}

.automationSummary span {
  letter-spacing: .08em;
  color: #a9bdcc;
  border-right: 1px solid #28d9ff2e;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 28px;
  font: 700 10px Space Mono;
  display: flex;
}

.automationSummary span:last-child {
  border: 0;
}

.automationSummary b {
  color: var(--cyan);
  margin-bottom: 18px;
  font-size: 28px;
}

.switchPage {
  color: var(--gold);
  letter-spacing: .08em;
  border-bottom: 1px solid var(--gold);
  margin-top: 35px;
  padding-bottom: 9px;
  font: 700 10px Space Mono;
  display: inline-block;
}

.routeBar {
  position: absolute;
}

.routeHero {
  align-items: center;
  min-height: 900px;
  padding: 145px clamp(22px, 6vw, 96px) 120px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.routeHero:after {
  content: "";
  background: linear-gradient(90deg, #020914f7 0%, #020914c2 37%, #02091426 76%), linear-gradient(0deg, #020914 0%, #0000 30%);
  position: absolute;
  inset: 0;
}

.routeHeroImage {
  position: absolute;
  inset: 0;
}

.routeHeroImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.routeHeroCopy {
  z-index: 3;
  max-width: 760px;
  position: relative;
}

.routeHero h1 {
  font-size: clamp(58px, 6.5vw, 100px);
}

.routeHeroCopy > p:not(.eyebrow) {
  color: #afc1cf;
  max-width: 650px;
  line-height: 1.8;
}

.zoneTicker {
  z-index: 4;
  backdrop-filter: blur(10px);
  background: #020914d9;
  border-top: 1px solid #28d9ff33;
  grid-template-columns: repeat(6, 1fr);
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.zoneTicker span {
  letter-spacing: .08em;
  color: #a8bdcc;
  border-right: 1px solid #ffffff14;
  place-items: center;
  height: 82px;
  font: 700 9px Space Mono;
  display: grid;
}

.zoneIntro {
  color: var(--ink);
  background: #f4f6f7;
  grid-template-columns: .55fr 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding: 110px clamp(22px, 7vw, 110px);
  display: grid;
}

.zoneIntro h2 {
  letter-spacing: -.05em;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}

.zoneIntro > p:last-child {
  color: #657784;
  line-height: 1.75;
}

.zoneGrid {
  background: #061225;
  grid-template-columns: repeat(3, 1fr);
  padding: 1px;
  display: grid;
}

.zoneGrid article {
  background: linear-gradient(145deg, #07182b, #04111f);
  border: 1px solid #28d9ff21;
  min-height: 390px;
  padding: 38px;
  transition: all .35s;
  position: relative;
}

.zoneGrid article:hover {
  z-index: 2;
  border-color: #28d9ff8c;
  transform: translateY(-7px);
  box-shadow: 0 25px 70px #00000073;
}

.zoneGrid article > span {
  color: var(--cyan);
  font: 700 11px Space Mono;
  position: absolute;
  top: 25px;
  right: 28px;
}

.zoneGrid small {
  letter-spacing: .12em;
  color: var(--gold);
  font: 700 8px Space Mono;
}

.zoneGrid h2 {
  margin: 55px 0 18px;
  font-size: 27px;
}

.zoneGrid p {
  color: #91a6b7;
  min-height: 95px;
  font-size: 13px;
  line-height: 1.75;
}

.zoneGrid b {
  color: #69869b;
  letter-spacing: .09em;
  font: 700 8px Space Mono;
  display: block;
}

.zoneGrid a {
  color: var(--cyan);
  letter-spacing: .08em;
  margin-top: 35px;
  font: 700 9px Space Mono;
  display: inline-block;
}

.fzProcess {
  background: #020914;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  padding: 120px clamp(22px, 7vw, 110px);
  display: grid;
}

.fzProcess h2 {
  font-size: clamp(45px, 5vw, 70px);
  line-height: 1.05;
}

.fzProcess ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fzProcess li {
  border-bottom: 1px solid #ffffff1a;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px 0;
  display: grid;
}

.fzProcess li > b {
  color: var(--gold);
  font: 700 12px Space Mono;
}

.fzProcess li span {
  color: #93a9ba;
  font-size: 13px;
}

.fzProcess li strong {
  color: #fff;
  margin-bottom: 6px;
  font-size: 16px;
  display: block;
}

.fzWhy {
  color: var(--ink);
  background: #f3f5f6;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  padding: 110px clamp(22px, 7vw, 110px);
  display: grid;
}

.fzWhy h2 {
  letter-spacing: -.05em;
  font-size: 56px;
}

.fzWhyGrid {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.fzWhyGrid article {
  border: 1px solid #dae2e6;
  padding: 28px;
}

.fzWhyGrid b {
  color: #0b7ba7;
  font: 700 9px Space Mono;
}

.fzWhyGrid p {
  color: #677986;
  font-size: 13px;
  line-height: 1.7;
}

.compactContact {
  padding-top: 90px;
  padding-bottom: 90px;
}

.servicesHero {
  background: radial-gradient(circle at 80%, #28d9ff2e, #0000 30%), linear-gradient(135deg, #020914, #071c31);
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  min-height: 720px;
  padding: 170px clamp(22px, 7vw, 110px) 100px;
  display: grid;
}

.servicesHero > div:first-child {
  max-width: 850px;
}

.servicesHero h1 {
  font-size: clamp(62px, 7vw, 108px);
}

.servicesHero > div > p:not(.eyebrow) {
  color: #9cb0c1;
  max-width: 700px;
  line-height: 1.8;
}

.serviceOrb {
  border: 1px solid var(--cyan);
  text-align: center;
  border-radius: 50%;
  place-content: center;
  justify-self: center;
  width: 300px;
  height: 300px;
  display: grid;
  position: relative;
  box-shadow: 0 0 80px #28d9ff29, inset 0 0 60px #28d9ff14;
}

.serviceOrb:before, .serviceOrb:after {
  content: "";
  border: 1px solid #e5ab374d;
  border-radius: 50%;
  position: absolute;
  inset: 22px;
}

.serviceOrb:after {
  border-color: #28d9ff40;
  inset: 55px;
}

.serviceOrb span {
  color: var(--gold);
  font: 700 80px Space Mono;
}

.serviceOrb b {
  letter-spacing: .13em;
  color: #91a9ba;
  font: 700 10px Space Mono;
}

.serviceDirectory {
  color: var(--ink);
  background: #f4f6f7;
  grid-template-columns: repeat(3, 1fr);
  padding: 90px clamp(22px, 6vw, 92px);
  display: grid;
}

.serviceDirectory article {
  background: #fff;
  border: 1px solid #dbe3e7;
  min-height: 300px;
  padding: 32px;
  position: relative;
}

.serviceDirectory article > span {
  color: #0b9dcc;
  font: 700 10px Space Mono;
}

.serviceDirectory p {
  color: #687986;
  min-height: 92px;
  font-size: 13px;
  line-height: 1.75;
}

.serviceDirectory a {
  color: #0b83ad;
  letter-spacing: .07em;
  font: 700 9px Space Mono;
}

.servicePromise {
  background: #07182b;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
  padding: 100px clamp(22px, 7vw, 110px);
  display: grid;
}

.servicePromise h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
}

.servicePromise h2 em {
  color: var(--gold);
  font-style: normal;
}

.servicePromise p {
  color: #96aaba;
  line-height: 1.8;
}

@media (width <= 900px) {
  .pictureStage {
    height: 430px;
  }

  .routeHero {
    min-height: 800px;
  }

  .zoneTicker {
    grid-template-columns: 1fr 1fr;
  }

  .zoneTicker span {
    height: 45px;
  }

  .zoneIntro, .fzProcess, .fzWhy, .servicesHero, .servicePromise {
    grid-template-columns: 1fr;
  }

  .zoneGrid, .serviceDirectory {
    grid-template-columns: 1fr 1fr;
  }

  .fzWhyGrid {
    grid-template-columns: 1fr;
  }

  .serviceOrb, .routeBar nav {
    display: none;
  }
}

@media (width <= 600px) {
  .zoneGrid, .serviceDirectory {
    grid-template-columns: 1fr;
  }

  .routeHero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .routeHero h1 {
    font-size: 50px;
  }

  .zoneIntro, .fzProcess, .fzWhy, .servicesHero, .serviceDirectory, .servicePromise {
    padding-left: 20px;
    padding-right: 20px;
  }

  .zoneIntro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .servicesHero h1 {
    font-size: 52px;
  }
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.expertiseGrid article {
  min-height: 245px;
}

.expertiseGrid p {
  min-height: 55px;
}

.zohoSection {
  grid-template-columns: 1fr .75fr;
  padding-top: 90px;
  padding-bottom: 90px;
}

.flow article {
  min-height: 185px;
}

.about {
  padding-top: 90px;
  padding-bottom: 90px;
}

.servicesHero {
  min-height: 590px;
  padding-top: 145px;
  padding-bottom: 70px;
}

.serviceOrb {
  width: 220px;
  height: 220px;
}

.serviceOrb span {
  font-size: 58px;
}

.serviceDirectory {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 70px;
  padding-bottom: 70px;
}

.serviceDirectory article {
  min-height: 230px;
  padding: 26px;
}

.serviceDirectory h2 {
  margin: 28px 0 12px;
  font-size: 19px;
}

.serviceDirectory p {
  min-height: 62px;
  line-height: 1.55;
}

.zoneGrid article {
  min-height: 330px;
}

.zoneGrid p {
  min-height: 70px;
}

.fzProcess, .fzWhy, .zoneIntro {
  padding-top: 85px;
  padding-bottom: 85px;
}

@media (width <= 1100px) {
  .serviceDirectory {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 820px) {
  .zohoSection {
    grid-template-columns: 1fr;
  }

  .automationSummary {
    margin-top: 25px;
  }
}

@media (width <= 600px) {
  .serviceDirectory, .automationSummary {
    grid-template-columns: 1fr;
  }

  .automationSummary span {
    border-bottom: 1px solid #28d9ff2e;
    border-right: 0;
    min-height: 90px;
  }
}

.formStatus{margin:16px 0 0;font-size:12px}.formStatus.error{color:#ff8b84}.contact form button:disabled{opacity:.55;cursor:wait}
