:root {
  --font-family: "din-2014", sans-serif;
  --font-size: 1rem;
  --font-large: 1.125rem;
  --font-small: 0.875rem;
  --font-size-caption: 0.75rem;
  --font-size-eyebrow: 0.75rem;
  --font-weight-regular: 300;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --primary-turqoise: #00aeef;
  --primary-turqoise-light: #cceff7;
  --primary-turqoise-hover: #0098d1;
  --primary-turqoise-active: #0080b3;
  --secondary-teal: #3ba8a0;
  --secondary-teal-hover: #2f8b85;
  --secondary-teal-active: #266f6b;
  --soft-surface-blue: #dbeff7;
  --soft-surface-blue-faint: #f1f8fc;
  --soft-surface-blue-base: #99d5e8;
  --ink: #0e1a20;
  --ink-2: #243036;
  --c-text: #3e4a52;
  --c-muted: #6b7b80;
  --c-soft: #98a4ab;
  --c-border-strong: #c4cdd2;
  --c-border: #e3e8eb;
}

* {
  font-family: var(--font-family);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
  display: block;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2rem, -1.5rem) scale(1.05);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-1.5rem, 1rem) scale(0.95);
  }
}
@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(1rem, 2rem) scale(1.1);
  }
  66% {
    transform: translate(-1rem, -1rem) scale(0.9);
  }
}
@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 100%)));
  }
}
@media (prefers-reduced-motion: reduce) {
  .partnerStrip .partnerTrack {
    animation: none;
  }
}
.-fs-body {
  font-size: var(--font-size);
  font-weight: var(--font-weight-regular);
}

.-fs-large {
  font-size: var(--font-large);
  font-weight: var(--font-weight-regular);
}

.-fs-small {
  font-size: var(--font-small);
  font-weight: var(--font-weight-medium);
}

.-fs-caption {
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-medium);
}

.eyebrow {
  font-size: var(--font-size-eyebrow);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-muted);
}

.link {
  font-size: var(--font-size);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  color: inherit;
}

