@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");

:root {
  --blue: #0787ff;
  --deep: #06102e;
  --sky: #eaf7ff;
  --line: rgba(6, 16, 46, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--deep);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.section-wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 30px;
  left: 50%;
  /* width: min(1320px, calc(100% - 64px)); */
  width: 100%;
  padding-inline: 60px;
  /* height: 94px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  color: #fff;
}

.brand {
  display: inline-flex;
  width: 140px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.brand:not(.brand-light) img {
  filter: brightness(0) saturate(100%);
  opacity: .86;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 80px;
  font-size: 20px;
  font-weight: 600;
}

.site-header nav>a {
  position: relative;
  /* opacity: .86; */
}

.nav-cta {
  padding: 16px 30px;
  border-radius: 999px;
  background: #fff;
  color: #087deb;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 84% 70%, #00d8ee 0, transparent 35%), linear-gradient(125deg, #0713ed 0%, #007eff 47%, #25e2ef 100%);
}

.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.hero .section-video {
  z-index: 0;
  opacity: 1;
}

.hero-blend {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: url("../assets/images/hero-bg-blend.svg") center / cover no-repeat;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

@keyframes oceanFlow {
  to {
    transform: translate3d(7vw, -6vh, 0) rotate(35deg) scale(1.12);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  /* width: min(1180px, calc(100% - 56px)); */
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(260px, 42vh, 430px);
  padding-inline: 60px;
}

.hero h1 {
  margin: 0;
  /* max-width: 820px; */
  font-size: clamp(46px, 5vw, 100px);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 60px;
  bottom: 24px;
  width: 44px;
  height: 120px;
}

.scroll-cue i {
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 105px;
  background: rgba(255, 255, 255, .5);
  transform: translateX(-50%);
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #ffffff;
  animation: scrollCueProgress 1.8s cubic-bezier(.45, 0, .2, 1) infinite;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -1px;
  width: 18px;
  height: 18px;
  border-right: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

@keyframes scrollCueProgress {
  0% {
    transform: translateY(0);
    opacity: 0;
    height: 12px;
  }


  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(44px);
    opacity: 0;
    height: 64px;
  }
}

.page-indicator {
  position: fixed;
  z-index: 30;
  right: 60px;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  transform: translateY(-50%);
}

.page-indicator button {
  display: flex;
  width: 44px;
  height: 17px;
  padding: 6px;
  align-items: center;
  justify-content: flex-end;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.page-indicator i {
  display: block;
  width: 24px;
  height: 5px;
  background: currentColor;
  opacity: .22;
  transition: color .35s ease, opacity .35s ease, width .35s ease;
}

.page-indicator.theme-light {
  color: #fff;
}

.page-indicator.theme-dark {
  color: #071039;
}

.page-indicator i.active {
  opacity: .96;
  width: 32px;
}

.page-indicator button:hover i {
  opacity: .72;
}

.page-indicator button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.company {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  padding: clamp(150px, 17.5vh, 190px) 0 100px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
}

.company .section-wrap {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  margin-bottom: 10dvh;
}

.company-heading {
  display: block;
}

.company-heading h2 {
  margin: 0;
  font-size: clamp(52px, 2.5vw, 64px);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 800;
}

.company-heading p {
  max-width: none;
  margin: 16px 0 0;
  color: #333333;
  font-size: 20px;
  line-height: 1.4;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.stats article {
  display: flex;
  /* min-height: clamp(340px, 39.6vh, 430px); */
  padding: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 25, 75, .04);
  border-radius: 32px;
  background: rgba(247, 247, 250, .5);
  /* box-shadow: 0 18px 50px rgba(20, 55, 110, .035); */
  text-align: center;
  backdrop-filter: blur(8px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.22, .68, .18, 1);
  will-change: opacity, transform;
}

.company.company-growth-active .stats article {
  opacity: 1;
  transform: translateY(0);
}

.company.company-growth-active .stats article:nth-child(1) {
  transition-delay: .5s;
}

.company.company-growth-active .stats article:nth-child(2) {
  transition-delay: .8s;
}

.company.company-growth-active .stats article:nth-child(3) {
  transition-delay: 1.2s;
}

.stats small {
  margin-bottom: 32px;
  color: #2394ff;
  font-size: 18px;
  font-weight: 600;
}

.stats strong {
  font-size: clamp(58px, 3.8vw, 82px);
  line-height: 1;
  letter-spacing: -.04em;
}

.stats sup {
  /* margin-left: .08em; */
  color: inherit;
  font-size: .9em;
}

.stats span {
  margin-top: 16px;
  /* color: #0b0c2d; */
  font-size: 18px;
  font-weight: 600;
}

.company-growth-path {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.company-growth-path use {
  fill: none;
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.company-growth-base {
  /* stroke: rgba(89, 190, 255, .12); */
  stroke: #ffffff;
}

.company-growth-progress {
  stroke: url("#company-growth-gradient");
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.company.company-growth-active .company-growth-progress {
  animation: companyGradientClimb 2.4s cubic-bezier(.22, .68, .18, 1) forwards;
}

@keyframes companyGradientClimb {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.story {
  height: 360svh;
  background: #35aef2;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      #32aef2 0%,
      #5abcf3 26%,
      #91d2f6 53%,
      #d8effb 78%,
      #ffffff 100%);
}

.story-copy {
  position: relative;
  width: 100%;
  /* height: 230px; */
  text-align: center;
}

.story-copy article {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.story-copy article.story-active {
  opacity: 1;
  transform: translateY(0);
}

.story-copy h2 {
  margin: 0;
  color: #07072d;
  font-size: clamp(48px, 2.9vw, 64px);
  line-height: 1.26;
  letter-spacing: -.03em;
  font-weight: 800;
  white-space: pre-line;
}

.story-indicator {
  position: absolute;
  top: calc(50% - 120px);
  display: flex;
  gap: 12px;
}

.story-indicator i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  transition: background .35s ease, transform .35s ease;
}

.story-indicator i.active {
  background: rgba(255, 255, 255, .92);
  transform: scale(1.06);
}

.product {
  height: 100dvh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-inner {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 8vw;
}

.product-copy {
  position: relative;
  z-index: 3;
}

.product-copy>p {
  color: #ff4861;
  font-size: 18px;
  font-weight: 700;
}

.product-copy>p b {
  margin-right: 8px;
  font-size: 11px;
}

.product-copy h2 {
  margin: 24px 0;
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.13;
  letter-spacing: -.03em;
}

.product-copy>span {
  display: block;
  color: #444;
  font-size: 20px;
  line-height: 1.4;
}

.product-copy>a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
  padding: 16px 20px 16px 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.product-copy>a i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, .2); */
  font-style: normal;
  font-size: 23px;
  font-weight: 200;
}

.product-visual {
  position: relative;
  min-height: 620px;
  perspective: 1000px;
}

.visual-orbit {
  position: absolute;
  width: 540px;
  height: 540px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(8, 135, 255, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 70px rgba(8, 135, 255, .035), 0 0 0 140px rgba(8, 135, 255, .025);
  filter: blur(8px);
  display: none;
}

.phone {
  position: absolute;
  z-index: 2;
  width: 283px;
  aspect-ratio: 283 / 616;
  left: 50%;
  top: 50%;
  padding: 9px;
  border-radius: 42px;
  background: #FAFBFC;
  box-shadow: 0 16px 32px rgba(10, 33, 77, .28);
  transform: translate(-50%, -50%);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 18px;
  background: #111626;
  transform: translateX(-50%);
  display: none;
}

.phone-screen {
  height: 100%;
  padding: 45px 18px 18px;
  border-radius: 35px;
  overflow: hidden;
  background: #f6faff;
  border: 1px solid #f7f7fa
}


.health-phone .phone-screen,
.cloud-phone .phone-screen {
  padding: 0;
}

.phone-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--blue);
}

.app-head i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d5edff;
}

.screen-label {
  margin-top: 32px;
  font-size: 10px;
  color: #7c879a;
}

.health-score {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 12px 0;
}

.health-score span {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.health-score small {
  color: #22c4a5;
  font-size: 8px;
  font-weight: 800;
}

.mini-chart {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 15px 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(14, 62, 120, .08);
}

.mini-chart i {
  flex: 1;
  border-radius: 10px;
  background: linear-gradient(#23acff, #157dff);
}

.health-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 28px 1fr 28px 1fr;
  gap: 7px;
  align-items: center;
}

.health-row i {
  height: 28px;
  border-radius: 9px;
  background: #d8edff;
}

.health-row span {
  height: 7px;
  border-radius: 9px;
  background: #e1e8f0;
}

.float-icon,
.float-panel {
  position: absolute;
  z-index: 4;
  box-shadow: 0 22px 50px rgba(20, 51, 98, .16);
  border-radius: 24px;
  overflow: hidden;
  animation: float-object-drift 5.2s ease-in-out infinite;
  will-change: transform;
}

.float-icon {
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--blue);
}

.float-icon img {
  width: 100%;
}

.icon-call,
.icon-drop {
  animation-delay: -1.3s;
}

.report-panel,
.icon-drive {
  animation-delay: -2.8s;
  animation-duration: 5.8s;
}

.icon-meal,
.icon-one {
  animation-delay: -4.1s;
  animation-duration: 4.9s;
}

@keyframes float-object-drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

.icon-call {
  left: 12%;
  top: -10%;
}

.icon-meal {
  right: 12%;
  bottom: -10%;
}

.float-panel {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
}

.report-panel {
  right: -32%;
  top: 30%;
}

.report-panel small {
  font-size: 9px;
  color: #697087;
}

.report-panel div {
  height: 80px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 10px;
}

.report-panel i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: #67baff;
}

.alert-panel {
  left: 3%;
  bottom: 19%;
  width: 185px;
  display: flex;
  flex-direction: column;
}

.alert-panel b {
  color: var(--blue);
  font-size: 9px;
}

.alert-panel span {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
}

.product-pass {
  color: #fff;
  background: linear-gradient(125deg, #087cf5, #13a7ff);
}

.product-pass .product-inner {
  grid-template-columns: 1.12fr .88fr;
}

.product-pass .product-copy>p,
.product-pass .product-copy>span {
  color: rgba(255, 255, 255, .78);
}

.product-pass .product-copy>a {
  background: #fff;
  color: #087eef;
}

.product-pass .visual-orbit {
  border-color: rgba(255, 255, 255, .19);
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .04), 0 0 0 140px rgba(255, 255, 255, .025);
}

.cloud-phone .phone-screen {
  background: #f7f6ff;
}

.cloud-list {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.cloud-list div {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(50, 26, 110, .07);
  font-size: 9px;
}

.cloud-list div>span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: #edf2ff;
  color: #566cff;
  font-weight: 900;
}

.cloud-list div>i {
  color: #8c91a3;
  font-style: normal;
}

.icon-drive {
  max-width: 160px;
  aspect-ratio: 1;
  right: -5%;
  top: -20%;
  color: #28c873;
}

.icon-drop {
  max-width: 140px;
  left: -10%;
  top: 35%;
  color: #347cf6;
}

.icon-one {
  right: 6%;
  bottom: -10%;
  color: #14a8ed;
}

.sync-panel {
  left: 6%;
  bottom: 14%;
  color: #17223c;
  font-size: 10px;
}

.sync-panel i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #29d59b;
}

.sync-panel b {
  color: var(--blue);
  margin-left: 10px;
}

.capability {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eef8ff;
}

.capability-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(239, 248, 255, .88), rgba(247, 252, 255, .7));
  backdrop-filter: blur(2px);
}

