/* Hub pages — shared craft layer (FAQ, Myths, Families, Compare, Calculator) */

.hub-page {
  background: #fafaf9;
}

.hub-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hub-dotgrid {
  background-image: radial-gradient(rgba(88, 45, 130, 0.11) 1.1px, transparent 1.1px);
  background-size: 24px 24px;
}

/* ——— Hero ——— */
.hub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(68vh, 560px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #231f20;
}
@media (min-width: 768px) {
  .hub-hero { min-height: min(72vh, 620px); align-items: center; }
}

.hub-hero__media {
  position: absolute;
  inset: 0;
}
.hub-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hub-hero--faq .hub-hero__media img { object-position: center 40%; }
.hub-hero--myths .hub-hero__media img { object-position: center 35%; }
.hub-hero--families .hub-hero__media img { object-position: center 42%; }
.hub-hero--compare .hub-hero__media img { object-position: center 50%; }
.hub-hero--calc .hub-hero__media img { object-position: center 45%; }

.hub-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(35, 31, 32, 0.92) 0%, rgba(63, 31, 92, 0.78) 44%, rgba(63, 31, 92, 0.38) 70%, rgba(35, 31, 32, 0.2) 100%),
    linear-gradient(to top, rgba(35, 31, 32, 0.6) 0%, transparent 50%);
}
@media (max-width: 767px) {
  .hub-hero__scrim {
    background: linear-gradient(to top, rgba(35, 31, 32, 0.94) 0%, rgba(63, 31, 92, 0.72) 55%, rgba(63, 31, 92, 0.45) 100%);
  }
}

.hub-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding: 5.5rem 1.25rem 3rem;
}
@media (min-width: 768px) {
  .hub-hero__inner {
    padding: 6rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: 2.5rem;
    align-items: end;
  }
}

.hub-hero__eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 238, 247, 0.88);
  margin-bottom: 1rem;
}

.hub-hero__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
}

.hub-hero__lead {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  color: rgba(243, 238, 247, 0.88);
}

.hub-hero__aside {
  display: none;
}
@media (min-width: 768px) {
  .hub-hero__aside {
    display: block;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.35rem 1.5rem;
    box-shadow: 0 20px 50px -20px rgba(20, 8, 40, 0.55);
  }
}

.hub-hero__aside-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 238, 247, 0.55);
}

.hub-hero__aside ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}
.hub-hero__aside li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(243, 238, 247, 0.85);
  padding: 0.35rem 0;
}
.hub-hero__aside li::before {
  content: "✓";
  color: #c4a8e0;
  font-weight: 700;
  flex-shrink: 0;
}

.hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(243, 238, 247, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.3s cubic-bezier(0.32, 0.72, 0, 1), transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.hub-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}
.hub-pill:focus-visible {
  outline: 3px solid #f3eef7;
  outline-offset: 2px;
}

/* ——— Cross-links strip ——— */
.hub-crosslinks {
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  background: #fff;
}
.hub-crosslinks__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .hub-crosslinks__inner { padding-inline: 2rem; }
}
.hub-crosslinks__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8060a0;
  margin-right: 0.25rem;
}
.hub-crosslinks a {
  font-size: 14px;
  font-weight: 600;
  color: #582d82;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.hub-crosslinks a:hover { border-bottom-color: rgba(88, 45, 130, 0.45); }
.hub-crosslinks a.is-here {
  color: #231f20;
  border-bottom-color: #582d82;
  pointer-events: none;
}

/* ——— FAQ clusters ——— */
.faq-cluster {
  border-radius: 1.25rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(63, 31, 92, 0.06), 0 10px 28px rgba(63, 31, 92, 0.07);
  transition: box-shadow 0.35s cubic-bezier(0.32, 0.72, 0, 1), transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.faq-cluster:hover {
  box-shadow: 0 1px 2px rgba(63, 31, 92, 0.08), 0 16px 36px rgba(63, 31, 92, 0.11);
  transform: translateY(-2px);
}

.faq-cluster__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, #f3eef7 0%, #faf7fc 100%);
  border-bottom: 1px solid rgba(88, 45, 130, 0.12);
}

.faq-cluster__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: #582d82;
  color: #fff;
  box-shadow: 0 4px 12px rgba(88, 45, 130, 0.28);
}

.faq-cluster__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: #231f20;
  margin: 0;
}

.hub-faq details {
  border-bottom: 1px solid rgba(243, 238, 247, 0.9);
}
.hub-faq details:last-child { border-bottom: none; }

