@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


/* ── Reset ── */
.bd-hero *, .bd-hero *::before, .bd-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section shell ── */
.bd-hero {
  width: 100%;
  background-color: var(--colors--light, #f7f4fd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bd-hero__inner {
  width: 100%;
  max-width: 85rem;
  padding: 60px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Left: copy column ── */
.bd-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 630px;
  flex-shrink: 0;
}

.bd-hero__eyebrow {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colors--dark, #271d3b);
  font-variation-settings: 'opsz' 14;
}

.bd-hero__heading {
  font-family: var(--font--secondary-family, 'Vollkorn', Georgia, serif);
  font-weight: 700;
  font-size: clamp(44px, 4.7vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--colors--dark, #271d3b);
}

.bd-hero__body {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--colors--dark, #271d3b);
  font-variation-settings: 'opsz' 14;
  max-width: 600px;
}

/* ── Bullet list ── */
.bd-hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  list-style: none;
}

.bd-hero__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bd-hero__bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--colors--purple, #a77dc5);
  flex-shrink: 0;
}

.bd-hero__bullet-text {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--colors--dark, #271d3b);
  font-variation-settings: 'opsz' 14;
}

/* ── Right: form card ── */
.bd-hero__card {
  background: rgba(167, 125, 197, 0.10);
  border-radius: 20px;
  padding: 36px;
  width: 476px;
  flex-shrink: 0;
}

.bd-hero__card-heading {
  font-family: var(--font--secondary-family, 'Vollkorn', Georgia, serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--colors--dark, #271d3b);
  margin-bottom: 4px;
}

.bd-hero__card-subtext {
  font-family: var(--font--primary-family, 'DM Sans', system-ui, sans-serif);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(39, 29, 59, 0.55);
  font-variation-settings: 'opsz' 14;
  margin-bottom: 15px;
}

/* ── Entrance animations ── */
@keyframes bdFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bd-hero__eyebrow { animation: bdFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.05s; }
.bd-hero__heading { animation: bdFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.15s; }
.bd-hero__body    { animation: bdFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.25s; }
.bd-hero__bullets { animation: bdFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.35s; }
.bd-hero__card    { animation: bdFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.20s; }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .bd-hero__inner {
    padding: 60px 2rem;
    gap: 32px;
  }
  .bd-hero__copy { max-width: 500px; }
  .bd-hero__card { width: 420px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .bd-hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 48px 2rem 60px;
    gap: 40px;
  }
  .bd-hero__copy  { max-width: 100%; }
  .bd-hero__heading { font-size: clamp(36px, 8vw, 52px); }
  .bd-hero__body  { font-size: 17px; }
  .bd-hero__card  { width: 100%; padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .bd-hero__eyebrow,
  .bd-hero__heading,
  .bd-hero__body,
  .bd-hero__bullets,
  .bd-hero__card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