.capability .section-video {
  z-index: 0;
  opacity: .34;
}

.capability-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: clamp(60px, 5vw, 90px);
  align-items: center;
}

.capability-inner h2 {
  margin: 0;
  font-size: clamp(52px, 2.5vw, 64px);
  line-height: 1.13;
  letter-spacing: -.03em;
  font-weight: 800;
}

.capability-heading {
  align-self: start;
  padding-top: 8px;
}

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

.capability-grid article {
  position: relative;
  aspect-ratio: 1;
  min-height: 0;
  padding: clamp(30px, 2.4vw, 42px);
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
}

.capability-grid article.blue-card {
  color: #fff;
  background: rgb(0 114 237 / 90%);
}

.capability-grid small {
  color: #76788b;
  font-size: 16px;
  font-weight: 700;
  opacity: .8;
}

.capability-grid .blue-card small {
  color: rgba(255, 255, 255, .58);
}

.capability-grid h3 {
  margin: 16px 0 32px;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.capability-grid p {
  /* max-width: 270px; */
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  white-space: pre-line;
}

.capability-icon {
  position: absolute;
  right: 28px;
  bottom: 26px;
  width: clamp(50px, 4vw, 66px);
  height: clamp(50px, 4vw, 66px);
  color: var(--blue);
}

.capability-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-grid .blue-card .capability-icon {
  color: #0753a3;
}

.partners {
  padding-block: 64px;
  text-align: center;
  height: 80dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.03em;
}

.partner-logos {
  width: 100%;
  max-width: 1240px;
  margin: 75px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 30px;
  align-items: center;
  color: #354056;
}

.partner-logos img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  justify-self: center;
  object-fit: contain;
}

