@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-deep: #020203;
  --bg-base: #050506;
  --bg-elevated: #0a0a0c;
  --surface: #ffffff0d;
  --surface-hover: #ffffff14;
  --border: #ffffff14;
  --text-main: #ededef;
  --text-muted: #8a8f98;
  --accent: #fff;
  --accent-glow: #ffffff26;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --easing: cubic-bezier(.16, 1, .3, 1);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -.02em;
  font-weight: 500;
}

.nav-link {
  font-family: var(--font-primary);
}

.text-gradient {
  background: linear-gradient(#fff 0%, #8a8f98 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.noise-overlay {
  pointer-events: none;
  z-index: 9999;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.header-wrapper {
  z-index: 100;
  pointer-events: none;
  width: 100%;
  padding: 30px 20px 0;
  transition: padding .5s cubic-bezier(.16, 1, .3, 1);
  position: fixed;
  top: 0;
  left: 0;
}

.header-wrapper.scrolled {
  padding: 15px 20px 0;
}

.floating-pill {
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  pointer-events: auto;
  background: #19191e80;
  border: 1px solid #ffffff26;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: relative;
  box-shadow: 0 20px 40px #0006, inset 0 1px #ffffff1a;
}

.header-wrapper.scrolled .floating-pill {
  background: #0a0a0ce6;
  border: 1px solid #ffffff1a;
  padding: 8px 24px;
  box-shadow: 0 10px 30px #0009;
}

.mobile-menu-btn {
  color: var(--text-main);
  cursor: pointer;
  transition: background .3s var(--easing);
  z-index: 102;
  background: none;
  border: none;
  border-radius: 50%;
  align-items: center;
  padding: 8px;
  display: flex;
}

.mobile-menu-btn:hover {
  background: var(--surface);
}

.logo-container {
  z-index: 102;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-logo {
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 10px 20px #00000080);
  width: auto;
  height: 100px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.header-wrapper.scrolled .brand-logo {
  height: 75px;
}

.brand-logo:hover {
  filter: drop-shadow(0 0 20px #ffffff4d) brightness(1.1);
}

@keyframes ambientGlow {
  0% {
    opacity: .4;
    transform: translate(-50%, -50%)scale(1);
  }

  50% {
    opacity: .8;
    transform: translate(-50%, -50%)scale(1.15);
  }

  100% {
    opacity: .4;
    transform: translate(-50%, -50%)scale(1);
  }
}

.logo-glow {
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, #fff3 0%, #0000 60%);
  width: 150px;
  height: 150px;
  animation: 4s ease-in-out infinite ambientGlow;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-container {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  opacity: 0;
  pointer-events: none;
  z-index: 101;
  background: #050506f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100vw;
  height: 100vh;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-20px);
}

.nav-container.mobile-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-left, .nav-right {
  flex-direction: column;
  align-items: center;
  gap: 32px;
  display: flex;
}

.nav-link {
  color: var(--text-main);
  letter-spacing: -.01em;
  transition: color .4s var(--easing);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.link-text {
  position: relative;
}

@media (hover: hover) {
  .nav-container:hover .nav-link {
    color: #ffffff4d;
  }

  .nav-container .nav-link:hover {
    color: #fff;
    text-shadow: 0 0 12px #fff6;
  }
}

.highlight-btn {
  color: #050506;
  font-family: var(--font-primary);
  letter-spacing: -.01em;
  cursor: pointer;
  transition: all .4s var(--easing);
  background: #ededef;
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: .95rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px #ffffff1a;
}

.highlight-btn:hover {
  background: #fff;
  box-shadow: 0 0 25px #ffffff26, inset 0 0 10px #0000000d;
}

@media (min-width: 1024px) {
  .header-wrapper {
    padding: 45px 40px 0;
  }

  .header-wrapper.scrolled {
    padding: 20px 40px 0;
  }

  .floating-pill {
    padding: 12px 32px;
  }

  .header-wrapper.scrolled .floating-pill {
    padding: 10px 32px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .nav-container {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    background: none;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    height: auto;
    position: static;
    transform: none;
  }

  .nav-left, .nav-right {
    flex-direction: row;
  }

  .brand-logo {
    height: 130px;
  }

  .header-wrapper.scrolled .brand-logo {
    height: 90px;
  }

  .header-wrapper.scrolled .brand-logo .main-header {
    z-index: 1000;
    border-bottom: 1px solid #ffffff0d;
    width: 100%;
    transition: all .4s;
    position: fixed;
    top: 0;
    left: 0;
  }

  .header-wrapper.scrolled .brand-logo .main-header.scrolled {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: #020203f2;
    border-bottom: 1px solid #ffffff1a;
  }

  .header-wrapper.scrolled .brand-logo .header-container {
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    height: 80px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    position: relative;
  }

  .header-wrapper.scrolled .brand-logo .header-left, .header-wrapper.scrolled .brand-logo .header-right {
    flex: 1;
    align-items: center;
    display: flex;
  }

  .header-wrapper.scrolled .brand-logo .header-left {
    justify-content: flex-start;
    gap: 30px;
  }

  .header-wrapper.scrolled .brand-logo .header-right {
    justify-content: flex-end;
    gap: 30px;
  }

  .header-wrapper.scrolled .brand-logo .nav-link, .header-wrapper.scrolled .brand-logo .phone-link {
    color: #fff;
    letter-spacing: .02em;
    font-size: .95rem;
    font-weight: 400;
    text-decoration: none;
    transition: opacity .3s;
  }

  .header-wrapper.scrolled .brand-logo .phone-link {
    align-items: center;
    display: flex;
  }

  .header-wrapper.scrolled .brand-logo .nav-link:hover, .header-wrapper.scrolled .brand-logo .phone-link:hover {
    opacity: .6;
  }

  .header-wrapper.scrolled .brand-logo .header-center {
    z-index: 2;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-wrapper.scrolled .brand-logo .logo-circle {
    background: var(--bg-deep);
    border: 1px solid #ffffff1a;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    transition: all .4s;
    display: flex;
    transform: translateY(20px);
  }

  .header-wrapper.scrolled .brand-logo .main-header.scrolled .logo-circle {
    width: 90px;
    height: 90px;
    transform: translateY(10px);
  }

  .header-wrapper.scrolled .brand-logo .brand-logo {
    object-fit: contain;
    width: 80%;
    height: auto;
  }

  .header-wrapper.scrolled .brand-logo .menu-btn {
    color: #fff;
    cursor: pointer;
    background: none;
    border: 1px solid #fff3;
    border-radius: 20px;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: inherit;
    font-size: .9rem;
    transition: all .3s;
    display: flex;
  }

  .header-wrapper.scrolled .brand-logo .menu-btn:hover {
    background: #ffffff1a;
  }

  .header-wrapper.scrolled .brand-logo .mobile-drawer {
    background: var(--bg-deep);
    z-index: 1001;
    border-left: 1px solid #ffffff1a;
    flex-direction: column;
    width: 300px;
    height: 100vh;
    padding: 80px 40px;
    transition: right .4s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
  }

  .header-wrapper.scrolled .brand-logo .mobile-drawer.open {
    right: 0;
  }

  .header-wrapper.scrolled .brand-logo .close-menu-btn {
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    top: 25px;
    right: 25px;
  }

  .header-wrapper.scrolled .brand-logo .mobile-nav {
    flex-direction: column;
    gap: 30px;
    display: flex;
  }

  .header-wrapper.scrolled .brand-logo .mobile-nav-link {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
  }

  @media (max-width: 900px) {
    .header-wrapper.scrolled .brand-logo .desktop-only {
      display: none;
    }

    .header-wrapper.scrolled .brand-logo .logo-circle {
      width: 90px;
      height: 90px;
      transform: translateY(10px);
    }

    .header-wrapper.scrolled .brand-logo .main-header.scrolled .logo-circle {
      width: 70px;
      height: 70px;
      transform: translateY(5px);
    }
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/