/* Hope Money — Asset-Backed Yield (ABY) Calculator section.
   Cream background, two-column layout (copy + tool iframe). */

.hope-aby {
  --ha-cream:    #FAF7F2;
  --ha-white:    #FFFFFF;
  --ha-navy:     #002060;
  --ha-navy-ink: #0A1D47;
  --ha-orange:   #FE5E1A;
  --ha-muted:    #6B7280;
  --ha-hairline: #EEE8DC;

  background: var(--ha-cream);
  color: var(--ha-navy-ink);
  font-family: 'Inter',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  position: relative;
  box-sizing: border-box;
}

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

.hope-aby__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* ───── Copy column ───── */
.hope-aby__copy { min-width: 0; }
.hope-aby__title {
  font-family: 'Fraunces','Times New Roman',serif;
  font-size: 42px; font-weight: 500;
  letter-spacing: -1.2px; line-height: 1.1;
  color: var(--ha-navy); margin: 0 0 24px;
}
.hope-aby__copy p {
  font-size: 16px; font-weight: 500;
  line-height: 1.65; letter-spacing: -0.05px;
  color: var(--ha-navy-ink);
  margin: 0 0 16px;
}
.hope-aby__copy p:last-child { margin-bottom: 0; }
.hope-aby__copy strong { color: var(--ha-navy-ink); font-weight: 600; }

.hope-aby__highlight {
  display: block;
  margin: 24px 0 !important;
  padding: 18px 20px;
  background: var(--ha-white);
  border: 1px solid var(--ha-hairline);
  border-left: 3px solid var(--ha-orange);
  border-radius: 12px;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: var(--ha-navy) !important;
}

/* ───── Tool column ───── */
.hope-aby__tool {
  min-width: 0;
  background: var(--ha-white);
  border: 1px solid var(--ha-hairline);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(10, 29, 71, 0.12);
}
.hope-aby__tool iframe {
  width: 100% !important;
  border: 0 !important;
  display: block;
  background: transparent !important;
}

@media (max-width: 1023px) {
  .hope-aby__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 767px) {
  .hope-aby__stage { padding: 56px 20px 64px; }
  .hope-aby__title { font-size: 30px; letter-spacing: -0.8px; }
  .hope-aby__copy p { font-size: 15px; }
  .hope-aby__highlight { font-size: 15px !important; padding: 16px 18px; }
}
