/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg: #0a0a0a;
  --bg-alt: #1a1a1a;
  --bg-dark: #0a0a0a;
  --text: #fff;
  --text-light: #fff;
  --text-muted: #ffffffa6;
  --text-muted-light: #ffffffb3;
  --accent: #ff5f0a;
  --accent-gradient: linear-gradient(135deg, #7b5ea7, #ff5f0a);
  --radius: .75rem;
}

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

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .svg-stroke-container, .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  scroll-behavior: auto;
}

@media (min-width: 769px) {
  html {
    font-size: .833333vw;
  }
}

body {
  background-color: var(--bg);
  color: var(--text);
  cursor: none;
  font-family: Manrope, sans-serif;
  overflow-x: hidden;
}

.custom-cursor {
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
  background-color: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.custom-cursor-follower {
  pointer-events: none;
  z-index: 9998;
  opacity: .9;
  mix-blend-mode: difference;
  will-change: transform;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
}

.svg-stroke-wrapper {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.svg-stroke-container {
  z-index: 0;
  pointer-events: none;
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.svg-stroke-container svg {
  width: 100%;
  height: 100%;
}

.svg-stroke-wrapper .about-dark, .svg-stroke-wrapper .proj-container, .svg-stroke-wrapper .contact-section, .svg-stroke-wrapper .footer-new {
  z-index: 1;
  position: relative;
}

.stroke-cover-blob {
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(135deg, #6ec3f4, #3a7bd5);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  width: 90px;
  height: 90px;
  position: absolute;
}

@media (max-width: 768px) {
  .svg-stroke-container {
    width: 250%;
    left: 50%;
  }
}

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

img, video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

h1, h2, h3 {
  letter-spacing: -.03em;
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.navbar {
  z-index: 100;
  will-change: transform;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.75rem 3rem;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .35s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0);
}

.navbar--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.navbar .logo {
  color: var(--text-light);
  letter-spacing: -.02em;
  font-size: 1.25rem;
  font-weight: 800;
  transition: color .4s;
}

.navbar .nav-links {
  gap: 2.5rem;
  list-style: none;
  display: flex;
}

.navbar .nav-links a {
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 600;
  transition: color .4s;
}

.navbar .nav-links a:hover {
  color: var(--text-light);
}

.navbar-burger {
  cursor: pointer;
  z-index: 101;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: none;
}

.navbar-burger span {
  background-color: #fff;
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .2s;
  display: block;
}

.navbar-burger--open span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.navbar-burger--open span:nth-child(2) {
  opacity: 0;
}

.navbar-burger--open span:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

.navbar-overlay {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  background: #0a0a0af7;
  justify-content: center;
  align-items: center;
  transition: opacity .35s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  position: fixed;
  inset: 0;
}

.navbar-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

.navbar-overlay-list {
  text-align: center;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.navbar-overlay-list a {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 2rem;
  font-weight: 700;
  transition: color .25s, transform .25s;
  display: inline-block;
}

.navbar-overlay-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.hero {
  background-color: var(--bg-dark);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-title-center {
  text-align: center;
  z-index: 1;
  width: 100%;
  padding: 0 2rem;
  position: absolute;
  top: 12%;
  left: 0;
}

.hero-title-overflow {
  overflow: hidden;
}

.hero-title-line {
  color: var(--text-light);
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(3.5rem, 11vw, 11rem);
  font-weight: 800;
  line-height: 1;
  display: block;
}

.hero-dot {
  color: var(--accent);
  transform-origin: bottom;
  will-change: transform;
  display: inline-block;
}

.hero-avatar-wrap {
  z-index: 2;
  will-change: transform;
  perspective: 800px;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  padding-top: 19vh;
  display: flex;
  position: absolute;
  inset: 0;
}

.hero-avatar-wrap .hero-face {
  filter: drop-shadow(0 10px 50px #00000080);
  pointer-events: none;
}

.hero-face {
  transform-origin: top;
  width: clamp(24rem, 42vw, 44rem);
  position: relative;
  transform: scale(1.2);
}

.hero-face .hero-avatar-base {
  aspect-ratio: 960 / 752;
  width: 100%;
  height: auto;
  display: block;
}

.hero-face .hero-avatar-eye {
  pointer-events: none;
  will-change: transform;
  position: absolute;
  inset: 0;
}

.hero-face .hero-avatar-eye img {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-face .hero-avatar-mask {
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.hero-bottom {
  z-index: 3;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
}

.hero-description {
  max-width: 320px;
}

.hero-description p {
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.6;
}

.hero-cta {
  background: var(--accent-gradient);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 100px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
  display: inline-flex;
  box-shadow: 0 4px 24px #ff5f0a4d;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px #ff5f0a66;
}

.clients {
  background-color: var(--bg-dark);
  border-top: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  padding: 2rem 0;
  overflow: hidden;
}

.clients-track {
  white-space: nowrap;
  align-items: center;
  gap: 4rem;
  animation: 25s linear infinite marquee;
  display: flex;
}

.client-name {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffffff73;
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

.gallery {
  background-color: var(--bg-dark);
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 0;
  display: flex;
  overflow: hidden;
}

.gallery-row {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  will-change: transform;
  align-items: flex-start;
  gap: 1rem;
  width: max-content;
  display: flex;
}

.gallery-track--left {
  transform: translateX(5%);
}

.gallery-track--right {
  transform: translateX(-15%);
}

.gallery-item.gallery-item--4x3 {
  aspect-ratio: 4 / 3;
  width: clamp(12rem, 16.5vw, 18rem);
}

.gallery-item {
  aspect-ratio: 16 / 9;
  border-radius: .75rem;
  flex-shrink: 0;
  width: clamp(15rem, 22vw, 24rem);
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1), filter .9s cubic-bezier(.22, 1, .36, 1);
}

.gallery-item:hover img {
  filter: blur(4px) brightness(.45);
  transform: scale(1.06);
}

.gallery-item-overlay {
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1) 50ms;
  display: flex;
  position: absolute;
  inset: 0;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  text-shadow: 0 2px 12px #0009;
  width: 100%;
  font-size: clamp(.75rem, 1vw, .95rem);
  font-weight: 600;
  line-height: 1.4;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1) .15s, opacity .7s cubic-bezier(.22, 1, .36, 1) .15s;
  display: block;
  transform: translateY(12px);
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.about-dark {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-dark-content {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.about-dark-title {
  color: var(--text-light);
  letter-spacing: -.04em;
  text-transform: uppercase;
  background: linear-gradient(#fff 0%, #999 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 1;
}

.about-dark-desc {
  color: #ffffffa6;
  letter-spacing: .01em;
  max-width: 620px;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.8;
}

.about-dark-desc .about-line {
  margin: 0 0 1.4rem;
}

.about-dark-desc .about-line:last-child {
  color: #ffffffd9;
  margin-top: .6rem;
  margin-bottom: 0;
  font-style: italic;
}

.counters-row {
  gap: 4rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.counter-item {
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  display: flex;
}

.counter-item > div:first-child, .counter-value {
  align-items: baseline;
  display: flex;
}

.counter-number {
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.counter-suffix {
  color: var(--accent);
  margin-left: -.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.counter-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: center;
  margin-top: .5rem;
  font-size: .8rem;
  font-weight: 500;
}

.about-dark-cta {
  background: var(--accent-gradient);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 100px;
  align-items: center;
  padding: 1rem 2.5rem;
  font-size: .875rem;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
  display: inline-flex;
  box-shadow: 0 4px 30px #ff5f0a4d;
}

.about-dark-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 40px #ff5f0a73;
}

.float-el {
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  position: absolute;
}

.blob {
  filter: blur();
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.blob-1 {
  background: linear-gradient(135deg, #6ec3f4, #3a7bd5);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  width: 90px;
  height: 90px;
}

.blob-2 {
  background: linear-gradient(135deg, #f44, #c23);
  border-radius: 50% 50% 40% 60% / 60% 40%;
  width: 55px;
  height: 70px;
}

.blob-3 {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border-radius: 60% 40% 50% 50% / 40% 60%;
  width: 70px;
  height: 70px;
}

.blob-4 {
  background: linear-gradient(135deg, #c084fc, #9333ea);
  border-radius: 45% 55% 60% 40% / 55% 45%;
  width: 80px;
  height: 80px;
}

.blob-5 {
  background: linear-gradient(135deg, #f59e0b, #ff5f0a);
  border-radius: 50%;
  width: 65px;
  height: 65px;
}

.blob-6 {
  background: linear-gradient(135deg, #34d399, #059669);
  border-radius: 55% 45% 50% 50% / 45% 55%;
  width: 85px;
  height: 75px;
}

.proj-container {
  flex-direction: column;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.proj-panel {
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1400px;
  min-height: 85vh;
  margin: 0 auto;
  padding: 2.5rem 4rem;
  display: flex;
  position: relative;
}

.proj-panel-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  display: flex;
}

.proj-panel-counter {
  color: #ffffffe6;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
}

.proj-panel-counter-total {
  color: #ffffff59;
  font-weight: 500;
}

.proj-panel-title {
  color: var(--text-light);
  letter-spacing: -.02em;
  text-align: right;
  flex: 1;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.proj-panel-image-wrap {
  aspect-ratio: 16 / 9;
  background-color: var(--bg-dark);
  will-change: transform, opacity;
  isolation: isolate;
  border-radius: 1rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 80px #0000008c;
}

.proj-panel-image {
  animation: .5s cubic-bezier(.22, 1, .36, 1) projFade;
  position: absolute;
  inset: 0;
}

.proj-panel-image img, .proj-panel-image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes projFade {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.proj-img-arrow {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  background: #0000008c;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.25rem;
  height: 3.25rem;
  font-size: 2rem;
  line-height: 1;
  transition: background .25s, transform .25s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.proj-img-arrow:hover {
  background: #000000d9;
  transform: translateY(-50%)scale(1.08);
}

.proj-img-arrow--left {
  left: 1rem;
}

.proj-img-arrow--right {
  right: 1rem;
}

.proj-img-dots {
  z-index: 3;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #00000073;
  border-radius: 100px;
  gap: .5rem;
  padding: .45rem .85rem;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.proj-img-dot {
  cursor: pointer;
  background: #ffffff59;
  border: none;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  padding: 0;
  transition: background .25s, width .25s;
}

.proj-img-dot.active {
  background: #fff;
  border-radius: 100px;
  width: 22px;
}

.about-new {
  padding: 10rem 4rem 8rem;
}

.about-label-new {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 3rem;
  font-size: .75rem;
  font-weight: 600;
}

.about-bio {
  max-width: 900px;
  margin-bottom: 8rem;
}

.about-bio p {
  letter-spacing: -.02em;
  color: var(--text);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
}

.about-reveal-word {
  opacity: .15;
  transition: opacity .1s;
  display: inline-block;
}

.about-services-new {
  max-width: 700px;
}

.services-list-new {
  flex-direction: column;
  display: flex;
}

.service-item {
  cursor: default;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  display: flex;
  position: relative;
}

.service-name {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
}

.service-num {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  font-size: .8rem;
  font-weight: 500;
}

.service-line {
  background-color: var(--bg-alt);
  transform-origin: 0;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.service-item:first-child:before {
  content: "";
  background-color: var(--bg-alt);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-section {
  align-items: center;
  min-height: 80vh;
  padding: 8rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-layout {
  z-index: 2;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.contact-left {
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  display: flex;
}

.contact-title-wrap {
  flex-direction: column;
  display: flex;
}

.contact-title-overflow {
  overflow: hidden;
}

.contact-title-line {
  color: var(--text-light);
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  display: block;
}

.contact-email-link {
  color: var(--text-muted);
  text-underline-offset: 4px;
  font-size: 1rem;
  font-weight: 500;
  -webkit-text-decoration: underline #ffffff26;
  text-decoration: underline #ffffff26;
  transition: color .3s;
}

.contact-email-link:hover {
  color: var(--accent);
  -webkit-text-decoration-color: var(--accent);
  text-decoration-color: var(--accent);
}

.contact-right {
  align-items: center;
  display: flex;
}

.contact-form {
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  display: flex;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  display: grid;
}

.form-field input, .form-field textarea {
  width: 100%;
  color: var(--text-light);
  resize: none;
  background: none;
  border: none;
  border-bottom: 1px solid #ffffff26;
  outline: none;
  padding: 1rem 0;
  font-family: Manrope, sans-serif;
  font-size: .95rem;
  font-weight: 400;
  transition: border-color .3s;
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: #ffffff4d;
  font-weight: 400;
}

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

.form-submit {
  width: 100%;
  color: var(--text-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid #fff3;
  border-radius: 100px;
  margin-top: .5rem;
  padding: 1.1rem;
  font-family: Manrope, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  transition: background .4s, border-color .4s, transform .3s;
}

.form-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.02);
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 500;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

.contact-float {
  z-index: 1;
  pointer-events: none;
  position: absolute;
}

.contact-blob {
  border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
}

.contact-blob-1 {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border-radius: 35% 65% 55% 45% / 45% 55%;
  width: 70px;
  height: 70px;
}

.contact-blob-2 {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border-radius: 50% 50% 40% 60% / 60% 40%;
  width: 60px;
  height: 60px;
}

.footer-new {
  background: #0a0a0a;
  border-top: 1px solid #ffffff14;
  flex-direction: column;
  padding: 5rem 4rem 0;
  display: flex;
}

.footer-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.footer-name {
  letter-spacing: -.03em;
  color: #fff;
  flex-direction: column;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 900;
  line-height: .95;
  display: flex;
}

.footer-columns {
  gap: 5rem;
  padding-top: .5rem;
  display: flex;
}

.footer-col {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.footer-col-title {
  letter-spacing: .12em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .75rem;
  font-weight: 700;
}

.footer-col-link {
  color: #ffffff80;
  font-size: .85rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color .3s;
}

.footer-col-link:hover {
  color: #fff;
}

.footer-shapes {
  border-top: 1px solid #ffffff0f;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 2rem 0;
  display: flex;
  overflow: hidden;
}

.footer-shape {
  flex-shrink: 0;
  width: clamp(50px, 8vw, 90px);
  height: clamp(50px, 8vw, 90px);
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.footer-shape:hover {
  transform: scale(1.15)rotate(8deg);
}

.contact-full {
  background-color: var(--bg-dark);
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: 3rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-full-top {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.contact-full-logo {
  color: #fff;
  letter-spacing: -.01em;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-full-status {
  background: #22c55e14;
  border: 1px solid #22c55e59;
  border-radius: 100px;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1rem;
  display: inline-flex;
}

.contact-full-status-dot {
  background: #22c55e;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s ease-out infinite pulse-dot;
  box-shadow: 0 0 #22c55e99;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 #22c55e80;
  }

  50% {
    box-shadow: 0 0 0 8px #22c55e00;
  }
}

.contact-full-status-text {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #22c55e;
  font-size: .72rem;
  font-weight: 700;
}

.contact-full-center {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0;
  display: flex;
  position: relative;
}

.contact-full-tagline {
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: clamp(.85rem, 1.1vw, 1rem);
  font-weight: 600;
}

.contact-full-title {
  letter-spacing: -.04em;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 12vw, 11rem);
  font-weight: 900;
  line-height: .92;
}

.contact-full-title-line-wrap {
  display: block;
  overflow: hidden;
}

.contact-full-title-line {
  will-change: transform;
  display: block;
}

.contact-full-email {
  background: var(--accent-gradient);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 100px;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1.1rem 2rem;
  font-family: inherit;
  font-size: clamp(.95rem, 1.3vw, 1.15rem);
  font-weight: 600;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
  display: inline-flex;
  box-shadow: 0 8px 32px #ff5f0a4d;
}

.contact-full-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px #ff5f0a73;
}

.contact-full-email-text {
  font-variant-numeric: tabular-nums;
}

.contact-full-email-icon {
  letter-spacing: .1em;
  text-align: left;
  border-left: 1px solid #ffffff59;
  min-width: 72px;
  padding-left: .9rem;
  font-size: .72rem;
  font-weight: 700;
  transition: color .25s;
}

.contact-full-expertise {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: clamp(.7rem, .9vw, .85rem);
  font-weight: 700;
  display: flex;
}

.contact-full-expertise span {
  position: relative;
}

.contact-full-expertise span:not(:last-child):after {
  content: "·";
  color: var(--accent);
  font-weight: 900;
  position: absolute;
  right: -1.15rem;
}

.contact-full-bottom {
  color: var(--text-muted);
  z-index: 2;
  border-top: 1px solid #ffffff14;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .8rem;
  display: flex;
}

.contact-full-social {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  transition: color .25s, gap .25s;
  display: inline-flex;
}

.contact-full-social:hover {
  color: var(--accent);
  gap: .7rem;
}

.contact-full-social-arrow {
  transition: transform .25s;
  display: inline-block;
}

.contact-full-social:hover .contact-full-social-arrow {
  transform: translate(2px, -2px);
}

.contact-full-location {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
  }

  .navbar .logo {
    font-size: 1rem;
  }

  .navbar .nav-links--desktop {
    display: none;
  }

  .navbar-burger {
    display: flex;
  }

  .hero-title-center {
    padding: 0 1rem;
    top: 13%;
  }

  .hero-title-line {
    white-space: normal;
    letter-spacing: -.03em;
    font-size: clamp(2.6rem, 12vw, 4.25rem);
    line-height: .95;
  }

  .hero-avatar-wrap {
    align-items: center;
    padding-top: 9rem;
    padding-bottom: 13rem;
  }

  .hero-face {
    width: min(372px, 100vw - 20px) !important;
    transform: none !important;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    bottom: 2.75rem;
    left: 1.5rem;
    right: 1.5rem;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-description p {
    letter-spacing: .03em;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
  }

  .hero-cta {
    padding: 1.1rem 2.5rem;
    font-size: .95rem;
  }

  @media (hover: none) {
    .hero-cta:hover {
      transform: none;
      box-shadow: 0 4px 24px #ff5f0a40;
    }
  }

  @media (max-height: 640px) {
    .hero-title-center {
      top: 9%;
    }

    .hero-title-line {
      font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-avatar-wrap {
      padding-top: 6rem;
      padding-bottom: 10rem;
    }

    .hero-face {
      width: min(264px, 100vw - 20px) !important;
    }

    .hero-bottom {
      gap: .8rem;
      bottom: 1.25rem;
    }

    .hero-description p {
      font-size: .8rem;
    }

    .hero-cta {
      padding: .8rem 1.75rem;
      font-size: .8rem;
    }
  }

  @media (min-height: 641px) and (max-height: 740px) {
    .hero-avatar-wrap {
      padding-top: 7rem;
      padding-bottom: 11rem;
    }

    .hero-face {
      width: min(336px, 100vw - 20px) !important;
    }

    .hero-bottom {
      bottom: 2rem;
    }
  }

  @media (min-height: 741px) and (max-height: 820px) {
    .hero-face {
      width: min(372px, 100vw - 20px) !important;
    }
  }

  @media (min-height: 821px) and (max-height: 900px) {
    .hero-face {
      width: min(408px, 100vw - 20px) !important;
    }
  }

  @media (min-height: 901px) {
    .hero-face {
      width: min(432px, 100vw - 20px) !important;
    }

    .hero-avatar-wrap {
      padding-top: 10rem;
      padding-bottom: 14rem;
    }
  }

  .gallery-item {
    width: 12.5rem;
  }

  .gallery-item.gallery-item--4x3 {
    width: 9.5rem;
  }

  .counters-row {
    gap: 2rem;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-suffix {
    font-size: 1.5rem;
  }

  .counter-label {
    font-size: .7rem;
  }

  .about-dark {
    padding: 5rem 1.5rem;
  }

  .about-dark-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about-dark-desc p {
    font-size: .85rem;
  }

  .float-el, .svg-stroke-container, .stroke-cover-blob {
    display: none !important;
  }

  .proj-panel {
    gap: 1.25rem;
    min-height: auto;
    padding: 3rem 1rem 2.5rem;
  }

  .proj-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }

  .proj-panel-counter {
    letter-spacing: .14em;
    font-size: .85rem;
  }

  .proj-panel-title {
    text-align: left;
    width: 100%;
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
    line-height: 1.2;
  }

  .proj-img-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.4rem;
  }

  .proj-img-arrow--left {
    left: .5rem;
  }

  .proj-img-arrow--right {
    right: .5rem;
  }

  .proj-img-dots {
    padding: .35rem .7rem;
    bottom: .6rem;
  }

  .about-new {
    padding: 5rem 1.5rem 4rem;
  }

  .about-bio {
    margin-bottom: 5rem;
  }

  .about-bio p {
    font-size: 1.25rem;
  }

  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-title-line {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-new {
    padding: 3rem 1.5rem 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-columns {
    gap: 3rem;
  }

  .footer-shapes {
    flex-wrap: wrap;
    justify-content: center;
    gap: .25rem;
  }

  .footer-shape {
    width: 45px;
    height: 45px;
  }

  .contact-full {
    padding: 2rem 1.25rem;
  }

  .contact-full-logo {
    font-size: .95rem;
  }

  .contact-full-status {
    gap: .5rem;
    padding: .4rem .75rem;
  }

  .contact-full-status-text {
    letter-spacing: .12em;
    font-size: .6rem;
  }

  .contact-full-center {
    gap: 1.75rem;
    padding: 2rem 0;
  }

  .contact-full-tagline {
    font-size: .75rem;
  }

  .contact-full-title {
    font-size: clamp(2.8rem, 14vw, 5.5rem);
  }

  .contact-full-email {
    gap: .75rem;
    padding: .95rem 1rem .95rem 1.5rem;
    font-size: .9rem;
  }

  .contact-full-email-icon {
    min-width: 60px;
    padding-left: .75rem;
    font-size: .65rem;
  }

  .contact-full-expertise {
    gap: 1.5rem;
    font-size: .68rem;
  }

  .contact-full-expertise span:not(:last-child):after {
    right: -.9rem;
  }

  .contact-full-bottom {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .navbar {
    padding: 2rem 5rem;
  }

  .hero-title-line {
    font-size: 13rem;
  }

  .hero-bottom {
    bottom: 3.5rem;
    left: 5rem;
    right: 5rem;
  }

  .hero-description {
    max-width: 25rem;
  }

  .gallery-item {
    width: 25rem;
  }

  .gallery-item.gallery-item--4x3 {
    width: 19rem;
  }

  .about-dark {
    padding: 10rem 5rem;
  }

  .about-dark-title {
    font-size: 9rem;
  }

  .blob-1, .blob-2, .blob-3, .blob-4, .blob-5, .blob-6 {
    transform: scale(1.3);
  }

  .counter-number {
    font-size: 5rem;
  }

  .counters-row {
    gap: 5rem;
  }

  .proj-overlay {
    padding: 4rem 6rem;
  }

  .proj-title-inner {
    font-size: 5rem;
  }

  .proj-number {
    font-size: 12rem;
  }

  .about-new {
    padding: 12rem 6rem 10rem;
  }

  .about-bio p {
    font-size: 3.5rem;
  }

  .contact-section {
    padding: 10rem 6rem;
  }

  .contact-title-line {
    font-size: 6rem;
  }

  .footer-new {
    padding: 6rem 5rem 0;
  }
}

@media (min-width: 1600px) {
  .hero-title-line {
    font-size: 16rem;
  }

  .hero-description p {
    font-size: .95rem;
  }

  .hero-cta {
    padding: 1.25rem 3rem;
    font-size: 1rem;
  }

  .navbar {
    padding: 2.5rem 6rem;
  }

  .navbar .logo {
    font-size: 1.5rem;
  }

  .navbar .nav-links a {
    font-size: .95rem;
  }

  .gallery-item {
    width: 31.25rem;
  }

  .gallery-item.gallery-item--4x3 {
    width: 23.5rem;
  }

  .about-dark-title {
    font-size: 11rem;
  }

  .about-dark-desc p {
    font-size: 1.35rem;
  }

  .about-bio p {
    font-size: 4rem;
  }

  .service-name {
    font-size: 2rem;
  }

  .contact-title-line {
    font-size: 7rem;
  }

  .form-field input, .form-field textarea {
    padding: 1.25rem 0;
    font-size: 1.1rem;
  }

  .form-submit {
    padding: 1.35rem;
    font-size: 1rem;
  }

  .contact-layout {
    max-width: 1500px;
  }
}

/* [next]/internal/font/google/manrope_2c790c81.module.css [app-client] (css) */
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/a342834df7752944-s.bb140f9f.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: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/d3fe2f289711ac3f-s.50575af1.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/58c4895d0a0ef7cc-s.78d1a7ae.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: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/bfc7db5c00d21bc5-s.247c8473.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: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/6ab0db14f70d8ed6-s.18d7c7dc.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: Manrope;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/a343f882a40d2cc9-s.p.71e1367e.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: Manrope Fallback;
  src: local(Arial);
  ascent-override: 103.31%;
  descent-override: 29.07%;
  line-gap-override: 0.0%;
  size-adjust: 103.19%;
}

.manrope_2c790c81-module__07W7ta__className {
  font-family: Manrope, Manrope Fallback;
  font-style: normal;
}

.manrope_2c790c81-module__07W7ta__variable {
  --font-manrope: "Manrope", "Manrope Fallback";
}

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