html,
body {
  box-sizing: border-box;
  overflow-x: clip;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 5rem;
  width: 100%;
  padding: 1rem max(2rem, (100% - 120rem) / 2);
  box-sizing: border-box;
}
.navbar .wordmark {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  justify-self: start;
}
.navbar .wordmark span {
  color: var(--primary-turqoise);
}
.navbar ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  justify-self: center;
}
.navbar ul li a {
  position: relative;
  font-size: var(--font-large) !important;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  padding-bottom: 3px;
}
.navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-turqoise);
  transition: width 0.5s ease;
}
.navbar ul li a:hover::after, .navbar ul li a.active::after {
  width: 100%;
}
.navbar .langSwap {
  border: 2px solid var(--c-border-strong);
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: var(--font-large);
  font-weight: var(--font-weight-bold);
  justify-self: end;
}
.navbar .langSwap button {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-large);
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar .langSwap button.active {
  color: var(--primary-turqoise);
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.navbar.navOpen .hamburger span:nth-child(1) {
  transform: translateY(0.575rem) rotate(45deg);
}
.navbar.navOpen .hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar.navOpen .hamburger span:nth-child(3) {
  transform: translateY(-0.575rem) rotate(-45deg);
}
.navbar {
  border-bottom: 3px solid var(--c-border-strong);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}
main .container {
  padding: 0 3rem;
}
main .hero {
  position: relative;
  width: 100%;
  padding: 4rem 0 3rem 0;
}
main .hero .sectionMarker {
  position: absolute;
  top: 1.75rem;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-eyebrow);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-muted);
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
}
main .hero .sectionMarker span {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--c-border-strong);
  border-radius: 0.25rem;
  color: var(--ink);
  font-weight: var(--font-weight-bold);
}
main .hero .sectionMarker::after {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: var(--c-border-strong);
}
main .hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: 3rem;
  padding: 7rem 3rem;
  text-align: left;
}
main .hero .heroContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
main .hero .heroContent > * {
  opacity: 0;
  transform: translateY(20px);
}
main .hero .heroContent h1 {
  font-size: 5.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
main .hero .heroContent h1 span {
  color: var(--primary-turqoise);
}
main .hero .heroContent .heroText {
  font-size: var(--font-large);
  color: var(--c-muted);
  max-width: 36rem;
  line-height: 1.55;
}
main .hero .heroContent .heroCtaRow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
main .hero .heroContent .heroCtaRow .primaryCta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-turqoise);
  color: white;
  border-radius: 0.5rem;
  font-size: var(--font-large);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.25);
}
main .hero .heroContent .heroCtaRow .primaryCta:hover {
  background-color: var(--primary-turqoise-hover);
  transform: translateY(-1px);
}
main .hero .heroContent .heroCtaRow .secondaryCta {
  color: var(--ink-2);
  font-size: var(--font-large);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
main .hero .heroContent .heroCtaRow .secondaryCta:hover {
  color: var(--primary-turqoise);
}
main .hero .heroContent .heroChips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
main .hero .heroContent .heroChips .heroChip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background-color: white;
  border: 1px solid var(--c-border);
  border-radius: 2rem;
  font-size: var(--font-small);
  color: var(--c-text);
}
main .hero .heroContent .heroChips .heroChip strong {
  color: var(--primary-turqoise);
  font-weight: var(--font-weight-bold);
}
main .hero .heroVisual {
  position: relative;
  height: 30rem;
}
main .hero .heroVisual .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  will-change: transform;
}
main .hero .heroVisual .blob1 {
  width: 18rem;
  height: 18rem;
  background: var(--primary-turqoise);
  top: 1rem;
  left: 2rem;
}
main .hero .heroVisual .blob2 {
  width: 14rem;
  height: 14rem;
  background: var(--secondary-teal);
  bottom: 0;
  right: 1rem;
}
main .hero .heroVisual .blob3 {
  width: 10rem;
  height: 10rem;
  background: var(--soft-surface-blue-base);
  top: 20rem;
  right: 20rem;
}
main .hero .heroVisual .blobRing {
  width: 16rem;
  height: 16rem;
  border: 1px solid var(--primary-turqoise);
  background: transparent;
  filter: none;
  opacity: 0.4;
  top: 4rem;
  left: 5rem;
}
main .solutions {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  background-color: #f5f7f8;
  padding: 8rem 2rem;
  box-shadow: 0 0 0 100vmax #f5f7f8;
  clip-path: inset(0 -100vmax);
}
main .solutions .container {
  width: 100%;
}
main .solutions .container .eyebrow {
  margin-bottom: 1rem;
}
main .solutions .container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
main .solutions .container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
main .solutions .container ul li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid var(--c-border);
}
main .solutions .container ul li:last-child {
  border-bottom: 1px solid var(--c-border);
}
main .solutions .container ul li span {
  font-weight: var(--font-weight-bold);
  font-size: 5rem;
  color: var(--c-border-strong);
  line-height: 1;
  min-width: 5rem;
}
main .solutions .container ul li .solutionContent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
main .solutions .container ul li .solutionContent h3 {
  font-size: 2rem;
}
main .solutions .container ul li .solutionContent p {
  color: var(--c-muted);
  max-width: 90%;
  font-size: 1.25rem;
}
main .solutions .container ul li a {
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  color: var(--primary-turqoise);
  white-space: nowrap;
}
main .solutions .container ul li a:hover {
  color: var(--primary-turqoise-hover);
}
@media (max-width: 768px) {
  main .solutions .container ul li span {
    font-size: 3rem;
    min-width: 3rem;
  }
  main .solutions .container ul li .solutionContent h3 {
    font-size: 1.5rem;
  }
  main .solutions .container ul li .solutionContent p {
    font-size: var(--font-size);
  }
  main .solutions .container ul li a {
    margin-left: 0;
  }
}
main .delivery {
  width: 100%;
  background-color: #182830;
  box-shadow: 0 0 0 100vmax #182830;
  clip-path: inset(0 -100vmax);
  padding: 8rem 2rem;
}
main .delivery .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
}
main .delivery .container .sectionHeader {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main .delivery .container .sectionHeader h2 {
  font-size: 2.5rem;
  color: white;
}
main .delivery .container .sectionHeader p {
  color: var(--c-muted);
  max-width: 80%;
}
main .delivery .container .deliverySteps {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 2rem;
  width: 100%;
}
main .delivery .container .deliverySteps .deliveryStep {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
}
main .delivery .container .deliverySteps .deliveryStep .stepTop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding-right: 2rem;
}
main .delivery .container .deliverySteps .deliveryStep .stepTop .stepNumber {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-turqoise);
}
main .delivery .container .deliverySteps .deliveryStep .stepTop .stepSeparator {
  height: 2px;
  background-color: var(--primary-turqoise);
  flex: 1;
}
main .delivery .container .deliverySteps .deliveryStep .stepContent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .delivery .container .deliverySteps .deliveryStep .stepContent h3 {
  font-size: 2rem;
  color: white;
}
main .delivery .container .deliverySteps .deliveryStep .stepContent p {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 90%;
}
main .delivery .container button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: var(--primary-turqoise);
  color: white;
  border-radius: 0.5rem;
  font-size: var(--font-large);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.25);
}
main .delivery .container button:hover {
  background-color: var(--primary-turqoise-hover);
  transform: translateY(-1px);
}
main .delivery .container button a {
  color: inherit;
  text-decoration: none;
}
main .brandMist {
  width: 100%;
  position: relative;
  background-color: var(--soft-surface-blue-faint);
  box-shadow: 0 0 0 100vmax var(--soft-surface-blue-faint);
  clip-path: inset(0 -100vmax);
  display: flex;
  flex-direction: column;
}
main .brandMist .brandMistVisual {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
main .brandMist .brandMistVisual .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
main .brandMist .brandMistVisual .brandMistBlob1 {
  width: 30rem;
  height: 30rem;
  background: var(--primary-turqoise);
  bottom: -10rem;
  left: -8rem;
}
main .brandMist .brandMistVisual .brandMistBlob2 {
  width: 26rem;
  height: 26rem;
  background: var(--secondary-teal);
  bottom: -10rem;
  right: -8rem;
  opacity: 0.45;
}
main .brandMist .brandMistVisual .brandMistBlobRing {
  width: 22rem;
  height: 22rem;
  border: 1px solid var(--primary-turqoise);
  background: transparent;
  filter: none;
  opacity: 0.22;
  bottom: 18%;
  left: 50%;
  transform: translate(-50%, 50%);
}
main .brandMist .partnerStrip,
main .brandMist .contactCta {
  position: relative;
  z-index: 1;
}
main .partnerStrip {
  width: 100%;
}
main .partnerStrip .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  padding: 4rem 2rem;
}
main .partnerStrip .container h2 {
  font-size: 2.5rem;
}
main .partnerStrip .container .partnerMarquee {
  --marquee-duration: 30s;
  --marquee-gap: 4rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
main .partnerStrip .container .partnerMarquee:hover .partnerTrack {
  animation-play-state: paused;
}
main .partnerStrip .container .partnerTrack {
  display: flex;
  width: max-content;
  align-items: center;
  gap: var(--marquee-gap);
  list-style: none;
  animation: partnerScroll var(--marquee-duration) linear infinite;
  will-change: transform;
}
main .partnerStrip .container .partnerTrack li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}
main .partnerStrip .container .partnerTrack li img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
main .partnerStrip .container .partnerTrack li img:hover {
  filter: grayscale(0);
  opacity: 1;
}
main .contactCta {
  width: 100%;
  position: relative;
  border-top: 3px solid var(--c-border);
}
main .contactCta .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 3rem 8rem;
}
main .contactCta .ctaContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 52rem;
}
main .contactCta .ctaContent h2 {
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
main .contactCta .ctaContent h2 span {
  color: var(--primary-turqoise);
}
main .contactCta .ctaContent p {
  font-size: var(--font-large);
  color: var(--c-muted);
  max-width: 38rem;
  line-height: 1.6;
}
main .contactCta .ctaContent .ctaRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
main .contactCta .ctaContent .ctaRow .primaryCta {
  display: inline-block;
  padding: 1rem 2.25rem;
  background-color: var(--primary-turqoise);
  color: white;
  border-radius: 0.5rem;
  font-size: var(--font-large);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.25);
}
main .contactCta .ctaContent .ctaRow .primaryCta:hover {
  background-color: var(--primary-turqoise-hover);
  transform: translateY(-1px);
}
main .contactCta .ctaContent .ctaRow .secondaryCta {
  color: var(--ink-2);
  font-size: var(--font-large);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: color 0.2s ease;
}
main .contactCta .ctaContent .ctaRow .secondaryCta:hover {
  color: var(--primary-turqoise);
}

