/* [project]/assets/styles/site.css [app-client] (css) */
:root {
  --bg: #fff;
  --s-1: #f2f2f3;
  --s-2: #fafafb;
  --s-card: #fff;
  --text: #17191c;
  --muted: #777b86;
  --muted-2: #979799;
  --muted-3: #a3a6af;
  --border: #ececec;
  --dot: #e4e4e6;
  --ink: #17191c;
  --on-ink: #fff;
  --nav-bg: #ffffffd9;
  --blush: #fbe1d1;
  --sienna: #5d2a1a;
  --shadow-frame: 0 0 0 1px #04172b0d, 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
  --panel: var(--s-card);
  --panel-2: var(--s-1);
  --line: var(--border);
  --line-strong: #d4d4d6;
  --red: #e02d23;
  --red-soft: #e02d2312;
  --sans: var(--font-sans), "Inter", system-ui, sans-serif;
  --mono: var(--font-mono), ui-monospace, "SF Mono", Menlo, monospace;
  --display: var(--font-display), "Source Serif 4", Georgia, serif;
  --r-card: 24px;
  --r-ctl: 16px;
}

:root[data-theme="dark"] {
  --bg: #0f1115;
  --s-1: #191c22;
  --s-2: #14161b;
  --s-card: #191c22;
  --text: #f2f3f5;
  --muted: #9ba0a9;
  --muted-2: #7c828c;
  --muted-3: #6b7079;
  --border: #262b33;
  --dot: #2c313a;
  --ink: #f2f3f5;
  --on-ink: #17191c;
  --nav-bg: #0f1115d1;
  --line-strong: #3a404b;
  --red: #ff453a;
  --red-soft: #ff453a17;
  --shadow-frame: 0 0 0 1px #ffffff0f, 0 20px 25px -5px #00000073, 0 8px 10px -6px #0006;
}

.mb-band {
  --b-bg: #17191c;
  --b-panel: #191c22;
  --b-border: #262b33;
  --b-text: #fff;
  --b-muted: #9ba0a9;
  --b-node: #23262d;
  --b-node-bd: #2c313a;
  --b-line: #3a3f48;
  background: var(--b-bg);
  color: var(--b-text);
}

