/* ==========================================================================
   FUTURE WAVE ANALYSIS — Education & Methodology Stylesheet
   ========================================================================== */

/* ==========================================================================
   METHODOLOGY TAB
   ========================================================================== */
.methodology-hero {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 3rem auto;
}

.rules-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  rules-grid, .rules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rule-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 2rem;
  position: relative;
}

.rule-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--tide);
  opacity: 0.5;
  line-height: 1;
}

.rule-title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.rule-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mist);
}

.fibonacci-table-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 2rem;
}

