/* Responsive structure: 1920 desktop base, Bootstrap-aligned desktop reductions, 1100 mobile base, 767.98 phone deltas. Keep each breakpoint as a delta layer. */
:root {
  --ink: #002a4b;
  --ink-soft: #154068;
  --text: #42474e;
  --muted: #6b7787;
  --paper: #f8f9ff;
  --panel: #eff4ff;
  --blue-band: #e7efff;
  --cyan: #00c1fd;
  --cyan-dark: #006688;
  --line: rgba(195, 199, 207, 0.34);
  --shadow-card: 0 30px 60px rgba(0, 42, 75, 0.08);
  --shadow-visual: 0 37px 75px -18px rgba(0, 0, 0, 0.25);
  --container: 1728px;
  --gutter: 96px;
  --font-heading: Montserrat, Inter, Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --m: min(1px, 0.133333vw);
}
* {
  box-sizing: border-box;
}
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  letter-spacing: 0;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}
.site-header,
main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}
#cboxPrevious,
#cboxNext,
#cboxClose {
  background: none;
}
#cboxClose {
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  text-indent: -9999px;
}
#cboxClose::before,
#cboxClose::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 9px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #154068;
}
#cboxClose::before {
  transform: rotate(45deg);
}
#cboxClose::after {
  transform: rotate(-45deg);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 24px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--cyan);
  color: #004b65;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-toast {
  position: fixed;
  left: 50%;
  top: 132px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(520px, calc(100vw - 48px));
  min-height: 86px;
  border: 1px solid rgba(64, 210, 255, 0.48);
  border-radius: 18px;
  background: linear-gradient(135deg, #042f57 0%, #0a5e8f 58%, #0eb8dc 100%);
  box-shadow: 0 28px 70px rgba(0, 24, 55, 0.34), 0 10px 24px rgba(0, 112, 173, 0.24);
  color: #ffffff;
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -22px, 0) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.site-toast::before {
  content: "";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 2px rgba(13, 184, 220, 0.2);
}
.site-toast::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 33px;
  width: 13px;
  height: 7px;
  border-left: 4px solid #087298;
  border-bottom: 4px solid #087298;
  transform: rotate(-45deg);
}
.site-toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}
.fw-field-error {
  display: none;
  color: #ffdce3;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.fw-field-error.is-visible {
  display: block;
}
.newsletter {
  flex-wrap: wrap;
}
.newsletter input[aria-invalid="true"] {
  box-shadow: 0 0 0 3px rgba(255, 76, 107, 0.26), inset 0 0 0 2px #ff4c6b;
}
.newsletter input {
  order: 1;
}
.newsletter button {
  order: 2;
}
.newsletter .fw-field-error {
  order: 3;
  flex: 1 0 100%;
  margin: 0;
  color: #666;
}
body[data-aos-duration] [data-aos="fade-left"],
body.aos-fallback [data-aos="fade-left"] {
  transform: translate3d(72px, 0, 0);
}
body[data-aos-duration] [data-aos="fade-right"],
body.aos-fallback [data-aos="fade-right"] {
  transform: translate3d(-72px, 0, 0);
}
body.aos-fallback [data-aos] {
  opacity: 0;
  transition-duration: 1.2s;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}
body.aos-fallback [data-aos].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
body.aos-fallback [data-aos="fade-up"] {
  transform: translate3d(0, 64px, 0);
}
body.aos-fallback [data-aos="zoom-in"] {
  transform: scale(0.96);
}
body.aos-fallback [data-aos-delay="100"].aos-animate {
  transition-delay: 0.1s;
}
body.aos-fallback [data-aos-delay="120"].aos-animate {
  transition-delay: 0.12s;
}
body.aos-fallback [data-aos-delay="150"].aos-animate {
  transition-delay: 0.15s;
}
body.aos-fallback [data-aos-delay="180"].aos-animate {
  transition-delay: 0.18s;
}
body.aos-fallback [data-aos-delay="200"].aos-animate {
  transition-delay: 0.2s;
}
body.aos-fallback [data-aos-delay="240"].aos-animate {
  transition-delay: 0.24s;
}
body.aos-fallback [data-aos-delay="300"].aos-animate {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  body [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .site-toast {
    transition: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 120px;
  border-bottom: 1.5px solid rgba(195, 199, 207, 0.1);
  background: rgba(248, 249, 255, 0.9);
  box-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(9px);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1920px);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand {
  flex: 0 0 auto;
}
.brand img,
.footer-brand img {
  width: 318px;
  height: 53px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 60px;
}
.nav-link {
  position: relative;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  white-space: nowrap;
}
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan-dark);
  content: "";
  opacity: 0;
  transform: scaleX(0.72);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
  font-weight: 700;
}
.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}
.header-cta,
.button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  border-radius: 999px;
  padding: 15px 36px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.header-cta,
.button-primary,
.mobile-cta {
  background: var(--cyan);
  color: #004b65;
}
.header-cta {
  min-width: 181px;
}
.button {
  min-height: 79px;
  border-radius: 12px;
  padding: 25px 48px 28px;
  font-size: 21px;
  letter-spacing: 0;
}
.button-outline {
  border: 3px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
.button-dark {
  min-height: 42px;
  border-radius: 999px;
  padding: 12px 28px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
}
.header-cta:hover,
.button:hover,
.mobile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -24px rgba(0, 42, 75, 0.55);
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
}
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  height: 1050px;
  overflow: hidden;
  --hero-breathe-scale: 1.1;
  --hero-breathe-y: 56px;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transform-origin: center center;
  animation: heroImageBreathe 12s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}
