/* ANIMATION VARIABLES */
/* DEBUG VARIABLES*/
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track-piece {
  background-color: #ececec;
}

::-webkit-scrollbar-thumb {
  outline-offset: -2px;
  background-color: #BBBDC7;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #909090;
}

html {
  font-family: "Urbanist", sans-serif;
  scrollbar-gutter: stable;
}

body {
  background-color: #e3e6e8;
  margin: 0;
  padding: 0;
}
body.nav-desktop-open {
  overflow: hidden;
  touch-action: none;
}

h1, h2, h3, h4 {
  margin: 0.5rem 0;
}

h1 {
  font-size: 2rem;
  font-weight: bolder;
}
h1.xl {
  font-size: 4rem;
  line-height: 0.9;
}
@media (max-width: 991px) {
  h1.xl {
    font-size: calc(4rem * 0.8);
  }
}

hr {
  opacity: 0.5;
}

h2 {
  font-size: 1.2rem;
}

p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: #070707;
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.master-holder {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: 1s cubic-bezier(0.82, -0.01, 0.17, 1) all;
}
.master-holder.container-loaded {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.btn-primary {
  color: #070707;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2.5rem;
  height: 50px;
  padding: 0.8rem;
  box-sizing: border-box;
  font-size: calc(1.1rem * 0.9);
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: 200ms ease-in-out all;
}
.btn-primary:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: inherit;
  visibility: collapse;
  position: absolute;
  inset: 0;
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1;
  pointer-events: none;
  transition: 200ms ease-in-out all;
}
.btn-primary p {
  z-index: 2;
  font-weight: 500 !important;
}
.btn-primary:hover {
  cursor: pointer;
  background-color: #ffffff;
}
.btn-primary:hover:after {
  background-color: rgba(255, 255, 255, 0.8);
  visibility: visible;
  transform: scaleX(1);
}
.btn-primary.small-width {
  width: -moz-max-content;
  width: max-content;
}
.btn-primary.auto-height {
  height: auto;
}
.btn-primary.left-align {
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
}
.btn-primary i {
  font-size: 1.2rem;
  padding: 0.5rem;
}

.flex {
  display: flex !important;
}
.flex.spaced {
  justify-content: space-between;
}
.flex.row {
  flex-direction: row;
}
.flex.column {
  flex-direction: column;
}
.flex.center {
  align-items: center;
}

.gap-2 {
  gap: 1rem;
}

.gap-1 {
  gap: 0.5rem;
}

.w-100 {
  width: 100%;
}

svg {
  width: 70px;
  height: 70px;
}

nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 2.5rem;
  position: fixed;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.5rem;
  box-sizing: border-box;
  z-index: 999;
  overflow: visible;
  isolation: isolate;
  box-shadow: 38px 0px 50px -30px rgba(0, 0, 0, 0.25);
}
nav:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  box-shadow: inset 2px 2px 0 -2px rgba(255, 255, 255, 0.7), inset 0 0 3px 1px rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
nav:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: url(#container-glass);
  -webkit-filter: url(#container-glass);
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
}
@media (max-width: 991px) {
  nav {
    height: auto;
    padding: 0.4rem 1rem;
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
    box-shadow: 0 0 3rem 0.05rem rgba(0, 0, 0, 0.15);
    top: unset;
    left: unset;
    right: 50%;
    transform: translateX(50%);
    bottom: 1rem;
    z-index: 101;
  }
}
nav ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767px) {
  nav ul {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: auto;
  }
}
nav ul li a {
  position: relative;
  border-radius: 2.5rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0;
}
nav ul li a .label {
  position: absolute;
  top: -120%;
  width: -moz-max-content;
  width: max-content;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2.5rem;
  box-shadow: 38px 0px 50px -15px rgba(0, 0, 0, 0.25);
  transform: translateX(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease-in-out all;
}
nav ul li a .label p {
  padding: 0 2rem;
}
nav ul li a:hover {
  background-color: #fff;
  cursor: pointer;
}
nav ul li a:hover .label {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 991px) {
  nav ul li a:hover .label {
    display: none;
    opacity: 0;
  }
}
nav ul li a i {
  font-size: calc(2rem * 0.8);
  opacity: 0.5;
  transition: 220ms ease-in-out all;
}
nav ul li a.nav-menu .menu-toggle-icon {
  transform: rotate(0deg) scale(1);
}
nav ul li a.nav-menu.is-open .menu-toggle-icon {
  transform: rotate(90deg) scale(0.9);
  opacity: 0.9;
}
nav ul li a img {
  height: 1.8rem;
  opacity: 0.2;
}
nav ul li a svg {
  height: 1.8rem;
  opacity: 0.2;
}
nav ul li:last-child a img {
  opacity: 1;
}

section {
  padding: 2rem;
}

form input[type=text] {
  border: none;
  outline: none;
  min-height: 50px;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  box-sizing: border-box;
  color: #605e5e;
  border-radius: 2.5rem;
}
form select {
  border: none;
  outline: none;
  min-height: 50px;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  box-sizing: border-box;
  color: #605e5e;
  border-radius: 2.5rem;
}
form * {
  margin: 0.1rem 0;
}
form.admin p {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}
form.admin p.subtitle {
  font-weight: 600;
  color: rgb(0, 0, 0);
  font-size: calc(1.1rem * 0.8);
}
form.admin div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
form.admin div label {
  font-weight: 600;
  color: rgb(0, 0, 0);
  font-size: calc(1.1rem * 0.8);
}

table {
  width: 100%;
  margin: 1rem 0;
}
table tr:nth-child(even) {
  background-color: rgba(249, 249, 249, 0.33);
}
table th {
  padding: 1rem;
  background-color: white;
}
table td {
  padding: 0 1rem;
}
table td .actions {
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
table td img {
  height: 2.5rem;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-desktop {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(202, 207, 213, 0.52);
  visibility: hidden;
  backdrop-filter: blur(14px);
  transform-origin: left;
  opacity: 0;
  z-index: 99;
  display: flex;
  height: 100vh;
  overflow: hidden;
  transition: 200ms ease-in-out all;
}
@media (max-width: 991px) {
  .nav-desktop {
    left: 0;
  }
}
.nav-desktop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8.5rem;
  background: linear-gradient(180deg, rgba(228, 233, 238, 0.94) 0%, rgba(228, 233, 238, 0.82) 42%, rgba(228, 233, 238, 0) 100%);
  pointer-events: none;
  z-index: 140;
}
@media (max-width: 991px) {
  .nav-desktop:before {
    height: 7.5rem;
  }
}
.nav-desktop ul {
  position: relative;
  list-style: none;
  margin: 0;
  background: transparent;
  border-radius: 0;
  padding: 1.25rem 1.25rem 1.25rem;
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: 500ms cubic-bezier(0.82, -0.01, 0.17, 1) all;
}
.nav-desktop ul::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.nav-desktop ul .nav-header {
  position: sticky;
  top: 0;
  z-index: 160;
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: 0.35rem 1.5rem 0.45rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  backdrop-filter: none;
}
@media (max-width: 991px) {
  .nav-desktop ul .nav-header {
    width: 100%;
    padding: 0.35rem 0.85rem 0.4rem;
  }
}
.nav-desktop ul .nav-scroll {
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 7.5rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
  margin-top: -0.35rem;
}
@media (max-width: 991px) {
  .nav-desktop ul .nav-scroll {
    width: 100%;
    padding: 1.5rem 0.85rem 8.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: -0.25rem;
  }
}
.nav-desktop ul .nav-close {
  position: relative;
  height: 3.25rem;
  width: 3.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(1.25rem);
  transition: 200ms ease-in-out all;
}
.nav-desktop ul .nav-close:hover {
  background-color: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.45);
}
.nav-desktop ul .nav-close span {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-desktop ul hr {
  display: none;
}
.nav-desktop ul .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  opacity: 0;
  transform: translateX(-2rem);
  transition: 500ms ease-in-out all;
}
.nav-desktop ul .logo img {
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav-desktop ul .socials {
  padding: 0 0 0 2rem;
  transform: translateX(-10rem);
  opacity: 0;
  transition: 500ms cubic-bezier(0.82, -0.01, 0.17, 1) all;
  grid-column: 1/-1;
  padding: 0 0.5rem;
}
.nav-desktop ul .socials a {
  background-color: rgba(255, 255, 255, 0.36);
  border-radius: 2.5rem;
  padding: 0.5rem;
  backdrop-filter: blur(12px);
  transition: 200ms ease-in-out all;
}
.nav-desktop ul .socials a:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.nav-desktop ul .socials a .item {
  display: flex;
  position: relative;
  z-index: 4;
  gap: 1rem;
  align-items: center;
  padding: 0.1rem;
  box-shadow: 38px 0px 50px -25px rgba(0, 0, 0, 0.25);
}
.nav-desktop ul .socials a .item svg {
  height: 1.5rem;
  width: 1.5rem;
}
.nav-desktop ul li {
  position: relative;
  opacity: 0;
  display: flex;
  overflow: hidden;
  min-height: 7.1rem;
  padding: 1.15rem 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1.4rem 2.8rem -2rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  isolation: isolate;
  transform: translate3d(0, 1rem, 0) scale(0.985);
  backface-visibility: hidden;
  will-change: transform, box-shadow;
  transition: transform 220ms cubic-bezier(0.82, -0.01, 0.17, 1), box-shadow 220ms cubic-bezier(0.82, -0.01, 0.17, 1);
}
.nav-desktop ul li:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.94);
  transform: translateX(-102%);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.82, -0.01, 0.17, 1);
  z-index: 1;
  pointer-events: none;
}
.nav-desktop ul li i {
  font-size: 1.2rem;
  z-index: 100;
  font-size: 1.9rem;
  opacity: 0.52;
  position: relative;
  z-index: 2;
  transition: opacity 220ms cubic-bezier(0.82, -0.01, 0.17, 1), transform 220ms cubic-bezier(0.82, -0.01, 0.17, 1);
}
.nav-desktop ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.08;
  padding: 0;
  z-index: 2;
  cursor: pointer;
  outline: none;
  transition: transform 220ms cubic-bezier(0.82, -0.01, 0.17, 1);
}
.nav-desktop ul li a:focus {
  outline: none;
}
@media (max-width: 1366px) {
  .nav-desktop ul li a {
    font-size: 1.05rem;
  }
}
@media (max-width: 991px) {
  .nav-desktop ul li a {
    font-size: 1rem;
  }
}
.nav-desktop ul li a:hover {
  cursor: pointer;
}
.nav-desktop ul li:before {
  display: none;
}
.nav-desktop ul li:hover {
  cursor: pointer;
  box-shadow: 0 1.7rem 3.2rem -1.8rem rgba(0, 0, 0, 0.28);
  transform: scale(1.05);
}
.nav-desktop ul li:hover:after {
  transform: translateX(0);
}
.nav-desktop ul li:hover i {
  opacity: 0.68;
  transform: translateY(-1px);
}
.nav-desktop ul li:hover a {
  transform: translateY(-1px);
}
.nav-desktop.opened {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}
.nav-desktop.opened ul {
  width: 100%;
  margin: 0;
  height: 100vh;
  height: 100dvh;
}
.nav-desktop.opened ul .logo {
  opacity: 1;
  transform: translateX(0);
}
.nav-desktop.opened ul .nav-close {
  opacity: 1;
  transform: translateX(0);
}
.nav-desktop.opened ul .socials {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInsDelayed 1000ms forwards;
}
@keyframes fadeInsDelayed {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.nav-desktop.opened ul li {
  animation: navItemIn 520ms cubic-bezier(0.82, -0.01, 0.17, 1) forwards;
}
.nav-desktop.opened ul li:nth-of-type(1) {
  animation-delay: 0ms;
}
.nav-desktop.opened ul li:nth-of-type(2) {
  animation-delay: 50ms;
}
.nav-desktop.opened ul li:nth-of-type(3) {
  animation-delay: 100ms;
}
.nav-desktop.opened ul li:nth-of-type(4) {
  animation-delay: 150ms;
}
.nav-desktop.opened ul li:nth-of-type(5) {
  animation-delay: 200ms;
}
.nav-desktop.opened ul li:nth-of-type(6) {
  animation-delay: 250ms;
}
.nav-desktop.opened ul li:nth-of-type(7) {
  animation-delay: 300ms;
}
.nav-desktop.opened ul li:nth-of-type(8) {
  animation-delay: 350ms;
}
@keyframes navItemIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 991px) {
  .main-container {
    margin: unset;
  }
}

