/* [project]/components/NavBar/NavBar.module.css [app-client] (css) */
.NavBar-module__yBvhsG__navContainer {
  border-bottom: 1px solid var(--border-color);
  z-index: 10000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  position: sticky;
  top: 0;
}

.NavBar-module__yBvhsG__navbar {
  z-index: 999;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
}

[data-theme="dark"] .NavBar-module__yBvhsG__navContainer {
  background-color: #0f172acc;
}

.NavBar-module__yBvhsG__logo {
  color: var(--text-primary);
  align-items: center;
  gap: .75rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.NavBar-module__yBvhsG__logoIcon {
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
  display: flex;
}

.NavBar-module__yBvhsG__mobileMenu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.NavBar-module__yBvhsG__nav {
  align-items: center;
  gap: 2rem;
  margin-right: 2rem;
  display: flex;
}

.NavBar-module__yBvhsG__navItem {
  color: var(--text-secondary);
  padding: .25rem 0;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.NavBar-module__yBvhsG__navItem:hover {
  color: var(--text-primary);
}

.NavBar-module__yBvhsG__navItem:after {
  content: "";
  background-color: var(--primary);
  border-radius: 2px;
  width: 100%;
  height: 2px;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%)scaleX(0);
}

.NavBar-module__yBvhsG__navItem:hover:after {
  transform: translateX(-50%)scaleX(1);
}

.NavBar-module__yBvhsG__navItem.NavBar-module__yBvhsG__active {
  color: var(--primary);
}

.NavBar-module__yBvhsG__navItem.NavBar-module__yBvhsG__active:after {
  transform: translateX(-50%)scaleX(1);
}

.NavBar-module__yBvhsG__navGroup {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.NavBar-module__yBvhsG__navGroupTrigger {
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  align-items: center;
  gap: .35rem;
  padding: .4rem .25rem;
  font-family: inherit;
  display: inline-flex;
  position: relative;
}

.NavBar-module__yBvhsG__chevron {
  opacity: .7;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

@media (min-width: 1201px) {
  .NavBar-module__yBvhsG__navGroupOpen .NavBar-module__yBvhsG__navGroupTrigger, .NavBar-module__yBvhsG__navGroupTrigger.NavBar-module__yBvhsG__triggerOpen {
    color: var(--text-primary);
  }

  .NavBar-module__yBvhsG__navGroupOpen .NavBar-module__yBvhsG__navGroupTrigger:after, .NavBar-module__yBvhsG__navGroupTrigger.NavBar-module__yBvhsG__triggerOpen:after {
    transform: translateX(-50%)scaleX(1);
  }

  .NavBar-module__yBvhsG__navGroupOpen .NavBar-module__yBvhsG__chevron, .NavBar-module__yBvhsG__navGroupTrigger.NavBar-module__yBvhsG__triggerOpen .NavBar-module__yBvhsG__chevron {
    opacity: 1;
    transform: rotate(180deg);
  }

  .NavBar-module__yBvhsG__dropdown.NavBar-module__yBvhsG__dropdownOpen {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%)translateY(0);
  }
}

.NavBar-module__yBvhsG__dropdown {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10000;
  border-radius: 14px;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  padding: 8px;
  transition: opacity .2s, transform .2s, visibility .2s;
  display: flex;
  position: absolute;
  top: calc(100% + .8rem);
  left: 50%;
  transform: translateX(-50%)translateY(-6px);
  box-shadow: 0 12px 32px #0000001a;
}

.NavBar-module__yBvhsG__dropdown:before {
  content: "";
  background: none;
  height: 24px;
  position: absolute;
  top: -24px;
  left: -20px;
  right: -20px;
}

[data-theme="dark"] .NavBar-module__yBvhsG__dropdown {
  background: #1e293b;
  box-shadow: 0 12px 32px #00000080;
}

.NavBar-module__yBvhsG__dropdownItem {
  color: var(--text-secondary);
  white-space: nowrap;
  border-radius: 9px;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .18s, color .18s;
  display: flex;
}

@media (hover: hover) {
  .NavBar-module__yBvhsG__dropdownItem:hover {
    background-color: var(--bg-main);
    color: var(--primary);
  }

  [data-theme="dark"] .NavBar-module__yBvhsG__dropdownItem:hover {
    background-color: #0f172a;
  }
}

.NavBar-module__yBvhsG__dropdownItemActive {
  color: var(--primary);
  background-color: var(--bg-main);
}

[data-theme="dark"] .NavBar-module__yBvhsG__dropdownItemActive {
  background-color: #0f172a;
}

.NavBar-module__yBvhsG__dropdownIcon {
  color: var(--primary);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.NavBar-module__yBvhsG__actions {
  align-items: center;
  gap: 20px;
  display: flex;
}

.NavBar-module__yBvhsG__navControlsRow {
  align-items: center;
  gap: 16px;
  display: flex;
}

.NavBar-module__yBvhsG__navSearchForm {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 9999px;
  align-items: center;
  width: 150px;
  height: 38px;
  padding: 0 10px;
  transition: width .3s cubic-bezier(.4, 0, .2, 1), border-color .2s, box-shadow .2s;
  display: flex;
  position: relative;
}

.NavBar-module__yBvhsG__navSearchForm:focus-within, .NavBar-module__yBvhsG__navSearchExpanded {
  border-color: var(--primary);
  width: 200px;
  box-shadow: 0 0 0 3px #6366f126;
}

.NavBar-module__yBvhsG__navSearchBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.NavBar-module__yBvhsG__navSearchIcon {
  color: var(--text-secondary);
}

.NavBar-module__yBvhsG__navSearchInput {
  color: var(--text-primary);
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 0 6px;
  font-size: 13px;
}

.NavBar-module__yBvhsG__navSearchClearBtn {
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.NavBar-module__yBvhsG__authButtons {
  align-items: center;
  gap: 12px;
  display: flex;
}

.NavBar-module__yBvhsG__loginBtn {
  color: var(--text-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: none;
  padding: .5rem 1rem;
  font-weight: 600;
  transition: background-color .3s, transform .3s;
}

.NavBar-module__yBvhsG__loginBtn:hover {
  background-color: var(--bg-main);
  transform: translateY(-1px);
}

.NavBar-module__yBvhsG__registerBtn {
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  border: none;
  padding: .5rem 1.25rem;
  font-weight: 600;
  transition: background-color .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 12px #3b82f640;
}

.NavBar-module__yBvhsG__registerBtn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #3b82f666;
}

.NavBar-module__yBvhsG__themeToggleBtn {
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  background: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: color .4s cubic-bezier(.175, .885, .32, 1.275), background-color .4s cubic-bezier(.175, .885, .32, 1.275), transform .4s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.NavBar-module__yBvhsG__themeToggleBtn:hover {
  color: var(--primary);
  background-color: var(--bg-main);
  transform: rotate(180deg)scale(1.1);
}

[data-theme="light"] .NavBar-module__yBvhsG__sunIcon {
  display: none;
}

[data-theme="light"] .NavBar-module__yBvhsG__moonIcon {
  display: block;
}

[data-theme="dark"] .NavBar-module__yBvhsG__sunIcon {
  display: block;
}

[data-theme="dark"] .NavBar-module__yBvhsG__moonIcon {
  display: none;
}

.NavBar-module__yBvhsG__hamburger {
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  display: none;
}

@media (min-width: 1801px) {
  .NavBar-module__yBvhsG__navbar {
    max-width: 1400px;
  }
}

@media (max-width: 1800px) {
  .NavBar-module__yBvhsG__navbar {
    max-width: 1300px;
  }
}

@media (max-width: 1600px) {
  .NavBar-module__yBvhsG__navbar {
    max-width: 1200px;
  }
}

.NavBar-module__yBvhsG__mobileBackdrop {
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  cursor: pointer;
  touch-action: none;
  background-color: #00000073;
  width: 100vw;
  height: 100vh;
  animation: .2s ease-out NavBar-module__yBvhsG__backdropFadeIn;
  position: fixed;
  inset: 0;
}

@keyframes NavBar-module__yBvhsG__backdropFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1200px) {
  .NavBar-module__yBvhsG__navContainer {
    z-index: 10000;
    width: 100%;
    height: 70px;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: none !important;
    background-color: var(--bg-surface) !important;
  }

  .NavBar-module__yBvhsG__navbar {
    height: 70px;
    padding: 0 1.5rem;
  }

  .NavBar-module__yBvhsG__mobileMenu {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-height: calc(100dvh - 70px);
    padding: 1.5rem 1.5rem 2rem;
    transition: visibility .25s, opacity .25s, transform .25s;
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    transform: translateY(-8px);
    box-shadow: 0 10px 25px -3px #00000040;
  }

  .NavBar-module__yBvhsG__mobileMenu.NavBar-module__yBvhsG__mobileMenuOpen {
    opacity: 1;
    visibility: visible;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .NavBar-module__yBvhsG__nav {
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
    margin-right: 0;
  }

  .NavBar-module__yBvhsG__navItem {
    font-size: 1.1rem;
  }

  .NavBar-module__yBvhsG__navGroup {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .NavBar-module__yBvhsG__navGroupTrigger {
    justify-content: center;
    font-size: 1.1rem;
  }

  .NavBar-module__yBvhsG__dropdown {
    opacity: 1;
    visibility: visible;
    width: 100%;
    min-width: 0;
    max-width: 260px;
    max-height: 0;
    box-shadow: none;
    background: none;
    border: none;
    margin-top: 0;
    padding: 0;
    transition: max-height .3s, margin-top .3s, padding .3s;
    position: static;
    overflow: hidden;
    transform: none;
  }

  [data-theme="dark"] .NavBar-module__yBvhsG__dropdown {
    box-shadow: none;
    background: none;
  }

  .NavBar-module__yBvhsG__dropdown:before {
    display: none;
  }

  .NavBar-module__yBvhsG__dropdown.NavBar-module__yBvhsG__dropdownOpen {
    background: var(--bg-main);
    pointer-events: auto;
    border-radius: 12px;
    max-height: 400px;
    margin-top: .75rem;
    padding: 6px;
    transform: none;
  }

  [data-theme="dark"] .NavBar-module__yBvhsG__dropdown.NavBar-module__yBvhsG__dropdownOpen {
    background: #0003;
  }

  .NavBar-module__yBvhsG__actions {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    display: flex;
  }

  .NavBar-module__yBvhsG__navControlsRow {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    display: flex;
  }

  .NavBar-module__yBvhsG__navSearchForm {
    flex: 1;
    width: auto;
    min-width: 100px;
    max-width: 150px;
  }

  .NavBar-module__yBvhsG__navSearchForm:focus-within, .NavBar-module__yBvhsG__navSearchExpanded {
    max-width: 150px;
  }

  .NavBar-module__yBvhsG__authButtons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 290px;
    display: flex;
  }

  .NavBar-module__yBvhsG__loginBtn, .NavBar-module__yBvhsG__registerBtn {
    white-space: nowrap;
    border-radius: var(--radius-md, 10px);
    box-sizing: border-box;
    text-align: center;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: none;
    height: 42px;
    padding: 0 12px;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
  }

  .NavBar-module__yBvhsG__hamburger {
    display: flex;
  }

  .NavBar-module__yBvhsG__mobileMenu .NavBar-module__yBvhsG__navItem {
    opacity: 0;
    transition: opacity .4s, transform .4s;
    transform: translateY(10px);
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem {
    opacity: 1;
    transform: translateY(0);
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:first-child {
    transition-delay: .1s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(2) {
    transition-delay: .15s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(3) {
    transition-delay: .2s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(4) {
    transition-delay: .25s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(5) {
    transition-delay: .3s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(6) {
    transition-delay: .35s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(7) {
    transition-delay: .4s;
  }

  .NavBar-module__yBvhsG__mobileMenuOpen .NavBar-module__yBvhsG__navItem:nth-child(8) {
    transition-delay: .45s;
  }
}

@media (max-width: 768px) {
  .NavBar-module__yBvhsG__navContainer {
    height: 64px;
    display: flex;
  }

  .NavBar-module__yBvhsG__navbar {
    height: 64px;
    padding: 0 1.25rem;
  }

  .NavBar-module__yBvhsG__mobileMenu {
    gap: 1.25rem;
    max-height: calc(100dvh - 64px);
    top: 64px;
  }

  .NavBar-module__yBvhsG__userInfo, .NavBar-module__yBvhsG__profileChevron {
    display: none;
  }
}

.NavBar-module__yBvhsG__profileWrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.NavBar-module__yBvhsG__profileBtn {
  cursor: pointer;
  color: inherit;
  text-align: right;
  border-radius: var(--radius-md);
  background: none;
  border: none;
  align-items: center;
  gap: .75rem;
  padding: 0;
  font-family: inherit;
  transition: opacity .2s;
  display: flex;
}

.NavBar-module__yBvhsG__profileBtn:hover {
  opacity: .9;
}

.NavBar-module__yBvhsG__profileChevron {
  color: var(--text-secondary);
  flex-shrink: 0;
}

.NavBar-module__yBvhsG__userInfo {
  text-align: right;
  max-width: 150px;
}

.NavBar-module__yBvhsG__userInfo strong {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .8rem;
  display: block;
  overflow: hidden;
}

.NavBar-module__yBvhsG__userInfo p {
  color: var(--text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  font-size: .7rem;
  overflow: hidden;
}

.NavBar-module__yBvhsG__avatar {
  justify-content: center;
  align-items: center;
  display: flex;
}

.NavBar-module__yBvhsG__avatarImg {
  border: 1px solid var(--border-color);
  object-fit: cover;
  border-radius: 50%;
}

.NavBar-module__yBvhsG__profileDropdown {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md, 12px);
  z-index: 1000;
  flex-direction: column;
  width: 220px;
  padding: 6px;
  animation: .2s NavBar-module__yBvhsG__dropdownFade;
  display: flex;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  box-shadow: 0 10px 30px #00000026;
}

[data-theme="dark"] .NavBar-module__yBvhsG__profileDropdown {
  background-color: var(--bg-surface);
  box-shadow: 0 10px 40px #00000080;
}

.NavBar-module__yBvhsG__profileDropdown:before {
  content: "";
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  z-index: 1001;
  width: 12px;
  height: 12px;
  position: absolute;
  top: -7px;
  right: 14px;
  transform: rotate(45deg);
}

.NavBar-module__yBvhsG__profileItem {
  border-radius: var(--radius-sm, 6px);
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.NavBar-module__yBvhsG__profileItem:hover {
  background-color: var(--bg-main);
  color: var(--primary);
}

.NavBar-module__yBvhsG__logoutItem {
  color: var(--danger, #ef4444);
}

.NavBar-module__yBvhsG__logoutItem:hover {
  color: var(--danger, #ef4444);
  background-color: #ef444414;
}

[data-theme="dark"] .NavBar-module__yBvhsG__logoutItem:hover {
  background-color: #ef44441a;
}

@keyframes NavBar-module__yBvhsG__dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px)scale(.95);
  }

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

.NavBar-module__yBvhsG__overlay {
  display: none;
}

@media (max-width: 768px) {
  .NavBar-module__yBvhsG__userInfo, .NavBar-module__yBvhsG__profileChevron {
    display: none;
  }

  @keyframes NavBar-module__yBvhsG__dropdownFadeMobile {
    from {
      opacity: 0;
      transform: translateX(-50%)translateY(-10px)scale(.95);
    }

    to {
      opacity: 1;
      transform: translateX(-50%)translateY(0)scale(1);
    }
  }

  .NavBar-module__yBvhsG__profileDropdown {
    z-index: 100000;
    max-width: 440px;
    margin: 0;
    animation: .2s forwards NavBar-module__yBvhsG__dropdownFadeMobile;
    position: absolute;
    top: calc(100% + 12px);
    left: -30px;
    transform: translateX(-50%);
    box-shadow: 0 12px 36px #00000059;
  }

  .NavBar-module__yBvhsG__profileDropdown:before {
    display: none;
  }
}

.NavBar-module__yBvhsG__navSearchForm {
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-sizing: border-box;
  will-change: width;
  background: none;
  border-radius: 999px;
  align-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  transition: width .35s cubic-bezier(.16, 1, .3, 1), background-color .25s, border-color .25s, box-shadow .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.NavBar-module__yBvhsG__navSearchForm:hover {
  background: var(--bg-surface);
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border-color));
  width: 150px;
}

.NavBar-module__yBvhsG__navSearchForm:focus-within, .NavBar-module__yBvhsG__navSearchForm.NavBar-module__yBvhsG__navSearchExpanded {
  background: var(--bg-surface);
  border-color: var(--primary);
  width: 150px;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
  cursor: default;
}

.NavBar-module__yBvhsG__navSearchBtn {
  width: 34px;
  min-width: 34px;
  height: 34px;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: color .2s;
  display: flex;
}

.NavBar-module__yBvhsG__navSearchForm:hover .NavBar-module__yBvhsG__navSearchBtn, .NavBar-module__yBvhsG__navSearchForm:focus-within .NavBar-module__yBvhsG__navSearchBtn, .NavBar-module__yBvhsG__navSearchForm.NavBar-module__yBvhsG__navSearchExpanded .NavBar-module__yBvhsG__navSearchBtn {
  color: var(--primary);
}

.NavBar-module__yBvhsG__navSearchIcon {
  color: inherit;
  flex-shrink: 0;
}

.NavBar-module__yBvhsG__navSearchInput {
  color: var(--text-primary);
  font-size: var(--font-sm);
  padding-left: var(--space-1);
  padding-right: var(--space-3);
  opacity: 0;
  pointer-events: none;
  background: none;
  border: none;
  outline: none;
  font-weight: 500;
  transition: opacity .2s 50ms;
}

.NavBar-module__yBvhsG__navSearchForm:hover .NavBar-module__yBvhsG__navSearchInput, .NavBar-module__yBvhsG__navSearchForm:focus-within .NavBar-module__yBvhsG__navSearchInput, .NavBar-module__yBvhsG__navSearchForm.NavBar-module__yBvhsG__navSearchExpanded .NavBar-module__yBvhsG__navSearchInput {
  opacity: 1;
  pointer-events: auto;
}

.NavBar-module__yBvhsG__navSearchInput::placeholder {
  color: var(--text-muted);
  font-size: var(--font-xs);
}

.NavBar-module__yBvhsG__navSearchInput::-webkit-search-decoration {
  appearance: none;
  display: none;
}

.NavBar-module__yBvhsG__navSearchInput::-webkit-search-cancel-button {
  appearance: none;
  display: none;
}

.NavBar-module__yBvhsG__navSearchInput::-webkit-search-results-button {
  appearance: none;
  display: none;
}

.NavBar-module__yBvhsG__navSearchInput::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}

.NavBar-module__yBvhsG__navSearchClearBtn {
  padding: 0 var(--space-2);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: color .15s;
  display: flex;
}

.NavBar-module__yBvhsG__navSearchClearBtn:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .NavBar-module__yBvhsG__navSearchForm {
    width: 150px;
    max-width: 150px;
    display: flex;
  }

  .NavBar-module__yBvhsG__navSearchForm:hover, .NavBar-module__yBvhsG__navSearchForm:focus-within, .NavBar-module__yBvhsG__navSearchForm.NavBar-module__yBvhsG__navSearchExpanded {
    width: 150px;
  }
}

/* [project]/components/Footer/Footer.module.css [app-client] (css) */
.Footer-module__rnk_JG__footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  padding: 4rem 4rem 2rem;
}

.Footer-module__rnk_JG__footerContent {
  grid-template-columns: minmax(240px, 1.5fr) 3fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.Footer-module__rnk_JG__columns {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  display: grid;
}

.Footer-module__rnk_JG__brand {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.Footer-module__rnk_JG__logo {
  color: var(--text-primary);
  align-items: center;
  gap: .75rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.Footer-module__rnk_JG__logoIcon {
  background-color: var(--primary);
  width: 32px;
  height: 32px;
  color: var(--text-on-primary);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  display: flex;
}

.Footer-module__rnk_JG__desc {
  color: var(--text-secondary);
  max-width: 250px;
  font-size: .9rem;
  line-height: 1.5;
}

.Footer-module__rnk_JG__social {
  gap: 1rem;
  margin-top: .5rem;
  display: flex;
}

.Footer-module__rnk_JG__socialIcon {
  color: var(--text-secondary);
  cursor: pointer;
  transition: color .2s, transform .2s;
  display: inline-flex;
}

.Footer-module__rnk_JG__socialIcon:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.Footer-module__rnk_JG__socialIcon:focus-visible {
  color: var(--primary);
  outline: none;
}

.Footer-module__rnk_JG__column h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.Footer-module__rnk_JG__column ul {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.Footer-module__rnk_JG__column a {
  color: var(--text-secondary);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}

.Footer-module__rnk_JG__column a:hover {
  color: var(--primary);
}

.Footer-module__rnk_JG__contactItem {
  color: var(--text-secondary);
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

a.Footer-module__rnk_JG__contactItem:hover {
  color: var(--primary);
}

.Footer-module__rnk_JG__contactIcon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.Footer-module__rnk_JG__bottom {
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  font-size: .85rem;
  display: flex;
}

.Footer-module__rnk_JG__language {
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  display: flex;
}

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

@media (max-width: 768px) {
  .Footer-module__rnk_JG__footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .Footer-module__rnk_JG__bottom {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
}

/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__page {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__main {
  flex: 1;
}

.page-module__E0kJGG__container {
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1801px) {
  .page-module__E0kJGG__container {
    max-width: 1400px;
  }
}

@media (max-width: 1800px) {
  .page-module__E0kJGG__container {
    max-width: 1300px;
  }
}

@media (max-width: 1600px) {
  .page-module__E0kJGG__container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .page-module__E0kJGG__container {
    padding: 0 2rem;
  }
}

@media (max-width: 1024px) {
  .page-module__E0kJGG__hero {
    text-align: center;
    flex-direction: column;
  }

  .page-module__E0kJGG__heroLeft {
    max-width: 100%;
  }

  .page-module__E0kJGG__heroRight {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .page-module__E0kJGG__container {
    padding: 0 1.5rem;
  }

  .page-module__E0kJGG__floatStat, .page-module__E0kJGG__quickLinks, .page-module__E0kJGG__featureCard {
    -webkit-backdrop-filter: none;
    background-color: var(--bg-surface);
  }
}

.page-module__E0kJGG__hero {
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  padding: 4rem 0;
  display: flex;
}

.page-module__E0kJGG__heroLeft {
  flex: 1;
  max-width: 600px;
}

.page-module__E0kJGG__badge {
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 2rem;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
}

.page-module__E0kJGG__heroTitle {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.page-module__E0kJGG__heroTitleHighlight {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}

.page-module__E0kJGG__heroDesc {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-module__E0kJGG__heroActions {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.page-module__E0kJGG__primaryBtn {
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb, 59, 130, 246), .3);
  border: none;
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color .3s, transform .3s, box-shadow .3s;
}

.page-module__E0kJGG__primaryBtn:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb, 59, 130, 246), .5);
  transform: translateY(-2px);
}

.page-module__E0kJGG__secondaryBtn {
  color: var(--text-primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: #0000;
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
}

.page-module__E0kJGG__secondaryBtn:hover {
  background-color: var(--bg-main);
}

.page-module__E0kJGG__heroRight {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__heroImg {
  object-fit: contain;
  width: 85%;
  animation: 6s ease-in-out infinite page-module__E0kJGG__float;
}

@keyframes page-module__E0kJGG__float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.page-module__E0kJGG__floatStat {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  display: flex;
  box-shadow: 0 8px 32px #0000000d;
}

.page-module__E0kJGG__statVal {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.page-module__E0kJGG__statLabel {
  color: var(--text-secondary);
  font-size: .8rem;
}

.page-module__E0kJGG__stat1Wrapper {
  z-index: 10;
  position: absolute;
  top: 10%;
  right: 10%;
}

.page-module__E0kJGG__stat1 {
  animation: 5s ease-in-out infinite page-module__E0kJGG__floatAsolo;
}

.page-module__E0kJGG__stat2Wrapper {
  z-index: 10;
  position: absolute;
  bottom: 30%;
  left: 0%;
}

.page-module__E0kJGG__stat2 {
  animation: 6s ease-in-out 1s infinite page-module__E0kJGG__floatAsolo;
}

.page-module__E0kJGG__stat3Wrapper {
  z-index: 10;
  position: absolute;
  bottom: 10%;
  right: 5%;
}

.page-module__E0kJGG__stat3 {
  animation: 7s ease-in-out 2s infinite page-module__E0kJGG__floatAsolo;
}

@keyframes page-module__E0kJGG__floatAsolo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.page-module__E0kJGG__quickLinks {
  background: rgba(var(--bg-surface-rgb, 255, 255, 255), .3);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  z-index: 2;
  border: 1px solid #ffffff1a;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto 4rem;
  padding: 2rem;
  display: flex;
  position: relative;
  box-shadow: 0 10px 40px #00000008;
}

[data-theme="dark"] .page-module__E0kJGG__quickLinks {
  background: #1e293b80;
  border-color: #ffffff0d;
}

.page-module__E0kJGG__quickLink {
  color: var(--text-secondary);
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: color .2s, transform .2s;
  display: flex;
}

.page-module__E0kJGG__quickLink:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.page-module__E0kJGG__quickLinkIcon {
  background-color: var(--bg-main);
  width: 48px;
  height: 48px;
  color: inherit;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: background-color .3s, color .3s, transform .3s, box-shadow .3s;
  display: flex;
}

.page-module__E0kJGG__quickLink:hover .page-module__E0kJGG__quickLinkIcon {
  background-color: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb, 59, 130, 246), .2);
  transform: scale(1.15)rotate(5deg);
}

.page-module__E0kJGG__section {
  padding: 4rem 0;
}

.page-module__E0kJGG__sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.page-module__E0kJGG__sectionTitle {
  color: var(--text-primary);
  margin-bottom: .75rem;
  font-size: 2.25rem;
  font-weight: 700;
}

.page-module__E0kJGG__sectionSubtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.page-module__E0kJGG__featuresGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  display: grid;
}

.page-module__E0kJGG__featureCard {
  background: rgba(var(--bg-surface-rgb, 255, 255, 255), .6);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1px solid #ffffff1a;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 2rem;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000005;
}

[data-theme="dark"] .page-module__E0kJGG__featureCard {
  background: #1e293b66;
  border-color: #ffffff0d;
}

.page-module__E0kJGG__featureCard:hover {
  border-color: rgba(var(--primary-rgb, 59, 130, 246), .3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #00000014;
}

.page-module__E0kJGG__cardPurple {
  background: linear-gradient(135deg, #6366f11a, #a855f71a);
}

.page-module__E0kJGG__cardGreen {
  background: linear-gradient(135deg, #10b9811a, #34d3991a);
}

.page-module__E0kJGG__cardYellow {
  background: linear-gradient(135deg, #f59e0b1a, #fbbf241a);
}

.page-module__E0kJGG__cardBlue {
  background: linear-gradient(135deg, #3b82f61a, #60a5fa1a);
}

.page-module__E0kJGG__featureCard.page-module__E0kJGG__large {
  grid-column: span 2;
}

.page-module__E0kJGG__featureContent {
  z-index: 2;
  flex-direction: column;
  flex: 1;
  max-width: 65%;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__featureIcon {
  color: #fff;
  opacity: .9;
  z-index: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  transition: transform .5s, opacity .5s;
  display: flex;
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.page-module__E0kJGG__featureCard:hover .page-module__E0kJGG__featureIcon {
  opacity: 1;
  transform: scale(1.1)rotate(-5deg);
}

.page-module__E0kJGG__iconPurple {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.page-module__E0kJGG__iconGreen {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.page-module__E0kJGG__iconYellow {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.page-module__E0kJGG__iconBlue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.page-module__E0kJGG__featureTitle {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.page-module__E0kJGG__featureDesc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.page-module__E0kJGG__featureBtn {
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
  align-self: flex-start;
  margin-top: auto;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-block;
}

.page-module__E0kJGG__btnPurple {
  background-color: #6366f1;
}

.page-module__E0kJGG__btnGreen {
  background-color: #10b981;
}

.page-module__E0kJGG__btnYellow {
  background-color: #f59e0b;
}

.page-module__E0kJGG__btnBlue {
  background-color: #3b82f6;
}

.page-module__E0kJGG__featureImg {
  object-fit: contain;
  width: 150px;
  height: 150px;
  margin-left: 2rem;
}

.page-module__E0kJGG__whyMentora {
  color: #fff;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 2rem;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0;
  padding: 20px 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-module__E0kJGG__whyContent {
  z-index: 2;
  flex: 1;
  max-width: 75%;
  position: relative;
}

.page-module__E0kJGG__whyTitle {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.page-module__E0kJGG__whyDesc {
  opacity: .9;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-module__E0kJGG__whyGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  display: grid;
}

.page-module__E0kJGG__whyItem {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.page-module__E0kJGG__whyIcon {
  background: #fff3;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  display: flex;
}

.page-module__E0kJGG__whyIcon svg {
  width: 30px;
  height: 30px;
}

.page-module__E0kJGG__whyItemTitle {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.page-module__E0kJGG__whyItemDesc {
  opacity: .8;
  margin-top: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.page-module__E0kJGG__whyImgWrapper {
  z-index: 1;
  justify-content: end;
  align-items: flex-start;
  width: 35%;
  margin: 0;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 0;
}

.page-module__E0kJGG__whyImgMentora {
  object-fit: contain;
  width: 75%;
  margin: 0;
  animation: 8s ease-in-out infinite page-module__E0kJGG__floatBooks;
  transform: translateY(20px);
}

@keyframes page-module__E0kJGG__floatBooks {
  0%, 100% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.page-module__E0kJGG__statsGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  display: grid;
}

.page-module__E0kJGG__statCard {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--border-color);
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  transition: transform .3s;
  display: flex;
}

.page-module__E0kJGG__statCard:hover {
  transform: translateY(-5px);
}

.page-module__E0kJGG__statIconWrapper {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.page-module__E0kJGG__bgBlue {
  color: #3b82f6;
  background: #3b82f61a;
}

.page-module__E0kJGG__bgGreen {
  color: #10b981;
  background: #10b9811a;
}

.page-module__E0kJGG__bgYellow {
  color: #f59e0b;
  background: #f59e0b1a;
}

.page-module__E0kJGG__bgPurple {
  color: #6366f1;
  background: #6366f11a;
}

.page-module__E0kJGG__statNumber {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
}

.page-module__E0kJGG__statText {
  color: var(--text-secondary);
  font-size: .95rem;
}

.page-module__E0kJGG__leaderboard {
  max-width: 1000px;
  margin: 0 auto;
}

.page-module__E0kJGG__podium {
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  height: 250px;
  margin-bottom: 2rem;
  display: flex;
}

.page-module__E0kJGG__podiumItem {
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border-color);
  border-bottom: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 220px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  position: relative;
  box-shadow: 0 -4px 10px #0000000d;
}

.page-module__E0kJGG__podiumItem.page-module__E0kJGG__first {
  z-index: 3;
  border-width: 2px 2px 0;
  border-color: #fbbf24;
  height: 100%;
  box-shadow: 0 -10px 40px #fbbf2426;
}

.page-module__E0kJGG__podiumItem.page-module__E0kJGG__second {
  z-index: 2;
  border-color: #94a3b880;
  height: 80%;
  box-shadow: 0 -8px 30px #94a3b81a;
}

.page-module__E0kJGG__podiumItem.page-module__E0kJGG__third {
  z-index: 1;
  border-color: #d9770666;
  height: 65%;
  box-shadow: 0 -6px 20px #d977061a;
}

.page-module__E0kJGG__medal {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: -15px;
  box-shadow: 0 4px 6px #0000001a;
}

.page-module__E0kJGG__gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 15px #f59e0b66;
}

.page-module__E0kJGG__silver {
  background: linear-gradient(135deg, #e2e8f0, #94a3b8);
  box-shadow: 0 4px 15px #94a3b866;
}

.page-module__E0kJGG__bronze {
  background: linear-gradient(135deg, #fcd34d, #d97706);
  box-shadow: 0 4px 15px #d9770666;
}

.page-module__E0kJGG__lbAvatar {
  object-fit: cover;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: .5rem 0 1rem;
}

.page-module__E0kJGG__lbName {
  color: var(--text-primary);
  text-align: center;
  margin-bottom: .25rem;
  font-weight: 600;
}

.page-module__E0kJGG__lbXp {
  color: var(--text-secondary);
  font-size: .85rem;
}

.page-module__E0kJGG__lbList {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.page-module__E0kJGG__lbRow {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  display: flex;
}

.page-module__E0kJGG__lbRank {
  color: var(--text-muted);
  width: 24px;
  font-weight: 600;
}

.page-module__E0kJGG__lbRowAvatar {
  object-fit: cover;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.page-module__E0kJGG__lbRowName {
  color: var(--text-primary);
  flex: 1;
  font-weight: 500;
}

.page-module__E0kJGG__lbRowXp {
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-module__E0kJGG__floatStat, .page-module__E0kJGG__quickLinks, .page-module__E0kJGG__featureCard {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background-color: var(--bg-surface) !important;
  }
}

.page-module__E0kJGG__viewAllRankings {
  text-align: right;
  color: var(--primary);
  margin-top: 1rem;
  font-weight: 500;
  display: block;
}

.page-module__E0kJGG__stepsGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  display: grid;
  position: relative;
}

.page-module__E0kJGG__stepCard {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__stepIcon {
  background: var(--primary-light);
  width: 64px;
  height: 64px;
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.page-module__E0kJGG__stepTitle {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.page-module__E0kJGG__stepDesc {
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .page-module__E0kJGG__hero {
    text-align: center;
    flex-direction: column;
  }

  .page-module__E0kJGG__heroActions {
    justify-content: center;
  }

  .page-module__E0kJGG__quickLinks {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
  }

  .page-module__E0kJGG__featuresGrid {
    grid-template-columns: 1fr 1fr;
  }

  .page-module__E0kJGG__whyMentora {
    flex-direction: column;
    padding: 3rem;
  }

  .page-module__E0kJGG__whyContent {
    max-width: 100%;
  }

  .page-module__E0kJGG__whyImgWrapper {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    position: relative;
    right: 0;
  }

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

  .page-module__E0kJGG__statsGrid {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .page-module__E0kJGG__sectionHeader, .page-module__E0kJGG__leaderboard {
    padding: 0 1rem;
  }

  .page-module__E0kJGG__heroTitle {
    font-size: 2.5rem;
  }

  .page-module__E0kJGG__featuresGrid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .page-module__E0kJGG__featureCard.page-module__E0kJGG__large {
    text-align: center;
    flex-direction: column;
    grid-column: span 1;
  }

  .page-module__E0kJGG__featureImg {
    margin: 1.5rem 0 0;
  }

  .page-module__E0kJGG__whyGrid {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__whyImgWrapper {
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    display: flex;
  }

  .page-module__E0kJGG__stepsGrid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .page-module__E0kJGG__podium {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0 1rem;
  }

  .page-module__E0kJGG__podiumItem {
    width: 100%;
  }

  .page-module__E0kJGG__podiumItem.page-module__E0kJGG__first {
    order: 1;
  }

  .page-module__E0kJGG__podiumItem.page-module__E0kJGG__second {
    order: 2;
  }

  .page-module__E0kJGG__podiumItem.page-module__E0kJGG__third {
    order: 3;
  }
}

/* [project]/components/CTASection/CTASection.module.css [app-client] (css) */
.CTASection-module__Xl4ODa__ctaSection {
  width: 100%;
  max-width: 1400px;
  margin: 6rem auto;
}

.CTASection-module__Xl4ODa__ctaCard {
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 2rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.CTASection-module__Xl4ODa__ctaContent {
  z-index: 2;
  max-width: 500px;
  margin-top: 2rem;
  position: relative;
}

.CTASection-module__Xl4ODa__ctaTitle {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.CTASection-module__Xl4ODa__ctaDesc {
  opacity: .9;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.CTASection-module__Xl4ODa__ctaBtn {
  color: #6366f1;
  border-radius: var(--radius-md, .5rem);
  cursor: pointer;
  background: #fff;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform .2s;
  display: inline-flex;
}

.CTASection-module__Xl4ODa__ctaBtn:hover {
  transform: translateY(-2px);
}

.CTASection-module__Xl4ODa__ctaImg {
  z-index: 1;
  justify-content: end;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 5%;
}

.CTASection-module__Xl4ODa__ctaImgIcon {
  object-fit: contain;
  border-radius: var(--radius-md);
  width: max-content;
  height: 100%;
  max-height: 250px;
}

@media (max-width: 1801px) {
  .CTASection-module__Xl4ODa__ctaCard {
    max-width: 1300px;
    margin: 0 auto;
  }
}

@media (max-width: 1600px) {
  .CTASection-module__Xl4ODa__ctaCard {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .CTASection-module__Xl4ODa__ctaCard {
    text-align: center;
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 250px;
  }

  .CTASection-module__Xl4ODa__ctaContent {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .CTASection-module__Xl4ODa__ctaImg {
    justify-content: end;
    width: 100%;
    height: 250px;
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  .CTASection-module__Xl4ODa__ctaTitle {
    font-size: 2rem;
  }

  .CTASection-module__Xl4ODa__ctaImg {
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .CTASection-module__Xl4ODa__ctaImgIcon {
    width: 100%;
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .CTASection-module__Xl4ODa__ctaTitle {
    font-size: 1.5rem;
  }

  .CTASection-module__Xl4ODa__ctaCard {
    padding-bottom: 220px;
  }
}

/*# sourceMappingURL=_06k-1wb._.css.map*/