.contact {
  min-height: 320px;
  padding: 68px 0;
  background: #e6f5ff;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(620px, 1.7fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.contact h2 {
  margin: 0;
  font-size: clamp(32px, 3.1vw, 40px);
  line-height: 1;
  letter-spacing: -.045em;
}

.contact-details {
  display: grid;
  gap: 46px;
}

.contact-services {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: stretch;
}

.contact-service {
  min-width: 0;
}

.contact-service h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
}

.contact-health {
  padding-right: clamp(40px, 5vw, 76px);
}

.contact-health p {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: baseline;
  margin: 0;
  padding-block: 4px;
}

.contact-health span {
  color: #747b8d;
  font-size: 16px;
  font-weight: 700;
}

.contact-service strong {
  color: var(--blue);
  font-size: clamp(24px, 2.45vw, 32px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.contact-cloud {
  padding-left: clamp(48px, 5vw, 78px);
  border-left: 1px solid rgba(6, 16, 46, .1);
}

.contact-email {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: baseline;
}

.contact-email strong {
  font-size: 16px;
}

.contact-email a {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
}

footer {
  padding-block: 40px;
  display: flex;
  align-items: center;
  color: #757575;
  font-size: 14px;
  line-height: 1.55;
  max-width: 1200px;
  width: calc(100% - 56px);
  margin-inline: auto;
}

.footer-info strong {
  display: block;
  margin-bottom: 12px;
  color: #07072d;
  font-size: 16px;
  font-weight: 600;
}

.footer-info p {
  margin: 0;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {

  .capability .section-video {
    display: none;
  }

  .company,
  .product,
  .capability {
    height: auto;
    min-height: auto;
  }

  .site-header {
    width: calc(100% - 40px);
    height: 50px;
    padding-inline: 0;
    top: 20px;
  }

  .site-header .brand {
    position: relative;
    z-index: 2;
    width: 100px;
  }

  .site-header nav {
    position: fixed;
    z-index: 1;
    left: -20px;
    right: -20px;
    top: -20px;
    min-height: 100dvh;
    padding: 120px 20px 600px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(4, 19, 55, .95);
    transform: translateY(-105%);
    transition: transform .35s;
    gap: 40px;
  }

  .site-header nav.nav-open {
    transform: translateY(0);
  }

  body:has(.site-header nav.nav-open) {
    overflow: hidden;
  }

  .site-header nav a {
    font-size: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: block;
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 3px;
    margin-top: -1.5px;
    background: #fff;
    transform-origin: center;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  }

  .menu-toggle span:first-child {
    transform: translateY(-6px);
  }

  .menu-toggle span:last-child {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .hero {
    /* min-height: 100dvh; */
    min-height: auto;
    height: auto;
  }

  .scroll-cue {
    display: none;
  }

  .page-indicator {
    display: none;
  }

  .company-heading {
    display: block;
  }

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

  .stats article {
    min-height: 280px;
  }

  .product {
    padding: 60px 0;
    height: 740px;
    min-height: 740px;
    align-items: flex-start;
  }

  .product-inner,
  .product-pass .product-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-copy>p {
    font-size: 14px;
  }

  .product-pass .product-visual {
    order: 2;
  }

  .product-pass .product-copy {
    order: 1;
  }

  .product-visual {
    min-height: 580px;
  }

  .icon-call {
    right: -10vw;
    left: auto;
    width: 100px;
    border-radius: 16px;
    top: -11%;
  }

  .capability {
    padding: 60px 0;
  }

  .capability-inner {
    gap: 0;
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .section-wrap,
  .hero-content,
  .product-inner {
    width: calc(100% - 40px);
  }

  .hero-content {
    padding: 60dvh 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 9px;
  }

  .company {
    padding: 60px 0;
  }

  .company .section-wrap {
    width: calc(100% - 40px);
  }

  .company-heading h2,
  .product-copy h2,
  .capability-inner h2,
  .partners h2,
  .contact h2 {
    font-size: 28px;
    margin-block: 16px;
  }

  .company-heading p {
    margin-top: 10px;
    font-size: 16px;
  }

  .stats {
    margin-top: 30px;
    gap: 10px;
  }

  .stats article {
    aspect-ratio: auto;
    min-height: 200px;
    border-radius: 16px;
  }

  .stats small {
    margin-bottom: 24px;
    font-size: 11px;
  }

  .stats strong {
    font-size: 28px;
  }

  .stats span {
    margin-top: 10px;
    font-size: 14px;
  }

  .company-growth-path {
    width: 240%;
    transform: translateX(-42%);
  }

  .story-copy h2 {
    padding: 0 8px;
    font-size: 30px;
  }

  .story-indicator {
    top: calc(50% - 70px);
  }

  .story-indicator i {
    width: 8px;
    height: 8px;
  }

  .product-copy>a {
    font-size: 14px;
    padding: 10px 16px;
    margin-top: 20px
  }

  .product-visual {
    /* min-height: 500px; */
    transform: scale(.82);
    margin-top: -20px;
  }

  .product-copy>span {
    font-size: 16px;
  }

  .report-panel {
    right: -50vw;
    width: 220px;
    padding: 0;
  }

  .report-panel img {
    width: 100%;
  }

  .icon-drive {
    right: -10vw;
    width: 120px;
  }

  .icon-drop {
    left: -12vw;
    width: 100px;
  }

  .icon-one {
    bottom: 20dvh;
    width: 100px;
    right: -12vw;
    border-radius: 16px;
  }

  .icon-meal {
    bottom: 40dvh;
    left: -12vw;
    right: auto;
    width: 90px;
    border-radius: 12px;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .capability-grid small {
    font-size: 12px;
  }

  .capability-grid h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .capability-grid p {
    font-size: 14px;
    white-space: normal;
  }

  .capability-icon {
    width: 32px;
    height: 32px;
    right: 16px;
    bottom: 16px;
  }

  .capability-icon img {
    width: 100%;
  }

  .capability-grid article {
    aspect-ratio: auto;
    min-height: 240px;
    padding: 20px;
    border-radius: 12px !important;
  }

  .partners,
  .contact {
    padding-block: 60px;
    height: auto;
  }

  .partner-logos {
    width: calc(100% - 16px);
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partners h2 {
    padding: 0 20px;
  }


  .contact-details {
    gap: 30px;
  }

  .contact-services {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-health {
    padding-right: 0;
  }

  .contact-cloud {
    display: flex;
    padding: 24px 0;
    border-block: 1px solid rgba(42, 78, 184, 0.1);
    border-left: 0;
  }

  .contact-service h3 {
    margin-bottom: 0;
  }

  .contact-health p {
    grid-template-columns: 88px 1fr;
  }

  .contact-email {
    display: flex;
    justify-content: space-between;
  }

  .contact-service strong {
    margin-left: auto;
  }

  .contact-service a {
    font-size: 30px;
  }

  .contact-email a {
    font-size: 15px;
  }

  footer {
    /* min-height: 180px; */
    width: calc(100% - 40px);
    padding: 30px 0;
    font-size: 11px;
  }

  .footer-info strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats article {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-icon,
  .float-panel {
    animation: none !important;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