/* 1. Moving Border Animation */
.separator-moving {
  position: relative;
  border: none;
  height: 3px;
  background: #e9ecef;
  overflow: hidden;
  border-radius: 2.5rem;
}

.separator-moving::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #007bff, #00d4ff, #007bff, transparent);
  animation: slide 2s infinite;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.admin-nav-desktop .menu-container {
  display: none;
}

.admin-area {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 2rem 2rem 2rem;
  box-sizing: border-box;
}
.admin-area .admin-nav-desktop {
  display: flex;
}
.admin-area .admin-nav-desktop .menu-container {
  display: flex;
  flex-direction: column;
  width: 20rem;
}
.admin-area .admin-nav-desktop .menu-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-area .admin-nav-desktop .menu-container ul li {
  margin: 0;
  padding: 0;
}
.admin-area .admin-nav-desktop main {
  width: 100%;
}

.footer {
  padding: 4rem 5rem 2rem 7rem;
  box-sizing: border-box;
  margin-top: 3rem;
  background: #EBEBEB;
  border-radius: 2.5rem 2.5rem 0 0;
}
@media (max-width: 991px) {
  .footer {
    padding: 2rem 2rem 5rem 2rem;
  }
}
.footer .social-container {
  grid-column: span 2;
}
.footer-section img {
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-section h3 {
  color: #070707;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  z-index: 10;
}
.footer-section ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 2.5rem;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  color: #070707;
  font-family: "Urbanist", sans-serif;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.footer-section ul li a i {
  font-size: 1.05rem;
  opacity: 0.72;
  flex: 0 0 auto;
}
.footer-section ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: white;
  border-radius: inherit;
  transition: 200ms ease-in-out all;
  z-index: -1;
}
.footer-section ul li a:hover:before {
  transform: scaleX(1);
  z-index: -1;
}
.footer-section ul li a span {
  font-size: 1.1rem;
  color: #070707;
  opacity: 0.5;
}
.footer-section ul li a img {
  height: 3rem;
  width: auto;
}
.footer-section ul li a img.sm {
  height: 2rem;
  width: auto;
  padding: 0 0.5rem;
}
.footer-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr 0.5fr 0.8fr;
  gap: 3rem;
}
@media (max-width: 991px) {
  .footer-section-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.footer-section.socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-section.socials a {
  display: flex;
  border-radius: 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 38px 0px 50px -25px rgba(0, 0, 0, 0.25);
}
.footer-section.socials a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  border-radius: inherit;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: 200ms ease-in-out all;
}
.footer-section.socials a:hover:before {
  background-color: white;
  transform: scaleX(1);
}
.footer-section.socials a .item {
  display: flex;
  position: relative;
  z-index: 4;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0.8rem;
}
.footer-section.socials a .item svg {
  height: 1rem;
  width: 1rem;
}
.footer-section.socials a .item p {
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.footer-section.description p {
  font-size: 1.1rem;
}
.footer-section.description .logo {
  display: flex;
}
@media (max-width: 991px) {
  .footer-section:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 991px) {
  .footer-section:nth-child(2) {
    grid-column: span 2;
  }
}
.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 400;
}