@keyframes heroImageBreathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, var(--hero-breathe-y), 0) scale(var(--hero-breathe-scale));
  }
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    136deg,
    rgba(0, 71, 126, 0.62) 0%,
    rgba(0, 71, 126, 0.56) 22%,
    rgba(0, 71, 126, 0.2) 42%,
    rgba(0, 71, 126, 0) 60%
  );
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 1920px);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero h1 {
  max-width: 1152px;
  color: #ffffff;
  font-size: 96px;
  line-height: 1.1;
}
.hero p {
  max-width: 864px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 27px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 60px;
}
.page-band {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}
.section-shell,
.section-grid,
.join-head,
.jobs-list,
.footer-grid,
.copyright {
  width: min(100%, var(--container));
  margin: 0 auto;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "copy visual"
    "text visual";
  column-gap: 120px;
  row-gap: 0;
  align-items: center;
}
.section-grid > *,
.product-grid > *,
.advantage-grid > *,
.stats-list > *,
.value-grid > *,
.idea-grid > *,
.jobs-list > *,
.footer-grid > * {
  min-width: 0;
}
.who {
  padding-top: 169px;
  padding-bottom: 169px;
}
.section-copy {
  grid-area: copy;
}
.who-text {
  grid-area: text;
}
.kicker {
  color: var(--cyan-dark);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-copy h2,
.section-heading h2,
.join h2 {
  color: var(--ink);
  font-size: 72px;
  line-height: 1.2;
}
.section-copy h2 {
  max-width: 804px;
  margin-top: 24px;
  line-height: 1.25;
}
.who-text p {
  max-width: 804px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.who-text .lead-text {
  margin-top: 46px;
  font-size: 30px;
  line-height: 1.63;
}
.who-text .lead-text + p {
  margin-top: 12px;
}
.who-visual {
  grid-area: visual;
  position: relative;
}
.who-visual > img {
  width: 100%;
  height: 804px;
  border-radius: 36px;
  box-shadow: var(--shadow-visual);
  object-fit: cover;
  object-position: center 36%;
}
.who-visual blockquote {
  position: absolute;
  left: -60px;
  bottom: 66px;
  width: 480px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 30px 37px -7px rgba(0, 0, 0, 0.1),
    0 12px 15px -9px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  padding: 48px;
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
}
.blue-band {
  background: var(--panel);
}
.video-band {
  background: var(--blue-band);
}
.products {
  padding-top: 178px;
  padding-bottom: 180px;
}
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.section-heading p {
  max-width: 1284px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 120px;
}
.product-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  padding: 60px;
}
.product-card figure {
  height: 238px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfeaff;
}
.product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card h3 {
  margin-top: 48px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.3;
}
.product-card p {
  margin-top: 24px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 33px;
  color: var(--cyan-dark);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}
.link-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.learn-link .link-icon,
.plain-link .link-icon {
  width: 16px;
  height: 16px;
}
.advantage {
  padding-top: 179px;
  padding-bottom: 179px;
}
.advantage .section-heading p {
  color: var(--text);
  font-size: 27px;
  line-height: 1.6;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 96px;
}
.advantage-grid article {
  border: 1.5px solid rgba(195, 199, 207, 0.3);
  border-radius: 18px;
  background: #ffffff;
  padding: 49.5px;
}
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: #e5eeff;
}
.mini-icon img {
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 38px;
  object-fit: contain;
}
.advantage-grid article:nth-child(1) .mini-icon img {
  width: 35px;
  height: 31.5px;
  max-width: none;
  max-height: none;
}
.advantage-grid article:nth-child(2) .mini-icon img {
  width: 35px;
  height: 35px;
  max-width: none;
  max-height: none;
}
.advantage-grid article:nth-child(3) .mini-icon img {
  width: 30px;
  height: 37.5px;
  max-width: none;
  max-height: none;
}
.advantage-grid article:nth-child(4) .mini-icon img {
  width: 36px;
  height: 34.002px;
  max-width: none;
  max-height: none;
}
.advantage-grid article:nth-child(5) .mini-icon img {
  width: 40px;
  height: 20px;
  max-width: none;
  max-height: none;
}
.advantage-grid article:nth-child(6) .mini-icon img {
  width: 35px;
  height: 31.5px;
  max-width: none;
  max-height: none;
}
.advantage-grid h3 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.3;
}
.advantage-grid p {
  margin-top: 18px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.advantage-action {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.video-section {
  position: relative;
  overflow: hidden;
  padding: 178px 288px 180px;
}
.video-section::before,
.video-section::after {
  position: absolute;
  width: 576px;
  height: 576px;
  border-radius: 50%;
  background: rgba(0, 193, 253, 0.05);
  filter: blur(48px);
  content: "";
}
.video-section::before {
  top: -288px;
  right: -288px;
}
.video-section::after {
  bottom: 66px;
  left: -288px;
}
.video-shell {
  position: relative;
  width: min(100%, 1344px);
  margin: 0 auto;
}
.video-section .section-heading h2 {
  color: var(--ink-soft);
  text-transform: capitalize;
}
.video-section .section-heading p {
  color: var(--ink-soft);
}
.video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 96px;
  aspect-ratio: 16 / 9;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow-visual);
}
.video-frame img {
  width: 100%;
  height: 100%;
  opacity: 0.62;
  object-fit: cover;
  object-position: center;
}
.play-button::before {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid #ffffff;
  content: "";
}
.stats-values {
  padding-top: 0;
  padding-bottom: 180px;
}
.stats-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-top: 0;
}
.stats-list div {
  border-radius: 12px;
  background: #ffffff;
  padding: 37px 24px;
  text-align: center;
}
.stats-list dt {
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 700;
  line-height: 1.1;
}
.stats-list dd {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  width: min(100%, var(--container));
  margin: 120px auto 0;
  padding-top: 96px;
  border-top: 1.5px solid rgba(0, 42, 75, 0.1);
}
.value-grid article {
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  padding: 24px 24px 42px;
  box-shadow: 0 20px 42px rgba(0, 42, 75, 0.04);
}
.value-grid img {
  width: 100%;
  height: 236px;
  border-radius: 8px;
  object-fit: cover;
}
.value-grid h3 {
  margin-top: 30px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.3;
}
.value-grid p {
  margin-top: 14px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.join {
  padding-top: 178px;
  padding-bottom: 179px;
}
.join-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.join h2 {
  margin-top: 24px;
}
.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.plain-link::after {
  content: none;
}
.jobs-list {
  display: grid;
  gap: 24px;
  margin-top: 96px;
}
.jobs-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #ffffff;
  padding: 45px 48px;
  box-shadow: 0 12px 35px rgba(0, 42, 75, 0.04);
}
.jobs-list article > div {
  min-width: 0;
}
.jobs-list h3 {
  color: var(--ink);
  font-size: 48px;
  line-height: 1.3;
  text-transform: uppercase;
}
.jobs-list p {
  margin-top: 6px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.jobs-list a {
  flex: 0 0 auto;
  min-width: 120px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 10px 24px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  text-align: center;
}
.idea {
  padding-top: 178px;
  padding-bottom: 180px;
}
.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 96px;
}
.idea-grid article {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  padding: 60px 42px 54px;
  text-align: center;
  backdrop-filter: blur(3px);
}
.idea-grid span {
  color: rgba(0, 42, 75, 0.1);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.5;
}
.idea-grid h3 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.3;
}
.idea-grid p {
  margin-top: 24px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.site-footer {
  position: relative;
  background: var(--panel);
  padding: 180px var(--gutter) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 180px;
}
.footer-brand p {
  max-width: 405px;
  margin-top: 107px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.site-footer h3 {
  color: var(--ink);
  font-size: 36px;
  line-height: 1.73;
}
.footer-nav,
.footer-contact,
.footer-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-style: normal;
}
.footer-nav a,
.footer-contact p,
.footer-news p {
  color: var(--text);
  font-size: 24px;
  line-height: 1.5;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer-contact p span {
  min-width: 0;
}
.footer-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  object-fit: contain;
}
.footer-icon-location {
  width: 26px;
  height: 33px;
  margin-top: 2px;
}
.footer-icon-mail {
  width: 30px;
  height: 24px;
  margin-top: 6px;
}
.footer-news p {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: calc(27 * var(--m));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(50 * var(--m));
    height: calc(50 * var(--m));
    border: 0;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    color: #ffffff;
    z-index: 10;
  }

  .back-to-top svg {
    width: 100%;
    height: 100%;
  }

  .back-to-top circle {
    fill: #3f72a5;
  }

  .back-to-top path {
    fill: none;
    stroke: currentColor;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
.newsletter {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.newsletter input {
  min-width: 0;
  flex: 1;
  height: 78px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 18px;
  font-size: 24px;
  outline: none;
}
.newsletter input::placeholder {
  color: #87acda;
}
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 78px;
  border: 0;
  border-radius: 16px;
  background: var(--cyan);
  color: #004b65;
  font-size: 18px;
  font-weight: 800;
}
.send-icon {
  width: 26px;
  height: 22px;
  object-fit: contain;
}
.copyright {
  border-top: 1.5px solid rgba(195, 199, 207, 0.3);
  padding: 48px 0;
  color: var(--text);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.hero-word-frontier {
  display: block;
}
.label-mobile {
  display: none;
}
.video-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}
.video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  content: "";
  pointer-events: none;
}
.video-frame picture img,
.video-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 144px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.copy-mobile {
  display: none;
}

@media (min-width: 1101px) {
  .who .section-copy {
    transform: translateY(-140px);
  }

  .who .who-text {
    transform: translateY(-140px);
  }

  .who-visual {
    transform: translateY(-84px);
  }

  .who-visual blockquote {
    top: 702px;
    bottom: auto;
  }

  .who {
    height: 1142px;
    overflow: visible;
    padding-top: 169px;
    padding-bottom: 169px;
  }

  .who .section-grid {
    align-items: start;
    height: 804px;
    overflow: visible;
  }

  .products {
    margin-bottom: 180px;
  }

  .advantage {
    height: 1613px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .advantage .section-shell {
    height: 100%;
  }

  .advantage .section-heading {
  }

  .advantage-grid {
    gap: 48px;
    margin-top: 96px;
  }

  .advantage-grid article {
    height: 100%;
    padding: 49.5px;
  }

  .advantage-action {
    align-items: center;
    height: 148px;
    margin-top: 24px;
  }

  .button-dark {
    width: 379px;
    min-height: 74px;
    padding: 24px 60px;
    font-size: 21px;
    line-height: 25.2px;
  }

  .join {
    height: 1249px;
    padding-top: 180px;
    padding-bottom: 0;
  }

  .jobs-list article {
    padding: 49.5px;
  }

  .jobs-list a {
    width: 192px;
    min-width: 192px;
    padding: 18px 48px;
    font-size: 21px;
  }

  .idea {
    padding-top: 178.5px;
    padding-bottom: 158.5px;
  }

  .idea-grid article {
    border-radius: 36px;
    padding: 72px;
  }

  .video-section {
    margin-top: 179px;
    margin-bottom: -24px;
    padding: 178.5px 288px 180px;
  }

  .video-shell {
    width: min(100%, 1344px);
  }

  .video-frame {
    margin-top: 96px;
    border-radius: 36px;
  }

  .video-frame img {
    opacity: 0.6;
  }

  .stats-values {
    height: auto;
    padding: 180px 96px;
  }

  .stats-list,
  .value-grid {
    width: min(100%, 1728px);
  }

  .stats-list {
    gap: 36px;
  }

  .stats-list div {
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 61.5px;
    box-shadow: 0 0 17px rgba(111, 176, 215, 0.14);
  }

  .stats-list dt {
    color: #00c1fd;
    font-size: 96px;
    line-height: 105.6px;
  }

  .stats-list dd {
    color: #154068;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2.4px;
    line-height: 36px;
  }

  .value-grid {
    gap: 72px;
    margin-top: 180px;
    border-top-color: rgba(78, 148, 213, 0.6);
    padding-top: 181.5px;
  }

  .value-grid article {
    border-radius: 24px;
    padding: 36px ;
  }

  .value-grid img {
    height: 256.5px;
    border-radius: 12px;
  }

  .value-grid h3 {
    margin-top: 36px;
    color: #154068;
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
  }

  .value-grid p {
    color: #154068;
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 1101px) and (max-width: 1919.98px) {
  :root {
    --d: clamp(0.62px, 0.052083333vw, 1px);
    --container: calc(1728 * var(--d));
    --gutter: clamp(48px, calc(96 * var(--d)), 96px);
  }

  body {
    font-size: calc(24 * var(--d));
  }

  .site-header {
    height: calc(120 * var(--d));
  }

  .brand img,
  .footer-brand img {
    width: calc(318 * var(--d));
    height: calc(53 * var(--d));
  }

  .desktop-nav {
    gap: calc(60 * var(--d));
  }

  .nav-link {
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .nav-link::after {
    bottom: calc(-4 * var(--d));
    height: max(2px, calc(3 * var(--d)));
  }

  .header-cta,
  .button,
  .mobile-cta {
    min-height: calc(53 * var(--d));
    padding: calc(15 * var(--d)) calc(36 * var(--d));
    font-size: calc(21 * var(--d));
  }

  .header-cta {
    min-width: calc(181 * var(--d));
  }

  .button {
    min-height: calc(79 * var(--d));
    border-radius: calc(12 * var(--d));
    padding:
      calc(25 * var(--d))
      calc(48 * var(--d))
      calc(28 * var(--d));
  }

  .button-outline {
    border-width: max(2px, calc(3 * var(--d)));
  }

  .button-dark {
    width: calc(379 * var(--d));
    min-height: calc(74 * var(--d));
    padding:
      calc(24 * var(--d))
      calc(60 * var(--d));
    font-size: calc(21 * var(--d));
    line-height: calc(25.2 * var(--d));
  }

  .hero {
    height: calc(1050 * var(--d));
  }

  .hero h1 {
    max-width: calc(1152 * var(--d));
    font-size: calc(96 * var(--d));
    line-height: calc(105.6 * var(--d));
  }

  .hero p {
    max-width: calc(864 * var(--d));
    margin-top: calc(34 * var(--d));
    font-size: calc(27 * var(--d));
    line-height: calc(43.2 * var(--d));
  }

  .hero-actions {
    gap: calc(24 * var(--d));
    margin-top: calc(60 * var(--d));
  }

  .section-grid {
    column-gap: calc(120 * var(--d));
  }

  .who {
    height: calc(1142 * var(--d));
    padding-top: calc(169 * var(--d));
    padding-bottom: calc(169 * var(--d));
  }

  .who .section-grid {
    height: calc(804 * var(--d));
  }

  .who .section-copy,
  .who .who-text {
    transform: translateY(calc(-140 * var(--d)));
  }

  .who-visual {
    transform: translateY(calc(-84 * var(--d)));
  }

  .kicker {
    font-size: calc(21 * var(--d));
    line-height: calc(25.2 * var(--d));
  }

  .section-copy h2,
  .section-heading h2,
  .join h2 {
    font-size: calc(72 * var(--d));
    line-height: calc(86.4 * var(--d));
  }

  .section-copy h2 {
    max-width: calc(804 * var(--d));
    margin-top: calc(24 * var(--d));
    line-height: calc(90 * var(--d));
  }

  .who-text p {
    max-width: calc(804 * var(--d));
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .who-text .lead-text {
    margin-top: calc(46 * var(--d));
    font-size: calc(30 * var(--d));
    line-height: calc(50 * var(--d));
  }

  .who-text .lead-text + p {
    margin-top: calc(12 * var(--d));
  }

  .who-visual > img {
    height: calc(804 * var(--d));
    border-radius: calc(36 * var(--d));
  }

  .who-visual blockquote {
    top: calc(702 * var(--d));
    left: calc(-60 * var(--d));
    width: calc(480 * var(--d));
    border-radius: calc(24 * var(--d));
    padding: calc(48 * var(--d));
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .products {
    margin-bottom: calc(180 * var(--d));
    padding-top: calc(178 * var(--d));
    padding-bottom: calc(180 * var(--d));
  }

  .section-heading {
    gap: calc(24 * var(--d));
  }

  .section-heading p {
    max-width: calc(1284 * var(--d));
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .product-grid {
    gap: calc(48 * var(--d));
    margin-top: calc(120 * var(--d));
  }

  .product-card {
    border-radius: calc(24 * var(--d));
    padding: calc(60 * var(--d));
  }

  .product-card figure {
    height: calc(238 * var(--d));
    border-radius: calc(18 * var(--d));
  }

  .product-card h3,
  .advantage-grid h3,
  .value-grid h3,
  .jobs-list h3,
  .idea-grid h3 {
    font-size: calc(48 * var(--d));
    line-height: calc(62.4 * var(--d));
  }

  .product-card h3 {
    margin-top: calc(48 * var(--d));
  }

  .product-card p,
  .advantage-grid p,
  .value-grid p,
  .jobs-list p,
  .idea-grid p {
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .product-card p {
    margin-top: calc(24 * var(--d));
  }

  .learn-link {
    gap: calc(12 * var(--d));
    margin-top: calc(33 * var(--d));
    font-size: calc(21 * var(--d));
  }

  .learn-link .link-icon,
  .plain-link .link-icon {
    width: calc(16 * var(--d));
    height: calc(16 * var(--d));
  }

  .advantage {
    height: calc(1613 * var(--d));
  }

  .advantage .section-heading {
  }

  .advantage .section-heading p {
    font-size: calc(27 * var(--d));
    line-height: calc(43.2 * var(--d));
  }

  .advantage-grid {
    gap: calc(48 * var(--d));
    margin-top: calc(96 * var(--d));
  }

  .advantage-grid article {
    border-radius: calc(18 * var(--d));
    padding: calc(49.5 * var(--d));
  }

  .mini-icon {
    width: calc(84 * var(--d));
    height: calc(84 * var(--d));
    border-radius: calc(12 * var(--d));
  }

  .advantage-grid article:nth-child(1) .mini-icon img {
    width: calc(35 * var(--d));
    height: calc(31.5 * var(--d));
  }

  .advantage-grid article:nth-child(2) .mini-icon img {
    width: calc(35 * var(--d));
    height: calc(35 * var(--d));
  }

  .advantage-grid article:nth-child(3) .mini-icon img {
    width: calc(30 * var(--d));
    height: calc(37.5 * var(--d));
  }

  .advantage-grid article:nth-child(4) .mini-icon img {
    width: calc(36 * var(--d));
    height: calc(34.002 * var(--d));
  }

  .advantage-grid article:nth-child(5) .mini-icon img {
    width: calc(40 * var(--d));
    height: calc(20 * var(--d));
  }

  .advantage-grid article:nth-child(6) .mini-icon img {
    width: calc(35 * var(--d));
    height: calc(31.5 * var(--d));
  }

  .advantage-grid h3 {
    margin-top: calc(34 * var(--d));
  }

  .advantage-grid p {
    margin-top: calc(18 * var(--d));
  }

  .advantage-action {
    height: calc(148 * var(--d));
    margin-top: calc(24 * var(--d));
  }

  .video-section {
    margin-top: calc(179 * var(--d));
    margin-bottom: calc(-24 * var(--d));
    padding:
      calc(178.5 * var(--d))
      calc(288 * var(--d))
      calc(180 * var(--d));
  }

  .video-section::before,
  .video-section::after {
    width: calc(576 * var(--d));
    height: calc(576 * var(--d));
    filter: blur(calc(48 * var(--d)));
  }

  .video-section::before {
    top: calc(-288 * var(--d));
    right: calc(-288 * var(--d));
  }

  .video-section::after {
    bottom: calc(66 * var(--d));
    left: calc(-288 * var(--d));
  }

  .video-shell {
    width: min(100%, calc(1344 * var(--d)));
  }

  .video-frame {
    margin-top: calc(96 * var(--d));
    border-radius: calc(36 * var(--d));
  }

  .play-button {
    width: calc(144 * var(--d));
    height: calc(144 * var(--d));
  }

  .play-button::before {
    margin-left: calc(8 * var(--d));
    border-top-width: calc(22 * var(--d));
    border-bottom-width: calc(22 * var(--d));
    border-left-width: calc(34 * var(--d));
  }

  .stats-values {
    padding:
      calc(180 * var(--d))
      var(--gutter)
      calc(180 * var(--d));
  }

  .stats-list {
    gap: calc(36 * var(--d));
  }

  .stats-list div {
    border-radius: calc(24 * var(--d));
    padding: calc(61.5 * var(--d));
  }

  .stats-list dt {
    font-size: calc(96 * var(--d));
    line-height: calc(105.6 * var(--d));
  }

  .stats-list dd {
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .value-grid {
    gap: calc(72 * var(--d));
    margin-top: calc(180 * var(--d));
    padding-top: calc(181.5 * var(--d));
  }

  .value-grid article {
    border-radius: calc(24 * var(--d));
    padding:
      calc(36 * var(--d))
  }

  .value-grid img {
    height: calc(256.5 * var(--d));
    border-radius: calc(12 * var(--d));
  }

  .value-grid h3 {
    margin-top: calc(36 * var(--d));
  }

  .value-grid p {
    margin-top: calc(14 * var(--d));
  }

  .join {
    height: calc(1249 * var(--d));
    padding-top: calc(180 * var(--d));
  }

  .join h2 {
    margin-top: calc(24 * var(--d));
  }

  .plain-link {
    gap: calc(12 * var(--d));
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .jobs-list {
    gap: calc(24 * var(--d));
    margin-top: calc(96 * var(--d));
  }

  .jobs-list article {
    border-radius: calc(12 * var(--d));
    padding: calc(49.5 * var(--d));
  }

  .jobs-list p {
    margin-top: calc(6 * var(--d));
  }

  .jobs-list a {
    width: calc(192 * var(--d));
    min-width: calc(192 * var(--d));
    padding:
      calc(18 * var(--d))
      calc(48 * var(--d));
    font-size: calc(21 * var(--d));
    line-height: calc(25.2 * var(--d));
  }

  .idea {
    padding: calc(178.5 * var(--d)) 0;
  }

  .idea-grid {
    gap: calc(36 * var(--d));
    margin-top: calc(96 * var(--d));
  }

  .idea-grid article {
    border-radius: calc(36 * var(--d));
    padding: calc(72 * var(--d));
  }

  .idea-grid span {
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .idea-grid h3 {
    margin-top: calc(34 * var(--d));
  }

  .idea-grid p {
    margin-top: calc(24 * var(--d));
  }

  .site-footer {
    padding-top: calc(180 * var(--d));
  }

  .footer-grid {
    gap: calc(36 * var(--d));
    padding-bottom: calc(180 * var(--d));
  }

  .footer-brand p {
    max-width: calc(405 * var(--d));
    margin-top: calc(107 * var(--d));
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .site-footer h3 {
    font-size: calc(36 * var(--d));
    line-height: calc(62.4 * var(--d));
  }

  .footer-nav,
  .footer-contact,
  .footer-news {
    gap: calc(24 * var(--d));
  }

  .footer-nav a,
  .footer-contact p,
  .footer-news p {
    font-size: calc(24 * var(--d));
    line-height: calc(36 * var(--d));
  }

  .footer-contact p {
    gap: calc(18 * var(--d));
  }

  .footer-icon {
    width: calc(28 * var(--d));
    height: calc(28 * var(--d));
    margin-top: calc(4 * var(--d));
  }

  .footer-icon-location {
    width: calc(26 * var(--d));
    height: calc(33 * var(--d));
  }

  .footer-icon-mail {
    width: calc(30 * var(--d));
    height: calc(24 * var(--d));
  }

  .footer-news p {
    font-size: calc(21 * var(--d));
    line-height: calc(25.2 * var(--d));
  }

  .newsletter {
    gap: calc(12 * var(--d));
    margin-top: calc(12 * var(--d));
  }

  .newsletter input {
    height: calc(78 * var(--d));
    border-radius: calc(12 * var(--d));
    padding: 0 calc(18 * var(--d));
    font-size: calc(24 * var(--d));
  }

  .newsletter button {
    width: calc(84 * var(--d));
    height: calc(78 * var(--d));
    border-radius: calc(16 * var(--d));
  }

  .send-icon {
    width: calc(26 * var(--d));
    height: calc(22 * var(--d));
  }

  .copyright {
    padding: calc(48 * var(--d)) 0;
    font-size: calc(21 * var(--d));
    line-height: calc(25.2 * var(--d));
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  :root {
    --gutter: clamp(54px, calc(80 * var(--d)), 72px);
  }

  .desktop-nav {
    gap: calc(42 * var(--d));
  }

  .product-grid,
  .advantage-grid {
    gap: calc(40 * var(--d));
  }

  .footer-grid {
    gap: calc(30 * var(--d));
  }
}

@media (min-width: 1101px) and (max-width: 1199.98px) {
  :root {
    --gutter: 48px;
  }

  .desktop-nav {
    gap: calc(34 * var(--d));
  }

  .product-grid,
  .advantage-grid,
  .stats-list {
    gap: calc(34 * var(--d));
  }

  .footer-grid {
    gap: calc(24 * var(--d));
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-gradient {
    background: linear-gradient(
      135deg,
      rgba(0, 71, 126, 0.74) 0%,
      rgba(0, 71, 126, 0.54) 36%,
      rgba(0, 71, 126, 0.04) 70%
    );
  }

  .section-grid,
  .product-grid,
  .advantage-grid,
  .stats-list,
  .value-grid,
  .idea-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-copy .lead-text {
    margin-top: 90px;
    font-size: 30px;
    line-height: 1.6;
  }

  .section-copy p {
    max-width: none;
    font-size: 30px;
    line-height: 1.58;
  }

  .products,
  .advantage,
  .join,
  .idea {
    padding-top: 123px;
    padding-bottom: 123px;
  }

  .section-heading {
    align-items: flex-start;
    gap: 0;
    text-align: left;
  }

  .product-grid,
  .advantage-grid,
  .stats-list,
  .value-grid,
  .idea-grid {
    gap: 30px;
    margin-top: 72px;
  }

  .product-card h3,
  .advantage-grid h3,
  .value-grid h3,
  .jobs-list h3,
  .idea-grid h3 {
    font-size: 48px;
  }

  .product-card p,
  .advantage-grid p,
  .value-grid p,
  .idea-grid p {
    font-size: 30px;
    line-height: 1.5;
  }

  .advantage .section-heading {
    align-items: flex-start;
  }

  .advantage .section-heading p {
    margin-top: 20px;
    font-size: 24px;
  }

  .jobs-list h3,
  .jobs-list p {
    overflow-wrap: anywhere;
  }

  .idea .section-heading {
    align-items: center;
    text-align: center;
  }

  .brand {
    position: absolute;
    top: calc(49.462 * var(--m));
    left: calc(38.462 * var(--m));
  }

  .who-visual {
    display: block;
    transform: none;
  }

  .who-visual blockquote {
    display: none;
  }

  .section-copy,
  .who .who-text {
    transform: none;
  }

  .who-text .lead-text {
    margin-top: 0;
  }

  .mini-icon img {
    max-width: none;
    max-height: none;
  }

  .advantage-grid article:nth-child(1) .mini-icon img {
    width: calc(38.889 * var(--m));
    height: calc(35 * var(--m));
  }

  .advantage-grid article:nth-child(2) .mini-icon img {
    width: calc(41.667 * var(--m));
    height: calc(41.667 * var(--m));
  }

  .advantage-grid article:nth-child(3) .mini-icon img {
    width: calc(35.714 * var(--m));
    height: calc(44.643 * var(--m));
  }

  .advantage-grid article:nth-child(4) .mini-icon img {
    width: calc(42.857 * var(--m));
    height: calc(40.479 * var(--m));
  }

  .advantage-grid article:nth-child(5) .mini-icon img {
    width: calc(47.619 * var(--m));
    height: calc(23.81 * var(--m));
  }

  .advantage-grid article:nth-child(6) .mini-icon img {
    width: calc(41.667 * var(--m));
    height: calc(37.5 * var(--m));
  }

  .advantage-action {
    margin-top: 46px;
    display: none;
  }

  .join-head {
    align-items: flex-end;
    display: contents;
  }

  .join-head > div {
    order: 1;
  }

  .plain-link .link-icon {
    display: none;
  }

  :root {
    --m: min(1px, 0.133333vw);
    --gutter: calc(38.462 * var(--m));
  }

  body {
    font-size: calc(30.769 * var(--m));
  }

  .site-header {
    height: calc(153.846 * var(--m));
  }

  .site-nav {
    padding: 0 var(--gutter);
  }

  .brand img,
  .footer-brand img {
    width: calc(318 * var(--m));
    height: calc(53 * var(--m));
  }

  .hero {
    height: calc(1359 * var(--m));
    --hero-breathe-scale: 1.075;
    --hero-breathe-y: calc(44 * var(--m));
  }

  .button {
    min-height: calc(64 * var(--m));
    border-radius: calc(4 * var(--m));
    padding: calc(19 * var(--m)) calc(30 * var(--m));
    font-size: calc(18 * var(--m));
  }

  .button-outline {
    border-width: calc(1 * var(--m));
  }

  .kicker {
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
    letter-spacing: calc(3.077 * var(--m));
  }

  .section-copy h2,
  .section-heading h2,
  .join h2 {
    font-size: calc(53.846 * var(--m));
    line-height: calc(67.308 * var(--m));
  }

  .section-copy h2 {
    margin-top: calc(30.769 * var(--m));
  }

  .who {
    padding-top: calc(63 * var(--m));
    padding-bottom: calc(18 * var(--m));
  }

  .who .section-grid {
    gap: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "text";
    row-gap: calc(61.538 * var(--m));
  }

  .who-visual > img {
    object-position: center 36%;
    height: calc(504.808 * var(--m));
    border-radius: calc(36 * var(--m));
  }

  .who-text p,
  .who-text .lead-text {
    max-width: none;
    font-size: calc(30.769 * var(--m));
    line-height: calc(50 * var(--m));
  }

  .who-text .lead-text + p {
    margin-top: calc(50 * var(--m));
  }

  .products {
    padding-top: calc(107 * var(--m));
    padding-bottom: calc(184.615 * var(--m));
  }

  .products .section-heading h2 {
    line-height: calc(70 * var(--m));
  }

  .products .section-heading p {
    display: flex;
    align-items: center;
  }

  .section-heading p {
    margin-top: 0;
    font-size: calc(24 * var(--m));
    line-height: calc(36 * var(--m));
  }

  .product-grid {
    gap: calc(81 * var(--m));
    margin-top: calc(45 * var(--m));
  }

  .product-card {
    overflow: hidden;
    background: var(--paper);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: calc(46.154 * var(--m));
  }

  .product-card figure {
    border-radius: 0;
    height: calc(378.615 * var(--m));
  }

  .product-card h3 {
    margin: calc(61.538 * var(--m)) calc(61.538 * var(--m)) 0;
    font-size: calc(48 * var(--m));
    line-height: calc(62.4 * var(--m));
  }

  .product-card p {
    margin: calc(23.077 * var(--m)) calc(61.538 * var(--m)) 0;
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .learn-link {
    text-transform: none;
    gap: calc(7.692 * var(--m));
    margin: calc(46.154 * var(--m)) calc(61.538 * var(--m))
      calc(61.538 * var(--m));
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .learn-link .link-icon,
  .plain-link .link-icon {
    width: calc(16 * var(--m));
    height: calc(16 * var(--m));
  }

  .advantage {
    padding-top: calc(68 * var(--m));
    padding-bottom: calc(97 * var(--m));
  }

  .advantage-grid {
    gap: calc(46.154 * var(--m));
    margin-top: calc(92.308 * var(--m));
  }

  .advantage-grid article {
    border: 2px solid rgba(195, 199, 207, 0.1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    border-width: calc(1.923 * var(--m));
    border-radius: calc(46.154 * var(--m));
    padding: calc(63.462 * var(--m));
  }

  .mini-icon {
    width: calc(100 * var(--m));
    height: calc(100 * var(--m));
    border-radius: calc(22.222 * var(--m));
  }

  .advantage-grid h3 {
    margin-top: calc(15.385 * var(--m));
    font-size: calc(34.615 * var(--m));
    line-height: calc(51.923 * var(--m));
  }

  .advantage-grid p {
    margin-top: calc(15.385 * var(--m));
    font-size: calc(24 * var(--m));
    line-height: calc(32.4 * var(--m));
  }

  .idea-grid {
    gap: calc(30.769 * var(--m));
  }

  .value-grid h3,
  .idea-grid h3 {
    font-size: calc(48 * var(--m));
    line-height: calc(62.4 * var(--m));
  }

  .join {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: calc(185 * var(--m));
  }

  .jobs-list {
    order: 2;
    gap: calc(30.769 * var(--m));
    margin-top: calc(61.538 * var(--m));
  }

  .jobs-list article {
    gap: 20px;
    border-radius: calc(30.769 * var(--m));
    padding: calc(46.154 * var(--m));
  }

  .jobs-list h3 {
    text-transform: capitalize;
    font-size: calc(34.615 * var(--m));
    line-height: calc(51.923 * var(--m));
  }

  .jobs-list p {
    margin-top: 6px;
    font-weight: 600;
    font-size: calc(24 * var(--m));
    line-height: calc(32.308 * var(--m));
    letter-spacing: calc(1.346 * var(--m));
  }

  .jobs-list a {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: url("../images/home/icons/mobile-job-arrow.svg") center /
      contain no-repeat;
    font-size: 0;
    width: calc(22.644 * var(--m));
    min-width: calc(22.644 * var(--m));
  }

  .plain-link {
    order: 3;
    justify-content: center;
    width: 100%;
    border: 2px solid var(--ink);
    color: var(--ink);
    min-height: calc(113 * var(--m));
    margin-top: calc(61 * var(--m));
    border-width: calc(1.923 * var(--m));
    border-radius: calc(23.077 * var(--m));
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .idea {
    padding-top: calc(123 * var(--m));
    padding-bottom: calc(123 * var(--m));
  }

  .idea-grid article {
    border-radius: calc(36 * var(--m));
    padding: calc(72 * var(--m));
  }

  .idea-grid span {
    font-size: calc(40 * var(--m));
    line-height: calc(36 * var(--m));
  }

  .hero-word-leading {
    display: block;
  }

  .hero-word-digital,
  .hero-word-frontier {
    display: inline;
    color: var(--cyan);
  }

  .hero h1 {
    max-width: calc(674 * var(--m));
    font-size: calc(72 * var(--m));
    line-height: calc(91 * var(--m));
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: calc(290 * var(--m));
    padding-left: calc(57.692 * var(--m));
    padding-right: calc(38.462 * var(--m));
  }

  .hero p {
    max-width: 100%;
    width: calc(650 * var(--m));
    margin-top: calc(52 * var(--m));
    font-size: calc(34.615 * var(--m));
    line-height: calc(55.385 * var(--m));
  }

  .hero-actions {
    flex-direction: column;
    gap: calc(44 * var(--m));
    margin-top: calc(81 * var(--m));
  }

  .hero .button {
    width: calc(382 * var(--m));
    min-height: calc(108 * var(--m));
    border-radius: calc(12 * var(--m));
    padding: 0 calc(30 * var(--m));
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .hero .button-outline {
    min-height: calc(101 * var(--m));
    border-width: calc(3 * var(--m));
  }

  .menu-button {
    top: calc(44.577 * var(--m));
    right: calc(38.462 * var(--m));
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(78.769 * var(--m));
    height: calc(62.769 * var(--m));
    padding: calc(15.385 * var(--m));
  }

  .menu-button span {
    display: block;
    flex: 0 0 auto;
    width: calc(48 * var(--m));
    height: max(2px, calc(3.846 * var(--m)));
    margin: calc(3.846 * var(--m)) 0;
    border-radius: 999px;
    background: #002a4b;
  }



  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(11, 28, 48, 0.5);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(calc(3.846 * var(--m)));
    transition: opacity 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(600 * var(--m));
    max-width: 80vw;
    height: 100dvh;
    min-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    margin-left: auto;
    padding: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 220ms ease;
    border-radius: 11.077px 0 0 11.077px;
    background: #e7efff;
  }

  .mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(164.231 * var(--m));
    border-bottom: calc(1.923 * var(--m)) solid rgba(195, 199, 207, 0.16);
    padding: calc(46.154 * var(--m));
  }

  .mobile-menu-brand img {
    width: calc(318 * var(--m));
    height: calc(53 * var(--m));
    object-fit: contain;
  }

  .mobile-menu-close {
    position: relative;
    flex: 0 0 auto;
    width: calc(57.692 * var(--m));
    height: calc(57.692 * var(--m));
    border: 0;
    border-radius: calc(12 * var(--m));
    background: transparent;
    padding: 0;
  }

  .mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(26.923 * var(--m));
    height: calc(3.846 * var(--m));
    border-radius: 999px;
    background: #002a4b;
    transform-origin: center;
  }

  .mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: calc(46.154 * var(--m));
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: calc(23.077 * var(--m));
    width: 100%;
    border: 0;
    padding: 0;
    color: #204971;
    font-size: calc(34.615 * var(--m));
    line-height: calc(55.385 * var(--m));
  }

  .mobile-nav a + a {
    margin-top: calc(44.231 * var(--m));
  }

  .mobile-nav a.is-active {
    height: calc(59.231 * var(--m));
    border-bottom: 0;
    color: #002a4b;
    font-weight: 700;
  }

  .mobile-nav a.is-active span {
    border-bottom: calc(3.846 * var(--m)) solid #006688;
    line-height: calc(55.385 * var(--m));
  }

  .mobile-nav-icon {
    flex: 0 0 auto;
    width: calc(30 * var(--m));
    height: calc(30 * var(--m));
    object-fit: contain;
  }

  .mobile-menu-divider {
    width: calc(507.692 * var(--m));
    height: calc(1.923 * var(--m));
    margin: calc(46.154 * var(--m)) calc(46.154 * var(--m)) 0;
    background: rgba(195, 199, 207, 0.3);
  }

  .mobile-cta {
    width: calc(100% - calc(92.308 * var(--m)));
    min-height: calc(108.692 * var(--m));
    margin: calc(46.154 * var(--m)) calc(46.154 * var(--m)) 0;
    border-radius: calc(23.077 * var(--m));
    padding: calc(30.769 * var(--m));
    box-shadow:
      0 calc(7.692 * var(--m)) calc(11.538 * var(--m)) calc(-1.923 * var(--m))
        rgba(0, 0, 0, 0.1),
      0 calc(3.846 * var(--m)) calc(7.692 * var(--m)) calc(-3.846 * var(--m))
        rgba(0, 0, 0, 0.1);
    color: #004b65;
    font-size: calc(30.769 * var(--m));
    font-weight: 400;
    line-height: calc(46.154 * var(--m));
  }

  .video-section {
    background: #eff4ff;
    padding: calc(87 * var(--m)) var(--gutter) calc(92.308 * var(--m));
  }

  .video-section::before,
  .video-section::after {
    content: none;
  }

  .video-shell {
    width: 100%;
    max-width: none;
  }

  .video-section .section-heading {
    align-items: flex-start;
    gap: 0;
    text-align: left;
  }

  .video-section .section-heading h2 {
    color: #002a4b;
    font-size: calc(53.846 * var(--m));
    line-height: calc(70 * var(--m));
  }

  .video-section .section-heading p {
    width: calc(683 * var(--m));
    max-width: 100%;
    margin-top: 0;
    color: #42474e;
    font-size: calc(24 * var(--m));
    line-height: calc(36 * var(--m));
    text-align: left;
  }

  .video-frame {
    margin-top: calc(92.308 * var(--m));
    aspect-ratio: 673.077 / 378.615;
    border-radius: calc(46.154 * var(--m));
    box-shadow: none;
  }

  .video-frame::before {
    background: rgba(11, 28, 48, 0.2);
  }

  .video-frame img {
    opacity: 1;
  }

  .play-button {
    width: calc(144 * var(--m));
    height: calc(144 * var(--m));
    border-width: calc(1.5 * var(--m));
    backdrop-filter: blur(calc(9 * var(--m)));
  }

  .play-button::before {
    margin-left: calc(8 * var(--m));
    border-top-width: calc(20.364 * var(--m));
    border-bottom-width: calc(20.364 * var(--m));
    border-left-width: calc(32 * var(--m));
  }

  .stats-values {
    background: linear-gradient(
      to bottom,
      #f8f9ff 0,
      #f8f9ff calc(916.6 * var(--m)),
      #f8f9ff calc(916.6 * var(--m)),
      #f8f9ff 100%
    );
    padding: calc(90.75 * var(--m)) var(--gutter) calc(184.615 * var(--m));
  }

  .stats-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .stats-list div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: calc(15.385 * var(--m));
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    text-align: center;
  }

  .stats-list div:not(:last-child) {
    margin-bottom: calc(92.308 * var(--m));
    border-bottom: calc(1.923 * var(--m)) solid rgba(48, 152, 184, 0.18);
    padding-bottom: calc(92.308 * var(--m));
  }

  .stats-list dt {
    color: #00c1fd;
    font-size: calc(74 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .stats-list dd {
    color: rgba(66, 71, 78, 0.6);
    font-size: calc(30.769 * var(--m));
    font-weight: 400;
    letter-spacing: calc(3.077 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .label-pc {
    display: none;
  }

  .label-mobile {
    display: inline;
  }

  .value-grid {
    display: flex;
    flex-direction: column;
    gap: calc(46.154 * var(--m));
    width: 100%;
    margin: calc(222.615 * var(--m)) auto 0;
    border-top: 0;
    padding-top: 0;
  }

  .value-grid article {
    border-radius: calc(24 * var(--m));
    padding: calc(36 * var(--m));
  }

  .value-grid img {
    height: calc(256.5 * var(--m));
    border-radius: calc(12 * var(--m));
  }

  .value-grid h3 {
    margin-top: calc(24 * var(--m));
    color: #154068;
    font-size: calc(48 * var(--m));
    font-weight: 600;
    line-height: calc(62.4 * var(--m));
  }

  .value-grid p {
    margin-top: calc(24 * var(--m));
    color: #154068;
    font-size: calc(24 * var(--m));
    line-height: calc(36 * var(--m));
  }

  .site-footer {
    background: #eff4ff;
    padding: calc(109 * var(--m)) var(--gutter) calc(92.308 * var(--m));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(92.308 * var(--m)) calc(46.154 * var(--m));
    width: 100%;
    padding-bottom: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .footer-brand img {
    width: calc(318 * var(--m));
    height: calc(53 * var(--m));
  }

  .footer-brand p {
    max-width: calc(673.077 * var(--m));
    margin-top: calc(46.154 * var(--m));
    color: rgba(66, 71, 78, 0.7);
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .footer-nav,
  .footer-contact,
  .footer-news {
    gap: 0;
  }

  .footer-nav {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-news {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-contact {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .site-footer h3 {
    text-transform: none;
    margin-bottom: calc(46.154 * var(--m));
    color: #002a4b;
    font-size: calc(36 * var(--m));
    line-height: calc(62.4 * var(--m));
  }

  .footer-nav a + a,
  .footer-contact p + p {
    margin-top: calc(30.769 * var(--m));
  }

  .footer-news p {
    margin-bottom: calc(46.154 * var(--m));
  }

  .footer-nav a,
  .footer-contact p,
  .footer-news p {
    color: #204971;
    font-size: calc(30.769 * var(--m));
    font-weight: 400;
    line-height: calc(46.154 * var(--m));
  }

  .footer-contact p {
    align-items: center;
    gap: calc(23.077 * var(--m));
  }

  .footer-contact p span {
    max-width: calc(427 * var(--m));
  }

  .footer-contact p:not(:first-of-type) span {
    max-width: none;
    white-space: nowrap;
  }

  .footer-icon {
    --fill-0: #204971;
    width: calc(30 * var(--m));
    height: calc(30 * var(--m));
    margin-top: 0;
  }

  .footer-icon-location {
    width: calc(26.667 * var(--m));
    height: calc(33.333 * var(--m));
  }

  .footer-icon-mail {
    width: calc(30 * var(--m));
    height: calc(24 * var(--m));
  }

  .newsletter {
    gap: calc(12 * var(--m));
    margin-top: 0;
  }

  .newsletter input {
    flex: 1 1 auto;
    width: calc(226.772 * var(--m));
    height: calc(71 * var(--m));
    border-radius: calc(12 * var(--m));
    padding: 0 calc(18 * var(--m));
    font-size: calc(24 * var(--m));
  }

  .newsletter button {
    width: calc(74.689 * var(--m));
    height: calc(70.615 * var(--m));
    border-radius: calc(16.296 * var(--m));
  }

  .send-icon {
    --fill-0: #004b65;
    width: calc(25.802 * var(--m));
    height: calc(21.728 * var(--m));
  }

  .copyright {
    width: 100%;
    margin-top: calc(123.077 * var(--m));
    border-top: calc(1.923 * var(--m)) solid rgba(195, 199, 207, 0.3);
    padding: calc(94.231 * var(--m)) 0 0;
    color: #204971;
    font-size: calc(24 * var(--m));
    font-weight: 600;
    letter-spacing: calc(1.346 * var(--m));
    line-height: calc(32.308 * var(--m));
  }

  

  .site-header .brand {
    position: absolute;
    top: calc(49.462 * var(--m));
    left: calc(38.462 * var(--m));
  }

  .site-header .menu-button {
    position: absolute !important;
    top: calc(44.577 * var(--m)) !important;
    right: calc(38.462 * var(--m)) !important;
    z-index: 3 !important;
    display: block !important;
    width: calc(78.769 * var(--m)) !important;
    height: calc(62.769 * var(--m)) !important;
    min-width: 41px;
    min-height: 33px;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .site-header .menu-button span {
    display: block !important;
    position: absolute;
    left: 50%;
    width: calc(48 * var(--m));
    min-width: 25px;
    height: max(2px, calc(3.846 * var(--m)));
    border-radius: 999px;
    background: #002a4b;
    margin: 0;
    transform: translateX(-50%);
  }

  .site-header .menu-button span:nth-child(1) {
    top: calc(15.385 * var(--m));
  }

  .site-header .menu-button span:nth-child(2) {
    top: calc(29.462 * var(--m));
  }

  .site-header .menu-button span:nth-child(3) {
    top: calc(43.539 * var(--m));
  }
}

@media (max-width: 767.98px) {
  .site-toast {
    top: 96px;
    width: min(352px, calc(100vw - 32px));
    min-height: 74px;
    gap: 14px;
    border-radius: 16px;
    padding: 15px 18px 15px 20px;
    font-size: 16px;
    line-height: 1.35;
  }

  .site-toast::before {
    width: 30px;
    height: 30px;
  }

  .site-toast::after {
    left: 30px;
    top: 28px;
    width: 12px;
    height: 7px;
    border-left-width: 3px;
    border-bottom-width: 3px;
  }

  body[data-aos-duration] [data-aos="fade-left"],
  body.aos-fallback [data-aos="fade-left"] {
    transform: translate3d(24px, 0, 0);
  }

  body[data-aos-duration] [data-aos="fade-right"],
  body.aos-fallback [data-aos="fade-right"] {
    transform: translate3d(-24px, 0, 0);
  }

  body.aos-fallback [data-aos="fade-up"] {
    transform: translate3d(0, 32px, 0);
  }

  .copy-pc {
    display: none;
  }

  .copy-mobile {
    display: inline;
  }

  .advantage {
    padding-bottom: calc(90.385 * var(--m));
  }

  .advantage .section-heading h2 {
    line-height: calc(70 * var(--m));
  }

  .advantage .section-heading p {
    width: calc(635 * var(--m));
    max-width: 100%;
    margin-top: 0;
    font-size: calc(24 * var(--m));
    line-height: calc(36 * var(--m));
  }

  .advantage-grid {
    gap: calc(52.615 * var(--m));
  }

  .advantage-grid h3 {
    font-size: calc(42.308 * var(--m));
    font-weight: 600;
    line-height: calc(63.462 * var(--m));
  }

  .advantage-grid p {
    font-size: calc(30.769 * var(--m));
    line-height: calc(46.154 * var(--m));
  }

  .stats-values {
    padding-top: calc(30.75 * var(--m));
  }

  .value-grid {
    margin: calc(94.615 * var(--m)) auto 0;
    padding-top: calc(38 * var(--m));
  }

  .join {
    padding-bottom: calc(54.846 * var(--m));
  }

  .jobs-list {
    margin-top: calc(92.308 * var(--m));
  }

  .idea {
    background: #d3e4fe;
    padding-top: calc(94 * var(--m));
    padding-bottom: calc(96.692 * var(--m));
  }

  .idea .section-heading {
    align-items: flex-start;
    text-align: left;
  }

  .idea .section-heading h2 {
    font-size: calc(53.846 * var(--m));
    font-weight: 600;
    line-height: calc(70 * var(--m));
  }

  .idea-grid {
    gap: calc(30 * var(--m));
    margin-top: calc(54 * var(--m));
  }

  .idea-grid article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: calc(36 * var(--m));
    padding: calc(54.412 * var(--m)) calc(72 * var(--m)) calc(90.427 * var(--m));
  }

  .idea-grid span,
  .idea-grid h3,
  .idea-grid p {
    margin: 0;
  }

  .idea-grid span {
    font-size: calc(40 * var(--m));
    line-height: calc(36 * var(--m));
  }

  .idea-grid h3 {
    max-width: calc(529.077 * var(--m));
    padding-top: calc(24 * var(--m));
    font-size: calc(48 * var(--m));
    font-weight: 600;
    line-height: calc(62.4 * var(--m));
  }

  .idea-grid p {
    max-width: calc(529.077 * var(--m));
    padding-top: calc(24 * var(--m));
    font-size: calc(24 * var(--m));
    line-height: calc(36 * var(--m));
  }

  .idea-grid article:nth-child(1) h3 {
    max-width: calc(330 * var(--m));
  }
.back-to-top{
  width: 40px;
  height: 40px;
}
  .idea-grid article:nth-child(2) h3 {
    max-width: calc(414 * var(--m));
  }

  .idea-grid article:nth-child(3) h3 {
    max-width: calc(342 * var(--m));
  }

  .idea-grid article:nth-child(1) p {
    max-width: calc(495 * var(--m));
  }

  .idea-grid article:nth-child(2) p {
    max-width: calc(528 * var(--m));
  }

  .idea-grid article:nth-child(3) p {
    max-width: calc(522 * var(--m));
  }
  .copyright {
    margin-top: calc(60.077 * var(--m));
    padding: calc(45.231 * var(--m)) 0 0;
  }
}
