/* ===========================================================
   PAGE-MY-APPROACH.CSS — process flow methodology.
   Step-by-step cashier cycle visualization with axis scoring.
   =========================================================== */

.page--my-approach { background: var(--paper); }

.mth-mast {
  background: var(--paper-deep);
  padding: var(--s-9) 0;
  border-bottom: 4px solid var(--ink);
}
.mth-mast__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: end;
}
.mth-mast__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.mth-mast__h1 em { font-style: italic; color: var(--flag); }
.mth-mast__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 38ch;
}
.mth-mast__sub strong { color: var(--ink); font-weight: 600; }

.mth-mast__chart {
  background: var(--ink);
  color: var(--stage-ink);
  padding: var(--s-5);
  display: grid;
  gap: var(--s-3);
}
.mth-mast__chart-caption {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.mth-mast__chart-grid {
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: var(--s-2);
  align-items: center;
}
.mth-mast__chart-name {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}
.mth-mast__chart-bar {
  height: 0.5em;
  background: var(--stage-rim);
  position: relative;
  border-radius: var(--r-round);
  overflow: hidden;
}
.mth-mast__chart-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  width: var(--w, 100%);
  border-radius: inherit;
}

/* === FLOW STAGES === */
.mth-flow {
  padding: var(--s-9) 0;
  position: relative;
}
.mth-flow__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto var(--s-7);
}
.mth-flow__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.mth-flow__head h2 em { color: var(--flag); font-style: italic; }
.mth-flow__head p {
  font-size: 1.05rem;
  color: var(--ink-dim);
  line-height: 1.55;
}

.mth-stages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ledger);
  margin-bottom: var(--s-7);
}
.mth-stage {
  padding: var(--s-5) var(--s-4);
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mth-stage:last-child { border-right: 0; }
.mth-stage::after {
  content: "";
  position: absolute;
  right: -0.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  rotate: 45deg;
  z-index: 1;
}
.mth-stage:last-child::after { display: none; }
.mth-stage__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--flag);
}
.mth-stage__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.mth-stage__time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--rule);
  margin-top: auto;
}

/* === SIX AXES DETAIL === */
.mth-axes {
  background: var(--ink);
  color: var(--stage-ink);
  padding: var(--s-9) 0;
}
.mth-axes h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  color: var(--stage-ink);
}
.mth-axes h2 em { font-style: italic; color: var(--gold); }
.mth-axes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.mth-axis {
  background: var(--stage-2);
  padding: var(--s-5);
  border: 1px solid var(--stage-rim);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: start;
  position: relative;
}
.mth-axis__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 0.85;
  font-weight: 500;
}
.mth-axis__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
  color: var(--stage-ink);
}
.mth-axis__weight {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.mth-axis__measures {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--stage-dim);
  margin-bottom: var(--s-3);
}
.mth-axis__signal {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--stage-rim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.mth-axis__signal-row {
  display: grid;
  grid-template-columns: 0.6em 1fr;
  gap: var(--s-2);
  color: var(--stage-dim);
}
.mth-axis__signal-row::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  margin-top: 0.45em;
}
.mth-axis__signal-row.is-green::before { background: var(--green); }
.mth-axis__signal-row.is-yellow::before { background: var(--yellow); }
.mth-axis__signal-row.is-red::before { background: var(--red); }

/* === VERDICT COLOUR LEGEND === */
.mth-colors {
  padding: var(--s-9) 0;
  background: var(--paper-deep);
}
.mth-colors__head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.mth-colors__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.mth-colors__head h2 em { color: var(--flag); font-style: italic; }
.mth-colors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.mth-color {
  background: var(--ledger);
  border: 1px solid var(--rule);
  padding: var(--s-6) var(--s-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mth-color__chip {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto var(--s-4);
  position: relative;
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--rule);
}
.mth-color.is-green .mth-color__chip { background: var(--green); }
.mth-color.is-yellow .mth-color__chip { background: var(--yellow); }
.mth-color.is-red .mth-color__chip { background: var(--red); }
.mth-color__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}
.mth-color__def {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-dim);
}

@media (max-width: 1000px) {
  .mth-mast__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .mth-stages { grid-template-columns: repeat(3, 1fr); }
  .mth-stage::after { display: none; }
  .mth-axes__grid { grid-template-columns: 1fr; }
  .mth-colors__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mth-stages { grid-template-columns: repeat(2, 1fr); }
}
