/* [project]/frontend/app/components/Header.module.css [app-client] (css) */
.Header-module__5nDpLG__header {
  padding: 0 var(--space-6);
  height: var(--header-height);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-primary);
  z-index: var(--z-sticky);
  transition: background-color var(--transition-normal),
              border-color var(--transition-normal);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}

[data-theme="dark"] .Header-module__5nDpLG__header {
  background: var(--color-neutral-900);
  border-bottom-color: var(--color-neutral-700);
}

.Header-module__5nDpLG__logo {
  align-items: center;
  gap: var(--space-3);
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
}

.Header-module__5nDpLG__logo:hover {
  color: var(--text-primary);
}

.Header-module__5nDpLG__logoText {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-700));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.Header-module__5nDpLG__nav {
  align-items: center;
  gap: var(--space-1);
  display: flex;
}

.Header-module__5nDpLG__navLink {
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: flex;
}

.Header-module__5nDpLG__navLink:hover {
  color: var(--color-primary-500);
  background: var(--color-primary-50);
}

[data-theme="dark"] .Header-module__5nDpLG__navLink:hover {
  background: var(--color-primary-900);
}

.Header-module__5nDpLG__navLinkActive {
  color: var(--color-primary-500);
  background: var(--color-primary-50);
}

[data-theme="dark"] .Header-module__5nDpLG__navLinkActive {
  background: var(--color-primary-900);
}

.Header-module__5nDpLG__headerRight {
  align-items: center;
  gap: var(--space-3);
  display: flex;
}

.Header-module__5nDpLG__themeToggle {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__5nDpLG__themeToggle:hover {
  color: var(--color-primary-500);
  border-color: var(--color-primary-500);
  background: var(--color-primary-50);
}

[data-theme="dark"] .Header-module__5nDpLG__themeToggle:hover {
  background: var(--color-primary-900);
}

.Header-module__5nDpLG__userMenu {
  position: relative;
}

.Header-module__5nDpLG__userButton {
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
}

.Header-module__5nDpLG__userButton:hover {
  background: var(--bg-tertiary);
}

.Header-module__5nDpLG__avatar {
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-400), var(--color-primary-600));
  color: #fff;
  width: 2rem;
  height: 2rem;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__5nDpLG__userName {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.Header-module__5nDpLG__userDropdown {
  right: 0;
  top: calc(100% + var(--space-2));
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: var(--z-dropdown);
  animation: .2s Header-module__5nDpLG__dropIn;
  position: absolute;
}

@keyframes Header-module__5nDpLG__dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Header-module__5nDpLG__dropdownItem {
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: flex;
}

.Header-module__5nDpLG__dropdownItem:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.Header-module__5nDpLG__dropdownDivider {
  background: var(--border-primary);
  height: 1px;
  margin: var(--space-1) 0;
}

.Header-module__5nDpLG__dropdownDanger {
  color: var(--color-danger-500);
}

.Header-module__5nDpLG__dropdownDanger:hover {
  background: var(--color-danger-50);
  color: var(--color-danger-600);
}

[data-theme="dark"] .Header-module__5nDpLG__dropdownDanger:hover {
  background: #ef44441a;
}

.Header-module__5nDpLG__hamburger {
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  display: none;
}

.Header-module__5nDpLG__hamburger span {
  background: var(--text-primary);
  width: 22px;
  height: 2px;
  transition: all var(--transition-fast);
  border-radius: 2px;
  display: block;
}

.Header-module__5nDpLG__hamburgerOpen span:first-child {
  transform: rotate(45deg)translate(5px, 5px);
}

.Header-module__5nDpLG__hamburgerOpen span:nth-child(2) {
  opacity: 0;
}

.Header-module__5nDpLG__hamburgerOpen span:nth-child(3) {
  transform: rotate(-45deg)translate(5px, -5px);
}

.Header-module__5nDpLG__mobileOverlay {
  display: none;
}

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

  .Header-module__5nDpLG__hamburger {
    display: flex;
  }

  .Header-module__5nDpLG__mobileOverlay {
    inset: 0;
    top: var(--header-height);
    background: var(--bg-overlay);
    z-index: var(--z-overlay);
    animation: .2s Header-module__5nDpLG__fadeIn;
    display: block;
    position: fixed;
  }

  .Header-module__5nDpLG__mobileMenu {
    top: var(--header-height);
    width: 280px;
    height: calc(100dvh - var(--header-height));
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-primary);
    padding: var(--space-4);
    gap: var(--space-2);
    z-index: calc(var(--z-overlay) + 1);
    flex-direction: column;
    animation: .25s Header-module__5nDpLG__slideInRight;
    display: flex;
    position: fixed;
    right: 0;
  }

  @keyframes Header-module__5nDpLG__fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes Header-module__5nDpLG__slideInRight {
    from {
      transform: translateX(100%);
    }

    to {
      transform: translateX(0);
    }
  }

  .Header-module__5nDpLG__mobileNavLink {
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: flex;
  }

  .Header-module__5nDpLG__mobileNavLink:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
  }
}

