/* [project]/styles/common/Navigation.module.css [client] (css) */
.Navigation-module__lf4dqG__navbar {
  width: 100%;
  color: var(--white);
  z-index: 90;
  transition: background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
  position: fixed;
  top: 0;
  left: 0;
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__doAnimation {
  opacity: 0;
  animation: Navigation-module__lf4dqG__nav-in .7s .4s var(--ease) forwards;
}

.Navigation-module__lf4dqG__navInner {
  width: min(100%, var(--max));
  min-height: 96px;
  padding-inline: var(--g);
  border-bottom: 1px solid #ffffff26;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;
  display: grid;
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__backgroundStyle {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #08090bc2;
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode.Navigation-module__lf4dqG__backgroundStyle, .Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode {
  color: var(--ink);
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode.Navigation-module__lf4dqG__backgroundStyle {
  background: #f2f0ebdb;
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode .Navigation-module__lf4dqG__navInner {
  border-bottom-color: #08090b24;
}

.Navigation-module__lf4dqG__brand {
  justify-self: start;
  align-items: center;
  display: inline-flex;
}

.Navigation-module__lf4dqG__brandLogo {
  --logo-image: url("/images/common/logo/browserbite-wordmark-light.svg");
  --logo-color: var(--white);
  width: clamp(148px, 13vw, 184px);
  color: var(--logo-color);
  aspect-ratio: 818 / 218;
  isolation: isolate;
  display: block;
  position: relative;
  overflow: visible;
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode .Navigation-module__lf4dqG__brandLogo {
  --logo-image: url("/images/common/logo/browserbite-wordmark-dark.svg");
  --logo-color: #3f3f3f;
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__show .Navigation-module__lf4dqG__brandLogo {
  --logo-image: url("/images/common/logo/browserbite-wordmark-light.svg");
  --logo-color: var(--white);
}

.Navigation-module__lf4dqG__logoMorph {
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.Navigation-module__lf4dqG__logoBracketLower, .Navigation-module__lf4dqG__logoBracketUpper {
  fill: currentColor;
}

.Navigation-module__lf4dqG__logoDiamond {
  opacity: 0;
  fill: var(--coral);
}

.Navigation-module__lf4dqG__logoWordmark {
  background: var(--logo-image) left center / contain no-repeat;
  pointer-events: none;
  transform-origin: 0;
  width: 88.5086%;
  height: 45.8716%;
  display: block;
  position: absolute;
  top: 27.0642%;
  left: 5.74572%;
}

.Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoMorph {
  transform-origin: 13%;
  animation: Navigation-module__lf4dqG__logo-morph-in .5s .35s var(--ease) both;
}

.Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoBracketLower {
  animation: Navigation-module__lf4dqG__logo-bracket-lower 1.05s .95s var(--ease) both;
}

.Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoBracketUpper {
  animation: Navigation-module__lf4dqG__logo-bracket-upper 1.05s 1.05s var(--ease) both;
}

.Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoDiamond {
  animation: Navigation-module__lf4dqG__logo-diamond-fly 1.3s 1.05s var(--ease) both;
}

.Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoWordmark {
  animation: Navigation-module__lf4dqG__logo-wordmark-unfold 1.15s 1.4s var(--ease) forwards;
  clip-path: inset(0 100% 0 0);
}

.Navigation-module__lf4dqG__navigationList {
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
  display: flex;
}

.Navigation-module__lf4dqG__navigationItem, .Navigation-module__lf4dqG__scrollButton {
  color: inherit;
  font-size: 13px;
  font-weight: 660;
}

.Navigation-module__lf4dqG__scrollButton {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.Navigation-module__lf4dqG__navigationItem a, .Navigation-module__lf4dqG__scrollButton {
  opacity: .78;
  transition: opacity var(--transition-fast);
}

.Navigation-module__lf4dqG__navigationItem a:hover, .Navigation-module__lf4dqG__scrollButton:hover {
  opacity: 1;
}

.Navigation-module__lf4dqG__actions {
  justify-self: end;
  align-items: center;
  gap: 18px;
  display: flex;
}

.Navigation-module__lf4dqG__langSwitch {
  color: inherit;
  letter-spacing: .03em;
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 12px;
  font-weight: 760;
  display: inline-flex;
}

.Navigation-module__lf4dqG__langActive {
  color: var(--coral);
}

.Navigation-module__lf4dqG__bookCallButton {
  border-radius: var(--radius-full);
  min-height: 45px;
  color: inherit;
  transition: border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff0a;
  border: 1px solid #ffffff57;
  align-items: center;
  gap: 10px;
  padding-inline: 18px;
  font-size: 13px;
  font-weight: 720;
  display: inline-flex;
}

.Navigation-module__lf4dqG__bookCallButton:hover {
  background: #ffffff1a;
  border-color: #ffffff8c;
  transform: translateY(-2px);
}

.Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode .Navigation-module__lf4dqG__bookCallButton {
  background: #08090b0a;
  border-color: #08090b3d;
}

.Navigation-module__lf4dqG__mobileBookCall {
  display: none;
}

.Navigation-module__lf4dqG__mobileMenuIcon {
  width: 44px;
  height: 44px;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 1px solid #ffffff47;
  border-radius: 50%;
  place-items: center;
  display: none;
}

.Navigation-module__lf4dqG__mobileMenuIcon span {
  width: 18px;
  height: 1.5px;
  transition: transform var(--transition-base);
  background: currentColor;
  grid-area: 1 / 1;
  display: block;
}

.Navigation-module__lf4dqG__mobileMenuIcon span:first-child {
  transform: translateY(-4px);
}

.Navigation-module__lf4dqG__mobileMenuIcon span:last-child {
  transform: translateY(4px);
}

.Navigation-module__lf4dqG__show .Navigation-module__lf4dqG__mobileMenuIcon span:first-child {
  transform: rotate(45deg);
}

.Navigation-module__lf4dqG__show .Navigation-module__lf4dqG__mobileMenuIcon span:last-child {
  transform: rotate(-45deg);
}

@keyframes Navigation-module__lf4dqG__nav-in {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes Navigation-module__lf4dqG__logo-morph-in {
  from {
    opacity: 0;
    transform: scale(.72);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes Navigation-module__lf4dqG__logo-bracket-lower {
  from {
    d: path("M6 13.5L6 217.8L202.2 217.8L202.2 151.7L66.6 151.4L66.6 13.7Z");
  }

  to {
    d: path("M0 27L0 218L203 218L203 200L18 200L18 27Z");
  }
}

@keyframes Navigation-module__lf4dqG__logo-bracket-upper {
  0% {
    d: path("M69.6 13.5L69.6 145.5L202.2 145.5L202.2 79.4L134.9 79.4L134.7 13.7Z");
  }

  30% {
    d: path("M181.9 11.5L181.9 152.3L291.9 152.3L291.9 70.2L195.1 70.2L194.9 11.6Z");
  }

  100% {
    d: path("M818 0L818 191L800 191L800 18L536 18L536 0Z");
  }
}

@keyframes Navigation-module__lf4dqG__logo-diamond-fly {
  0% {
    opacity: 1;
    d: path("M175.4 0L139.1 36.2L175.7 72.5L211.8 36.2Z");
  }

  80% {
    opacity: 1;
    d: path("M632.8 59L624.4 67.4L632.8 75.7L641.1 67.4Z");
  }

  100% {
    opacity: 0;
    d: path("M632.8 59L624.4 67.4L632.8 75.7L641.1 67.4Z");
  }
}

@keyframes Navigation-module__lf4dqG__logo-wordmark-unfold {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  34% {
    clip-path: inset(0 68% 0 0);
  }

  100% {
    clip-path: inset(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoMorph, .Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoBracketLower, .Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoBracketUpper, .Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoDiamond {
    animation: none;
  }

  .Navigation-module__lf4dqG__brandLogoAnimated .Navigation-module__lf4dqG__logoWordmark {
    clip-path: inset(0);
    animation: none;
  }
}

@media (max-width: 1080px) {
  .Navigation-module__lf4dqG__navInner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .Navigation-module__lf4dqG__navigationList {
    padding: 126px var(--g) 32px;
    width: 100%;
    min-height: 100svh;
    color: var(--white);
    z-index: -1;
    background: radial-gradient(70% 60% at 90% 20%, #69bfff38, #0000 70%), linear-gradient(135deg, #050608 0%, #161a1e 70%, #252a30 100%);
    flex-direction: column;
    align-items: flex-start;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
  }

  .Navigation-module__lf4dqG__show .Navigation-module__lf4dqG__navigationList {
    display: flex;
  }

  .Navigation-module__lf4dqG__navigationItem, .Navigation-module__lf4dqG__scrollButton {
    letter-spacing: -.06em;
    font-size: clamp(34px, 10vw, 70px);
    font-weight: 520;
    line-height: .95;
  }

  .Navigation-module__lf4dqG__actions .Navigation-module__lf4dqG__bookCallButton {
    display: none;
  }

  .Navigation-module__lf4dqG__navigationList .Navigation-module__lf4dqG__mobileBookCall {
    margin-top: 40px;
    display: inline-flex;
  }

  .Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode .Navigation-module__lf4dqG__navigationList .Navigation-module__lf4dqG__mobileBookCall {
    background: #ffffff0a;
    border-color: #ffffff57;
  }

  .Navigation-module__lf4dqG__mobileMenuIcon {
    display: grid;
  }

  .Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__darkMode .Navigation-module__lf4dqG__mobileMenuIcon {
    border-color: #08090b47;
  }

  .Navigation-module__lf4dqG__navbar.Navigation-module__lf4dqG__show {
    color: var(--white);
  }
}

/* [project]/styles/home/HeroChat.module.css [client] (css) */
.HeroChat-module__HiTaVG__experience {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: min(100%, 920px);
  max-height: 0;
  transition: width .62s var(--ease),
    max-height .62s var(--ease),
    opacity .5s var(--ease),
    transform .5s var(--ease),
    visibility .62s var(--ease);
  grid-column: 1 / -1;
  justify-self: center;
  overflow: hidden;
  transform: translateY(24px);
}

.HeroChat-module__HiTaVG__open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 2000px;
  overflow: visible;
  transform: none;
}

.HeroChat-module__HiTaVG__chatMode {
  width: min(100%, 1280px);
}

.HeroChat-module__HiTaVG__open.HeroChat-module__HiTaVG__hasProposal {
  max-height: none;
}

.HeroChat-module__HiTaVG__heroChat {
  transition: background .62s var(--ease),
    border-color .62s var(--ease),
    box-shadow .62s var(--ease);
  background: none;
  border: 1px solid #0000;
  border-radius: 24px;
  position: relative;
  overflow: visible;
}

.HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__heroChat {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #0d1014e0;
  border-color: #fff3;
  overflow: hidden;
  box-shadow: 0 32px 90px #00000052;
}

.HeroChat-module__HiTaVG__close {
  color: #e5ecef;
  cursor: pointer;
  z-index: 2;
  width: 38px;
  height: 38px;
  transition: border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff0d;
  border: 1px solid #ffffff38;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  display: grid;
  position: absolute;
  top: 12px;
  right: 12px;
}

.HeroChat-module__HiTaVG__close:hover {
  background: #ff725c1a;
  border-color: #ff725cbd;
  transform: translateY(-2px);
}

.HeroChat-module__HiTaVG__close svg {
  width: 16px;
  height: 16px;
  display: block;
}

.HeroChat-module__HiTaVG__hasProposal .HeroChat-module__HiTaVG__close {
  color: var(--ink);
  background: #ffffffa6;
  border-color: #08090b38;
}

.HeroChat-module__HiTaVG__chatGrid {
  transition: grid-template-columns .66s var(--ease);
  grid-template-columns: minmax(0, 1fr) 0fr;
  display: grid;
}

.HeroChat-module__HiTaVG__hasProposal .HeroChat-module__HiTaVG__chatGrid {
  grid-template-columns: minmax(340px, .92fr) minmax(380px, .78fr);
}

.HeroChat-module__HiTaVG__conversation {
  min-width: 0;
  transition: padding .62s var(--ease);
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0;
  display: flex;
}

.HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__conversation {
  align-items: stretch;
  height: min(560px, 100svh - 240px);
  padding: 22px;
}

.HeroChat-module__HiTaVG__promptHeadline {
  text-align: center;
  justify-items: center;
  gap: 12px;
  display: grid;
}

.HeroChat-module__HiTaVG__promptHeadline h2 {
  max-width: 760px;
  color: var(--white);
  letter-spacing: -.02em;
  text-shadow: 0 1px 2px #00000073;
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 630;
  line-height: 1.08;
}

.HeroChat-module__HiTaVG__promptHeadline p {
  color: #bac4ca;
  text-shadow: 0 1px 2px #00000073;
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.HeroChat-module__HiTaVG__messages {
  scrollbar-width: thin;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  min-height: 0;
  padding: 4px 2px 14px;
  display: flex;
  overflow-y: auto;
}

.HeroChat-module__HiTaVG__message {
  color: #e7edf0;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  border: 1px solid #ffffff24;
  border-radius: 18px;
  max-width: min(100%, 640px);
  padding: 13px 16px;
  font-size: 15px;
  line-height: 1.6;
}

.HeroChat-module__HiTaVG__assistant {
  background: #ffffff0f;
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}

.HeroChat-module__HiTaVG__user {
  color: var(--ink);
  background: #f5f0e8;
  border-color: #0000;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}

.HeroChat-module__HiTaVG__error {
  background: #ff725c1f;
  border-color: #ff725c8c;
  align-self: flex-start;
}

.HeroChat-module__HiTaVG__replyOptions {
  flex-wrap: wrap;
  align-self: flex-start;
  gap: 8px;
  max-width: min(100%, 640px);
  padding: 2px 0 4px;
  display: flex;
}

.HeroChat-module__HiTaVG__replyOption {
  border-radius: var(--radius-full);
  color: #e5ecef;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
  background: #ffffff0d;
  border: 1px solid #ffffff38;
  padding: 9px 14px;
  font-size: 13px;
  line-height: 1.35;
}

.HeroChat-module__HiTaVG__replyOption:hover {
  background: #ff725c1a;
  border-color: #ff725cbd;
  transform: translateY(-2px);
}

.HeroChat-module__HiTaVG__typing {
  align-items: center;
  gap: 5px;
  min-height: 1.6em;
  display: inline-flex;
}

.HeroChat-module__HiTaVG__typing span {
  background: currentColor;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1s ease-in-out infinite HeroChat-module__HiTaVG__typing-bounce;
}

.HeroChat-module__HiTaVG__typing span:nth-child(2) {
  animation-delay: .12s;
}

.HeroChat-module__HiTaVG__typing span:nth-child(3) {
  animation-delay: .24s;
}

@keyframes HeroChat-module__HiTaVG__typing-bounce {
  0%, 80%, 100% {
    opacity: .36;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.HeroChat-module__HiTaVG__chatCtaBlock {
  justify-items: start;
  gap: 8px;
  padding-top: 4px;
  display: grid;
}

.HeroChat-module__HiTaVG__chatCta {
  border-radius: var(--radius-full);
  background: var(--coral);
  color: var(--ink);
  cursor: pointer;
  transition: transform var(--transition-base);
  border: 0;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 750;
}

.HeroChat-module__HiTaVG__chatCta:hover {
  transform: translateY(-2px);
}

.HeroChat-module__HiTaVG__chatCtaNote {
  color: #9aa4ab;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.HeroChat-module__HiTaVG__composer {
  width: min(100%, 860px);
  min-height: 128px;
  transition: min-height .62s var(--ease),
    background .62s var(--ease),
    border-color .62s var(--ease),
    box-shadow .62s var(--ease);
  background: #f6f1e9;
  border: 1px solid #ffffff3d;
  border-radius: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 16px;
  display: grid;
  box-shadow: 0 24px 70px #00000042, inset 0 1px #ffffffb8;
}

.HeroChat-module__HiTaVG__promptInput {
  width: 100%;
  min-height: 88px;
  max-height: 180px;
  color: var(--ink);
  resize: none;
  background: none;
  border: 0;
  outline: 0;
  padding: 2px 0;
  font-size: 17px;
  line-height: 1.5;
}

.HeroChat-module__HiTaVG__promptInput::placeholder {
  color: #747c82;
}

.HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__composer {
  width: 100%;
  min-height: auto;
  box-shadow: none;
  background: #00000042;
  border-color: #ffffff2e;
  border-radius: 22px;
  padding: 10px;
}

.HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__promptInput {
  min-height: 52px;
  max-height: 120px;
  color: var(--white);
  font-size: 15px;
}

.HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__promptInput::placeholder {
  color: #7f8991;
}

.HeroChat-module__HiTaVG__send {
  background: var(--coral);
  width: 54px;
  height: 54px;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--transition-base),
    opacity var(--transition-base),
    transform var(--transition-base);
  border: 0;
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.HeroChat-module__HiTaVG__send:disabled {
  opacity: .45;
  cursor: default;
}

.HeroChat-module__HiTaVG__send:hover:enabled {
  background: #ff8a77;
  transform: translateY(-2px);
}

.HeroChat-module__HiTaVG__send svg {
  width: 21px;
  height: 21px;
  display: block;
}

.HeroChat-module__HiTaVG__chips {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 860px);
  display: grid;
}

.HeroChat-module__HiTaVG__chip {
  border-radius: var(--radius-full);
  color: #e5ecef;
  text-align: center;
  cursor: pointer;
  min-height: 42px;
  transition: border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff0d;
  border: 1px solid #ffffff38;
  padding: 10px 13px;
  font-size: 13px;
  line-height: 1.35;
}

.HeroChat-module__HiTaVG__chip:hover {
  background: #ff725c1a;
  border-color: #ff725cbd;
  transform: translateY(-2px);
}

.HeroChat-module__HiTaVG__disclaimer {
  color: #9aa4ab;
  text-align: center;
  max-width: 860px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__disclaimer {
  text-align: left;
}

.HeroChat-module__HiTaVG__disclaimerLink {
  color: inherit;
  text-decoration: underline;
}

.HeroChat-module__HiTaVG__proposal {
  min-width: 0;
  max-height: min(560px, 100svh - 240px);
  color: var(--ink);
  opacity: 0;
  transition: opacity .54s var(--ease),
    transform .54s var(--ease);
  scrollbar-width: thin;
  background: #f4f0e9;
  border-left: 1px solid #ffffff1f;
  overflow-y: auto;
  transform: translateX(34px);
}

.HeroChat-module__HiTaVG__hasProposal .HeroChat-module__HiTaVG__proposal {
  opacity: 1;
  transform: translateX(0);
}

.HeroChat-module__HiTaVG__proposalInner {
  align-content: start;
  gap: 16px;
  width: 100%;
  min-height: 100%;
  padding: 24px;
  display: grid;
}

.HeroChat-module__HiTaVG__proposalHeader {
  border-bottom: 1px solid #08090b29;
  padding-bottom: 14px;
}

.HeroChat-module__HiTaVG__proposalEyebrow {
  color: #676d72;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
  font-size: 12px;
  font-weight: 690;
}

.HeroChat-module__HiTaVG__proposalTitle {
  margin: 8px 0 0;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 630;
  line-height: 1.1;
}

.HeroChat-module__HiTaVG__summaryCard {
  color: var(--white);
  background: #111417;
  border: 1px solid #08090b29;
  border-radius: 14px;
}

.HeroChat-module__HiTaVG__summaryCard p {
  color: #d1d9de;
  margin: 0;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.55;
}

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

.HeroChat-module__HiTaVG__module {
  background: var(--white);
  border: 1px solid #08090b29;
  border-radius: 14px;
  min-height: 96px;
  padding: 14px;
}

.HeroChat-module__HiTaVG__module span {
  color: #686f75;
  border: 1px solid #08090b29;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 760;
  display: inline-flex;
}

.HeroChat-module__HiTaVG__module strong {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.35;
  display: block;
}

.HeroChat-module__HiTaVG__questionsCard {
  background: var(--white);
  border: 1px solid #08090b29;
  border-radius: 14px;
  padding: 16px 18px;
}

.HeroChat-module__HiTaVG__questionsCard h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 690;
  line-height: 1.3;
}

.HeroChat-module__HiTaVG__questionsCard ul {
  color: #666d72;
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.HeroChat-module__HiTaVG__questionsCard li + li {
  margin-top: 6px;
}

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

.HeroChat-module__HiTaVG__step {
  background: #efeae1;
  border: 1px solid #08090b29;
  border-radius: 14px;
  min-height: 80px;
  padding: 12px;
}

.HeroChat-module__HiTaVG__step small {
  color: #697177;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 760;
  display: block;
}

.HeroChat-module__HiTaVG__step strong {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  display: block;
}

.HeroChat-module__HiTaVG__proposalActions {
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
  display: flex;
}

.HeroChat-module__HiTaVG__proposalPrimary, .HeroChat-module__HiTaVG__proposalReset {
  border-radius: var(--radius-full);
  min-height: 46px;
  color: var(--ink);
  cursor: pointer;
  transition: transform var(--transition-base);
  background: none;
  border: 1px solid #08090b29;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 760;
  display: inline-flex;
}

.HeroChat-module__HiTaVG__proposalPrimary {
  background: var(--coral);
  border-color: #0000;
}

.HeroChat-module__HiTaVG__proposalPrimary:hover, .HeroChat-module__HiTaVG__proposalReset:hover {
  transform: translateY(-2px);
}

.HeroChat-module__HiTaVG__proposalNote {
  color: #82898f;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.HeroChat-module__HiTaVG__proposalJump {
  display: none;
}

@media (max-width: 1180px) {
  .HeroChat-module__HiTaVG__hasProposal .HeroChat-module__HiTaVG__chatGrid {
    grid-template-columns: 1fr;
  }

  .HeroChat-module__HiTaVG__hasProposal .HeroChat-module__HiTaVG__close {
    color: #e5ecef;
    background: #ffffff0d;
    border-color: #ffffff38;
  }

  .HeroChat-module__HiTaVG__proposal {
    border-top: 1px solid #ffffff1f;
    border-left: 0;
    max-height: none;
    transform: translateY(24px);
  }

  .HeroChat-module__HiTaVG__hasProposal .HeroChat-module__HiTaVG__proposal {
    transform: translateY(0);
  }

  .HeroChat-module__HiTaVG__proposalInner {
    min-height: 0;
  }

  .HeroChat-module__HiTaVG__proposalJump {
    border-radius: var(--radius-full);
    color: #ffcfc5;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-base),
      transform var(--transition-base);
    background: #ff725c1f;
    border: 1px solid #ff725cbd;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    display: inline-flex;
  }

  .HeroChat-module__HiTaVG__proposalJump:hover {
    background: #ff725c33;
    transform: translateY(-2px);
  }

  .HeroChat-module__HiTaVG__proposalJump svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 720px) {
  .HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__conversation {
    height: min(520px, 100svh - 200px);
    padding: 54px 14px 14px;
  }

  .HeroChat-module__HiTaVG__promptHeadline h2 {
    font-size: 26px;
  }

  .HeroChat-module__HiTaVG__chips, .HeroChat-module__HiTaVG__moduleGrid, .HeroChat-module__HiTaVG__timeline {
    grid-template-columns: 1fr;
  }

  .HeroChat-module__HiTaVG__composer {
    border-radius: 24px;
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 112px;
  }

  .HeroChat-module__HiTaVG__promptInput {
    min-height: 74px;
  }

  .HeroChat-module__HiTaVG__chatMode .HeroChat-module__HiTaVG__promptInput {
    min-height: 48px;
  }

  .HeroChat-module__HiTaVG__send {
    width: 48px;
    height: 48px;
  }

  .HeroChat-module__HiTaVG__proposalInner {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .HeroChat-module__HiTaVG__experience, .HeroChat-module__HiTaVG__heroChat, .HeroChat-module__HiTaVG__chatGrid, .HeroChat-module__HiTaVG__conversation, .HeroChat-module__HiTaVG__composer, .HeroChat-module__HiTaVG__proposal {
    transition: none;
  }

  .HeroChat-module__HiTaVG__typing span {
    animation: none;
  }
}

/* [project]/styles/home/Header.module.css [client] (css) */
.Header-module__gGZkwq__headerContainer {
  background: var(--gradient-hero);
  min-height: min(980px, 100svh);
  color: var(--white);
  isolation: isolate;
  background-position: 58% 38%, 12% 64%, 50%;
  background-size: 125% 125%, 130% 130%, 100% 100%;
  align-items: center;
  animation: 18s ease-in-out infinite alternate Header-module__gGZkwq__hero-drift;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Header-module__gGZkwq__headerContainer:before {
  content: "";
  opacity: .28;
  z-index: 1;
  will-change: background-position;
  background-image: linear-gradient(#ffffff09 1px, #0000 1px), linear-gradient(90deg, #ffffff09 1px, #0000 1px);
  background-position: 0 0;
  background-size: 72px 72px;
  animation: 30s linear infinite Header-module__gGZkwq__hero-grid-drift;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000, #0000 85%);
  mask-image: linear-gradient(#000, #0000 85%);
}

.Header-module__gGZkwq__headerContainer:after {
  content: "";
  z-index: 1;
  will-change: opacity, transform;
  border: 1px solid #ffffff2e;
  border-radius: 50%;
  width: 42vw;
  min-width: 520px;
  height: 42vw;
  min-height: 520px;
  animation: 20s ease-in-out infinite alternate Header-module__gGZkwq__hero-orbit;
  position: absolute;
  top: -20vw;
  right: -15vw;
  box-shadow: 0 0 0 90px #ffffff04, 0 0 0 180px #ffffff03;
}

.Header-module__gGZkwq__visual {
  pointer-events: none;
  z-index: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.Header-module__gGZkwq__visualImage {
  object-fit: cover;
  object-position: center;
  will-change: transform;
  width: 100%;
  height: 100%;
  animation: 10s ease-in-out infinite alternate Header-module__gGZkwq__hero-image-drift;
  transform: scale(1.04)translate3d(0, -.5%, 0);
}

@keyframes Header-module__gGZkwq__hero-image-drift {
  from {
    transform: scale(1.04)translate3d(0, -.5%, 0);
  }

  to {
    transform: scale(1.04)translate3d(0, .5%, 0);
  }
}

.Header-module__gGZkwq__visual:after {
  content: "";
  background: linear-gradient(108deg, #050608a8 0%, #05060847 32%, #05060800 56%), linear-gradient(to top, #05060885 0%, #05060800 30%), linear-gradient(#0506086b 0%, #05060800 22%);
  position: absolute;
  inset: 0;
}

.Header-module__gGZkwq__logoEdges {
  opacity: .82;
  pointer-events: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Header-module__gGZkwq__logoEdge {
  transform-box: view-box;
  will-change: transform;
}

.Header-module__gGZkwq__logoEdgeMobile {
  display: none;
}

.Header-module__gGZkwq__logoEdgeLower {
  opacity: .74;
  transform-origin: 18% 78%;
  animation: 18s ease-in-out 1.8s infinite alternate Header-module__gGZkwq__logo-edge-breathe-lower;
}

.Header-module__gGZkwq__logoEdgeUpper {
  opacity: .64;
  transform-origin: 82% 24%;
  animation: 20s ease-in-out 2.1s infinite alternate Header-module__gGZkwq__logo-edge-breathe-upper;
}

.Header-module__gGZkwq__logoEdgeLowerMobile {
  opacity: .54;
  transform-origin: 12% 88%;
  animation: 18s ease-in-out 1.8s infinite alternate Header-module__gGZkwq__logo-edge-breathe-lower;
}

.Header-module__gGZkwq__logoEdgeUpperMobile {
  opacity: .42;
  transform-origin: 86% 24%;
  animation: 20s ease-in-out 2.1s infinite alternate Header-module__gGZkwq__logo-edge-breathe-upper;
}

.Header-module__gGZkwq__logoEdgeHalo, .Header-module__gGZkwq__logoEdgePath, .Header-module__gGZkwq__logoEdgeGlint {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.Header-module__gGZkwq__logoEdgeHalo {
  opacity: 0;
  filter: url("#hero-logo-edge-blur");
  stroke: url("#hero-logo-edge");
  animation: Header-module__gGZkwq__logo-edge-halo 1.7s .24s var(--ease) both;
  stroke-width: 48px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
}

.Header-module__gGZkwq__logoEdgePath {
  opacity: 0;
  stroke: url("#hero-logo-edge");
  animation: Header-module__gGZkwq__logo-edge-draw 1.7s .24s var(--ease) both;
  stroke-width: 15px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
}

.Header-module__gGZkwq__logoEdgeGlint {
  opacity: 0;
  filter: drop-shadow(0 0 10px #ff8d79b3);
  stroke: #fff4ee;
  stroke-width: 4px;
  mix-blend-mode: screen;
  stroke-dasharray: 96 904;
  stroke-dashoffset: 1000px;
  animation: 8.6s ease-in-out 2.4s infinite Header-module__gGZkwq__logo-edge-glint;
}

.Header-module__gGZkwq__logoEdgeUpper .Header-module__gGZkwq__logoEdgeHalo, .Header-module__gGZkwq__logoEdgeUpper .Header-module__gGZkwq__logoEdgePath {
  animation-delay: .52s;
}

.Header-module__gGZkwq__logoEdgeUpper .Header-module__gGZkwq__logoEdgeGlint {
  animation-delay: 3.35s;
}

.Header-module__gGZkwq__content {
  padding: 96px var(--g) 0;
  width: min(100%, var(--max));
  z-index: 4;
  flex-direction: column;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.Header-module__gGZkwq__heroCopy, .Header-module__gGZkwq__heroSide {
  z-index: 6;
  width: 100%;
  max-height: 900px;
  transition: max-height .62s var(--ease),
    padding .62s var(--ease),
    opacity .5s var(--ease),
    transform .5s var(--ease),
    visibility .62s var(--ease);
  position: relative;
}

.Header-module__gGZkwq__copyCollapsed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0;
  margin-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transform: translateY(-24px);
}

.Header-module__gGZkwq__heroSide {
  isolation: isolate;
  gap: 34px;
  max-width: 640px;
  margin-top: clamp(30px, 4vw, 48px);
  padding-bottom: 10px;
  display: grid;
}

.Header-module__gGZkwq__heroSide > * {
  z-index: 1;
  position: relative;
}

.Header-module__gGZkwq__eyebrow {
  color: #c4c9ce;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: Header-module__gGZkwq__reveal-up .8s .2s var(--ease) both;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.Header-module__gGZkwq__eyebrow:before {
  content: "";
  opacity: .75;
  background: currentColor;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
}

.Header-module__gGZkwq__primaryHeading {
  max-width: 100%;
  font-size: calc(var(--display) * var(--title-fit, 1));
  letter-spacing: -.073em;
  animation: Header-module__gGZkwq__reveal-up .8s .35s var(--ease) both;
  margin: 0;
  font-weight: 520;
  line-height: .84;
  display: block;
  position: relative;
}

.Header-module__gGZkwq__titleLead, .Header-module__gGZkwq__titleAccent {
  white-space: nowrap;
  display: block;
  position: relative;
}

.Header-module__gGZkwq__titleMeasure {
  visibility: hidden;
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.Header-module__gGZkwq__titleMeasure span {
  white-space: nowrap;
  display: block;
}

.Header-module__gGZkwq__typedGhost {
  visibility: hidden;
}

.Header-module__gGZkwq__typedOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.Header-module__gGZkwq__caret {
  background: #ffffffd1;
  width: .045em;
  min-width: 2px;
  height: .72em;
  margin-left: .06em;
  animation: 1.1s step-end infinite Header-module__gGZkwq__caret-blink;
  display: inline-block;
  transform: translateY(.03em);
}

@keyframes Header-module__gGZkwq__caret-blink {
  50% {
    opacity: 0;
  }
}

.Header-module__gGZkwq__titleLead {
  overflow-wrap: normal;
}

.Header-module__gGZkwq__titleAccent {
  color: #0000;
  text-shadow: 0 2px 20px #00000073;
  -webkit-text-stroke: 2px #ffffffe6;
  font-weight: 520;
}

.Header-module__gGZkwq__subHeading {
  color: #dde4ea;
  letter-spacing: -.018em;
  text-shadow: 0 1px 3px #000000a6, 0 14px 30px #0009;
  max-width: 760px;
  animation: Header-module__gGZkwq__reveal-up .8s .5s var(--ease) both;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.36;
}

.Header-module__gGZkwq__ctaRow {
  animation: Header-module__gGZkwq__reveal-up .8s .65s var(--ease) both;
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.Header-module__gGZkwq__primaryButton, .Header-module__gGZkwq__secondaryButton {
  border-radius: var(--radius-full);
  cursor: pointer;
  min-height: 58px;
  transition: background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  display: inline-flex;
}

.Header-module__gGZkwq__primaryButton {
  background: var(--coral);
  color: var(--ink);
}

.Header-module__gGZkwq__secondaryButton {
  color: var(--white);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  background: linear-gradient(#1b1f24d1, #111418b8);
  border-color: #ffffff47;
  box-shadow: inset 0 1px #ffffff1a, 0 18px 36px #0000002e;
}

.Header-module__gGZkwq__primaryButton:hover, .Header-module__gGZkwq__secondaryButton:hover {
  transform: translateY(-3px);
}

.Header-module__gGZkwq__secondaryButton:hover {
  background: linear-gradient(#23282edb, #15181cc2);
  border-color: #fff6;
}

.Header-module__gGZkwq__scrollButton {
  bottom: 18px;
  left: var(--g);
  color: #8f969d;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 7;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 690;
  display: flex;
  position: absolute;
}

.Header-module__gGZkwq__scrollButton:before {
  content: "";
  background: currentColor;
  width: 38px;
  height: 1px;
}

@keyframes Header-module__gGZkwq__reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes Header-module__gGZkwq__hero-drift {
  from {
    background-position: 58% 38%, 12% 64%, 50%;
  }

  50% {
    background-position: 72% 34%, 18% 72%, 50%;
  }

  to {
    background-position: 64% 46%, 8% 58%, 50%;
  }
}

@keyframes Header-module__gGZkwq__hero-grid-drift {
  to {
    background-position: 72px 72px;
  }
}

@keyframes Header-module__gGZkwq__hero-orbit {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0)scale(1);
  }

  50% {
    opacity: .72;
    transform: translate3d(-4vw, 3vw, 0)scale(1.06);
  }

  to {
    opacity: .88;
    transform: translate3d(-1vw, -1vw, 0)scale(.98);
  }
}

@keyframes Header-module__gGZkwq__logo-edge-halo {
  0% {
    opacity: 0;
    stroke-dashoffset: 1000px;
  }

  46% {
    opacity: .18;
  }

  100% {
    opacity: .07;
    stroke-dashoffset: 0;
  }
}

@keyframes Header-module__gGZkwq__logo-edge-draw {
  0% {
    opacity: 0;
    stroke-dashoffset: 1000px;
  }

  58% {
    opacity: .74;
  }

  100% {
    opacity: .48;
    stroke-dashoffset: 0;
  }
}

@keyframes Header-module__gGZkwq__logo-edge-glint {
  0%, 44% {
    opacity: 0;
    stroke-dashoffset: 1030px;
  }

  52% {
    opacity: .86;
  }

  68% {
    opacity: .52;
    stroke-dashoffset: -112px;
  }

  78%, 100% {
    opacity: 0;
    stroke-dashoffset: -190px;
  }
}

@keyframes Header-module__gGZkwq__logo-edge-breathe-lower {
  from {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-1.2vw, 1vw, 0);
  }

  to {
    transform: translate3d(.8vw, -.6vw, 0);
  }
}

@keyframes Header-module__gGZkwq__logo-edge-breathe-upper {
  from {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(1.1vw, -.8vw, 0);
  }

  to {
    transform: translate3d(-.7vw, .9vw, 0);
  }
}

@media (max-width: 1080px) {
  .Header-module__gGZkwq__heroSide {
    max-width: 680px;
  }

  .Header-module__gGZkwq__logoEdges {
    opacity: .68;
    width: 122%;
    left: -10%;
  }

  .Header-module__gGZkwq__logoEdgeUpper {
    opacity: .48;
  }
}

@media (max-width: 720px) {
  .Header-module__gGZkwq__headerContainer {
    min-height: auto;
  }

  .Header-module__gGZkwq__content {
    padding-top: 100px;
    padding-bottom: 88px;
  }

  .Header-module__gGZkwq__eyebrow {
    letter-spacing: .11em;
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.35;
  }

  .Header-module__gGZkwq__eyebrow:before {
    margin-top: .58em;
  }

  .Header-module__gGZkwq__primaryHeading {
    font-size: calc(clamp(42px, 12.2vw, 62px) * var(--title-fit, 1));
    letter-spacing: -.048em;
    line-height: .9;
  }

  .Header-module__gGZkwq__titleLead, .Header-module__gGZkwq__titleAccent {
    overflow-wrap: normal;
    max-width: 100%;
  }

  .Header-module__gGZkwq__heroSide {
    gap: 26px;
  }

  .Header-module__gGZkwq__subHeading {
    font-size: 18px;
  }

  .Header-module__gGZkwq__ctaRow {
    flex-direction: column;
  }

  .Header-module__gGZkwq__primaryButton, .Header-module__gGZkwq__secondaryButton {
    text-align: center;
    width: 100%;
    padding-inline: 22px;
    line-height: 1.2;
  }

  .Header-module__gGZkwq__visual:after {
    background: linear-gradient(#05060885 0%, #05060838 30%, #05060800 52%), linear-gradient(to top, #05060894 0%, #05060800 36%);
  }

  .Header-module__gGZkwq__logoEdges {
    opacity: .42;
    width: 100%;
    left: 0;
  }

  .Header-module__gGZkwq__logoEdgeDesktop {
    display: none;
  }

  .Header-module__gGZkwq__logoEdgeMobile {
    display: block;
  }

  .Header-module__gGZkwq__logoEdgeLowerMobile {
    opacity: .56;
  }

  .Header-module__gGZkwq__logoEdgeUpperMobile {
    opacity: .42;
  }

  .Header-module__gGZkwq__logoEdgeHalo {
    stroke-width: 34px;
  }

  .Header-module__gGZkwq__logoEdgePath {
    stroke-width: 10px;
  }

  .Header-module__gGZkwq__logoEdgeGlint {
    stroke-width: 3px;
  }

  .Header-module__gGZkwq__scrollButton {
    display: none;
  }
}

@media (max-width: 380px) {
  .Header-module__gGZkwq__content {
    padding-top: 90px;
  }

  .Header-module__gGZkwq__primaryHeading {
    font-size: calc(clamp(40px, 12.4vw, 46px) * var(--title-fit, 1));
  }

  .Header-module__gGZkwq__primaryButton, .Header-module__gGZkwq__secondaryButton {
    gap: 10px;
    padding-inline: 18px;
  }

  .Header-module__gGZkwq__logoEdges {
    opacity: .34;
  }
}

@media (prefers-reduced-motion: reduce) {
  .Header-module__gGZkwq__heroCopy, .Header-module__gGZkwq__heroSide {
    transition: none;
  }

  .Header-module__gGZkwq__headerContainer, .Header-module__gGZkwq__headerContainer:before, .Header-module__gGZkwq__headerContainer:after, .Header-module__gGZkwq__visualImage, .Header-module__gGZkwq__logoEdge, .Header-module__gGZkwq__logoEdgeHalo, .Header-module__gGZkwq__logoEdgePath, .Header-module__gGZkwq__logoEdgeGlint {
    animation: none;
  }

  .Header-module__gGZkwq__visualImage {
    transform: none;
  }

  .Header-module__gGZkwq__logoEdgePath {
    opacity: .34;
    stroke-dashoffset: 0;
  }

  .Header-module__gGZkwq__logoEdgeHalo, .Header-module__gGZkwq__logoEdgeGlint {
    opacity: 0;
  }
}

/* [project]/styles/home/LogoStrip.module.css [client] (css) */
.LogoStrip-module__aWuylW__strip {
  padding: clamp(30px, 4vw, 52px) var(--g);
  background: var(--paper);
  color: var(--ink);
}

.LogoStrip-module__aWuylW__label {
  color: #6f7680;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-size: 12px;
  font-weight: 600;
}

.LogoStrip-module__aWuylW__stripHeading {
  display: contents;
}

.LogoStrip-module__aWuylW__note {
  display: none;
}

.LogoStrip-module__aWuylW__marquee {
  --logo-gap: clamp(18px, 3.4vw, 56px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #0000, #000 8% 92%, #0000);
  mask-image: linear-gradient(to right, #0000, #000 8% 92%, #0000);
}

.LogoStrip-module__aWuylW__track {
  width: max-content;
  animation: 45s linear infinite LogoStrip-module__aWuylW__scroll;
  display: flex;
}

.LogoStrip-module__aWuylW__marquee:hover .LogoStrip-module__aWuylW__track {
  animation-play-state: paused;
}

.LogoStrip-module__aWuylW__logos {
  padding-right: var(--logo-gap);
  gap: var(--logo-gap);
  align-items: center;
  display: flex;
}

@keyframes LogoStrip-module__aWuylW__scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .LogoStrip-module__aWuylW__track {
    width: auto;
    animation: none;
  }

  .LogoStrip-module__aWuylW__logos {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1240px;
    margin-inline: auto;
    padding-right: 0;
  }

  .LogoStrip-module__aWuylW__logos[aria-hidden] {
    display: none;
  }
}

.LogoStrip-module__aWuylW__logo {
  opacity: .85;
  width: clamp(96px, 11vw, 138px);
  height: clamp(34px, 4vw, 48px);
  transition: opacity var(--transition-base);
  display: block;
  position: relative;
}

.LogoStrip-module__aWuylW__inverted {
  filter: invert();
}

a.LogoStrip-module__aWuylW__logo:hover, a.LogoStrip-module__aWuylW__logo:focus-visible {
  opacity: 1;
}

.LogoStrip-module__aWuylW__contactStrip {
  border-top: 1px solid #11131724;
  padding: 30px 36px 36px;
}

.LogoStrip-module__aWuylW__contactStrip .LogoStrip-module__aWuylW__stripHeading {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 25px;
  display: flex;
}

.LogoStrip-module__aWuylW__contactStrip .LogoStrip-module__aWuylW__label {
  color: #4f545a;
  text-align: left;
  margin: 0;
  font-size: 10px;
  font-weight: 760;
}

.LogoStrip-module__aWuylW__contactStrip .LogoStrip-module__aWuylW__note {
  color: #85898d;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
}

.LogoStrip-module__aWuylW__contactStrip .LogoStrip-module__aWuylW__logo {
  height: 42px;
}

@media (max-width: 720px) {
  .LogoStrip-module__aWuylW__contactStrip {
    padding-inline: 22px;
  }

  .LogoStrip-module__aWuylW__contactStrip .LogoStrip-module__aWuylW__stripHeading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .LogoStrip-module__aWuylW__logos {
    gap: 18px 26px;
  }

  .LogoStrip-module__aWuylW__logo {
    width: 104px;
    height: 36px;
  }
}

/* [project]/styles/home/PainPoints.module.css [client] (css) */
.PainPoints-module__A2P-da__section {
  padding: clamp(92px, 11vw, 180px) var(--g);
  background: var(--paper);
  scroll-margin-top: 120px;
  position: relative;
}

.PainPoints-module__A2P-da__section:before {
  content: "";
  width: min(100%, var(--max));
  background: var(--line-l);
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.PainPoints-module__A2P-da__statement, .PainPoints-module__A2P-da__grid, .PainPoints-module__A2P-da__outcomePanel {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.PainPoints-module__A2P-da__statement {
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1.62fr);
  align-items: start;
  gap: clamp(48px, 9vw, 150px);
  display: grid;
}

.PainPoints-module__A2P-da__kicker, .PainPoints-module__A2P-da__panelKicker {
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.PainPoints-module__A2P-da__kicker:before, .PainPoints-module__A2P-da__panelKicker:before {
  content: "";
  opacity: .75;
  background: currentColor;
  width: 28px;
  height: 1px;
}

.PainPoints-module__A2P-da__title {
  max-width: 1120px;
  color: var(--ink);
  font-size: var(--h2);
  letter-spacing: -.061em;
  text-wrap: balance;
  margin: 0;
  font-weight: 520;
  line-height: .93;
}

.PainPoints-module__A2P-da__title span {
  color: #a7aaa7;
}

.PainPoints-module__A2P-da__description {
  color: #555b61;
  letter-spacing: -.018em;
  max-width: 760px;
  margin-top: 42px;
  margin-left: min(12vw, 170px);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.38;
}

.PainPoints-module__A2P-da__grid {
  background: var(--line-l);
  border-block: 1px solid var(--line-l);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(70px, 10vw, 150px);
  display: grid;
}

.PainPoints-module__A2P-da__card {
  background: var(--paper);
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: clamp(28px, 3.2vw, 52px);
  display: flex;
}

.PainPoints-module__A2P-da__cardIndex {
  color: var(--ink);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 780;
}

.PainPoints-module__A2P-da__cardTitle {
  max-width: 380px;
  color: var(--ink);
  letter-spacing: -.045em;
  text-wrap: balance;
  margin: 0;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 560;
  line-height: 1;
}

.PainPoints-module__A2P-da__cardText {
  color: #686d71;
  max-width: 400px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.55;
}

.PainPoints-module__A2P-da__outcomePanel {
  background: var(--ink);
  color: var(--white);
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 1px;
  padding: clamp(30px, 3.2vw, 52px);
  display: flex;
}

.PainPoints-module__A2P-da__panelKicker {
  color: #c4c9ce;
}

.PainPoints-module__A2P-da__panelTitle {
  letter-spacing: -.045em;
  text-wrap: balance;
  max-width: 760px;
  margin: 0;
  font-size: clamp(29px, 3.1vw, 50px);
  font-weight: 560;
  line-height: 1;
}

.PainPoints-module__A2P-da__panelLink {
  color: var(--coral);
  white-space: nowrap;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
}

.PainPoints-module__A2P-da__ticker {
  background: var(--ink);
  color: var(--white);
  border-block: 1px solid #ffffff29;
  overflow: hidden;
}

.PainPoints-module__A2P-da__track {
  width: max-content;
  animation: 28s linear infinite PainPoints-module__A2P-da__ticker;
  display: flex;
}

.PainPoints-module__A2P-da__group {
  align-items: center;
  gap: 28px;
  padding: 22px 14px;
  display: flex;
}

.PainPoints-module__A2P-da__group span {
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 730;
  display: inline-flex;
}

.PainPoints-module__A2P-da__group b {
  background: var(--coral);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

@keyframes PainPoints-module__A2P-da__ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .PainPoints-module__A2P-da__statement {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .PainPoints-module__A2P-da__description {
    margin-left: 0;
  }

  .PainPoints-module__A2P-da__grid {
    grid-template-columns: 1fr;
  }

  .PainPoints-module__A2P-da__outcomePanel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .PainPoints-module__A2P-da__section {
    padding-block: 88px;
  }

  .PainPoints-module__A2P-da__description {
    margin-top: 28px;
  }

  .PainPoints-module__A2P-da__grid {
    margin-top: 64px;
  }
}

/* [project]/styles/home/SolutionOverview.module.css [client] (css) */
.SolutionOverview-module__WG0gQW__section {
  padding: clamp(92px, 11vw, 180px) var(--g);
  background: var(--paper2);
  scroll-margin-top: 120px;
}

.SolutionOverview-module__WG0gQW__header, .SolutionOverview-module__WG0gQW__grid, .SolutionOverview-module__WG0gQW__footerCard {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.SolutionOverview-module__WG0gQW__header {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
  display: grid;
}

.SolutionOverview-module__WG0gQW__kicker {
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.SolutionOverview-module__WG0gQW__kicker:before {
  content: "";
  opacity: .75;
  background: currentColor;
  width: 28px;
  height: 1px;
}

.SolutionOverview-module__WG0gQW__title {
  color: var(--ink);
  font-size: var(--h2);
  letter-spacing: -.061em;
  text-wrap: balance;
  margin: 0;
  font-weight: 520;
  line-height: .93;
}

.SolutionOverview-module__WG0gQW__title span {
  display: block;
}

.SolutionOverview-module__WG0gQW__description {
  color: #555b61;
  letter-spacing: -.018em;
  justify-self: end;
  max-width: 760px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.38;
}

.SolutionOverview-module__WG0gQW__grid {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
  gap: 18px;
  margin-top: clamp(64px, 8vw, 120px);
  display: grid;
}

.SolutionOverview-module__WG0gQW__card {
  height: 100%;
  min-height: 570px;
  color: var(--ink);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  background: #dce9f5;
  flex-direction: column;
  grid-column: span 4;
  padding: clamp(30px, 3vw, 48px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.SolutionOverview-module__WG0gQW__card:nth-child(2) {
  background: var(--ink2);
  color: var(--white);
}

.SolutionOverview-module__WG0gQW__card:nth-child(3) {
  background: var(--coral);
}

.SolutionOverview-module__WG0gQW__card:after {
  content: "";
  pointer-events: none;
  z-index: 0;
  border: 1px solid #08090b2e;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  position: absolute;
  bottom: -110px;
  right: -110px;
  box-shadow: 0 0 0 42px #08090b0a, 0 0 0 84px #08090b06;
}

.SolutionOverview-module__WG0gQW__card > * {
  z-index: 1;
  position: relative;
}

.SolutionOverview-module__WG0gQW__card:nth-child(2):after {
  border-color: #ffffff2e;
  box-shadow: 0 0 0 42px #ffffff0a, 0 0 0 84px #ffffff05;
}

.SolutionOverview-module__WG0gQW__cardTop {
  justify-content: space-between;
  gap: 22px;
  display: flex;
}

.SolutionOverview-module__WG0gQW__cardEyebrow {
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 780;
}

.SolutionOverview-module__WG0gQW__cardPrice {
  text-align: right;
  max-width: 170px;
  font-size: 13px;
  font-weight: 740;
  line-height: 1.2;
}

.SolutionOverview-module__WG0gQW__cardPrice span {
  display: block;
}

.SolutionOverview-module__WG0gQW__cardTitle {
  color: inherit;
  letter-spacing: -.045em;
  text-wrap: balance;
  margin: 44px 0 0;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 560;
  line-height: 1;
}

.SolutionOverview-module__WG0gQW__cardTitle span {
  display: block;
}

.SolutionOverview-module__WG0gQW__cardText {
  color: #586069;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
}

.SolutionOverview-module__WG0gQW__card:nth-child(2) .SolutionOverview-module__WG0gQW__cardText {
  color: #b4bac0;
}

.SolutionOverview-module__WG0gQW__pointList {
  border-top: 1px solid #08090b33;
  margin: auto 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
}

.SolutionOverview-module__WG0gQW__card:nth-child(2) .SolutionOverview-module__WG0gQW__pointList {
  border-color: #ffffff2e;
}

.SolutionOverview-module__WG0gQW__pointItem {
  border-bottom: 1px solid #08090b33;
  gap: 12px;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 630;
  display: flex;
}

.SolutionOverview-module__WG0gQW__pointItem:before {
  content: "↗";
  font-weight: 800;
}

.SolutionOverview-module__WG0gQW__card:nth-child(2) .SolutionOverview-module__WG0gQW__pointItem {
  border-color: #ffffff2e;
}

.SolutionOverview-module__WG0gQW__cardLink {
  color: inherit;
  align-self: flex-start;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  display: inline-flex;
}

.SolutionOverview-module__WG0gQW__cardLink span {
  transition: transform var(--transition-base);
}

.SolutionOverview-module__WG0gQW__cardLink:hover span {
  transform: translateX(5px);
}

.SolutionOverview-module__WG0gQW__footerCard {
  border-top: 1px solid var(--line-l);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 90px;
  padding-top: 28px;
  display: flex;
}

.SolutionOverview-module__WG0gQW__footerTitle {
  color: var(--ink);
  letter-spacing: -.045em;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 560;
  line-height: 1.04;
}

.SolutionOverview-module__WG0gQW__footerText {
  color: #60666b;
  max-width: 760px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.SolutionOverview-module__WG0gQW__footerButton {
  border-radius: var(--radius-full);
  background: var(--coral);
  min-height: 58px;
  color: var(--ink);
  white-space: nowrap;
  transition: transform var(--transition-base);
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  display: inline-flex;
}

.SolutionOverview-module__WG0gQW__footerButton:hover {
  transform: translateY(-3px);
}

@media (max-width: 1080px) {
  .SolutionOverview-module__WG0gQW__header {
    grid-template-columns: 1fr;
  }

  .SolutionOverview-module__WG0gQW__description {
    justify-self: start;
  }

  .SolutionOverview-module__WG0gQW__card:nth-child(n) {
    grid-column: span 6;
  }

  .SolutionOverview-module__WG0gQW__card:nth-child(3) {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 720px) {
  .SolutionOverview-module__WG0gQW__section {
    padding-block: 88px;
  }

  .SolutionOverview-module__WG0gQW__grid {
    grid-template-columns: 1fr;
  }

  .SolutionOverview-module__WG0gQW__card:nth-child(n), .SolutionOverview-module__WG0gQW__card:nth-child(3) {
    grid-column: 1;
    min-height: 530px;
  }

  .SolutionOverview-module__WG0gQW__footerCard {
    flex-direction: column;
    align-items: stretch;
  }

  .SolutionOverview-module__WG0gQW__footerButton {
    width: 100%;
  }
}

/* [project]/styles/home/CaseStudyHighlight.module.css [client] (css) */
.CaseStudyHighlight-module__oKvnxa__section {
  min-height: 860px;
  color: var(--white);
  background: linear-gradient(90deg, #040507f7 0%, #040507bf 42%, #04050733 76%, #04050780 100%), radial-gradient(50% 80% at 75% 40%, #61b8ff57, #0000 70%), radial-gradient(36% 55% at 88% 85%, #ff725c59, #0000 72%), linear-gradient(130deg, #11151b 0%, #263546 58%, #0b0d10 100%);
  align-items: flex-end;
  scroll-margin-top: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.CaseStudyHighlight-module__oKvnxa__section:before {
  content: "";
  background-image: linear-gradient(118deg, #0000 0 58%, #ffffff14 58.2% 58.5%, #0000 58.7%), linear-gradient(73deg, #0000 0 64%, #ffffff0f 64.2% 64.45%, #0000 64.7%);
  position: absolute;
  inset: 0;
}

.CaseStudyHighlight-module__oKvnxa__caseVisual {
  aspect-ratio: 1;
  width: min(62vw, 880px);
  position: absolute;
  top: 8%;
  right: -7%;
  transform: rotate(-8deg);
}

.CaseStudyHighlight-module__oKvnxa__ring {
  border: 1px solid #ffffff47;
  border-radius: 50%;
  position: absolute;
  inset: 14%;
  box-shadow: 0 0 0 52px #ffffff09, 0 0 0 104px #ffffff06, 0 0 0 156px #ffffff04;
}

.CaseStudyHighlight-module__oKvnxa__ring:before, .CaseStudyHighlight-module__oKvnxa__ring:after {
  content: "";
  border-radius: 50%;
  position: absolute;
}

.CaseStudyHighlight-module__oKvnxa__ring:before {
  background: var(--coral);
  width: 22%;
  height: 22%;
  top: 46%;
  left: 6%;
  box-shadow: 0 0 80px #ff725cb3;
}

.CaseStudyHighlight-module__oKvnxa__ring:after {
  background: var(--blue);
  width: 14%;
  height: 14%;
  top: 21%;
  right: 16%;
  box-shadow: 0 0 70px #69bfffcc;
}

.CaseStudyHighlight-module__oKvnxa__panel {
  padding: clamp(100px, 12vw, 170px) var(--g);
  z-index: 2;
  flex-direction: column;
  gap: 68px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.CaseStudyHighlight-module__oKvnxa__slide {
  min-width: 0;
  animation: CaseStudyHighlight-module__oKvnxa__slide-fade-in .45s var(--ease);
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  align-items: end;
  gap: clamp(44px, 7vw, 120px);
  display: grid;
}

.CaseStudyHighlight-module__oKvnxa__textColumn, .CaseStudyHighlight-module__oKvnxa__asideColumn {
  min-width: 0;
}

@keyframes CaseStudyHighlight-module__oKvnxa__slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.CaseStudyHighlight-module__oKvnxa__kicker {
  color: #c4c9ce;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.CaseStudyHighlight-module__oKvnxa__kicker:before {
  content: "";
  opacity: .75;
  background: currentColor;
  width: 28px;
  height: 1px;
}

.CaseStudyHighlight-module__oKvnxa__title {
  letter-spacing: -.061em;
  text-wrap: balance;
  max-width: 790px;
  margin: 0;
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 520;
  line-height: .93;
}

.CaseStudyHighlight-module__oKvnxa__paragraph {
  color: #c3c9ce;
  letter-spacing: -.018em;
  max-width: 760px;
  margin-top: 26px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.36;
}

.CaseStudyHighlight-module__oKvnxa__cta {
  color: var(--coral);
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
}

.CaseStudyHighlight-module__oKvnxa__asideColumn {
  gap: 22px;
  display: grid;
}

.CaseStudyHighlight-module__oKvnxa__quote {
  border: 1px solid var(--line-d);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #07080a8f;
  margin: 0;
  padding: 24px;
}

.CaseStudyHighlight-module__oKvnxa__quote p {
  color: #dfe3e7;
  font-size: 17px;
  line-height: 1.55;
}

.CaseStudyHighlight-module__oKvnxa__quoteAuthor {
  color: #a9b0b7;
  margin-top: 18px;
  font-size: 12px;
}

.CaseStudyHighlight-module__oKvnxa__factGrid {
  border: 1px solid var(--line-d);
  background: var(--line-d);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.CaseStudyHighlight-module__oKvnxa__factCard {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #07080a8f;
  padding: 22px;
}

.CaseStudyHighlight-module__oKvnxa__factValue {
  font-size: 15px;
  font-weight: 750;
}

.CaseStudyHighlight-module__oKvnxa__factLabel {
  color: #a9b0b7;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.CaseStudyHighlight-module__oKvnxa__controls {
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  display: flex;
}

.CaseStudyHighlight-module__oKvnxa__arrowButton {
  width: 56px;
  height: 56px;
  color: var(--white);
  cursor: pointer;
  transition: transform var(--transition-base), background var(--transition-base);
  background: #ffffff0a;
  border: 1px solid #ffffff47;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
  display: inline-flex;
}

.CaseStudyHighlight-module__oKvnxa__arrowButton:hover {
  background: #ffffff1f;
  transform: translateY(-2px);
}

.CaseStudyHighlight-module__oKvnxa__dots {
  align-items: center;
  gap: 10px;
  display: flex;
}

.CaseStudyHighlight-module__oKvnxa__dot {
  cursor: pointer;
  width: 9px;
  height: 9px;
  transition: width var(--transition-base), background var(--transition-base);
  background: #ffffff47;
  border: 0;
  border-radius: 50%;
  padding: 0;
}

.CaseStudyHighlight-module__oKvnxa__dotActive {
  border-radius: var(--radius-full);
  background: var(--coral);
  width: 28px;
}

@media (max-width: 1080px) {
  .CaseStudyHighlight-module__oKvnxa__slide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .CaseStudyHighlight-module__oKvnxa__section {
    min-height: 900px;
  }

  .CaseStudyHighlight-module__oKvnxa__caseVisual {
    opacity: .7;
    width: 120vw;
    top: 15%;
    right: -54%;
  }

  .CaseStudyHighlight-module__oKvnxa__title {
    letter-spacing: -.048em;
    overflow-wrap: anywhere;
    font-size: clamp(40px, 12vw, 60px);
  }

  .CaseStudyHighlight-module__oKvnxa__paragraph {
    overflow-wrap: break-word;
  }

  .CaseStudyHighlight-module__oKvnxa__factGrid {
    grid-template-columns: 1fr;
  }
}

/* [project]/styles/home/Compliance.module.css [client] (css) */
.Compliance-module__cN4d8W__section {
  padding: clamp(92px, 11vw, 180px) var(--g);
  background: var(--ink);
  color: var(--white);
  scroll-margin-top: 120px;
}

.Compliance-module__cN4d8W__header, .Compliance-module__cN4d8W__grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.Compliance-module__cN4d8W__header {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(36px, 8vw, 120px);
  display: grid;
}

.Compliance-module__cN4d8W__kicker {
  color: #c4c9ce;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.Compliance-module__cN4d8W__kicker:before {
  content: "";
  opacity: .75;
  background: currentColor;
  width: 28px;
  height: 1px;
}

.Compliance-module__cN4d8W__title {
  font-size: var(--h2);
  letter-spacing: -.061em;
  text-wrap: balance;
  margin: 0;
  font-weight: 520;
  line-height: .93;
}

.Compliance-module__cN4d8W__title span {
  display: block;
}

.Compliance-module__cN4d8W__description {
  max-width: 760px;
  color: var(--muted);
  letter-spacing: -.018em;
  justify-self: end;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.38;
}

.Compliance-module__cN4d8W__grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: clamp(64px, 9vw, 130px);
  display: grid;
}

.Compliance-module__cN4d8W__card {
  background: #ffffff06;
  border: 1px solid #ffffff29;
  flex-direction: column;
  grid-column: span 4;
  min-height: 290px;
  padding: clamp(28px, 3vw, 46px);
  display: flex;
  position: relative;
}

.Compliance-module__cN4d8W__card:first-child, .Compliance-module__cN4d8W__card:nth-child(5) {
  grid-column: span 8;
}

.Compliance-module__cN4d8W__card:first-child {
  background: linear-gradient(135deg, #69bfff29, #ffffff06 55%);
}

.Compliance-module__cN4d8W__card:nth-child(4) {
  background: var(--coral);
  color: var(--ink);
  border-color: #0000;
}

.Compliance-module__cN4d8W__card:before {
  content: "COMPLIANCE";
  color: #697078;
  letter-spacing: .14em;
  font-size: 11px;
  position: absolute;
  top: 20px;
  right: 24px;
}

.Compliance-module__cN4d8W__card:first-child:before {
  content: "ART. 28 DSGVO";
}

.Compliance-module__cN4d8W__card:nth-child(2):before {
  content: "ROPA";
}

.Compliance-module__cN4d8W__card:nth-child(3):before {
  content: "ART. 32";
}

.Compliance-module__cN4d8W__card:nth-child(4):before {
  content: "EU AI ACT";
  color: #08090b80;
}

.Compliance-module__cN4d8W__card:nth-child(5):before {
  content: "EU REGION";
}

.Compliance-module__cN4d8W__card:nth-child(6):before {
  content: "TRANSPARENZ";
}

.Compliance-module__cN4d8W__cardIcon {
  color: currentColor;
  opacity: .86;
  stroke-width: 1.35px;
  width: 54px;
  height: 54px;
  margin-bottom: auto;
}

.Compliance-module__cN4d8W__cardTitle {
  color: inherit;
  letter-spacing: -.045em;
  text-wrap: balance;
  margin: 36px 0 0;
  font-size: clamp(27px, 2.7vw, 44px);
  font-weight: 560;
  line-height: 1;
}

.Compliance-module__cN4d8W__cardText {
  color: #9fa6ad;
  max-width: 640px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
}

.Compliance-module__cN4d8W__card:nth-child(4) .Compliance-module__cN4d8W__cardText {
  color: #08090bad;
}

@media (max-width: 1180px) {
  .Compliance-module__cN4d8W__header {
    grid-template-columns: 1fr;
  }

  .Compliance-module__cN4d8W__description {
    justify-self: start;
  }
}

@media (max-width: 1080px) {
  .Compliance-module__cN4d8W__card, .Compliance-module__cN4d8W__card:first-child, .Compliance-module__cN4d8W__card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .Compliance-module__cN4d8W__section {
    padding-block: 88px;
  }

  .Compliance-module__cN4d8W__grid {
    grid-template-columns: 1fr;
  }

  .Compliance-module__cN4d8W__card, .Compliance-module__cN4d8W__card:first-child, .Compliance-module__cN4d8W__card:nth-child(5) {
    grid-column: 1;
    min-height: 270px;
  }
}

/* [project]/styles/home/Trustedby.module.css [client] (css) */
.Trustedby-module__WiYjFW__trustedByContainer {
  background: var(--paper);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  min-height: 760px;
  display: grid;
}

.Trustedby-module__WiYjFW__leftSide {
  padding: clamp(72px, 9vw, 140px) var(--g);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.Trustedby-module__WiYjFW__header {
  color: var(--ink);
  font-size: var(--h2);
  letter-spacing: -.061em;
  text-wrap: balance;
  white-space: pre-line;
  margin: 0;
  font-weight: 520;
  line-height: .93;
}

.Trustedby-module__WiYjFW__subHeader {
  color: #555b61;
  letter-spacing: -.018em;
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 400;
  line-height: 1.38;
}

.Trustedby-module__WiYjFW__learnMore {
  border-top: 1px solid var(--line-l);
  margin-top: 60px;
  padding-top: 28px;
}

.Trustedby-module__WiYjFW__learnMore a {
  color: var(--ink);
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
}

.Trustedby-module__WiYjFW__learnMore a:after {
  content: "→";
  transition: transform var(--transition-base);
}

.Trustedby-module__WiYjFW__learnMore a:hover:after {
  transform: translateX(5px);
}

.Trustedby-module__WiYjFW__rightSide {
  padding: clamp(72px, 9vw, 140px) var(--g);
  min-width: 0;
  color: var(--white);
  background: linear-gradient(90deg, #080a0efa, #080a0e26 55%), radial-gradient(48% 60% at 70% 68%, #ff725c7a, #0000 72%), radial-gradient(62% 55% at 65% 34%, #69bfff8c, #0000 74%), #10151c;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Trustedby-module__WiYjFW__visualHeader {
  z-index: 1;
  margin-bottom: clamp(46px, 6vw, 86px);
  position: relative;
}

.Trustedby-module__WiYjFW__badge {
  width: min(100%, 240px);
  min-height: 132px;
  color: var(--white);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #06080a75;
  border: 1px solid #ffffff47;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  display: flex;
}

.Trustedby-module__WiYjFW__badge strong {
  letter-spacing: -.05em;
  font-size: 40px;
  font-weight: 560;
  line-height: 1;
  display: block;
}

.Trustedby-module__WiYjFW__badge span {
  color: #b7bec5;
  max-width: 170px;
  font-size: 14px;
  line-height: 1.45;
  display: block;
}

.Trustedby-module__WiYjFW__trustedByContainer.Trustedby-module__WiYjFW__animated .Trustedby-module__WiYjFW__header, .Trustedby-module__WiYjFW__trustedByContainer.Trustedby-module__WiYjFW__animated .Trustedby-module__WiYjFW__subHeader, .Trustedby-module__WiYjFW__trustedByContainer.Trustedby-module__WiYjFW__animated .Trustedby-module__WiYjFW__learnMore, .Trustedby-module__WiYjFW__trustedByContainer.Trustedby-module__WiYjFW__animated .Trustedby-module__WiYjFW__badge {
  animation: Trustedby-module__WiYjFW__reveal-up .8s var(--ease) forwards;
}

@keyframes Trustedby-module__WiYjFW__reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .Trustedby-module__WiYjFW__trustedByContainer {
    grid-template-columns: 1fr;
  }

  .Trustedby-module__WiYjFW__rightSide {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .Trustedby-module__WiYjFW__leftSide, .Trustedby-module__WiYjFW__rightSide {
    padding-inline: 20px;
  }

  .Trustedby-module__WiYjFW__visualHeader {
    margin-bottom: 42px;
  }

  .Trustedby-module__WiYjFW__badge {
    width: min(100%, 240px);
  }
}

/* [project]/styles/home/Testimonial.module.css [client] (css) */
.Testimonial-module__1R33qG__testimonialContainer {
  padding: clamp(92px, 11vw, 180px) var(--g);
  background: var(--paper);
  color: var(--ink);
}

.Testimonial-module__1R33qG__testimonialContainer.Testimonial-module__1R33qG__darkMode {
  background: var(--ink);
  color: var(--white);
}

.Testimonial-module__1R33qG__header, .Testimonial-module__1R33qG__main {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.Testimonial-module__1R33qG__header {
  justify-content: space-between;
  align-items: flex-end;
  gap: 34px;
  display: flex;
}

.Testimonial-module__1R33qG__header > div {
  min-width: 0;
  max-width: 100%;
}

.Testimonial-module__1R33qG__kicker {
  color: #646a70;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.Testimonial-module__1R33qG__kicker:before {
  content: "";
  opacity: .75;
  background: currentColor;
  width: 28px;
  height: 1px;
}

.Testimonial-module__1R33qG__title {
  letter-spacing: -.05em;
  text-wrap: balance;
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 78px);
  font-weight: 520;
  line-height: .96;
}

.Testimonial-module__1R33qG__index {
  color: #646a70;
  white-space: nowrap;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1;
}

.Testimonial-module__1R33qG__quotes {
  display: none;
}

.Testimonial-module__1R33qG__main {
  margin-top: clamp(48px, 6.5vw, 96px);
}

.Testimonial-module__1R33qG__swiperSlide {
  width: 100%;
  height: auto;
}

.Testimonial-module__1R33qG__testimonial {
  min-height: 500px;
}

.Testimonial-module__1R33qG__rightSide {
  border: 1px solid var(--line-l);
  background: #dfeefa;
  flex-direction: column;
  min-height: 500px;
  padding: clamp(34px, 4vw, 64px);
  display: flex;
}

.Testimonial-module__1R33qG__darkMode .Testimonial-module__1R33qG__rightSide {
  border-color: var(--line-d);
  background: #ffffff0a;
}

.Testimonial-module__1R33qG__rightSide:before {
  content: "“";
  width: 46px;
  height: 46px;
  color: var(--ink);
  letter-spacing: -.1em;
  font-size: 86px;
  line-height: .8;
}

.Testimonial-module__1R33qG__comment {
  color: var(--ink);
  letter-spacing: -.038em;
  margin: 42px 0 0;
  font-size: clamp(25px, 3vw, 48px);
  line-height: 1.06;
}

.Testimonial-module__1R33qG__comment + .Testimonial-module__1R33qG__comment {
  color: #4d565e;
  letter-spacing: -.025em;
  margin-top: 24px;
  font-size: clamp(18px, 1.65vw, 28px);
  line-height: 1.28;
}

.Testimonial-module__1R33qG__comment:last-of-type {
  margin-bottom: clamp(44px, 5vw, 64px);
}

.Testimonial-module__1R33qG__darkMode .Testimonial-module__1R33qG__comment {
  color: var(--white);
}

.Testimonial-module__1R33qG__authorInfo {
  border-top: 1px solid var(--line-l);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 20px;
  display: flex;
}

.Testimonial-module__1R33qG__author {
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
}

.Testimonial-module__1R33qG__authorPosition {
  color: #646a70;
  margin-top: 4px;
  font-size: 13px;
}

.Testimonial-module__1R33qG__darkMode .Testimonial-module__1R33qG__author, .Testimonial-module__1R33qG__darkMode .Testimonial-module__1R33qG__authorPosition, .Testimonial-module__1R33qG__darkMode .Testimonial-module__1R33qG__kicker, .Testimonial-module__1R33qG__darkMode .Testimonial-module__1R33qG__index {
  color: var(--white);
}

.Testimonial-module__1R33qG__testimonialContainer.Testimonial-module__1R33qG__animated .Testimonial-module__1R33qG__title, .Testimonial-module__1R33qG__testimonialContainer.Testimonial-module__1R33qG__animated .Testimonial-module__1R33qG__main {
  animation: Testimonial-module__1R33qG__reveal-up .8s var(--ease) forwards;
}

@keyframes Testimonial-module__1R33qG__reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .Testimonial-module__1R33qG__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .Testimonial-module__1R33qG__title {
    overflow-wrap: anywhere;
    font-size: clamp(36px, 11vw, 54px);
  }

  .Testimonial-module__1R33qG__swiperSlide {
    width: 88vw;
  }

  .Testimonial-module__1R33qG__testimonial, .Testimonial-module__1R33qG__rightSide {
    min-height: 430px;
  }
}

/* [project]/node_modules/swiper/swiper.css [client] (css) */
:root {
  --swiper-theme-color: #007aff;
}

:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
  pointer-events: none;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(#00000080, #0000);
}

.swiper-lazy-preloader {
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: #0000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  top: 50%;
  left: 50%;
}

:is(.swiper:not(.swiper-watch-progress), .swiper-watch-progress .swiper-slide-visible) .swiper-lazy-preloader {
  animation: 1s linear infinite swiper-preloader-spin;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* [project]/node_modules/swiper/modules/pagination.css [client] (css) */
.swiper-pagination {
  text-align: center;
  z-index: 10;
  transition: opacity .3s;
  position: absolute;
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  width: 100%;
  left: 0;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  display: inline-block;
}

button.swiper-pagination-bullet {
  box-shadow: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

:is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets) .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

:is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic {
  width: 8px;
  top: 50%;
  transform: translateY(-50%);
}

:is(.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, top .2s;
  display: inline-block;
}

:is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets) .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

:is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic {
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

:is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets).swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, left .2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, #00000040);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: 100% 0;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  top: 0;
  left: 0;
}

.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  top: 0;
  left: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* [project]/styles/home/FAQ.module.css [client] (css) */
.FAQ-module__ngmWiq__faqContainer {
  padding: clamp(92px, 11vw, 180px) var(--g);
  background: var(--paper2);
}

.FAQ-module__ngmWiq__title, .FAQ-module__ngmWiq__faqList {
  width: min(100%, 980px);
  margin-inline: auto;
}

.FAQ-module__ngmWiq__title {
  color: var(--ink);
  font-size: var(--h2);
  letter-spacing: -.061em;
  text-align: left;
  text-wrap: balance;
  margin-top: 0;
  margin-bottom: 64px;
  font-weight: 520;
  line-height: .93;
}

.FAQ-module__ngmWiq__faqList {
  background: var(--line-l);
  border-block: 1px solid var(--line-l);
  gap: 1px;
  display: grid;
}

.FAQ-module__ngmWiq__faqItem {
  background: var(--paper2);
  overflow: hidden;
}

.FAQ-module__ngmWiq__faqQuestion {
  width: 100%;
  color: var(--ink);
  letter-spacing: -.04em;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 560;
  line-height: 1.05;
  display: flex;
}

.FAQ-module__ngmWiq__faqIcon {
  border: 1px solid var(--line-l);
  width: 44px;
  height: 44px;
  color: var(--coral);
  border-radius: 50%;
  flex: 0 0 44px;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: 400;
  display: inline-flex;
}

.FAQ-module__ngmWiq__faqAnswer {
  max-height: 0;
  transition: max-height var(--transition-base);
  overflow: hidden;
}

.FAQ-module__ngmWiq__faqItem.FAQ-module__ngmWiq__open .FAQ-module__ngmWiq__faqAnswer {
  max-height: 320px;
}

.FAQ-module__ngmWiq__faqAnswer p {
  color: #60666b;
  padding: 0 68px 28px 0;
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .FAQ-module__ngmWiq__faqContainer {
    padding-block: 88px;
  }

  .FAQ-module__ngmWiq__title {
    margin-bottom: 42px;
  }

  .FAQ-module__ngmWiq__faqQuestion {
    padding: 22px 0;
  }

  .FAQ-module__ngmWiq__faqAnswer p {
    padding-right: 0;
  }
}

/* [project]/styles/common/Footer.module.css [client] (css) */
.Footer-module__SkqdAq__footerContainer {
  color: var(--white);
  background: #050607;
}

.Footer-module__SkqdAq__finalCta {
  padding: 0 var(--g);
  background: radial-gradient(50% 75% at 82% 45%, #53697dc7, #0000 72%), radial-gradient(34% 50% at 18% 92%, #ff725c40, #0000 72%), linear-gradient(135deg, #050608 0%, #161a1e 70%, #252a30 100%);
  align-items: center;
  min-height: 760px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Footer-module__SkqdAq__finalInner {
  z-index: 3;
  width: 100%;
  position: relative;
}

.Footer-module__SkqdAq__eyebrow {
  color: #c4c9ce;
  letter-spacing: .15em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  display: flex;
}

.Footer-module__SkqdAq__eyebrow:before {
  content: "";
  opacity: .75;
  background: currentColor;
  width: 28px;
  height: 1px;
}

.Footer-module__SkqdAq__title {
  letter-spacing: -.073em;
  text-wrap: balance;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(60px, 9vw, 142px);
  font-weight: 520;
  line-height: .9;
}

.Footer-module__SkqdAq__titleGerman {
  letter-spacing: -.055em;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: .94;
}

.Footer-module__SkqdAq__finalRow {
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-top: 54px;
  display: flex;
}

.Footer-module__SkqdAq__kicker {
  color: #c3c9ce;
  letter-spacing: -.018em;
  max-width: 760px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.36;
}

.Footer-module__SkqdAq__bookConsultation {
  border-radius: var(--radius-full);
  background: var(--coral);
  min-height: 58px;
  color: var(--ink);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  display: inline-flex;
}

.Footer-module__SkqdAq__bookConsultation:hover {
  transform: translateY(-3px);
}

.Footer-module__SkqdAq__orbit {
  aspect-ratio: 1;
  border: 1px solid #ffffff2e;
  border-radius: 50%;
  width: min(44vw, 650px);
  position: absolute;
  bottom: -20%;
  right: 3%;
  transform: rotate(-22deg);
}

.Footer-module__SkqdAq__orbit:before {
  content: "";
  border: 10px solid #ffffff14;
  border-right-color: var(--blue);
  border-left-color: var(--coral);
  border-radius: 50%;
  position: absolute;
  inset: 13%;
}

.Footer-module__SkqdAq__orbit:after {
  content: "";
  background: var(--coral);
  aspect-ratio: 1;
  border-radius: 50%;
  width: 25%;
  position: absolute;
  top: 35%;
  left: 7%;
  box-shadow: 0 0 90px #ff725c99;
}

.Footer-module__SkqdAq__footerMeta {
  padding: clamp(72px, 8vw, 120px) var(--g) 34px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.Footer-module__SkqdAq__footerGrid {
  grid-template-columns: 1.25fr repeat(3, .55fr);
  gap: clamp(36px, 6vw, 90px);
  padding-bottom: 76px;
  display: grid;
}

.Footer-module__SkqdAq__brand {
  align-items: center;
  display: inline-flex;
}

.Footer-module__SkqdAq__brandLogo {
  aspect-ratio: 818 / 218;
  background: url("/images/common/logo/browserbite_lowercase_transparent_rebuilt.svg") 0 / contain no-repeat;
  width: clamp(160px, 15vw, 200px);
  display: block;
}

.Footer-module__SkqdAq__footerBrand p {
  color: #8f969d;
  max-width: 420px;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.55;
}

.Footer-module__SkqdAq__footerGrid h3 {
  color: #747b82;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-size: 11px;
}

.Footer-module__SkqdAq__footerGrid ul {
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.Footer-module__SkqdAq__footerGrid li, .Footer-module__SkqdAq__footerGrid a {
  color: #c9cdd1;
  font-size: 14px;
  line-height: 1.55;
}

.Footer-module__SkqdAq__footerGrid a:hover {
  color: var(--white);
}

.Footer-module__SkqdAq__footerBottom {
  color: #6e757c;
  border-top: 1px solid #ffffff24;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 0 0;
  font-size: 12px;
  display: flex;
}

.Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__doAnimation .Footer-module__SkqdAq__title, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__doAnimation .Footer-module__SkqdAq__eyebrow, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__doAnimation .Footer-module__SkqdAq__finalRow, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__doAnimation .Footer-module__SkqdAq__footerGrid, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__doAnimation .Footer-module__SkqdAq__footerBottom {
  opacity: 0;
}

.Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__animated .Footer-module__SkqdAq__title, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__animated .Footer-module__SkqdAq__eyebrow, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__animated .Footer-module__SkqdAq__finalRow, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__animated .Footer-module__SkqdAq__footerGrid, .Footer-module__SkqdAq__footerContainer.Footer-module__SkqdAq__animated .Footer-module__SkqdAq__footerBottom {
  animation: Footer-module__SkqdAq__reveal-up .8s var(--ease) forwards;
}

@keyframes Footer-module__SkqdAq__reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .Footer-module__SkqdAq__finalRow {
    flex-direction: column;
    align-items: flex-start;
  }

  .Footer-module__SkqdAq__footerGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .Footer-module__SkqdAq__finalCta {
    background: radial-gradient(50% 75% at 82% 45%, #53697dc7, #0000 72%), radial-gradient(34% 50% at 18% 92%, #69bfff38, #0000 72%), linear-gradient(135deg, #050608 0%, #161a1e 70%, #252a30 100%);
    min-height: 700px;
  }

  .Footer-module__SkqdAq__title {
    font-size: clamp(54px, 16vw, 88px);
  }

  .Footer-module__SkqdAq__titleGerman {
    font-size: clamp(42px, 12vw, 60px);
  }

  .Footer-module__SkqdAq__orbit {
    width: 94vw;
    bottom: -10%;
    right: -42%;
  }

  .Footer-module__SkqdAq__orbit:before {
    border-right-color: #ffffff14;
    border-left-color: var(--blue);
  }

  .Footer-module__SkqdAq__orbit:after {
    background: var(--blue);
    box-shadow: 0 0 90px #69bfff8c;
  }

  .Footer-module__SkqdAq__footerGrid {
    grid-template-columns: 1fr;
  }

  .Footer-module__SkqdAq__bookConsultation {
    text-align: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-inline: 18px;
    line-height: 1.2;
  }

  .Footer-module__SkqdAq__footerBottom {
    flex-direction: column;
  }
}

/* [project]/styles/home/Home.module.css [client] (css) */
.Home-module__-HUO1a__mainContainer {
  background: var(--paper);
  position: relative;
  overflow: clip;
}

/*# sourceMappingURL=_178rsub._.css.map*/