/* SCENE 17 — INVESTOR RELATIONS (ink). The gated journey: a vertical
   survey line lights eight stations on scrub; the compliance note is
   always visible near the single CTA. Static defaults show the line
   fully drawn and every station lit. */

.s17 { padding-block: 150px 140px; }

.s17-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  column-gap: calc(var(--gutter) * 2);
  align-items: start;
}

.s17-h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  max-width: 16ch;
}

.s17-journey {
  position: relative;
  padding-top: 8px;
}

.s17-journey__track {
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: var(--hair);
}
.s17-journey__line {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: var(--gold);
  transform-origin: top center;
}

.s17-station {
  position: relative;
  padding: 21px 0 21px 56px;
}
.s17-node {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  background: var(--ink);
}
.s17-node__fill {
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--gold);
}
.s17-station__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 340;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 1.2;
}

.s17-close { margin-top: var(--rhythm-layer); }
.s17-note {
  max-width: 56ch;
  font-size: .78rem;
  line-height: 1.7;
  letter-spacing: .04em;
  color: color-mix(in srgb, var(--bone) 62%, transparent);
}
.s17-close .cta { margin-top: 30px; }

@media (max-width: 899px) {
  .s17 { padding-block: 104px 96px; }
  .s17-grid { grid-template-columns: 1fr; row-gap: 72px; }
  .s17-station { padding: 16px 0 16px 44px; }
}
