/* [project]/src/styles/protected-page.css [app-client] (css) */
.protected-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.protected-hero-v2 {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.protected-hero-badge {
  background: var(--glass-bg);
  border: var(--glass-border);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-secondary);
  box-shadow: var(--glass-shadow);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.protected-hero-badge-icon {
  color: var(--discord-blurple);
}

.protected-hero-title {
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .protected-hero-title {
    font-size: 64px;
  }
}

.protected-hero-title-highlight {
  background: linear-gradient(135deg, var(--discord-blurple), var(--discord-blurple-hover));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.protected-hero-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
}

.protected-stats-container {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: flex;
}

@media (min-width: 768px) {
  .protected-stats-container {
    gap: 24px;
  }
}

.protected-stat-group {
  -webkit-backdrop-filter: blur(12px);
  background: #0c0d1199;
  border: 1px solid #ffffff0a;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  padding: 16px 24px;
  display: flex;
  box-shadow: 0 8px 24px #0003;
}

.protected-stat-value {
  color: #fff;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .protected-stat-value {
    font-size: 40px;
  }
}

.protected-stat-value.highlight {
  color: #5865f2;
}

.protected-stat-label {
  color: #fff6;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 700;
}

.protected-filter-bar-v2 {
  z-index: 10;
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 12px;
  display: flex;
  position: relative;
}

.protected-search-wrap-v2 {
  flex: 1;
  min-width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .protected-search-wrap-v2 {
    min-width: 240px;
    max-width: 400px;
  }
}