/* [project]/frontend/app/components/layout/Footer.module.css [app-client] (css) */
.Footer-module__ufKAeG__footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-primary);
  padding: var(--space-12) var(--space-6) var(--space-8);
  transition: background-color var(--transition-normal),
              border-color var(--transition-normal);
}

.Footer-module__ufKAeG__footerInner {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.Footer-module__ufKAeG__footerGrid {
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  grid-template-columns: 2fr 1fr 1fr 1fr;
  display: grid;
}

.Footer-module__ufKAeG__footerBrand {
  gap: var(--space-4);
  flex-direction: column;
  display: flex;
}

.Footer-module__ufKAeG__footerLogo {
  align-items: center;
  gap: var(--space-3);
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
}

.Footer-module__ufKAeG__footerLogoText {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-700));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.Footer-module__ufKAeG__footerDescription {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 300px;
}

.Footer-module__ufKAeG__socialLinks {
  gap: var(--space-3);
  display: flex;
}

.Footer-module__ufKAeG__socialLink {
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  justify-content: center;
  align-items: center;
  display: flex;
}

.Footer-module__ufKAeG__socialLink:hover {
  background: var(--color-primary-500);
  color: var(--color-neutral-0);
  transform: translateY(-2px);
}

.Footer-module__ufKAeG__footerColumn {
  gap: var(--space-3);
  flex-direction: column;
  display: flex;
}

.Footer-module__ufKAeG__footerColumnTitle {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: var(--space-1);
}