nav,
nav ul li a,
nav ul li a .label,
.nav-desktop ul,
.nav-desktop ul .socials a,
.nav-desktop ul li:before,
.footer,
.footer-section ul li a,
.footer-section ul li a:before,
.footer-section.socials a,
.footer-section.socials a:before {
  border-radius: 2.5rem;
}

@property --kicker-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes kickerBorderSpin {
  from {
    --kicker-angle: 0deg;
  }
  to {
    --kicker-angle: 360deg;
  }
}
@keyframes kickerShine {
  0% {
    transform: translateX(-220%) rotate(26deg);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  34%, 100% {
    transform: translateX(380%) rotate(26deg);
    opacity: 0;
  }
}
@keyframes heroCaretBlink {
  0%, 49% {
    border-right-color: currentColor;
  }
  50%, 100% {
    border-right-color: transparent;
  }
}
.studio-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 8rem 4rem 4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 20% 20%, rgba(33, 255, 208, 0.16) 0%, rgba(33, 255, 208, 0) 35%), linear-gradient(130deg, #f7f8fa 0%, #e3e6e8 45%, #d8dee3 100%);
}
.studio-hero .hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vh;
  height: 100vw;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}
.studio-hero .hero-center-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at 50% 46%, rgba(227, 230, 232, 0.92) 0%, rgba(227, 230, 232, 0.78) 18%, rgba(227, 230, 232, 0.46) 38%, rgba(227, 230, 232, 0.16) 58%, rgba(227, 230, 232, 0) 82%);
}
.studio-hero .hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(10rem, 30vh, 22rem);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, rgba(227, 230, 232, 0) 0%, rgba(227, 230, 232, 0.22) 28%, rgba(227, 230, 232, 0.7) 64%, rgba(227, 230, 232, 0.94) 84%, #e3e6e8 100%);
}
.studio-hero .hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(0, 0, 0, 0.35) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 2;
}
.studio-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  pointer-events: none;
  z-index: 2;
}
.studio-hero .hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 58rem;
  text-align: center;
}
.studio-hero .hero-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.studio-hero .hero-brand img {
  height: 1.75rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.studio-hero .hero-brand p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  color: rgba(0, 0, 0, 0.78);
}
.studio-hero .hero-kicker {
  position: relative;
  --kicker-angle: 0deg;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.studio-hero .hero-kicker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--kicker-angle), rgba(255, 255, 255, 0.95) 0deg, rgba(255, 255, 255, 0) 70deg, rgba(255, 255, 255, 0.78) 150deg, rgba(255, 255, 255, 0) 220deg, rgba(255, 255, 255, 0.98) 300deg, rgba(255, 255, 255, 0.95) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: kickerBorderSpin 5s linear infinite;
  z-index: -1;
}
.studio-hero .hero-kicker::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 36%;
  height: 320%;
  transform: rotate(26deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  animation: kickerShine 2.4s ease-in-out infinite;
  z-index: -1;
}
.studio-hero h1 {
  max-width: 11ch;
  margin: 0 auto;
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.12rem;
}
.studio-hero h1 .hero-rotating-word-shell {
  display: inline-grid;
  align-items: center;
  vertical-align: middle;
}
.studio-hero h1 .hero-rotating-word-shell::before {
  content: attr(data-width);
  grid-area: 1/1;
  visibility: hidden;
  white-space: nowrap;
}
.studio-hero h1 #hero-rotating-word {
  grid-area: 1/1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: -moz-max-content;
  width: max-content;
  vertical-align: middle;
  min-height: 1em;
  line-height: 1em;
  color: #006b59;
  -webkit-text-stroke: 0.008em rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 0.03em rgba(255, 255, 255, 0.42), 0 0 0.12em rgba(255, 255, 255, 0.22), 0 0 0.26em rgba(0, 107, 89, 0.22), 0 0 0.72em rgba(0, 195, 154, 0.18), 0 0 1.3em rgba(0, 195, 154, 0.12);
  white-space: nowrap;
  padding-right: 0.14em;
  border-right: 0.08em solid currentColor;
  animation: heroCaretBlink 900ms steps(1) infinite;
}
.studio-hero .hero-subtitle {
  max-width: 45rem;
  margin: 1.4rem auto 0;
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.74);
}
.studio-hero .hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.studio-hero .hero-actions .btn-primary i {
  font-size: 1.05rem;
  padding: 0 0.45rem 0 0;
  opacity: 0.7;
}
.studio-hero .hero-meta {
  position: relative;
  z-index: 4;
  width: min(32rem, 100%);
  margin-top: 2rem;
  text-align: center;
}
.studio-hero .hero-meta .meta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 2.5rem;
  backdrop-filter: blur(6px);
}
.studio-hero .hero-meta .meta-card .meta-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.studio-hero .hero-meta .meta-card p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
}
.studio-hero .hero-meta .meta-card .label {
  margin-bottom: 0.3rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .studio-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 6.5rem 1rem 7.5rem;
    align-items: center;
  }
  .studio-hero h1 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.3rem;
    max-width: 9.5ch;
    font-size: clamp(2.7rem, 13vw, 4.1rem);
    line-height: 0.92;
    letter-spacing: -0.08rem;
    text-align: center;
  }
  .studio-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
    align-items: center;
  }
  .studio-hero .hero-brand {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .studio-hero .hero-kicker {
    margin: 0 auto 1.5rem;
  }
  .studio-hero .hero-actions {
    margin-top: 0;
    justify-content: center;
    gap: 0.9rem;
  }
  .studio-hero .hero-meta {
    margin-top: 1.25rem;
    text-align: center;
  }
  .studio-hero .hero-meta .meta-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: 1.6rem;
  }
}

