/* [project]/app/globals.css [app-client] (css) */
:root {
  --background: #fff;
  --foreground: #1d1d1f;
  --primary: #45de99;
  --primary-hover: #3bc789;
  --secondary: #f5f5f7;
  --accent: #2c3e50;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --nav-height: 60px;
  --max-width: 980px;
  --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

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

html, body {
  max-width: 100vw;
  font-family: var(--font-stack);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.button {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 980px;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  transition: all .3s;
  display: inline-block;
}

.button:hover {
  background-color: var(--primary-hover);
  transform: scale(1.02);
}

.button:disabled {
  background-color: var(--secondary);
  color: var(--text-secondary);
  cursor: not-allowed;
  transform: none;
}

/* [project]/components/Header.module.css [app-client] (css) */
.Header-module__Af2_WG__header {
  height: var(--nav-height);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  background: #fffc;
  border-bottom: 1px solid #0000000d;
  transition: background .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Header-module__Af2_WG__nav {
  height: 100%;
  max-width: var(--max-width);
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.Header-module__Af2_WG__logo {
  color: var(--text-primary);
  letter-spacing: -.5px;
  font-size: 20px;
  font-weight: 600;
}

.Header-module__Af2_WG__links {
  gap: 40px;
  display: flex;
}

.Header-module__Af2_WG__link {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color .2s;
}

.Header-module__Af2_WG__link:hover, .Header-module__Af2_WG__active {
  color: var(--primary);
}

.Header-module__Af2_WG__mobileMenuBtn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  display: none;
}

.Header-module__Af2_WG__mobileMenu {
  display: none;
}

@media (max-width: 768px) {
  .Header-module__Af2_WG__links {
    display: none;
  }

  .Header-module__Af2_WG__mobileMenuBtn {
    display: block;
  }

  .Header-module__Af2_WG__mobileMenu {
    top: var(--nav-height);
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    transition: transform .3s ease-in-out;
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    transform: translateY(-150%);
  }

  .Header-module__Af2_WG__mobileMenu.Header-module__Af2_WG__open {
    display: flex;
    transform: translateY(0);
    box-shadow: 0 10px 20px #0000000d;
  }
}

/* [project]/components/Footer.module.css [app-client] (css) */
.Footer-module__EZoWya__footer {
  background-color: var(--secondary);
  color: var(--text-secondary);
  border-top: 1px solid #0000001a;
  margin-top: auto;
  padding: 40px 0;
  font-size: 12px;
}

.Footer-module__EZoWya__content {
  text-align: center;
  max-width: var(--max-width);
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.Footer-module__EZoWya__links {
  gap: 20px;
  margin-bottom: 10px;
  display: flex;
}

.Footer-module__EZoWya__links a {
  color: var(--text-primary);
}

.Footer-module__EZoWya__links a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=_2a7eab40._.css.map*/