/* Heard you screen */
.heard-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}
.heard-summary, .heard-journey {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 32px;
  animation: heardRise 0.62s ease both;
}
.heard-journey { animation-delay: 0.08s; }
.heard-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.heard-h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 400;
}
.heard-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.heard-list li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: baseline;
  animation: heardRise 0.46s ease both;
}
.heard-list li:nth-child(2) { animation-delay: 0.06s; }
.heard-list li:nth-child(3) { animation-delay: 0.12s; }
.heard-list li:nth-child(4) { animation-delay: 0.18s; }
.heard-list-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.heard-fit {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.heard-journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.heard-month {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  animation: heardRise 0.5s ease both;
}
.heard-month:nth-child(2) { animation-delay: 0.05s; }
.heard-month:nth-child(3) { animation-delay: 0.1s; }
.heard-month:nth-child(4) { animation-delay: 0.15s; }
.heard-month:nth-child(5) { animation-delay: 0.2s; }
.heard-month:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.heard-month-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.heard-month-h {
  font-size: 16px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.heard-month-p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .heard-grid { grid-template-columns: 1fr; }
  .heard-journey-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── Projection panel ──────────────────────────────────────────────────── */
.projection {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: heardRise 0.66s ease both;
}

@keyframes heardRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .heard-summary,
  .heard-journey,
  .heard-list li,
  .heard-month,
  .projection {
    animation: none;
    transition: none;
  }
  .heard-month:hover {
    transform: none;
  }
}
.projection-head { display: flex; flex-direction: column; gap: 16px; max-width: 920px; }
.projection-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; color: var(--ink-mute); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.projection-eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 1px; background: var(--ink-mute);
}
.projection-h {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.projection-h em { font-style: italic; color: var(--accent); }
.projection-sub {
  margin: 0; font-size: 16px; line-height: 1.5; color: var(--ink-soft); max-width: 720px;
}
.projection-chart-wrap {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.projection-legend {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.projection-legend-label {
  font-size: 10px; letter-spacing: 0.15em; color: var(--ink-mute); text-transform: uppercase; margin-bottom: 4px;
}
.projection-legend-v {
  font-family: 'Fraunces', serif; font-size: 22px; letter-spacing: -0.015em;
}
.projection-legend-v-end { color: var(--accent); }
.projection-legend-arrow {
  font-family: 'JetBrains Mono', monospace; font-size: 22px; color: var(--ink-mute);
}
.projection-cta { align-self: flex-start; }
.projection-foot {
  font-size: 10px; letter-spacing: 0.05em; color: var(--ink-mute);
  border-top: 1px solid var(--rule); padding-top: 16px;
}

@media (max-width: 720px) {
  .projection { padding: 28px; }
  .projection-legend { grid-template-columns: 1fr; gap: 12px; }
  .projection-legend-arrow { display: none; }
}