:root[data-theme="dark"] .mb-band {
  --b-bg: #f2f2f3;
  --b-panel: #fff;
  --b-border: #e4e4e6;
  --b-text: #17191c;
  --b-muted: #777b86;
  --b-node: #fff;
  --b-node-bd: #e4e4e6;
  --b-line: #c9c5bb;
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.mono {
  font-family: var(--mono);
}

.logo-dark-invert {
  display: none !important;
}

:root[data-theme="dark"] .logo-dark-invert {
  filter: brightness(0) invert();
  display: block !important;
}

:root[data-theme="dark"] .logo-light-only {
  display: none !important;
}

.arrow-link {
  font-size: 16px;
  font-weight: 500;
}

.arrow-link .arr {
  display: inline-block;
}

.arrow-link:hover .arr {
  animation: .25s ease-in-out mb-arrow;
}

@keyframes mb-arrow {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  49% {
    opacity: 0;
    transform: translateX(10px);
  }

  51% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.row {
  flex-wrap: wrap;
  margin: 0 -12px;
  display: flex;
}

.row > * {
  width: 100%;
  padding: 0 12px;
}

@media (min-width: 576px) {
  .col-sm-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    width: 33.3333%;
  }

  .col-lg-5 {
    width: 41.6667%;
  }

  .col-lg-6 {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    width: 25%;
  }
}

.d-flex {
  display: flex;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.fw-semibold {
  font-weight: 600;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 24px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.btn {
  font-family: var(--sans);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 9999px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity .15s, border-color .15s, color .15s, transform .1s;
  display: inline-block;
}

.btn:active {
  transform: translateY(1px)scale(.99);
}

.btn-primary, .btn-red {
  background: var(--ink);
  color: var(--on-ink);
}

.btn-primary:hover, .btn-red:hover {
  opacity: .88;
  color: var(--on-ink);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--text);
  background: none;
}

.btn-ghost:hover {
  background: var(--s-1);
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--s-2);
}

.section-head {
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  display: flex;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
}

.section-head h2, .h-serif {
  letter-spacing: -.9px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
}

h2 em, h1 em {
  font-style: italic;
}

.section-head .sec-note {
  color: var(--muted-3);
  white-space: nowrap;
  font-size: 14px;
}

.tag {
  color: var(--muted-2);
  font-size: 14px;
}

.tag--muted {
  color: var(--muted-3);
}

.site-nav {
  z-index: 50;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
}

.site-nav__in {
  align-items: center;
  gap: 28px;
  height: 68px;
  display: flex;
}

.site-nav__logo {
  flex: none;
  align-items: center;
  display: inline-flex;
}

.site-nav__logo img {
  display: block;
}

.site-nav__links {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  display: flex;
}

.site-nav__links a {
  color: var(--text);
  white-space: nowrap;
  transition: color .15s;
}

.site-nav__links a:hover {
  text-underline-offset: 4px;
  text-decoration: underline;
}

.site-nav__cta {
  background: var(--ink);
  border-radius: 9999px;
  flex: none;
  padding: 11px 20px;
  font-size: 15px;
  transition: opacity .15s;
  color: var(--on-ink) !important;
}

.site-nav__cta:hover {
  opacity: .88;
  text-decoration: none !important;
}

.theme-btn {
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  color: var(--text);
  cursor: pointer;
  background: none;
  border-radius: 9999px;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  display: inline-flex;
}

.theme-btn:hover {
  background: var(--s-1);
}

.lang-switch {
  border: 1px solid var(--border);
  border-radius: 9999px;
  flex: none;
  align-items: center;
  padding: 3px;
  font-size: 13px;
  display: flex;
}

.lang-switch a {
  color: var(--muted-2);
  border-radius: 9999px;
  padding: 5px 12px;
  transition: color .15s;
}

.lang-switch a:hover {
  color: var(--text);
  text-decoration: none;
}

.lang-switch a.active {
  background: var(--ink);
  color: var(--on-ink);
}

.site-nav__burger {
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  background: none;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: none;
}

@media (max-width: 1120px) {
  .site-nav__links {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
    position: fixed;
    inset: 68px 0 auto;
  }

  .site-nav__links.open {
    display: flex;
  }

  .site-nav__links a {
    border-bottom: 1px solid var(--border);
    padding: 13px 4px;
    font-size: 16px;
  }

  .site-nav__links a:last-child {
    border-bottom: none;
  }

  .site-nav__burger {
    margin-left: auto;
    display: inline-flex;
  }

  .site-nav__in {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .site-nav__cta {
    display: none;
  }
}

.hero-hold {
  height: calc(100vh + 350px);
  position: relative;
}

.hero-aurora {
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(46% 40% at 64% 12%, #fbe1d19e, #fbe1d100 70%), radial-gradient(38% 42% at 22% 6%, #f2dbf86b, #0000 72%), radial-gradient(40% 40% at 88% 26%, #ffe1c966, #0000 70%), radial-gradient(50% 34% at 50% 0, #e4efff59, #0000 75%);
  background: radial-gradient(46% 40% at 64% 12%, #fbe1d19e, #fbe1d100 70%), radial-gradient(38% 42% at 22% 6%, lab(90.1174% 11.8456 -10.7714 / .42), #0000 72%), radial-gradient(40% 40% at 88% 26%, lab(91.762% 8.93891 17.0329 / .4), #0000 70%), radial-gradient(50% 34% at 50% 0, lab(94.0931% -1.36337 -11.1052 / .35), #0000 75%);
  position: absolute;
  inset: 0;
  overflow: hidden;
}

:root[data-theme="dark"] .hero-aurora {
  background: radial-gradient(50% 44% at 66% 6%, #c8714f3d, #0000 68%), radial-gradient(42% 46% at 18% 0, #835bae42, #0000 70%), radial-gradient(42% 40% at 92% 20%, #b9655b2e, #0000 70%), radial-gradient(64% 46% at 48% 0, #3649834d, #0000 82%);
  background: radial-gradient(50% 44% at 66% 6%, lab(57.3845% 32.7633 34.5794 / .24), #0000 68%), radial-gradient(42% 46% at 18% 0, lab(45.8933% 29.4864 -38.3248 / .26), #0000 70%), radial-gradient(42% 40% at 92% 20%, lab(52.5815% 33.7576 21.5574 / .18), #0000 70%), radial-gradient(64% 46% at 48% 0, lab(31.7719% 6.82168 -35.7519 / .3), #0000 82%);
}

.hero {
  z-index: 1;
  grid-template-columns: 6fr 5fr;
  align-items: start;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 40px 180px;
  display: grid;
  position: sticky;
  top: 68px;
}

.hero__copy {
  z-index: 2;
  position: relative;
}

.hero h1 {
  letter-spacing: -1.8px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.12;
}

.hero__text {
  color: var(--muted);
  max-width: 440px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
}

.hero__btns {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  display: flex;
}

.hw {
  vertical-align: bottom;
  margin-bottom: -.12em;
  padding-bottom: .12em;
  display: inline-block;
  overflow: hidden;
}

.hw__in {
  opacity: 0;
  animation: .6s cubic-bezier(.215, .61, .355, 1) both word-up;
  animation-delay: calc(.12s + var(--wi, 0) * 80ms);
  display: inline-block;
  transform: translateY(110%);
}

@keyframes word-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.chip {
  z-index: 5;
  background: var(--s-card);
  box-shadow: var(--shadow-frame);
  will-change: transform;
  pointer-events: none;
  border-radius: 20px;
  position: absolute;
}

.chip--queue {
  width: 206px;
  box-shadow: none;
  background: none;
  top: -64px;
  left: -24px;
  transform: rotate(-4deg);
}

.chip--queue .chip__badge {
  background: var(--s-1);
  z-index: 1;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  position: absolute;
  top: -18px;
  right: -14px;
}

.chip--queue .chip__card {
  background: var(--s-card);
  box-shadow: var(--shadow-frame);
  border-radius: 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  display: flex;
}

.chip__label {
  color: var(--muted);
  font-size: 12px;
}

.chip__value {
  letter-spacing: -.3px;
  font-size: 24px;
  font-weight: 500;
}

.chip__qr {
  background: var(--s-1);
  width: 38px;
  height: 38px;
  color: var(--muted-3);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  font-size: 11px;
  display: flex;
}

.chip--stat {
  width: 196px;
  padding: 10px 16px;
  top: -90px;
  right: -24px;
  transform: rotate(3.5deg);
}

.chip--stat .chip__num {
  margin-top: 2px;
  font-size: 22px;
  font-weight: 500;
}

.chip--stat svg {
  width: 100%;
  margin-top: 4px;
  display: block;
}

.chip--term {
  width: 206px;
  font-family: var(--mono);
  padding: 12px 16px;
  font-size: 11px;
  line-height: 1.7;
  bottom: -158px;
  left: -24px;
  transform: rotate(3deg);
}

.chip--term .dim {
  color: var(--muted-2);
}

.chip--term .dim2 {
  color: var(--muted-3);
}

.chip--dish {
  align-items: center;
  gap: 12px;
  width: 230px;
  padding: 12px 14px;
  display: flex;
  bottom: -58px;
  right: -24px;
  transform: rotate(-3deg);
}

.chip--dish .chip__title {
  font-size: 14px;
  font-weight: 500;
}

.chip__pill {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: 9999px;
  flex: none;
  padding: 7px 14px;
  font-size: 13px;
}

.hero__media {
  height: 520px;
  position: relative;
}

.frame {
  background: var(--s-card);
  box-shadow: var(--shadow-frame);
  will-change: transform;
  border-radius: 20px;
  position: absolute;
  overflow: hidden;
}

.frame__bar {
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  display: flex;
}

.frame__bar i {
  background: var(--dot);
  border-radius: 9999px;
  width: 8px;
  height: 8px;
}

.frame__bar span {
  color: var(--muted);
  margin-left: 4px;
  font-size: 13px;
}

.frame__shot {
  overflow: hidden;
}

.frame__shot img {
  object-fit: cover;
  object-position: left top;
  width: 100%;
  height: 100%;
  display: block;
}

.frame--a {
  z-index: 1;
  width: 330px;
  top: 56px;
  left: -8px;
  transform: rotate(-5deg);
}

.frame--a .frame__shot {
  height: 200px;
}

.frame--b {
  z-index: 3;
  width: 350px;
  top: 210px;
  left: 120px;
  transform: rotate(.5deg);
}

.frame--b .frame__shot {
  height: 210px;
}

.frame--c {
  z-index: 2;
  width: 210px;
  top: 16px;
  right: -4px;
  transform: rotate(4deg);
}

.frame--c .frame__shot {
  height: 300px;
}

@media (max-width: 1120px) {
  .hero-hold {
    height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 40px 64px;
    position: relative;
    top: 0;
  }

  .chip--queue, .chip--stat, .chip--term, .chip--dish {
    display: none;
  }

  .hero__media {
    max-width: 560px;
    height: 440px;
  }
}

.clients-strip {
  border-bottom: 1px solid var(--border);
  z-index: 2;
  background: var(--bg);
  position: relative;
}

.clients-strip__in {
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
}

.clients-strip__label {
  color: var(--muted-2);
  white-space: nowrap;
  flex: none;
  font-size: 14px;
}

.clients-strip__track {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
}

.clients-strip__track > div {
  flex: none;
  gap: 40px;
  padding-right: 40px;
  animation: 38s linear infinite mb-marquee;
  display: flex;
}

.clients-strip:hover .clients-strip__track > div {
  animation-play-state: paused;
}

@keyframes mb-marquee {
  from {
    transform: translateX(0);
  }

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

.clients-strip__item {
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  display: inline-flex;
}

.clients-strip__mono, .clients-strip__logo {
  background: var(--s-1);
  object-fit: contain;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.clients-strip__type {
  color: var(--muted-3);
  font-size: 13px;
}

.pano {
  background: var(--s-2);
  position: relative;
  overflow: clip;
}

.pano__viewport {
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding: 56px 0;
  display: flex;
}

.pano__head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
  display: flex;
}

.pano__head h2 {
  letter-spacing: -.9px;
  font-size: clamp(34px, 4.4vw, 56px);
}

.pano__head p {
  color: var(--muted);
  max-width: 520px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.5;
}

.pano__hint {
  color: var(--muted-3);
  will-change: opacity;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: flex;
}

.pano__track {
  will-change: transform;
  gap: 16px;
  width: max-content;
  padding: 4px 40px 16px;
  display: flex;
}

.svc-card {
  background: var(--s-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  flex-direction: column;
  flex: none;
  gap: 14px;
  width: 340px;
  padding: 32px 28px;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.svc-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
}

.svc-card h3 {
  font-family: var(--display);
  letter-spacing: -.3px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.svc-card__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.svc-card__list {
  font-size: 15px;
  line-height: 2;
}

.svc-card__go {
  margin-top: auto;
  font-size: 16px;
  font-weight: 500;
}

.svc-card--flagship {
  background: var(--blush);
  width: 460px;
  color: var(--sienna);
  border-color: #0000;
}

.svc-card--flagship h3 {
  letter-spacing: -.4px;
  font-size: 30px;
}

.svc-card--flagship .tag, .svc-card--flagship .svc-card__text, .svc-card--flagship .svc-card__list, .svc-card--flagship .svc-card__go {
  color: var(--sienna);
}

@media (max-width: 860px) {
  .pano__viewport {
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    overflow-x: auto;
  }

  .pano__track {
    padding: 4px 20px 16px;
  }

  .svc-card {
    scroll-snap-align: start;
    width: min(84vw, 340px);
  }

  .svc-card--flagship {
    width: min(88vw, 400px);
  }
}

.process__grid {
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  display: grid;
}

.process__intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.process__intro h2 {
  letter-spacing: -.9px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
}

.process__intro p {
  color: var(--muted);
  max-width: 360px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5;
}

.process__steps {
  flex-direction: column;
  gap: 44px;
  padding-left: 44px;
  display: flex;
  position: relative;
}

.process__steps:before {
  content: "";
  background: var(--border);
  width: 1px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 12px;
}

.process__rail {
  background: var(--ink);
  transform-origin: top;
  border-radius: 9999px;
  width: 3px;
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  transform: scaleY(0);
}

.p-step {
  position: relative;
}

.p-step:before {
  content: "";
  background: var(--ink);
  border-radius: 9999px;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 6px;
  left: -36px;
}

.p-step__num {
  color: var(--muted-2);
  font-size: 14px;
  display: block;
}

.p-step h3 {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 500;
}

.p-step p {
  color: var(--muted);
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .process__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process__intro {
    position: static;
  }
}

.case-wide {
  background: var(--s-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  grid-template-columns: 1fr 1.1fr;
  display: grid;
  overflow: hidden;
}

.case-wide__body {
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  display: flex;
}

.case-wide h3 {
  font-family: var(--display);
  letter-spacing: -.5px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}

.case-wide__shot {
  background: var(--s-1);
  min-height: 340px;
}

.case-wide__shot img {
  object-fit: cover;
  object-position: left top;
  width: 100%;
  height: 100%;
  display: block;
}

.cases-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  display: grid;
}

.case {
  background: var(--s-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  display: flex;
}

.case h3 {
  font-family: var(--display);
  letter-spacing: -.3px;
  font-size: 26px;
  font-weight: 400;
}

.case__text, .case-wide__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.case-wide__text {
  font-size: 17px;
}

.case__tags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.case__tags span {
  background: var(--s-1);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 14px;
}

.case__go {
  margin-top: auto;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .case-wide {
    grid-template-columns: 1fr;
  }

  .case-wide__shot {
    order: -1;
    min-height: 240px;
  }

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

.counts-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.counts-band__in {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
}

.fact {
  padding-right: 40px;
}

.fact + .fact {
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

.fact b {
  font-family: var(--display);
  letter-spacing: -.9px;
  font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}

.fact span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 15px;
  display: block;
}

@media (max-width: 860px) {
  .counts-band__in {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
  }

  .fact + .fact {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    padding-left: 0;
  }
}

.eco {
  padding: 104px 0;
}

.eco__grid {
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 64px;
  display: grid;
}

.eco__note {
  color: var(--b-muted);
  font-size: 14px;
}

.eco h2 {
  letter-spacing: -.9px;
  color: var(--b-text);
  margin-top: 16px;
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.15;
}

.eco h2 em {
  color: var(--b-muted);
}

.eco__lead {
  color: var(--b-muted);
  max-width: 400px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5;
}

.eco__rows {
  flex-direction: column;
  margin-top: 28px;
  display: flex;
}

.eco__row {
  border-top: 1px solid var(--b-border);
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  display: flex;
}

.eco__row:last-child {
  border-bottom: 1px solid var(--b-border);
}

.eco__row b {
  color: var(--b-text);
  flex: none;
  width: 150px;
  font-size: 14px;
  font-weight: 500;
}

.eco__row span {
  color: var(--b-muted);
  font-size: 15px;
}

.eco__panel {
  background: var(--b-panel);
  border: 1px solid var(--b-border);
  border-radius: var(--r-card);
  justify-content: center;
  padding: 32px;
  display: flex;
}

.eco__diagram {
  width: 520px;
  max-width: 100%;
  height: 340px;
  position: relative;
}

.eco__diagram svg {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.eco__diagram svg .eco-line {
  stroke: var(--b-line);
}

.eco__node {
  background: var(--b-node);
  border: 1px solid var(--b-node-bd);
  width: 120px;
  height: 44px;
  color: var(--b-text);
  z-index: 1;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  display: flex;
  position: absolute;
}

.eco__center {
  background: var(--blush);
  z-index: 1;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 150px;
  height: 76px;
  display: flex;
  position: absolute;
  top: 132px;
  left: 185px;
}

.eco__center small {
  color: var(--sienna);
  font-size: 12px;
}

.eco__center b {
  color: var(--sienna);
  letter-spacing: -.2px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .eco__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .eco__panel {
    overflow-x: auto;
  }

  .eco__diagram {
    min-width: 520px;
  }
}

.team {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
}

.member {
  background: var(--s-1);
  border-radius: var(--r-card);
  align-items: center;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.member img, .member__photo-placeholder {
  object-fit: cover;
  border-radius: 12px;
  flex: none;
  width: 64px;
  height: 64px;
}

.member__photo-placeholder {
  background: var(--s-card);
}

.member__info {
  flex: 1;
}

.member h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--sans);
  line-height: 1.3;
}

.member__role {
  color: var(--muted);
  font-size: 14px;
}

.member__links {
  gap: 8px;
  display: flex;
}

.member__links a {
  background: var(--s-card);
  width: 34px;
  height: 34px;
  color: var(--text);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  transition: opacity .15s;
  display: inline-flex;
}

.member__links a:hover {
  opacity: .7;
  text-decoration: none;
}

@media (max-width: 980px) {
  .team {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .team {
    grid-template-columns: 1fr;
  }
}

.contact__grid {
  grid-template-columns: 5fr 6fr;
  align-items: start;
  gap: 64px;
  display: grid;
}

.contact__info h2 {
  letter-spacing: -.9px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
}

.contact__info > p {
  color: var(--muted);
  max-width: 400px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5;
}

.contact__channels {
  flex-direction: column;
  margin-top: 32px;
  font-size: 17px;
  display: flex;
}

.contact__channels a {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.contact__channels a:last-child {
  border-bottom: 1px solid var(--border);
}

.form {
  background: var(--s-card);
  box-shadow: var(--shadow-frame);
  border-radius: 20px;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  display: flex;
}

.form__row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.form__field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.form label {
  color: var(--muted);
  font-size: 14px;
}

.form input[type="text"], .form input[type="tel"], .form input[type="email"], .form textarea {
  background: var(--s-card);
  width: 100%;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-ctl);
  font-family: var(--sans);
  outline: none;
  padding: 14px 16px;
  font-size: 16px;
  transition: border-color .15s;
}

.form input::placeholder, .form textarea::placeholder {
  color: var(--muted-3);
}

.form input:focus, .form textarea:focus {
  border-color: var(--ink);
}

.form input.invalid, .form textarea.invalid {
  border-color: #dc3545;
}

.form textarea {
  resize: vertical;
  min-height: 110px;
}

.form__err {
  color: #dc3545;
  margin-top: 4px;
  font-size: 12.5px;
}

.form__note {
  color: var(--muted-3);
  font-size: 13px;
}

.form__note a {
  text-underline-offset: 2px;
  text-decoration: underline;
}

.form__alert {
  border-radius: var(--r-ctl);
  padding: 12px 16px;
  font-size: 14.5px;
}

.form__alert--ok {
  color: #2e9e44;
  background: #32d74b1f;
  border: 1px solid #32d74b59;
}

:root[data-theme="dark"] .form__alert--ok {
  color: #4cd964;
}

.form__alert--err {
  color: #dc3545;
  background: #dc354514;
  border: 1px solid #dc354566;
}

.form .btn {
  text-align: center;
  width: 100%;
}

.form .btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

@media (max-width: 860px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form {
    padding: 22px;
  }
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 40px;
}

.site-footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  display: grid;
}

.site-footer__about {
  color: var(--muted);
  max-width: 360px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.site-footer h4 {
  color: var(--muted-2);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
}

.site-footer ul {
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  display: flex;
}

.site-footer__social {
  gap: 20px;
  margin-top: 16px;
  font-size: 15px;
  display: flex;
}

.site-footer__foot {
  border-top: 1px solid var(--border);
  color: var(--muted-3);
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  font-size: 14px;
  display: flex;
}

@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__foot {
    flex-direction: column;
  }
}

.svc {
  padding: 72px 0 96px;
}

.svc__crumb {
  color: var(--muted-2);
  margin-bottom: 22px;
  font-size: 14px;
}

.svc h1 {
  letter-spacing: -.9px;
  max-width: 24ch;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.15;
}

.svc__hero {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 1.55;
}

.svc h2 {
  letter-spacing: -.3px;
  margin-bottom: 20px;
  font-size: 26px;
}

.svc__grid {
  grid-template-columns: 7fr 5fr;
  gap: 16px;
  margin-bottom: 48px;
  display: grid;
}

.svc__panel {
  background: var(--s-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
}

.svc__includes {
  gap: 12px;
  display: grid;
}

.svc__includes li {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.svc__includes li:before {
  content: "";
  background: var(--blush);
  border: 1px solid var(--sienna);
  border-radius: 9999px;
  width: 9px;
  height: 9px;
  position: absolute;
  top: .62em;
  left: 0;
}

.svc__stack {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  display: flex;
}

.svc__stack span {
  background: var(--s-1);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 14px;
}

.svc__projects {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.svc__steps {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  display: grid;
}

.svc-step {
  background: var(--s-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px 26px;
}

.svc-step b {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.svc-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.svc__cta {
  background: var(--blush);
  color: var(--sienna);
  border-radius: var(--r-card);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 44px 48px;
  display: flex;
}

.svc__cta h2 {
  color: var(--sienna);
  margin-bottom: 8px;
}

.svc__cta p {
  color: var(--sienna);
  opacity: .8;
  max-width: 46ch;
}

.svc__cta .btns {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.svc__cta .btn-red {
  background: var(--sienna);
  color: var(--blush);
}

.svc__cta .btn-red:hover {
  color: var(--blush);
}

.svc__cta .btn-ghost {
  border-color: var(--sienna);
  color: var(--sienna);
}

.svc__cta .btn-ghost:hover {
  background: #5d2a1a14;
}

@media (max-width: 860px) {
  .svc__grid, .svc__steps {
    grid-template-columns: 1fr;
  }

  .svc__cta {
    padding: 30px 26px;
  }
}

.col-lg-10 {
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }

  .col-md-8 {
    width: 66.6667%;
  }
}

@media (min-width: 992px) {
  .col-lg-10 {
    width: 83.3333%;
  }
}

.row {
  row-gap: 24px;
}

.row.g-3 {
  row-gap: 16px;
  margin: 0 -8px;
}

.row.g-3 > * {
  padding: 0 8px;
}

.row.g-5 {
  row-gap: 48px;
  margin: 0 -24px;
}

.row.g-5 > * {
  padding: 0 24px;
}

.row.gy-5 {
  row-gap: 48px;
}

.d-block {
  display: block;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

.h-100 {
  height: 100%;
}

.min-vh-100 {
  min-height: 100vh;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-5 {
  margin-bottom: 48px;
}

.mt-1 {
  margin-top: 4px;
}

.mt-3 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 24px;
}

.me-2 {
  margin-right: 8px;
}

.ms-3 {
  margin-left: 16px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-5 {
  padding-left: 48px;
  padding-right: 48px;
}

.py-5 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.text-muted {
  color: var(--muted);
}

.text-danger {
  color: #dc3545;
}

.text-decoration-none {
  text-decoration: none;
}

.fw-bold {
  font-weight: 700;
}

.small {
  font-size: .875em;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
}

.h5 {
  font-size: 1.15rem;
  font-weight: 600;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.visually-hidden {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.border-0 {
  border: 0 !important;
}

.overflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
}

.rounded-3 {
  border-radius: 8px;
}

.shadow-sm {
  box-shadow: 0 1px 2px #00000014;
}

.shadow-lg {
  box-shadow: 0 16px 48px #0000002e;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 17px;
}

.section-padding {
  padding: 72px 0;
}

.form-label {
  margin-bottom: 6px;
  font-weight: 500;
  display: inline-block;
}

.form-control, .form-select {
  color: #212529;
  background: #fff;
  border: 1px solid #d6d5d0;
  border-radius: 8px;
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s;
  display: block;
}

.form-control:focus, .form-select:focus {
  border-color: #9a9a94;
  outline: none;
}

.form-control.is-invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  color: #dc3545;
  margin-top: 4px;
  font-size: 12.5px;
  display: none;
}

.is-invalid ~ .invalid-feedback, .invalid-feedback.d-block {
  display: block;
}

.form-check {
  align-items: flex-start;
  gap: 8px;
  display: flex;
}

.form-check-input {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.form-check-label {
  font-size: 14px;
}

.alert {
  border: 1px solid #0000;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14.5px;
}

.alert-danger {
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
}

.spinner-border {
  vertical-align: -.125em;
  border: .2em solid;
  border-right-color: #0000;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  animation: .75s linear infinite spinner-border;
  display: inline-block;
}

.spinner-border-sm {
  border-width: .15em;
  width: 1rem;
  height: 1rem;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.reveal-on [data-reveal]:not([data-reveal="group"]):not([data-reveal="media"]) {
    opacity: 0;
    transition: opacity .65s cubic-bezier(.16, 1, .3, 1), transform .65s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--rd, 0s);
    transform: translateY(22px);
  }

  html.reveal-on [data-reveal]:not([data-reveal="group"]):not([data-reveal="media"]).is-in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }
}

.blog-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  display: grid;
}

.blog-card {
  background: var(--s-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  flex-direction: column;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card__shot {
  border-bottom: 1px solid var(--border);
  background: var(--s-1);
}

.blog-card__shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  display: block;
}

.blog-card__body {
  flex-direction: column;
  gap: 10px;
  padding: 24px 28px 28px;
  display: flex;
}

.blog-card__date {
  color: var(--muted-2);
  font-size: 13px;
}

.blog-card h3 {
  font-family: var(--display);
  letter-spacing: -.3px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
  font-size: 15px;
}

.blog-empty {
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 820px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

.blog-article {
  max-width: 760px;
  margin: 0 auto;
}

.blog-article__date {
  color: var(--muted-2);
  margin-bottom: 12px;
  font-size: 13px;
}

.blog-article__title {
  font-family: var(--display);
  letter-spacing: -.7px;
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}

.blog-article__cover {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  margin-bottom: 32px;
  overflow: hidden;
}

.blog-article__cover img {
  width: 100%;
  display: block;
}

.blog-prose {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.blog-prose > * + * {
  margin-top: 20px;
}

.blog-prose h2 {
  font-family: var(--display);
  letter-spacing: -.4px;
  margin-top: 40px;
  font-size: 28px;
  font-weight: 400;
}

.blog-prose h3 {
  margin-top: 32px;
  font-size: 20px;
  font-weight: 600;
}

.blog-prose a {
  text-underline-offset: 3px;
  text-decoration: underline;
}

.blog-prose ul, .blog-prose ol {
  padding-left: 24px;
}

.blog-prose ul {
  list-style: outside;
}

.blog-prose ol {
  list-style: decimal;
}

.blog-prose li + li {
  margin-top: 8px;
}

.blog-prose code {
  font-family: var(--mono);
  background: var(--s-1);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: .9em;
}

.blog-prose pre {
  background: var(--s-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  overflow-x: auto;
}

.blog-prose pre code {
  background: none;
  border: none;
  padding: 0;
}

.blog-prose blockquote {
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  padding-left: 18px;
}

.blog-prose img {
  border: 1px solid var(--border);
  border-radius: 10px;
}

.blog-prose table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}

.blog-prose th, .blog-prose td {
  border: 1px solid var(--border);
  text-align: left;
  padding: 8px 12px;
}

.blog-prose th {
  background: var(--s-1);
  font-weight: 600;
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 48px 20px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 28px;
  }

  .clients-strip__in {
    gap: 16px;
    padding: 16px 20px;
  }

  .site-footer {
    padding: 48px 20px 32px;
  }
}

/* [project]/assets/styles/globals.css [app-client] (css) */
html, body {
  overflow-x: hidden;
}

/* [next]/internal/font/google/inter_903a0bb0.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.p.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.p.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.p.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_903a0bb0-module__Uluy0W__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

.inter_903a0bb0-module__Uluy0W__variable {
  --font-sans: "Inter", "Inter Fallback";
}

/* [next]/internal/font/google/jetbrains_mono_d526e91b.module.css [app-client] (css) */
@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.p.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/04c5164763c40239-s.690580e8.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/26f284dcc38c84c0-s.p.303a03d6.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/7e7f32a39836f228-s.0b4edfe7.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/fa39153a3fc630ba-s.bff0868b.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/6a5386fd6038edbe-s.719084df.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: JetBrains Mono;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/051742360c26797e-s.p.102b7f24.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: JetBrains Mono Fallback;
  src: local(Arial);
  ascent-override: 75.79%;
  descent-override: 22.29%;
  line-gap-override: 0.0%;
  size-adjust: 134.59%;
}

.jetbrains_mono_d526e91b-module__17q1Xq__className {
  font-family: JetBrains Mono, JetBrains Mono Fallback;
  font-style: normal;
}

.jetbrains_mono_d526e91b-module__17q1Xq__variable {
  --font-mono: "JetBrains Mono", "JetBrains Mono Fallback";
}

/* [next]/internal/font/google/source_serif_4_148dc70d.module.css [app-client] (css) */
@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0c104cf141201692-s.122ab420.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/c4eed3967569a269-s.p.52672138.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/5e4fd7f145c06c91-s.2d8e4b22.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/aee725a3245d2aa9-s.86fae0bf.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/0be2b1c012508d81-s.4244e3e0.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/ffe74cb158fc6021-s.p.7359443a.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/812ace1be296b768-s.98cb5c69.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/eca81df38617fd57-s.p.ec9d980f.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/325c6d3a683d6317-s.d7df14eb.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/47f30a82c56c4799-s.3f732cc0.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/09dc614ebc304afd-s.1815ac81.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/b2062878eea3d713-s.p.6cb832bb.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4 Fallback";
  src: local(Times New Roman);
  ascent-override: 87.87%;
  descent-override: 28.41%;
  line-gap-override: 0.0%;
  size-adjust: 117.91%;
}

.source_serif_4_148dc70d-module__EnvKQq__className {
  font-family: "Source Serif 4", "Source Serif 4 Fallback";
  font-weight: 400;
}

.source_serif_4_148dc70d-module__EnvKQq__variable {
  --font-display: "Source Serif 4", "Source Serif 4 Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__66061dff._.css.map*/