/* =============================================================
   THANK-YOU.CSS — Citizens Reverse Mortgage.
   Shared form-confirmation page. Enqueued via the slug fallback in
   functions.php for the page with slug "thank-you".
   ============================================================= */

/* ── SECTION 01 — CONFIRMATION HERO (centered) ───────────── */
.ty-hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding-block: clamp(72px, 9vw, 132px);
  overflow: hidden;
  text-align: center;
}
.ty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px circle at 50% -8%, rgba(184, 148, 58, 0.28), transparent 58%),
    radial-gradient(460px circle at 88% 100%, rgba(61, 122, 138, 0.24), transparent 60%);
  pointer-events: none;
}
.ty-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 72%);
  pointer-events: none;
}
.ty-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
}
.ty-hero__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--gold-soft);
  background: rgba(184, 148, 58, 0.14);
  border: 1px solid rgba(212, 169, 79, 0.5);
}
.ty-hero__eyebrow { color: var(--gold-soft); }
.ty-hero h1 { color: #fff; margin-bottom: var(--space-md); }
.ty-hero__sub {
  font-size: clamp(21px, 1.9vw, 25px);
  line-height: 1.7;
  color: #d8e0f2;
  margin-bottom: var(--space-md);
}
.ty-hero__contact {
  font-size: 19px;
  color: #9fb0d0;
  margin-bottom: var(--space-lg);
}
.ty-hero__contact a { color: var(--gold-light); font-weight: 600; white-space: nowrap; }
.ty-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

/* ── SECTION 02 — WHILE YOU'RE HERE (resource cards) ─────── */
.ty-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.ty-card .card__title { color: var(--navy); }
.ty-card .link-arrow { margin-top: var(--space-sm); }
