/* Hope Money — Target section. Navy background, modern typography matching
   the rest of the site. Scoped under .hope-target. */

.hope-target {
  --ht-navy:       #0A1D47;
  --ht-navy-deep:  #001640;
  --ht-orange:     #FE5E1A;
  --ht-white:      #FFFFFF;
  --ht-cream:      #FAF7F2;
  --ht-ink-soft:   rgba(255, 255, 255, 0.85);
  --ht-ink-muted:  rgba(255, 255, 255, 0.55);
  --ht-hairline:   rgba(255, 255, 255, 0.10);
  --ht-card:       rgba(255, 255, 255, 0.04);

  background: var(--ht-navy);
  color: var(--ht-ink-soft);
  font-family: 'Inter',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  position: relative;
  box-sizing: border-box;
  scroll-margin-top: 80px;
}

.hope-target__stage {
  max-width: 1360px;
  margin: 0 auto;
  padding: 88px clamp(20px, 4vw, 40px) 96px;
  box-sizing: border-box;
}

/* ───── Header ───── */
.hope-target__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.hope-target__title {
  font-family: 'Fraunces','Times New Roman',serif;
  font-size: 56px; font-weight: 500;
  letter-spacing: -1.6px; line-height: 1.05;
  color: var(--ht-white); margin: 0;
}
.hope-target__intro {
  font-size: 19px; font-weight: 500;
  line-height: 1.5; letter-spacing: -0.1px;
  color: var(--ht-ink-soft); margin: 16px 0 0;
}

/* ───── Three columns: Yield / Liquidity / Stability ───── */
.hope-target__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.hope-target__col {
  background: var(--ht-card);
  border: 1px solid var(--ht-hairline);
  border-radius: 16px;
  padding: 28px 26px 32px;
}
.hope-target__col-title {
  font-family: 'Fraunces','Times New Roman',serif;
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.6px; line-height: 1.2;
  color: var(--ht-orange); margin: 0 0 14px;
}
.hope-target__col-body {
  font-size: 15px; font-weight: 500;
  line-height: 1.6; letter-spacing: -0.05px;
  color: var(--ht-ink-soft); margin: 0;
}
.hope-target__col-body strong { color: var(--ht-white); font-weight: 600; }

/* ───── Footnote ───── */
.hope-target__footnote {
  margin: 56px auto 0;
  max-width: 900px;
  font-size: 13px; font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ht-ink-muted);
  text-align: left;
}

@media (max-width: 1023px) {
  .hope-target__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .hope-target__col { padding: 22px 22px 26px; }
  .hope-target__col-title { font-size: 22px; }
}
@media (max-width: 767px) {
  .hope-target__stage { padding: 56px 20px 64px; }
  .hope-target__title { font-size: 36px; letter-spacing: -1px; }
  .hope-target__intro { font-size: 16px; }
  .hope-target__head { margin-bottom: 36px; }
  .hope-target__cols { grid-template-columns: 1fr; gap: 14px; }
  .hope-target__col { padding: 20px 22px 24px; }
  .hope-target__col-title { font-size: 22px; margin-bottom: 10px; }
  .hope-target__col-body { font-size: 14px; }
  .hope-target__footnote { margin-top: 36px; font-size: 12px; }
}
