/* [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/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/common/SubpageShell.module.css [client] (css) */
.SubpageShell-module__rjFmCa__heroSection {
  padding: 170px var(--g) clamp(90px, 12vw, 160px);
  background: var(--gradient-hero);
  min-height: min(720px, 76svh);
  color: var(--white);
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.SubpageShell-module__rjFmCa__heroSection:before {
  content: "";
  opacity: .72;
  background-image: linear-gradient(#ffffff09 1px, #0000 1px), linear-gradient(90deg, #ffffff09 1px, #0000 1px);
  background-size: 72px 72px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#000, #0000 85%);
  mask-image: linear-gradient(#000, #0000 85%);
}

.SubpageShell-module__rjFmCa__heroSection:after {
  content: "";
  border: 1px solid #ffffff2e;
  border-radius: 50%;
  width: 42vw;
  min-width: 520px;
  height: 42vw;
  min-height: 520px;
  position: absolute;
  top: -20vw;
  right: -15vw;
  box-shadow: 0 0 0 90px #ffffff04, 0 0 0 180px #ffffff03;
}

.SubpageShell-module__rjFmCa__ambientGlow, .SubpageShell-module__rjFmCa__ambientGrid {
  display: none;
}

.SubpageShell-module__rjFmCa__heroSectionWithImage:before, .SubpageShell-module__rjFmCa__heroSectionWithImage:after {
  content: none;
}

.SubpageShell-module__rjFmCa__heroImage {
  position: absolute;
  inset: 0;
}

.SubpageShell-module__rjFmCa__heroImage:after {
  content: "";
  background: linear-gradient(to top, #050608e0, #0506088c 45%, #0506084d);
  position: absolute;
  inset: 0;
}

.SubpageShell-module__rjFmCa__heroContent {
  width: min(100%, var(--max));
  z-index: 1;
  margin: 0 auto;
  position: relative;
}

.SubpageShell-module__rjFmCa__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;
}

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

.SubpageShell-module__rjFmCa__primaryHeading {
  letter-spacing: -.073em;
  text-wrap: balance;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(54px, 8.4vw, 128px);
  font-weight: 520;
  line-height: .9;
}

.SubpageShell-module__rjFmCa__subHeading {
  color: #c3c9ce;
  letter-spacing: -.018em;
  max-width: 820px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 400;
  line-height: 1.36;
}

.SubpageShell-module__rjFmCa__footerArea {
  background: #050607;
}

@media (max-width: 720px) {
  .SubpageShell-module__rjFmCa__heroSection {
    padding: 130px var(--g) 88px;
    min-height: 560px;
  }

  .SubpageShell-module__rjFmCa__primaryHeading {
    font-size: clamp(46px, 14vw, 78px);
  }
}

/* [project]/styles/about/FounderStory.module.css [client] (css) */
.FounderStory-module__7-DTRG__founderContainer {
  padding: clamp(72px, 9vw, 130px) var(--g);
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

.FounderStory-module__7-DTRG__content {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: start;
  gap: clamp(42px, 8vw, 120px);
  display: grid;
}

.FounderStory-module__7-DTRG__story {
  padding-top: 2px;
}

.FounderStory-module__7-DTRG__paragraph {
  color: #555b61;
  max-width: 860px;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.72;
}

.FounderStory-module__7-DTRG__paragraph:last-child {
  margin-bottom: 0;
}

.FounderStory-module__7-DTRG__quotesSection {
  border: 1px solid var(--line-l);
  background: var(--line-l);
  gap: 1px;
  margin-top: 42px;
  display: grid;
}

.FounderStory-module__7-DTRG__quote {
  background: #dfeefa;
  margin: 0;
  padding: 28px;
}

.FounderStory-module__7-DTRG__quote p {
  color: var(--ink);
  letter-spacing: -.04em;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.08;
}

.FounderStory-module__7-DTRG__sidebar {
  border: 1px solid var(--line-l);
  background: var(--line-l);
  gap: 1px;
  display: grid;
}

.FounderStory-module__7-DTRG__infoCard, .FounderStory-module__7-DTRG__servicesCard {
  background: var(--paper2);
  padding: 28px;
}

.FounderStory-module__7-DTRG__infoItem {
  border-bottom: 1px solid var(--line-l);
  padding-bottom: 18px;
}

.FounderStory-module__7-DTRG__infoItem + .FounderStory-module__7-DTRG__infoItem {
  margin-top: 18px;
}

.FounderStory-module__7-DTRG__infoItem:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.FounderStory-module__7-DTRG__infoLabel, .FounderStory-module__7-DTRG__servicesTitle {
  color: #686d71;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 780;
  display: block;
}

.FounderStory-module__7-DTRG__infoValue {
  color: var(--ink);
  font-size: 17px;
  font-weight: 690;
  line-height: 1.4;
}

.FounderStory-module__7-DTRG__servicesTags {
  border: 1px solid var(--line-l);
  background: var(--line-l);
  gap: 1px;
  display: grid;
}

.FounderStory-module__7-DTRG__serviceTag {
  background: var(--paper);
  color: #555b61;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 630;
  display: block;
}

.FounderStory-module__7-DTRG__serviceTag:before {
  content: "↗";
  color: var(--coral);
  margin-right: 10px;
  font-weight: 800;
}

.FounderStory-module__7-DTRG__animated .FounderStory-module__7-DTRG__title, .FounderStory-module__7-DTRG__animated .FounderStory-module__7-DTRG__content {
  animation: FounderStory-module__7-DTRG__reveal-up .8s var(--ease) forwards;
}

@keyframes FounderStory-module__7-DTRG__reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@media (max-width: 900px) {
  .FounderStory-module__7-DTRG__content {
    grid-template-columns: 1fr;
  }
}

/* [project]/styles/about/Companies.module.css [client] (css) */
.Companies-module__JyvBXW__comapniesContainer {
  padding: clamp(72px, 9vw, 130px) var(--g);
  width: min(100%, var(--max));
  background: var(--paper2);
  margin: 0 auto;
}

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

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

.Companies-module__JyvBXW__company {
  background: var(--paper2);
  grid-template-columns: minmax(130px, .35fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 100px);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
}

.Companies-module__JyvBXW__companyImg {
  filter: grayscale();
  width: min(180px, 100%);
  height: 70px;
  position: relative;
}

.Companies-module__JyvBXW__companyInfo {
  color: #555b61;
  letter-spacing: -.018em;
  max-width: 840px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.38;
}

.Companies-module__JyvBXW__comapniesContainer.Companies-module__JyvBXW__animated .Companies-module__JyvBXW__title, .Companies-module__JyvBXW__comapniesContainer.Companies-module__JyvBXW__animated .Companies-module__JyvBXW__company {
  animation: Companies-module__JyvBXW__reveal-up .8s var(--ease) forwards;
}

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

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

@media (max-width: 720px) {
  .Companies-module__JyvBXW__company {
    grid-template-columns: 1fr;
  }
}

/* [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;
}

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