footer {
  width: 100%;
  background-color: #182830;
  box-shadow: 0 0 0 100vmax #182830;
  clip-path: inset(0 -100vmax);
  padding: 4rem 2rem 2rem;
  color: var(--c-soft);
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
  width: 100%;
  gap: 2.5rem;
}
footer .container .footerTop {
  display: grid;
  grid-template-columns: minmax(18rem, 1.5fr) repeat(3, 1fr);
  gap: 4rem;
  align-items: start;
}
footer .container .footerInfo {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
footer .container .footerInfo .footerBrand {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}
footer .container .footerInfo p {
  color: var(--c-soft);
  font-size: var(--font-small);
  line-height: 1.7;
  max-width: 22rem;
}
footer .container nav,
footer .container .footerLegal {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
footer .container nav h3,
footer .container .footerLegal h3 {
  font-size: var(--font-size-eyebrow);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-soft);
}
footer .container nav ul,
footer .container .footerLegal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer .container nav ul li a,
footer .container .footerLegal ul li a {
  color: var(--c-muted);
  text-decoration: none;
  font-size: var(--font-size);
  font-weight: var(--font-weight-medium);
  transition: color 0.2s ease;
}
footer .container nav ul li a:hover,
footer .container .footerLegal ul li a:hover {
  color: var(--primary-turqoise);
}
footer .container .footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--font-small);
  color: var(--c-muted);
}
footer .container .footerBottom .footerCopy {
  color: var(--c-muted);
}
footer .container .footerBottom .footerPolicies {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
footer .container .footerBottom .footerPolicies li[aria-hidden=true] {
  color: var(--c-muted);
  opacity: 0.6;
}
footer .container .footerBottom .footerPolicies li a {
  color: var(--c-muted);
  text-decoration: none;
  font-size: var(--font-small);
  transition: color 0.2s ease;
}
footer .container .footerBottom .footerPolicies li a:hover {
  color: var(--primary-turqoise);
}

@media (max-width: 1100px) {
  main .contactCta .ctaContent h2 {
    font-size: 3rem;
  }
}
@media (max-width: 600px) {
  main .brandMist .brandMistVisual .blob {
    filter: blur(45px);
  }
  main .brandMist .brandMistVisual .brandMistBlob1 {
    width: 14rem;
    height: 14rem;
    bottom: -5rem;
    left: -4rem;
  }
  main .brandMist .brandMistVisual .brandMistBlob2 {
    width: 11rem;
    height: 11rem;
    bottom: -4rem;
    right: -3.5rem;
  }
  main .brandMist .brandMistVisual .brandMistBlobRing {
    width: 10rem;
    height: 10rem;
  }
  main .contactCta .container {
    padding: 4rem 1rem 5rem;
  }
  main .contactCta .ctaContent {
    gap: 1.25rem;
  }
  main .contactCta .ctaContent h2 {
    font-size: 2.25rem;
  }
  main .contactCta .ctaContent p {
    font-size: var(--font-size);
  }
  main .contactCta .ctaContent .ctaRow {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }
  main .contactCta .ctaContent .ctaRow .primaryCta {
    text-align: center;
  }
  main .contactCta .ctaContent .ctaRow .secondaryCta {
    text-align: center;
  }
}
@media (max-width: 900px) {
  footer .container {
    padding: 0;
  }
  footer .container .footerTop {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  footer .container .footerInfo {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 3rem 1rem 1.5rem;
  }
  footer .container .footerTop {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer .container .footerBottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ============ Responsive ============ */
@media (max-width: 1100px) {
  main .hero .heroContent h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 1024px) {
  main .hero .container {
    display: flex;
    flex-direction: column;
    padding: 3.5rem 0 0 0;
    gap: 2rem;
  }
  main .hero .heroVisual {
    display: none;
  }
}
@media (max-width: 900px) {
  main {
    padding: 0 1.25rem;
  }
  main .container {
    padding: 0;
  }
  main .hero .heroContent h1 {
    font-size: 3.5rem;
  }
  main .hero .container .heroContent {
    align-items: center;
    text-align: center;
  }
  main .solutions {
    padding: 3rem 1.5rem;
  }
  main .solutions h2 {
    font-size: 2rem;
  }
  main .solutions ul li {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
  main .solutions ul li span {
    font-size: 2.75rem;
    min-width: 3rem;
  }
  main .solutions ul li .solutionContent {
    flex: 1 1 calc(100% - 5rem);
  }
  main .solutions ul li .solutionContent p {
    max-width: 100%;
  }
  main .solutions ul li a {
    margin-left: 4.5rem;
    margin-top: 0.25rem;
  }
  main .delivery {
    padding: 3rem 1.5rem;
  }
  main .delivery .container {
    gap: 1.5rem;
  }
  main .delivery .container .sectionHeader h2 {
    font-size: 2rem;
  }
  main .delivery .container .sectionHeader p {
    max-width: 100%;
  }
  main .delivery .container .deliverySteps {
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
  }
  main .delivery .container .deliverySteps .deliveryStep {
    width: 100%;
    gap: 1rem;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepTop {
    padding-right: 0;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepTop .stepNumber {
    font-size: 3rem;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepTop .stepSeparator {
    display: none;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepContent h3 {
    font-size: 1.5rem;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepContent p {
    max-width: 100%;
  }
  main .delivery .container button {
    margin-top: 1rem;
    align-self: stretch;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 1rem 1.25rem;
  }
  .navbar .wordmark {
    margin-right: auto;
    order: 1;
  }
  .navbar .hamburger {
    display: flex;
    order: 2;
    margin-left: 0.5rem;
  }
  .navbar ul {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    gap: 0;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
  }
  .navbar ul li {
    border-top: 1px solid var(--c-border);
  }
  .navbar ul li a {
    display: block;
    padding: 0.875rem 0.25rem;
    font-size: var(--font-large) !important;
  }
  .navbar .langSwap {
    order: 4;
    margin: 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
    padding: 0;
    border-width: 0;
  }
  .navbar.navOpen ul {
    max-height: 30rem;
    margin-top: 0.75rem;
  }
  .navbar.navOpen .langSwap {
    max-height: 4rem;
    opacity: 1;
    margin-top: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-width: 2px;
  }
}
@media (max-width: 600px) {
  .navbar {
    padding: 0.75rem 1rem;
  }
  .navbar .wordmark {
    font-size: 1.5rem;
  }
  .navbar .langSwap {
    font-size: var(--font-size);
  }
  main {
    padding: 0;
  }
  main .hero {
    padding: 2.5rem 2rem;
  }
  main .hero .container {
    padding: 2.5rem 0 0 0;
    gap: 2rem;
  }
  main .hero .heroContent {
    gap: 1.25rem;
  }
  main .hero .heroContent h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  main .hero .heroContent .heroText {
    font-size: var(--font-size);
  }
  main .hero .heroContent .heroCtaRow {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  main .hero .heroContent .heroCtaRow .primaryCta {
    text-align: center;
    width: 100%;
  }
  main .hero .heroContent .heroCtaRow .secondaryCta {
    text-align: center;
  }
  main .hero .heroContent .heroChips {
    gap: 0.5rem;
    justify-content: center;
  }
  main .hero .heroContent .heroChips .heroChip {
    font-size: var(--font-size-caption);
    padding: 0.4rem 0.7rem;
  }
  main .hero .heroVisual {
    height: 16rem;
  }
  main .hero .sectionMarker {
    font-size: 0.65rem;
  }
  main .solutions {
    padding: 2.5rem 2rem;
  }
  main .solutions h2 {
    font-size: 1.6rem;
  }
  main .solutions ul li {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
    gap: 0.75rem;
  }
  main .solutions ul li span {
    display: none;
  }
  main .solutions ul li .solutionContent {
    flex: 1 1 100%;
    width: 100%;
    gap: 0.5rem;
  }
  main .solutions ul li .solutionContent h3 {
    font-size: 1.25rem;
  }
  main .solutions ul li .solutionContent p {
    max-width: 100%;
  }
  main .solutions ul li a {
    margin-left: 0;
    margin-top: 0.25rem;
    font-size: var(--font-size);
  }
  main .delivery {
    padding: 2.5rem 2rem;
  }
  main .delivery .container .sectionHeader h2 {
    font-size: 1.6rem;
  }
  main .delivery .container .sectionHeader p {
    font-size: var(--font-size);
  }
  main .delivery .container .deliverySteps {
    gap: 1.5rem;
  }
  main .delivery .container .deliverySteps .deliveryStep {
    gap: 0.75rem;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepTop .stepNumber {
    font-size: 2.5rem;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepContent h3 {
    font-size: 1.25rem;
  }
  main .delivery .container .deliverySteps .deliveryStep .stepContent p {
    font-size: var(--font-size);
  }
  main .delivery .container button {
    width: 100%;
  }
  main .brandMist {
    padding: 2.5rem 2rem;
  }
  main .brandMist .container {
    padding-left: 0;
    padding-right: 0;
  }
}/*# sourceMappingURL=index.css.map */