.hub-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  color: #231f20;
  transition: background-color 0.25s cubic-bezier(0.32, 0.72, 0, 1), color 0.25s ease;
}
.hub-faq summary::-webkit-details-marker { display: none; }
.hub-faq summary:hover,
.hub-faq details[open] summary {
  background: rgba(243, 238, 247, 0.55);
  color: #582d82;
}

.hub-faq summary .faq-toggle {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid rgba(88, 45, 130, 0.35);
  color: #582d82;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), background-color 0.25s ease;
}
.hub-faq details[open] summary .faq-toggle {
  transform: rotate(45deg);
  background: #582d82;
  color: #fff;
  border-color: transparent;
}

.hub-faq details > p,
.hub-faq details > div {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.68;
  color: #5c5859;
}

/* ——— Myth cards ——— */
.myth-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.35rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #fff;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(63, 31, 92, 0.06), 0 10px 28px rgba(63, 31, 92, 0.07);
  transition: border-color 0.35s cubic-bezier(0.32, 0.72, 0, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.myth-card:hover {
  border-color: rgba(88, 45, 130, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(63, 31, 92, 0.08), 0 18px 40px rgba(88, 45, 130, 0.14);
}

.myth-card__thumb {
  position: relative;
  height: 9.5rem;
  overflow: hidden;
  background: #3f1f5c;
}
.myth-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s ease;
}
.myth-card:hover .myth-card__thumb img {
  transform: scale(1.05);
  opacity: 1;
}
.myth-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 31, 32, 0.55) 0%, transparent 55%);
  mix-blend-mode: multiply;
}

.myth-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.myth-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8060a0;
}

.myth-card__myth {
  margin-top: 0.5rem;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(92, 88, 89, 0.75);
  text-decoration: line-through;
  text-decoration-color: rgba(128, 96, 160, 0.45);
}

.myth-card__truth {
  margin-top: 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #231f20;
}

.myth-card__copy {
  margin-top: 0.65rem;
  font-size: 15px;
  line-height: 1.62;
  color: #5c5859;
  flex: 1;
}

.myth-card__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 15px;
  font-weight: 600;
  color: #582d82;
  transition: gap 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.myth-card:hover .myth-card__cta { gap: 0.55rem; }

/* ——— Hub cards (families, compare) ——— */
a.hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.hub-card {
  position: relative;
  border-radius: 1.35rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #fff;
  padding: 1.65rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(63, 31, 92, 0.06), 0 10px 28px rgba(63, 31, 92, 0.07);
  transition: border-color 0.35s cubic-bezier(0.32, 0.72, 0, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.hub-card::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88, 45, 130, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.hub-card:hover {
  border-color: rgba(88, 45, 130, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(63, 31, 92, 0.08), 0 16px 36px rgba(88, 45, 130, 0.12);
}
.hub-card:hover::before { transform: scale(1.15); }

.hub-card--featured {
  grid-column: span 1;
}
@media (min-width: 768px) {
  .hub-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0;
    overflow: hidden;
  }
  .hub-card--featured .hub-card__visual {
    min-height: 100%;
    margin: 0;
    border-radius: 0;
  }
  .hub-card--featured .hub-card__content {
    padding: 1.75rem 1.65rem 1.75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.hub-card__visual {
  position: relative;
  height: 10rem;
  margin: -1.65rem -1.5rem 1.15rem;
  overflow: hidden;
  border-radius: 1.35rem 1.35rem 0 0;
}
.hub-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}
.hub-card:hover .hub-card__visual img { transform: scale(1.04); }
.hub-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 31, 32, 0.35) 0%, transparent 50%);
}

.compare-card .hub-card__visual { height: 11rem; }

.hub-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #582d82;
  margin-bottom: 0.5rem;
}

.hub-card__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #231f20;
}

.hub-card__copy {
  margin-top: 0.65rem;
  font-size: 15.5px;
  line-height: 1.62;
  color: #5c5859;
  flex: 1;
}

.hub-card__link {
  margin-top: 1.1rem;
  font-size: 15px;
  font-weight: 600;
  color: #582d82;
}

/* ——— Split editorial ——— */
.hub-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hub-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 3rem; }
}

.hub-split__photo {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 40px rgba(63, 31, 92, 0.14);
}
.hub-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-split__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 45, 130, 0.15) 0%, transparent 50%);
  mix-blend-mode: multiply;
}

.hub-pullquote {
  border-left: 3px solid #582d82;
  padding-left: 1.15rem;
  margin: 1.25rem 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #231f20;
}

