body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  background-image:
    radial-gradient(
      circle at 8% 10%,
      rgba(255, 255, 255, 0.95),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(224, 211, 255, 0.55),
      transparent 28%
    ),
    linear-gradient(135deg, #fffaff 0%, #f5efff 55%, #f7fbff 100%);
}
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
}
.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(
    rgba(76, 55, 93, 0.14) 0.65px,
    transparent 0.65px
  );
  background-size: 8px 8px;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0 48%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 52%
  );
  opacity: 0.25;
}
.orb {
  position: absolute;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.34;
  animation: drift 14s ease-in-out infinite;
}
.orb--pink {
  background: #f7a6d8;
  left: -10vw;
  top: 5vh;
}
.orb--violet {
  background: #b7a0fa;
  right: -12vw;
  top: 22vh;
  animation-delay: -4s;
}
.orb--blue {
  background: #a9e3ef;
  left: 32vw;
  bottom: -22vw;
  animation-delay: -8s;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
main {
  position: relative;
  min-height: 60vh;
}
.section {
  padding: 100px 0;
}
.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section__title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin-top: 12px;
}
.section__text {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- Content rhythm: prevents headings and paragraphs from visually sticking together ---- */
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h2,
h3,
h4 {
  line-height: 1.15;
}
p + p {
  margin-top: 12px;
}
.section__head .badge {
  margin-bottom: 0;
}
.section__head > div > .section__text {
  margin-top: 15px;
}

/* ---- Robust text layout ---- */
.section__head,
.section__head > div,
.card,
.card > *,
.social-card,
.social-card > * {
  min-width: 0;
  max-width: 100%;
}
.section__title,
.card h1,
.card h2,
.card h3,
.card h4,
.section__text,
.muted,
.social-card strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.section__title {
  text-wrap: balance;
}
.section__text {
  text-wrap: pretty;
}

/* Cards use normal document flow; children cannot overlap because of positioning. */
.card {
  display: block;
  isolation: isolate;
}
.card > * {
  position: relative;
}
