/* ============================================================
   Honest Path — the part most coaches leave out.
   Lives between "You've said some version of this" and the origin
   story. Scoped with .hp- prefix. Calm, editorial, restrained.
   ============================================================ */

.hp { background: var(--bg-2); }

/* ---- Header: calm, single column, no competing box ---- */
.hp__head {
  max-width: 880px;
  margin: 0 0 clamp(44px, 5.5vw, 72px);
}
.hp__head .eyebrow { margin-bottom: 22px; }
.hp__title {
  margin: 0 0 clamp(20px, 2vw, 28px);
  max-width: 22ch;
  text-wrap: balance;
}
.hp__title em { color: var(--accent); font-style: italic; }
.hp__intro {
  font-family: var(--f-sans);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  text-wrap: pretty;
  margin: 0;
}
.hp__intro em {
  font-family: var(--f-display);
  color: var(--accent);
  font-style: italic;
  font-size: 1.08em;
}

/* ---- Horizontal journey — three stations on one track ---- */
.hp__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 52px);
  max-width: 1040px;
}
.hp__track::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 6px;
  height: 2px;
  background: var(--line);
}
.hp__step { position: relative; }
.hp__node {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--accent);
  margin-bottom: 26px;
}
.hp__mark-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 0.9;
  color: var(--ink);
}
.hp__mark-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 12px 0 20px;
}
.hp__myth { margin: 0 0 16px; max-width: 34ch; }
.hp__truth { margin: 0; max-width: 34ch; }
.hp__k {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.hp__myth .hp__k { color: var(--ink-3); }
.hp__truth .hp__k { color: var(--accent); }
.hp__myth .hp__v {
  display: block;
  color: var(--ink-3);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.38;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
}
.hp__truth .hp__v {
  display: block;
  color: var(--ink-2);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.6;
  text-wrap: pretty;
}
.hp__truth .hp__v b { color: var(--ink); font-weight: 600; }

.hp__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: clamp(22px, 2.5vw, 30px);
  margin-top: clamp(48px, 5.5vw, 76px);
  padding-top: clamp(36px, 4.5vw, 56px);
  border-top: 1px solid var(--line);
}
.hp__foot-line {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-style: italic;
  line-height: 1.22;
  color: var(--ink);
  max-width: 46ch;
  margin: 0;
  text-wrap: balance;
}
.hp__foot-line b { color: var(--accent); font-weight: 500; font-style: italic; }

@media (max-width: 760px) {
  .hp__title { max-width: none; }
  .hp__track {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hp__track::before { display: none; }
  .hp__step {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }
  .hp__step:first-child { border-top: 0; }
  .hp__node { margin-bottom: 0; grid-row: 1 / span 4; }
  .hp__myth, .hp__truth { max-width: none; }
  .hp__foot-line { max-width: none; }
}
