.wikinotes-methodology {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  background: var(--landing-surface);
  box-shadow: var(--landing-shadow);
}

.wikinotes-methodology__lede {
  margin: 0;
  color: var(--landing-text-muted);
  line-height: 1.7;
}

.wikinotes-methodology__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.wikinotes-methodology__stage {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 112px;
  padding: 1rem 0.95rem;
  border: 1px solid var(--landing-line);
  border-radius: 18px;
  background: var(--landing-surface-strong);
  color: var(--landing-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.wikinotes-methodology__stage:hover {
  border-color: var(--landing-text-muted);
}

.wikinotes-methodology__stage[aria-expanded="true"] {
  border-color: var(--landing-text);
  background: var(--landing-surface);
}

.wikinotes-methodology__num {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--landing-text-muted);
}

.wikinotes-methodology__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--landing-text-muted);
}

.wikinotes-methodology__dot--accent {
  background: #5d7388;
}

.wikinotes-methodology__name {
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.wikinotes-methodology__who {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--landing-text-muted);
}

.wikinotes-methodology__panel {
  min-height: 152px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--landing-line);
  border-radius: 24px;
  background: var(--landing-surface-strong);
}

.wikinotes-methodology__meta {
  margin: 0 0 0.6rem;
  color: var(--landing-text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wikinotes-methodology__panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.wikinotes-methodology__panel p {
  margin: 0 0 0.7rem;
  line-height: 1.7;
}

.wikinotes-methodology__panel p:last-child {
  margin-bottom: 0;
}

.wikinotes-methodology__panel .muted {
  color: var(--landing-text-muted);
  font-size: 0.92rem;
}

.wikinotes-methodology__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  color: var(--landing-text-muted);
  font-size: 0.82rem;
}

.wikinotes-methodology__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.wikinotes-methodology__legend i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--landing-text-muted);
}

.wikinotes-methodology__legend .accent {
  background: #5d7388;
}

.wikinotes-methodology__foot {
  margin: 0;
  color: var(--landing-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.wikinotes-methodology__foot a {
  color: var(--landing-link);
  text-decoration: none;
  border-bottom: 1px solid var(--landing-line);
}

.wikinotes-methodology__foot a:hover {
  border-bottom-color: var(--landing-text);
}

@media (min-width: 700px) {
  .wikinotes-methodology__flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }
}
