.mobile-navigation,
.mobile-navigation * {
  box-sizing: border-box;
}
.mobile-navigation {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(183, 100, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.25) 100%
  );
  backdrop-filter: blur(32px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 8px 32px rgba(165, 61, 255, 0.15),
    0 1.5px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(165, 61, 255, 0.1) inset;
}
.frame-40 {
  background: transparent;
  padding: 20px 8px 20px 8px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}
.frame-345 {
  flex-shrink: 0;
  width: 221px;
  height: 56px;
  position: relative;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}
.frame-12 {
  background: var(--primary-500, #a53dff);
  border-radius: 1000px;
  padding: 0px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.b {
  color: var(--gray-white, #ffffff);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  line-height: 56px;
  font-weight: 500;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500;600&display=swap');

:root {
  --font: "WorkSans-SemiBold", "skolar-sans-latin", sans-serif;
  --purple: #a53dff;
  --black: oklch(22.21% 0 0);
  --gray: oklch(83.9% 0 0);
  --speed: 1200ms;
}

.brooklyn {
  color: var(--gray-900, #132238);
  text-align: left;
  font-family: var(--heading-03-font-family, "WorkSans-SemiBold", sans-serif);
  font-size: 25px;
  line-height: var(--heading-03-line-height, 40px);
  font-weight: var(--heading-03-font-weight, 600);
  position: relative;
  display: inline-block;
  height: auto;
  overflow: visible;
  white-space: nowrap;
}

.brooklyn > span {
  display: inline-block;
  animation: none;
}

.brooklyn > span:nth-child(1) {
  animation-delay: 0ms;
}

.brooklyn > span:nth-child(2) {
  animation-delay: 100ms;
}

.brooklyn > span:nth-child(3) {
  animation-delay: 200ms;
}

.brooklyn > span:nth-child(4) {
  animation-delay: 300ms;
}

.brooklyn > span:nth-child(5) {
  animation-delay: 400ms;
}

.brooklyn > span:nth-child(6) {
  animation-delay: 500ms;
}

.brooklyn > span:nth-child(7) {
  animation-delay: 600ms;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 0 var(--purple);
  }
  50% {
    transform: translateY(-10px);
    text-shadow: 0 5px 10px var(--purple);
  }
}
.frame-360 {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.frame-360:hover {
  transform: scale(1.05);
}

.frame-360.active {
  background-color: rgba(165, 61, 255, 0.1);
  border-radius: 8px;
}
.group-8 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  overflow: visible;
  aspect-ratio: 1;
  font-size: 28px;
  color: #333;
}
.dropdown-menu {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(237, 216, 255, 0.45) 100%
  );
  backdrop-filter: blur(32px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(1.05);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(165, 61, 255, 0.12), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  border-style: solid;
  border-color: var(--primary-200, #dbb1ff);
  border-width: 2.4px 0px 0px 0px;
  padding: 21px 0px 21px 0px;
  display: none;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  pointer-events: none;
}

.dropdown-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  pointer-events: auto;
}
.frame-368 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 480px) {
  .frame-368 {
    gap: 32px;
  }
}

@media (max-width: 380px) {
  .frame-368 {
    gap: 24px;
  }
}
.frame-367 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.frame-362 {
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.home {
  color: #333333;
  text-align: center;
  font-family: var(--body-regular-500-font-family, "WorkSans-Medium", sans-serif);
  font-size: var(--body-regular-500-font-size, 16px);
  line-height: var(--body-regular-500-line-height, 24px);
  font-weight: var(--body-regular-500-font-weight, 500);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.frame-363 {
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.about {
  color: #333333;
  text-align: center;
  font-family: var(--body-regular-500-font-family, "WorkSans-Medium", sans-serif);
  font-size: var(--body-regular-500-font-size, 16px);
  line-height: var(--body-regular-500-line-height, 24px);
  font-weight: var(--body-regular-500-font-weight, 500);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.frame-364 {
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.process {
  color: #333333;
  text-align: center;
  font-family: var(--body-regular-500-font-family, "WorkSans-Medium", sans-serif);
  font-size: var(--body-regular-500-font-size, 16px);
  line-height: var(--body-regular-500-line-height, 24px);
  font-weight: var(--body-regular-500-font-weight, 500);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.frame-365 {
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.portfolio {
  color: #333333;
  text-align: center;
  font-family: var(--body-regular-500-font-family, "WorkSans-Medium", sans-serif);
  font-size: var(--body-regular-500-font-size, 16px);
  line-height: var(--body-regular-500-line-height, 24px);
  font-weight: var(--body-regular-500-font-weight, 500);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.frame-366 {
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.service {
  color: #333333;
  text-align: center;
  font-family: var(--body-regular-500-font-family, "WorkSans-Medium", sans-serif);
  font-size: var(--body-regular-500-font-size, 16px);
  line-height: var(--body-regular-500-line-height, 24px);
  font-weight: var(--body-regular-500-font-weight, 500);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.frame-369 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  background: var(--primary-500, #a53dff);
  border-radius: 4px;
  padding: 16px 24px 16px 24px;
  width: 100%;
  transition: all 0.3s ease;
}

.frame-369:hover {
  background: #6138D8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(165, 61, 255, 0.4);
}

.frame-369 .button2 {
  color: var(--gray-white, #ffffff);
  text-align: center;
  font-family: var(--body-regular-600-font-family, "WorkSans-SemiBold", sans-serif);
  font-size: var(--body-regular-600-font-size, 16px);
  line-height: var(--body-regular-600-line-height, 24px);
  font-weight: var(--body-regular-600-font-weight, 600);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .frame-369 {
    padding: 12px 20px;
  }
  .frame-369 .button2 {
    font-size: var(--body-regular-500-font-size, 14px);
    line-height: var(--body-regular-500-line-height, 20px);
  }
}

@media (max-width: 480px) {
  .frame-369 {
    padding: 10px 16px;
  }
  .frame-369 .button2 {
    font-size: var(--body-regular-400-font-size, 12px);
    line-height: var(--body-regular-400-line-height, 18px);
  }
}
.button {
  background: var(--primary-500, #a53dff);
  border-radius: 4px;
  padding: 16px 24px 16px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

@media (max-width: 768px) {
  .button {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .button {
    padding: 10px 16px;
  }
}

.button2 {
  color: var(--gray-white, #ffffff);
  text-align: left;
  font-family: var(--body-regular-600-font-family, "WorkSans-SemiBold", sans-serif);
  font-size: var(--body-regular-600-font-size, 16px);
  line-height: var(--body-regular-600-line-height, 24px);
  font-weight: var(--body-regular-600-font-weight, 600);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .button2 {
    font-size: var(--body-regular-500-font-size, 14px);
    line-height: var(--body-regular-500-line-height, 20px);
  }
}

@media (max-width: 480px) {
  .button2 {
    font-size: var(--body-regular-400-font-size, 12px);
    line-height: var(--body-regular-400-line-height, 18px);
  }
}

/* Responsive Navigation */
@media (min-width: 769px) {
  .mobile-navigation {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-navigation {
    display: flex !important;
  }
}

/* Ensure MobileNav logo displays correctly */
.mobile-navigation .logo .frame67iq {
  z-index: 1001;
  background: var(--primary-500, #a53dff);
  border-radius: 1000px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
}

.mobile-navigation .logo .frame67iq .b {
  color: var(--gray-white, #ffffff) !important;
  text-align: center !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 24px !important;
  line-height: 56px !important;
  font-weight: 500 !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  overflow: hidden;
}

/* Mobile connect button height */
#mobile-connect-button {
  height: 52px !important;
}