.protected-search-icon-v2 {
  color: var(--text-tertiary);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.protected-search-input-v2 {
  width: 100%;
  color: var(--text-primary);
  background: none;
  border: none;
  padding: 12px 16px 12px 44px;
  font-size: 15px;
}

.protected-search-input-v2:focus {
  outline: none;
}

.protected-search-input-v2::placeholder {
  color: var(--text-tertiary);
}

.protected-filter-controls {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  .protected-filter-controls {
    justify-content: flex-end;
    width: auto;
  }
}

.protected-platform-tabs {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex: 1;
  align-items: center;
  padding: 4px;
  display: flex;
  overflow-x: auto;
}

@media (min-width: 768px) {
  .protected-platform-tabs {
    flex: initial;
  }
}

.protected-platform-tab {
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
  position: relative;
}

.protected-platform-tab:hover {
  color: var(--text-primary);
}

.protected-platform-tab.active {
  color: #fff;
}

.protected-platform-tab-bg {
  background: var(--discord-blurple);
  z-index: -1;
  border-radius: 8px;
  position: absolute;
  inset: 0;
  box-shadow: 0 2px 8px #5865f266;
}

.protected-sort-dropdown {
  position: relative;
}

.protected-sort-btn {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.protected-sort-btn:hover {
  background: var(--glass-bg);
  border-color: var(--discord-blurple);
}

.protected-sort-menu {
  background: var(--bg-primary);
  border: var(--glass-border);
  z-index: 50;
  border-radius: 12px;
  width: 200px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 12px 32px #0003;
}

.protected-sort-option {
  width: 100%;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.protected-sort-option:hover {
  background: var(--glass-tertiary-bg);
  color: var(--text-primary);
}

.protected-sort-option.active {
  color: var(--discord-blurple);
  background: #5865f21a;
}

.protected-grid-v2 {
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  display: grid;
}

@media (min-width: 768px) {
  .protected-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .protected-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protected-card-v2 {
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px 24px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s, border-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.protected-card-v2:hover {
  border-color: var(--discord-blurple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0000002e, 0 0 0 1px #5865f226;
}

.protected-card-glow {
  background: var(--discord-blurple);
  opacity: .04;
  filter: blur(60px);
  pointer-events: none;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  transition: opacity .3s;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.protected-card-v2:hover .protected-card-glow {
  opacity: .12;
}

.protected-card-header-v2 {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

.protected-avatar-wrapper {
  position: relative;
}

.protected-avatar-ring {
  background: linear-gradient(135deg, var(--discord-blurple), transparent);
  border-radius: 50%;
  padding: 3px;
  transition: background .3s;
}

.protected-card-v2:hover .protected-avatar-ring {
  background: linear-gradient(135deg, var(--discord-blurple), var(--discord-blurple-hover));
}

.protected-avatar-inner {
  background: var(--bg-primary);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.protected-avatar-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.protected-avatar-fallback {
  background: var(--glass-tertiary-bg);
  width: 100%;
  height: 100%;
  color: var(--text-tertiary);
  justify-content: center;
  align-items: center;
  display: flex;
}

.protected-verified-badge-v2 {
  background: var(--bg-secondary);
  color: var(--discord-blurple);
  border-radius: 50%;
  padding: 2px;
  display: flex;
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.protected-platform-icon-v2 {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  opacity: .7;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  top: -16px;
  right: -12px;
}

.protected-card-v2:hover .protected-platform-icon-v2 {
  opacity: 1;
}

.protected-external-link-icon-v2 {
  width: 28px;
  height: 28px;
  color: var(--text-secondary);
  opacity: .7;
  z-index: 10;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  transition: opacity .2s, color .2s;
  display: flex;
  position: absolute;
  top: -16px;
  left: -12px;
}

.protected-card-v2:hover .protected-external-link-icon-v2 {
  opacity: 1;
  color: var(--discord-blurple);
}

.protected-card-info-v2 {
  text-align: center;
  z-index: 2;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.protected-card-name {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  transition: color .2s;
  overflow: hidden;
}

.protected-card-v2:hover .protected-card-name {
  color: var(--discord-blurple);
}

.protected-card-handle {
  color: var(--text-tertiary);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.protected-bento-stats {
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.protected-bento-item {
  border: 1px solid var(--border);
  background: #ffffff08;
  border-radius: 12px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  padding: 10px 8px;
  transition: transform .2s, background .2s;
  display: flex;
  position: relative;
}

.protected-bento-item:hover {
  background: #ffffff0f;
  transform: translateY(-2px);
}

.protected-bento-item:after {
  display: none !important;
}

.protected-bento-val {
  color: var(--discord-blurple);
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.protected-bento-lbl {
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 600;
}

.protected-card-bio {
  z-index: 2;
  text-align: center;
  flex-grow: 1;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

.protected-bio-text {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.protected-bio-link {
  color: var(--discord-blurple);
  background: #5865f214;
  border: 1px solid #5865f233;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.protected-bio-link:hover {
  background: #5865f226;
}

.protected-card-btn {
  width: 100%;
  color: var(--discord-blurple);
  z-index: 2;
  background: none;
  border: 1px solid #5865f240;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  position: relative;
}

.protected-card-btn:hover {
  border-color: var(--discord-blurple);
  background: #5865f214;
  box-shadow: 0 0 0 3px #5865f21a;
}

.protected-card-btn-disabled {
  border: 1px dashed var(--border);
  width: 100%;
  color: var(--text-tertiary);
  cursor: default;
  z-index: 2;
  background: none;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.protected-card-btn-disabled:hover {
  border-color: var(--border);
  color: var(--text-tertiary);
  background: none;
}

.protected-expiry-pill {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.protected-expiry-pill.expired {
  color: #ef4444;
  background: #ef44441a;
  border-color: #ef44444d;
}

.protected-expiry-pill.overdue {
  color: #eab308;
  background: #eab3081a;
  border-color: #eab3084d;
}

.protected-cta-section {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 0 24px;
}

.protected-cta-title-v3 {
  color: var(--text-primary);
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .protected-cta-title-v3 {
    font-size: 48px;
  }
}

.protected-cta-title-hl {
  background: var(--discord-blurple);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.protected-cta-subtitle-v3 {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
}

.protected-cta-card-centered {
  background: var(--glass-bg);
  border: var(--glass-border);
  text-align: center;
  max-width: 440px;
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  margin: 0 auto;
  padding: 40px 32px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.protected-cta-card-centered:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px #0000001a;
}

.protected-cta-card-centered:before {
  content: "";
  background: linear-gradient(90deg, var(--discord-blurple), var(--discord-blurple-hover));
  border-radius: 24px 24px 0 0;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.protected-cta-icon-wrapper {
  width: 48px;
  height: 48px;
  color: var(--discord-blurple);
  background: #5865f21a;
  border: 1px solid #5865f233;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: inline-flex;
}

.protected-cta-card-title {
  color: var(--text-primary);
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.protected-cta-card-desc {
  color: var(--text-secondary);
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
}

.protected-cta-features-v3 {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  display: flex;
}

.protected-cta-feature-v3 {
  background: var(--glass-tertiary-bg);
  border: 1px solid var(--border);
  color: var(--discord-blurple);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: inline-flex;
}

.protected-cta-feature-v3:hover {
  border-color: var(--discord-blurple);
  background: #5865f214;
}

.protected-cta-btn-primary {
  background: var(--discord-blurple);
  color: #fff;
  border: none;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 12px #5865f24d;
}

.protected-cta-btn-primary:hover {
  background: var(--discord-blurple-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #5865f266;
}

.protected-state-v2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  display: flex;
}

.protected-loader-v2 {
  border: 4px solid var(--border);
  border-top-color: var(--discord-blurple);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: 1s linear infinite protected-spin;
}

.protected-error-v2 {
  color: #ef4444;
  text-align: center;
  background: #ef44441a;
  border: 1px solid #ef444433;
  border-radius: 16px;
  max-width: 600px;
  padding: 24px 32px;
  font-size: 16px;
  font-weight: 600;
}

.protected-empty-v2 {
  color: var(--text-tertiary);
  text-align: center;
  padding: 48px 24px;
  font-size: 16px;
}

/* [project]/src/styles/FAQ.css [app-client] (css) */
.faq-container {
  max-width: 800px;
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.faq-container-protected {
  max-width: 880px;
}

.requests-back-link {
  color: var(--discord-blurple);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.requests-back-link:hover {
  text-decoration: underline;
}

.faq-list {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.faq-item {
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  background: #12121666;
  border: 1px solid #ffffff0a;
  border-radius: 16px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.faq-item:before {
  content: "";
  opacity: 0;
  background: #5865f2;
  width: 3px;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.faq-item:hover {
  background: #ffffff08;
  border-color: #ffffff14;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px #0003;
}

.faq-item:hover:before, .faq-item.expanded:before {
  opacity: 1;
}

.faq-item.expanded {
  background: #ffffff0d;
  border-color: #ffffff1a;
}

.faq-question-header {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  display: flex;
}

.faq-question-content {
  flex: 1;
}

.faq-question-markdown {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-question-markdown p {
  margin: 0;
  display: inline;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
  background: #ffffff0a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

.faq-item:hover .faq-toggle-icon {
  color: var(--text-primary);
  background: #ffffff14;
}

.faq-item.expanded .faq-toggle-icon {
  color: #5865f2;
  background: #5865f226;
  transform: rotate(180deg);
}

.faq-answer {
  opacity: 0;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.faq-answer.visible {
  opacity: 1;
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 32px 28px;
}

.faq-markdown {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.faq-markdown p {
  margin: 0 0 .75em;
}

.faq-markdown p:last-child {
  margin-bottom: 0;
}

.faq-markdown a {
  color: #5865f2;
  text-decoration: none;
}

.faq-markdown a:hover {
  text-decoration: underline;
}

.faq-empty {
  text-align: center;
  background: var(--glass-bg);
  color: var(--text-secondary);
  border: 1px dashed #ffffff1a;
  border-radius: 16px;
  padding: 80px 20px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 48px 16px 40px;
  }

  .faq-question-header {
    gap: 16px;
    padding: 20px;
  }

  .faq-question-markdown {
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 0 20px 24px;
  }
}

/* [project]/src/app/membership/Membership.css [app-client] (css) */
.membership-page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 160px;
  font-family: inherit;
}

.membership-error-banner {
  color: #f87171;
  -webkit-backdrop-filter: blur(12px);
  background: #ed42451a;
  border: 1px solid #ed42454d;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  animation: .4s cubic-bezier(.4, 0, .2, 1) errorBannerIn;
  display: flex;
}

@keyframes errorBannerIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

.membership-error-banner span {
  flex: 1;
}

.membership-error-banner-close {
  color: #f87171;
  cursor: pointer;
  background: #ed42451a;
  border: none;
  border-radius: 8px;
  padding: 6px;
  transition: all .2s;
}

.membership-error-banner-close:hover {
  color: #fff;
  background: #ed424533;
}

.membership-hero {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.membership-hero:before {
  content: "";
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, #5865f214, #0000 60%), radial-gradient(circle at 80% 20%, #5865f20d, #0000 50%);
  width: 100vw;
  height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.membership-hero-eyebrow {
  color: #5865f2;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #5865f226;
  border: 1px solid #5865f24d;
  border-radius: 100px;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 0 20px #5865f233;
}

.membership-hero h1 {
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 0%, #5865f2 100%);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0 16px;
  font-size: 48px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .membership-hero h1 {
    font-size: 36px;
  }
}

.membership-hero-subtitle-prose {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.6;
}

.membership-hero-social-proof, .membership-hero-panel {
  display: none;
}

.membership-current-plan-wrap {
  justify-content: center;
  margin-bottom: 32px;
  display: flex;
}

.membership-current-plan-card {
  -webkit-backdrop-filter: blur(12px);
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 100px;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  display: inline-flex;
  box-shadow: 0 8px 32px #0003;
}

.membership-current-plan-label {
  color: var(--text-secondary);
  font-size: 14px;
}

.membership-current-plan-value {
  color: #fff;
  background: #5865f2;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 15px;
  font-weight: 700;
}

.membership-plan-cta-small {
  color: #5865f2;
  background: #5865f21a;
  border-radius: 100px;
  margin-left: 12px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.membership-plan-cta-small:hover {
  color: #fff;
  background: #5865f233;
}

.membership-billing-toggle-wrap {
  justify-content: center;
  margin-bottom: 48px;
  display: flex;
}

.membership-billing-toggle {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #12121699;
  border: 1px solid #ffffff14;
  border-radius: 100px;
  padding: 6px;
  display: inline-flex;
  position: relative;
  box-shadow: 0 8px 24px #0000004d;
}

.membership-billing-toggle button {
  z-index: 1;
  color: var(--text-secondary);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: color .3s;
  display: flex;
  position: relative;
}

.membership-billing-toggle button:hover {
  color: #fff;
}

.membership-billing-toggle button.active {
  color: #fff;
  background: #ffffff1a;
  box-shadow: inset 0 1px #ffffff1a, 0 4px 12px #0003;
}

.membership-billing-badge {
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

.membership-billing-badge-green {
  color: #57f287;
  background: #57f28726;
  border: 1px solid #57f2874d;
}

.membership-billing-badge-blurple {
  color: #5865f2;
  background: #5865f226;
  border: 1px solid #5865f24d;
}

.membership-plans-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  display: grid;
}

.membership-plan-card {
  -webkit-backdrop-filter: blur(20px);
  background: #12121680;
  border: 1px solid #ffffff0d;
  border-radius: 24px;
  flex-direction: column;
  padding: 32px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
}

.membership-plan-card:hover {
  border-color: #ffffff26;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #0000004d;
}

.membership-plan-featured, .membership-plan-card:nth-child(3) {
  background: linear-gradient(#1e1e2699 0%, #121216cc 100%);
  border: 1px solid #ffffff1a;
}

.membership-plan-featured:before, .membership-plan-card:nth-child(3):before {
  content: "";
  -webkit-mask-composite: xor;
  opacity: .4;
  background: #5865f2;
  border-radius: 25px;
  padding: 1px;
  transition: opacity .4s;
  position: absolute;
  inset: -1px;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.membership-plan-featured:hover:before, .membership-plan-card:nth-child(3):hover:before {
  opacity: 1;
}

.membership-plan-card-inner {
  z-index: 1;
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
}

.membership-plan-kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #5865f2;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.membership-plan-featured .membership-plan-kicker {
  color: #a855f7;
}

.membership-plan-title {
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
}

.membership-plan-label {
  color: var(--text-secondary);
  min-height: 42px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}

.membership-plan-price-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  min-height: 80px;
  margin-bottom: 8px;
  display: flex;
}

.membership-plan-old-price-container {
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  display: flex;
}

.membership-plan-price-row {
  align-items: baseline;
  gap: 8px;
  display: flex;
}

.membership-plan-price {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 48px;
  font-weight: 800;
}

.membership-plan-old-price {
  color: var(--text-tertiary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: line-through;
}

.membership-plan-period {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
}

.membership-plan-save {
  color: #57f287;
  background: #57f28726;
  border-radius: 100px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
}

.membership-plan-billing-note {
  color: var(--text-tertiary);
  margin-bottom: 32px;
  font-size: 13px;
}

.membership-plan-cta-group {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  display: flex;
}

.membership-payment-choice {
  gap: 12px;
  display: flex;
}

.membership-payment-choice > * {
  flex: 1;
}

.membership-plan-cta {
  cursor: pointer;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.membership-plan-cta-current {
  color: var(--text-secondary);
  cursor: default;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  margin-bottom: 32px;
}

.membership-plan-cta-primary {
  color: #fff;
  background: #5865f2;
  box-shadow: 0 4px 15px #5865f266;
}

.membership-plan-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #5865f299;
}

.membership-plan-cta-secondary {
  color: #fff;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  box-shadow: 0 4px 15px #0003;
}

.membership-plan-cta-secondary:hover {
  background: #ffffff1a;
  border-color: #ffffff26;
  transform: translateY(-2px);
}

.membership-switch-plan-link {
  cursor: pointer;
  color: #fff;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.membership-switch-plan-link:hover {
  background: #ffffff1a;
  transform: translateY(-2px);
}

.membership-subscribe-legal {
  color: var(--text-tertiary);
  text-align: center;
  font-size: 11px;
}

.membership-subscribe-legal a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.membership-plan-features {
  flex-direction: column;
  flex: 1;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.membership-plan-features-heading {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-primary);
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: 4px;
  padding-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}

.membership-plan-features li:not(.membership-plan-features-heading) {
  color: var(--text-secondary);
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
}

.membership-plan-features li:not(.membership-plan-features-heading):before {
  content: "✓";
  color: #57f287;
  background: #57f28726;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
}

.membership-plan-featured .membership-plan-features li:not(.membership-plan-features-heading):before, .membership-plan-card:nth-child(3) .membership-plan-features li:not(.membership-plan-features-heading):before {
  color: #5865f2;
  background: #5865f226;
}

.membership-trust-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
  display: grid;
}

.membership-trust-item {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-align: center;
  background: #12121680;
  border: 1px solid #ffffff0d;
  border-radius: 20px;
  padding: 24px;
  transition: all .3s;
}

.membership-trust-item:hover {
  background: #ffffff05;
  border-color: #ffffff26;
  transform: translateY(-4px)scale(1.02);
}

.membership-trust-icon {
  color: #fff;
  background: #ffffff0d;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  font-size: 20px;
  transition: all .3s;
  display: flex;
}

.membership-trust-item:hover .membership-trust-icon {
  background: #5865f2;
  box-shadow: 0 8px 20px #5865f266;
}

.membership-trust-item strong {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.membership-trust-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.membership-compare-container {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #12121680;
  border: 1px solid #ffffff0d;
  border-radius: 24px;
  margin-bottom: 64px;
  padding: 48px;
}

.membership-compare-header {
  text-align: center;
  margin-bottom: 40px;
}

.membership-compare-title {
  color: #fff;
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
}

.membership-compare-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
}

.membership-table-responsive {
  overflow-x: auto;
}

.membership-table {
  border-collapse: collapse;
  width: 100%;
}

.membership-table th {
  text-align: left;
  color: #fff;
  border-bottom: 2px solid #ffffff1a;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
}

.membership-table td {
  color: var(--text-secondary);
  border-bottom: 1px solid #ffffff0d;
  padding: 20px 24px;
  font-size: 15px;
  transition: background .2s;
}

.membership-table tr:hover td {
  background: #ffffff05;
}

.membership-table th:nth-child(2), .membership-table td:nth-child(2) {
  text-align: center;
  width: 25%;
}

.membership-table th:nth-child(3), .membership-table td:nth-child(3) {
  text-align: center;
  background: #5865f20d;
  width: 25%;
}

.membership-table th:nth-child(3) {
  color: #5865f2;
}

.membership-table-highlight {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.membership-table-x {
  color: var(--text-tertiary) !important;
}

.membership-table-check {
  font-size: 18px;
  font-weight: 800;
  color: #5865f2 !important;
}

.membership-faq-header {
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 800;
}

.membership-footer {
  text-align: center;
  color: var(--text-tertiary);
  border-top: 1px solid #ffffff1a;
  margin-top: 64px;
  padding-top: 32px;
  font-size: 13px;
}

@media (max-width: 992px) {
  .membership-plans-grid, .membership-trust-row {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .membership-page-shell {
    padding: 32px 16px 80px;
  }

  .membership-compare-container {
    padding: 24px;
  }

  .membership-billing-toggle button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .membership-table th, .membership-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.membership-dialog-backdrop {
  z-index: 10000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #000000b8;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.membership-dialog {
  background: radial-gradient(circle at 15% 0, #5865f229, #0000 42%), #121216;
  border: 1px solid #ffffff1f;
  border-radius: 20px;
  width: min(100%, 460px);
  padding: 28px;
  box-shadow: 0 24px 72px #0000007a;
}

.membership-dialog h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.membership-dialog p {
  color: var(--text-secondary);
  line-height: 1.5;
}

.membership-dialog-actions {
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.membership-dialog-btn {
  cursor: pointer;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
}

.membership-dialog-btn-secondary {
  color: #fff;
  background: #ffffff1a;
}

.membership-dialog-btn-primary {
  color: #fff;
  background: #5865f2;
}

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