.quote-hit {
  font-weight: 700;
  font-size: 1.06em;
  color: #231f20;
  letter-spacing: -0.02em;
}

/* ——— CTA band ——— */
.hub-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #3f1f5c;
  color: #fff;
}
.hub-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(88, 45, 130, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(128, 96, 160, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.hub-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin-inline: auto;
  padding: 4rem 1.25rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hub-cta__inner { padding: 5rem 2rem; }
}

.hub-cta__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  letter-spacing: -0.025em;
  color: #fff;
}

.hub-cta__lead {
  margin-top: 0.85rem;
  max-width: 32rem;
  margin-inline: auto;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(243, 238, 247, 0.82);
}

.hub-cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.hub-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #582d82;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(88, 45, 130, 0.35), 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s cubic-bezier(0.32, 0.72, 0, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hub-btn-primary:hover { background: #582d82; filter: brightness(1.08); transform: scale(0.98); }

.hub-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.3s cubic-bezier(0.32, 0.72, 0, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hub-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(0.98);
}

.hub-btn-light {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #231f20;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: 1px solid rgba(35, 31, 32, 0.12);
  transition: border-color 0.3s cubic-bezier(0.32, 0.72, 0, 1), color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hub-btn-light:hover {
  border-color: #582d82;
  color: #582d82;
  transform: scale(0.98);
}

/* Team headshots — see assets/team-headshots.css */

/* Review cards (team page) */
.review-card {
  position: relative;
  border-radius: 1.25rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #fff;
  padding: 1.5rem 1.65rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(63, 31, 92, 0.06), 0 10px 28px rgba(63, 31, 92, 0.07);
  transition: border-color 0.35s cubic-bezier(0.32, 0.72, 0, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(88, 45, 130, 0.12);
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(88, 45, 130, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(63, 31, 92, 0.08), 0 16px 36px rgba(88, 45, 130, 0.11);
}
.review-card__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #231f20;
}
.review-card__footer {
  margin-top: 1rem;
  font-size: 14px;
  color: #5c5859;
}

.expect-card {
  border-radius: 1.35rem;
  border: 1px solid rgba(88, 45, 130, 0.2);
  background: linear-gradient(135deg, #fff 0%, #faf7fc 100%);
  padding: 1.75rem 1.65rem;
  box-shadow: 0 10px 32px rgba(63, 31, 92, 0.08);
}

/* ——— Legal page hero (compact) ——— */
.legal-page {
  background: #fafaf9;
}

.legal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #3f1f5c;
  color: #fff;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
}

.legal-hero__media {
  position: absolute;
  inset: 0;
}
.legal-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.42;
}
.legal-hero--privacy .legal-hero__media img { object-position: center 45%; }
.legal-hero--sms .legal-hero__media img { object-position: center 50%; }
.legal-hero--texas .legal-hero__media img { object-position: center 40%; }

.legal-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(35, 31, 32, 0.88) 0%, rgba(63, 31, 92, 0.82) 50%, rgba(88, 45, 130, 0.65) 100%);
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
  padding: 2.75rem 1.25rem 2.5rem;
}
@media (min-width: 768px) {
  .legal-hero__inner { padding: 3.25rem 2rem 3rem; }
}

.legal-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 238, 247, 0.75);
  margin-bottom: 0.65rem;
}

.legal-hero__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.65rem, 3.5vw, 2.125rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.legal-hero__lead {
  margin-top: 0.75rem;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(243, 238, 247, 0.82);
  max-width: 36rem;
}

.legal-body {
  max-width: 48rem;
  margin-inline: auto;
  padding: 2.5rem 1.25rem 3.5rem;
}
@media (min-width: 768px) {
  .legal-body { padding: 3rem 2rem 4rem; }
}

/* Calculator embed */
.calc-stage {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(88, 45, 130, 0.14);
  box-shadow: 0 12px 40px rgba(63, 31, 92, 0.12);
}
.calc-stage__placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(88, 45, 130, 0.07) 0%, transparent 55%),
    #fff;
}
@media (min-width: 768px) {
  .calc-stage__placeholder { padding: 4rem 3rem; }
}

/* Reveal */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hub-card:hover, .myth-card:hover, .faq-cluster:hover { transform: none; }
  .myth-card__thumb img, .hub-card__visual img { transition: none; }
  .review-card:hover { transform: none; }
}
.reveal {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}
.reveal.is-visible {
  opacity: 1;
}