.home-projects-showcase {
  padding: clamp(2rem, 6vw, 4rem) 1rem 0;
}
.home-projects-showcase .projects-shell {
  max-width: 74rem;
}
.home-projects-showcase .projects-heading {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.home-projects-showcase .projects-heading h1.xl {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.12rem;
}
.home-projects-showcase .projects-collage {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.05fr;
  gap: 0.9rem;
  align-items: center;
}
.home-projects-showcase .project-tile,
.home-projects-showcase .project-feature {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2.2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2rem 4rem -2.8rem rgba(0, 0, 0, 0.2);
  transition: 220ms ease-in-out all;
}
.home-projects-showcase .project-tile:hover,
.home-projects-showcase .project-feature:hover {
  transform: translateY(-4px);
}
.home-projects-showcase .project-chip {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #141414;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  box-shadow: 0 0.8rem 1.8rem -1.2rem rgba(0, 0, 0, 0.3);
}
.home-projects-showcase .project-tile {
  min-height: 13rem;
}
.home-projects-showcase .tile-top-left,
.home-projects-showcase .tile-top-right {
  aspect-ratio: 1.35/1;
}
.home-projects-showcase .tile-bottom-left,
.home-projects-showcase .tile-bottom-right {
  aspect-ratio: 1.35/0.82;
}
.home-projects-showcase .project-feature {
  grid-column: 2;
  grid-row: 1/span 2;
  z-index: 1;
  transform: rotate(-12deg);
  transform-origin: center;
}
.home-projects-showcase .project-feature:hover {
  transform: rotate(-10deg) translateY(-4px);
}
.home-projects-showcase .project-feature .feature-surface {
  position: relative;
  min-height: 27rem;
  background: #ffffff;
}
.home-projects-showcase .project-feature .feature-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.6rem 1.6rem 0;
  color: #141414;
}
.home-projects-showcase .project-feature .feature-copy .eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  opacity: 0.6;
}
.home-projects-showcase .project-feature .feature-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
  font-weight: 800;
}
.home-projects-showcase .project-feature .feature-copy .meta {
  max-width: 15rem;
  margin-top: 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  opacity: 0.72;
}
.home-projects-showcase .tile-top-left {
  grid-column: 1;
  grid-row: 1;
}
.home-projects-showcase .tile-bottom-left {
  grid-column: 1;
  grid-row: 2;
}
.home-projects-showcase .tile-top-right {
  grid-column: 3;
  grid-row: 1;
}
.home-projects-showcase .tile-bottom-right {
  grid-column: 3;
  grid-row: 2;
}
.home-projects-showcase .view-all-projects {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(245, 247, 249) 100%);
}
.home-projects-showcase .view-all-projects .view-all-copy {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.home-projects-showcase .view-all-projects .view-all-copy p {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 0.95;
  font-weight: 800;
  color: #141414;
}
@media (max-width: 767px) {
  .home-projects-showcase {
    padding: 1.5rem 1rem 0;
  }
  .home-projects-showcase .projects-heading {
    text-align: center;
  }
  .home-projects-showcase .projects-heading h1.xl {
    font-size: clamp(2.8rem, 14vw, 4rem);
    letter-spacing: -0.08rem;
  }
  .home-projects-showcase .projects-collage {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
  }
  .home-projects-showcase .project-feature {
    grid-column: 1/-1;
    grid-row: auto;
    transform: none;
  }
  .home-projects-showcase .project-feature:hover {
    transform: translateY(-4px);
  }
  .home-projects-showcase .project-feature .feature-surface {
    min-height: 24rem;
  }
  .home-projects-showcase .project-feature .feature-copy {
    padding: 1.25rem 1.25rem 0;
  }
  .home-projects-showcase .project-feature .feature-copy h2 {
    max-width: 10ch;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .home-projects-showcase .tile-top-left,
  .home-projects-showcase .tile-bottom-left,
  .home-projects-showcase .tile-top-right,
  .home-projects-showcase .tile-bottom-right {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1/1;
    min-height: 0;
  }
  .home-projects-showcase .view-all-projects .view-all-copy p {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }
}

.home-intro-panel {
  margin-top: clamp(3.5rem, 8vw, 6rem);
}
.home-intro-panel .component-about .title-section {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.home-intro-panel .component-about .title-section h1.xl {
  max-width: 11ch;
  margin: 0 auto;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
}
.home-intro-panel .component-about .title-section p.large {
  max-width: 31rem;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .home-intro-panel {
    margin-top: 2rem;
  }
  .home-intro-panel .component-about {
    padding: 0 1rem;
  }
  .home-intro-panel .component-about .title-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .home-intro-panel .component-about .title-section h1.xl {
    max-width: 10ch;
    font-size: clamp(2.35rem, 10vw, 3.1rem);
    line-height: 0.98;
  }
  .home-intro-panel .component-about .title-section p.large {
    max-width: 20rem;
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.55;
  }
}

.home-workflow-masonry {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 6.5rem) 1rem;
  border-radius: 2.5rem;
}
.home-workflow-masonry .workflow-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.home-workflow-masonry .workflow-video-blur {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: rgba(227, 230, 232, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.home-workflow-masonry .workflow-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(5rem, 14vh, 8rem);
  pointer-events: none;
  z-index: 2;
}
.home-workflow-masonry .workflow-fade.workflow-fade-top {
  top: 0;
  background: linear-gradient(180deg, #e3e6e8 0%, rgba(227, 230, 232, 0.86) 26%, rgba(227, 230, 232, 0) 100%);
}
.home-workflow-masonry .workflow-fade.workflow-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, #e3e6e8 0%, rgba(227, 230, 232, 0.88) 24%, rgba(227, 230, 232, 0) 100%);
}
.home-workflow-masonry .workflow-shell {
  position: relative;
  z-index: 3;
  max-width: 74rem;
}
.home-workflow-masonry .workflow-trusted {
  position: relative;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.24) 100%);
  box-shadow: 0 1.5rem 3rem -2rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.home-workflow-masonry .workflow-trusted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.home-workflow-masonry .workflow-trusted {
  position: relative;
  z-index: 1;
  padding: clamp(1.4rem, 2.8vw, 2rem);
}
.home-workflow-masonry .workflow-trusted .trusted-header,
.home-workflow-masonry .workflow-trusted .trusted-grid {
  position: relative;
  z-index: 1;
}
.home-workflow-masonry .trusted-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.home-workflow-masonry .trusted-header .trusted-kicker,
.home-workflow-masonry .trusted-header .trusted-copy {
  margin: 0;
}
.home-workflow-masonry .trusted-header .trusted-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.58);
}
.home-workflow-masonry .trusted-header .trusted-copy {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.42);
}
.home-workflow-masonry .trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.16);
}
.home-workflow-masonry .trusted-cell {
  display: flex;
  gap: 0.5rem;
  min-height: 3.6rem;
  padding: 0.9rem 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.46);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  box-sizing: border-box;
}
.home-workflow-masonry .trusted-cell:nth-child(4n) {
  border-right: none;
}
.home-workflow-masonry .trusted-cell:nth-last-child(-n+4) {
  border-bottom: none;
}
.home-workflow-masonry .trusted-cell .brand-dot {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}
.home-workflow-masonry .trusted-cell span:last-child {
  align-items: center;
  display: inline-flex;
}
@media (max-width: 767px) {
  .home-workflow-masonry {
    padding: 3rem 1rem;
    border-radius: 2rem;
  }
  .home-workflow-masonry .workflow-trusted {
    padding: 1.25rem;
  }
  .home-workflow-masonry .trusted-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .home-workflow-masonry .trusted-header .trusted-copy {
    font-size: 0.88rem;
  }
  .home-workflow-masonry .trusted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-workflow-masonry .trusted-cell {
    min-height: 3.3rem;
    padding: 0.8rem 0.85rem;
    font-size: 0.9rem;
  }
  .home-workflow-masonry .trusted-cell:nth-child(4n) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .home-workflow-masonry .trusted-cell:nth-child(2n) {
    border-right: none;
  }
  .home-workflow-masonry .trusted-cell:nth-last-child(-n+4) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .home-workflow-masonry .trusted-cell:nth-last-child(-n+2) {
    border-bottom: none;
  }
}/*# sourceMappingURL=global.css.map */
