/* ==========================================================================
   FUTURE WAVE ANALYSIS — Membership Plans & Pricing Stylesheet
   ========================================================================== */

@import url('plans-comparison.css');

/* ==========================================================================
   PRICING TAB
   ========================================================================== */
.pricing-hero {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem auto;
}

.billing-switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.billing-toggle-btn {
  display: flex;
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  cursor: pointer;
}

.billing-opt {
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mist);
  transition: all var(--transition-fast);
}

.billing-opt.active {
  background: var(--tide-bg);
  color: var(--tide);
  border: 1px solid var(--tide-border);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--tide);
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.15);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.05) 0%, var(--bg-panel) 100%);
}

.popular-ribbon {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tide);
  color: var(--bg-ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--mist);
  min-height: 2.75rem;
}

.price-row {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mist);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--mist);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

.check-icon {
  color: var(--tide);
  flex-shrink: 0;
  margin-top: 0.15rem;
}


/* ==========================================================================
   MEMBERSHIP PORTAL PREVIEW TAB
   ========================================================================== */
.member-preview-container {
  max-width: 68rem;
  margin: 0 auto;
}

.member-dashboard-mockup {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.mockup-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-panel-2);
  border-bottom: 1px solid var(--line);
}

.mockup-dots {
  display: flex;
  gap: 0.4rem;
}

.mockup-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-body {
  padding: 2rem;
}


/* ==========================================================================
   ABOUT US SECTION (In Membership Plans)
   ========================================================================== */
.about-us-section {
  padding: 5rem 0 3rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.about-us-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.about-us-header .section-heading {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin: 0.75rem 0 1rem 0;
  line-height: 1.25;
}

.about-us-header .section-lead {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.7;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 1080px) {
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
  }
}

.what-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.what-card:hover {
  transform: translateY(-4px);
  border-color: var(--tide-border);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.what-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: var(--tide-bg);
  border: 1px solid var(--tide-border);
  color: var(--tide);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.what-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.what-desc {
  font-size: 0.9rem;
  color: var(--mist);
  line-height: 1.65;
}

.about-philosophy-card {
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-panel-2));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem 0;
  color: var(--foreground);
}

.philosophy-desc {
  color: var(--mist);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 860px;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 768px) {
  .philosophy-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.phil-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.phil-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--tide);
}

.phil-label {
  font-size: 0.85rem;
  color: var(--mist);
  font-weight: 600;
}

/* Theme overrides for About Us */
[data-theme="white"] .about-us-section, [data-theme="light"] .about-us-section {
  background: #ffffff !important;
  border-top-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="white"] .what-card, [data-theme="light"] .what-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05) !important;
}

[data-theme="white"] .what-card:hover, [data-theme="light"] .what-card:hover {
  border-color: rgba(15, 23, 42, 0.4) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="white"] .what-icon-wrap, [data-theme="light"] .what-icon-wrap {
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.18) !important;
  color: #0f172a !important;
}

[data-theme="white"] .what-title, [data-theme="light"] .what-title,
[data-theme="white"] .philosophy-title, [data-theme="light"] .philosophy-title {
  color: #0f172a !important;
}

[data-theme="white"] .what-desc, [data-theme="light"] .what-desc,
[data-theme="white"] .philosophy-desc, [data-theme="light"] .philosophy-desc,
[data-theme="white"] .about-us-header .section-lead, [data-theme="light"] .about-us-header .section-lead,
[data-theme="white"] .phil-label, [data-theme="light"] .phil-label {
  color: #334155 !important;
}

[data-theme="white"] .about-philosophy-card, [data-theme="light"] .about-philosophy-card {
  background: #f8fafc !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

[data-theme="white"] .phil-num, [data-theme="light"] .phil-num {
  color: #0f172a !important;
}

[data-theme="black"] .what-card {
  background: #0a0a0c !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

[data-theme="black"] .what-card:hover {
  border-color: #38bdf8 !important;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="black"] .what-icon-wrap {
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.35) !important;
  color: #38bdf8 !important;
}

[data-theme="black"] .about-philosophy-card {
  background: #0d0d11 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

[data-theme="black"] .phil-num {
  color: #38bdf8 !important;
}