.Footer-module__ufKAeG__footerLink {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.Footer-module__ufKAeG__footerLink:hover {
  color: var(--color-primary-500);
}

.Footer-module__ufKAeG__footerBottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-primary);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Footer-module__ufKAeG__copyright {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

.Footer-module__ufKAeG__bottomLinks {
  gap: var(--space-4);
  display: flex;
}

.Footer-module__ufKAeG__bottomLink {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.Footer-module__ufKAeG__bottomLink:hover {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .Footer-module__ufKAeG__footerGrid {
    gap: var(--space-6);
    grid-template-columns: 1fr 1fr;
  }

  .Footer-module__ufKAeG__footerBrand {
    grid-column: 1 / -1;
  }

  .Footer-module__ufKAeG__footerBottom {
    gap: var(--space-3);
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .Footer-module__ufKAeG__footerGrid {
    grid-template-columns: 1fr;
  }
}

/* [project]/frontend/app/components/layout/MainLayout.module.css [app-client] (css) */
.MainLayout-module__3yO0ha__wrapper {
  flex-direction: column;
  min-height: 100dvh;
  display: flex;
}

.MainLayout-module__3yO0ha__main {
  flex: 1;
}

/* [project]/frontend/app/page.module.css [app-client] (css) */
.page-module__wtSYKa__hero {
  padding: var(--space-20) var(--space-6);
  text-align: center;
  background: linear-gradient(135deg,
    var(--bg-primary) 0%,
    var(--color-primary-50) 50%,
    var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .page-module__wtSYKa__hero {
  background: linear-gradient(135deg,
    var(--bg-primary) 0%,
    var(--color-primary-900) 50%,
    var(--bg-primary) 100%);
}

.page-module__wtSYKa__heroGlow {
  pointer-events: none;
  background: radial-gradient(circle, #4a8ecc26 0%, #0000 70%);
  width: 600px;
  height: 600px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.page-module__wtSYKa__heroContent {
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.page-module__wtSYKa__heroBadge {
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  border: 1px solid var(--color-primary-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
  animation: .6s page-module__wtSYKa__fadeInUp;
  display: inline-flex;
}

[data-theme="dark"] .page-module__wtSYKa__heroBadge {
  color: var(--color-primary-300);
  background: #4a8ecc26;
  border-color: #4a8ecc4d;
}

.page-module__wtSYKa__heroTitle {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  animation: .6s .1s both page-module__wtSYKa__fadeInUp;
}

.page-module__wtSYKa__heroTitleGrad {
  background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-700));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.page-module__wtSYKa__heroSubtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: .6s .2s both page-module__wtSYKa__fadeInUp;
}

.page-module__wtSYKa__heroActions {
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  animation: .6s .3s both page-module__wtSYKa__fadeInUp;
  display: flex;
}

@keyframes page-module__wtSYKa__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-module__wtSYKa__features {
  padding: var(--space-20) var(--space-6);
  background: var(--bg-secondary);
}

.page-module__wtSYKa__sectionInner {
  max-width: var(--max-content-width);
  margin: 0 auto;
}

.page-module__wtSYKa__sectionHeader {
  text-align: center;
  margin-bottom: var(--space-12);
}

.page-module__wtSYKa__sectionLabel {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-3);
}

.page-module__wtSYKa__sectionTitle {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.page-module__wtSYKa__sectionDescription {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.page-module__wtSYKa__featureGrid {
  gap: var(--space-6);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.page-module__wtSYKa__featureCard {
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-normal);
}

.page-module__wtSYKa__featureCard:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-200);
  transform: translateY(-4px);
}

.page-module__wtSYKa__featureIcon {
  border-radius: var(--radius-lg);
  background: var(--color-primary-50);
  width: 56px;
  height: 56px;
  color: var(--color-primary-500);
  margin: 0 auto var(--space-5);
  justify-content: center;
  align-items: center;
  display: flex;
}

[data-theme="dark"] .page-module__wtSYKa__featureIcon {
  background: #4a8ecc26;
}

.page-module__wtSYKa__featureTitle {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.page-module__wtSYKa__featureDescription {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.page-module__wtSYKa__stats {
  padding: var(--space-16) var(--space-6);
  background: var(--bg-primary);
}

.page-module__wtSYKa__statsGrid {
  max-width: var(--max-content-width);
  gap: var(--space-6);
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  display: grid;
}

.page-module__wtSYKa__statItem {
  text-align: center;
}

.page-module__wtSYKa__statNumber {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-primary-500);
  margin-bottom: var(--space-2);
}

.page-module__wtSYKa__statLabel {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.page-module__wtSYKa__cta {
  padding: var(--space-20) var(--space-6);
  text-align: center;
  background: linear-gradient(135deg,
    var(--color-primary-500) 0%,
    var(--color-primary-700) 100%);
  color: var(--color-neutral-0);
}

.page-module__wtSYKa__ctaTitle {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
}

.page-module__wtSYKa__ctaDescription {
  font-size: var(--text-lg);
  opacity: .9;
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.page-module__wtSYKa__ctaButton {
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-neutral-0);
  color: var(--color-primary-600);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
}

.page-module__wtSYKa__ctaButton:hover {
  box-shadow: var(--shadow-xl);
  color: var(--color-primary-700);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-module__wtSYKa__heroTitle {
    font-size: var(--text-3xl);
  }

  .page-module__wtSYKa__heroSubtitle {
    font-size: var(--text-base);
  }

  .page-module__wtSYKa__heroActions {
    flex-direction: column;
  }

  .page-module__wtSYKa__featureGrid {
    gap: var(--space-4);
    grid-template-columns: 1fr;
  }

  .page-module__wtSYKa__statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*# sourceMappingURL=frontend_app_1dyv65-._.css.map*/