/* === Tokens === */
:root {
  --brand: #7c398d;
  --brand-dark: #5a2a68;
  --ink: #1a1a2e;
  --muted: #5b6470;
  --canvas: #fafafa;
  --border: rgba(0,0,0,.09);
}

/* === Reset === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
* { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }

body {
  font-family: 'Assistant', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 {
  font-family: 'Heebo', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.5rem, 1.8vw + 0.9rem, 2.2rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
p + p { margin-top: 0.9rem; }

.container { max-width: 920px; margin: 0 auto; padding: 0 1.25rem; }

/* === Skip link === */
.skip-link {
  position: absolute; top: -3rem; inset-inline-start: 1rem; z-index: 100;
  background: var(--ink); color: #fff; padding: .45rem .85rem; border-radius: .35rem;
  font-size: .85rem; transition: top 150ms;
}
.skip-link:focus { top: .75rem; }

/* === Top bar === */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 3.5rem; gap: 1rem;
}
.topbar-logo { height: 2rem; width: auto; }
.topbar-nav { display: none; }
@media(min-width:768px) {
  .topbar-nav {
    display: flex; gap: 2rem;
    font-family: 'Heebo', sans-serif; font-weight: 500; font-size: .9rem; color: var(--muted);
  }
  .topbar-nav a:hover { color: var(--brand); }
}
.topbar-phone {
  font-family: 'Heebo', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--brand); display: none;
}
@media(min-width:640px) { .topbar-phone { display: inline; } }

/* === Buttons === */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; min-height: 46px; padding: 0 1.3rem;
  font-family: 'Heebo', sans-serif; font-weight: 600; font-size: .95rem;
  border: none; cursor: pointer; border-radius: .35rem;
  transition: background 150ms, opacity 150ms;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
  background: transparent; color: var(--brand-dark);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--brand); }

:where(a,button,input,textarea,select):focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}

/* === Divider === */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* === Section base === */
.sect { padding: 3.5rem 0; }
@media(min-width:768px) { .sect { padding: 4.5rem 0; } }

/* === Hero === */
.hero { position: relative; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(124,57,141,.12), transparent 55%),
    radial-gradient(700px 400px at 15% 105%, rgba(90,42,104,.08), transparent 50%),
    var(--canvas);
}
.chip {
  display: inline-flex; align-items: center;
  padding: .3rem .85rem; border-radius: 9999px;
  background: rgba(124,57,141,.08); color: var(--brand);
  font-family: 'Heebo', sans-serif; font-weight: 500; font-size: .85rem;
  border: 1px solid rgba(124,57,141,.15);
}
.portrait-ring {
  width: min(78vw, 360px); aspect-ratio: 1;
  border-radius: 9999px; padding: 6px;
  background: linear-gradient(135deg, #7c398d, #5a2a68);
  position: relative;
}
.portrait-ring::after {
  content: ''; position: absolute; inset: -18px;
  border-radius: 9999px;
  background: radial-gradient(closest-side, rgba(124,57,141,.14), transparent 70%);
  z-index: -1;
}
.portrait-img {
  width: 100%; height: 100%; border-radius: 9999px;
  object-fit: cover; background: #fff; display: block;
}
.font-800 { font-weight: 800; }
.font-600 { font-weight: 600; }

/* === About === */
.sect-split {
  display: grid; gap: 2rem;
}
@media(min-width:768px) { .sect-split { grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: start; } }

.sect-split p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.sect-split p + p { margin-top: 0.75rem; }

.aside-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; text-align: center;
}
.aside-badge img { width: 90px; height: auto; opacity: .85; }
.aside-badge small { font-size: .8rem; color: var(--muted); }

/* === Services === */
.services-list { margin-top: 1.5rem; }
.service-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row h3 { color: var(--ink); font-weight: 600; }
.service-row p { color: var(--muted); font-size: .95rem; margin-top: .25rem; line-height: 1.65; }

/* === Process === */
.process-list { margin-top: 1.5rem; }
.process-step {
  display: flex; gap: 1.2rem; align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: 'Heebo', sans-serif; font-weight: 700;
  font-size: 1.3rem; color: var(--brand); flex-shrink: 0;
  min-width: 2rem;
}
.process-step h3 { font-weight: 600; }
.process-step p { color: var(--muted); font-size: .95rem; margin-top: .15rem; }

/* === Credentials === */
.cred-list {
  margin-top: .5rem;
  list-style: disc;
  padding-inline-start: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}
.cred-list li::marker { color: var(--brand); }

/* === Contact === */
.contact-grid {
  display: grid; gap: 2.5rem;
}
@media(min-width:768px) { .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; } }

.contact-intro { color: var(--muted); margin-bottom: 1.5rem; }

.form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field label {
  font-family: 'Heebo', sans-serif; font-weight: 600; font-size: .9rem; color: var(--ink);
}
.field .req { color: var(--brand); }
.field input, .field textarea {
  width: 100%; padding: .65rem .8rem;
  border: 1.5px solid var(--border); border-radius: .3rem;
  background: #fff; font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color 150ms;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus {
  border-color: var(--brand); outline: none;
}
.field.invalid input, .field.invalid textarea { border-color: #c6344b; }
.error { min-height: 1rem; font-size: .8rem; color: #c6344b; }
.form-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .25rem; }
.form-status { font-size: .85rem; color: var(--muted); }

.contact-details { padding-top: .5rem; }
.contact-details dl { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: flex; gap: 1rem; align-items: baseline;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:first-child { border-top: 1px solid var(--border); }
.contact-row dt {
  font-family: 'Heebo', sans-serif; font-weight: 600; font-size: .9rem;
  min-width: 5rem; color: var(--ink);
}
.contact-row dd a { color: var(--brand); }
.contact-row dd a:hover { text-decoration: underline; }

/* === Footer === */
.site-footer {
  background: #fff; border-top: 1px solid var(--border);
  padding-bottom: calc(4rem + env(safe-area-inset-bottom));
}
@media(min-width:768px) { .site-footer { padding-bottom: 0; } }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem; padding: 1.5rem 0;
}
.footer-brand { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--muted); }
.footer-logo { height: 1.5rem; width: auto; }
.footer-inner small { font-size: .8rem; color: var(--muted); }
.footer-end { display: flex; align-items: center; gap: 1rem; }
.footer-appr img { height: 28px; width: auto; opacity: .55; transition: opacity 150ms; }
.footer-appr:hover img { opacity: .85; }

/* === Mobile bar === */
.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 30;
  display: flex; gap: .4rem;
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
@media(min-width:768px) { .mobile-bar { display: none; } }
.mb-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; border-radius: .3rem;
  font-family: 'Heebo', sans-serif; font-weight: 600; font-size: .9rem;
}
.mb-wa { background: var(--brand); color: #fff; }
.mb-call { background: transparent; color: var(--brand-dark); border: 1.5px solid var(--border); }

/* === Reveal === */
.reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media(prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .001ms !important; transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === Accessibility bubble === */
.a11y-bubble {
  position: fixed; bottom: 5.5rem; inset-inline-end: 1rem; z-index: 50;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: background 150ms;
}
@media(min-width:768px) { .a11y-bubble { bottom: 1.5rem; } }
.a11y-bubble:hover { background: var(--brand-dark); }

.a11y-panel {
  position: fixed; bottom: 7rem; inset-inline-end: 1rem; z-index: 51;
  background: #fff; border: 1px solid var(--border); border-radius: .5rem;
  padding: 1rem; width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  display: flex; flex-direction: column; gap: .4rem;
}
@media(min-width:768px) { .a11y-panel { bottom: 4.5rem; } }
.a11y-panel[hidden] { display: none; }
.a11y-title {
  font-family: 'Heebo', sans-serif; font-weight: 700; font-size: .95rem;
  margin-bottom: .25rem;
}
.a11y-panel button {
  display: block; width: 100%; text-align: start;
  padding: .45rem .6rem; border: 1px solid var(--border); border-radius: .3rem;
  background: #fff; font-family: inherit; font-size: .85rem;
  cursor: pointer; color: var(--ink); transition: background 120ms;
}
.a11y-panel button:hover { background: var(--canvas); }

/* A11y modes */
body.a11y-contrast { background: #000 !important; color: #ff0 !important; }
body.a11y-contrast * { background-color: #000 !important; color: #ff0 !important; border-color: #ff0 !important; }
body.a11y-links a { text-decoration: underline !important; outline: 2px solid currentColor !important; }
/* === Story / Personal Letter === */
.story-card {
  position: relative;
  background: linear-gradient(135deg, rgba(124,57,141,.05) 0%, rgba(90,42,104,.03) 100%);
  border: 1.5px solid rgba(124,57,141,.15);
  border-radius: .75rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 780px;
}
.story-quote-mark {
  position: absolute;
  top: -0.5rem;
  inset-inline-end: 1.5rem;
  font-family: 'Heebo', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(124,57,141,.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.story-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.story-body p + p { margin-top: 1rem; }
.story-lead {
  font-size: 1.15rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  border-inline-start: 3px solid var(--brand);
  padding-inline-start: 1rem;
  margin-bottom: 1.25rem;
}
.story-goals { margin-top: 1.25rem; }
.story-goals-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand) !important;
  margin-bottom: .4rem;
}
.story-goals ul {
  list-style: disc;
  padding-inline-start: 1.2rem;
}
.story-goals ul li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  padding: .1rem 0;
}
.story-goals ul li::marker { color: var(--brand); }
.story-closing {
  margin-top: 1.5rem;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  color: var(--ink) !important;
  font-size: 1.05rem;
  line-height: 1.9;
}
.story-cta-link {
  color: var(--brand) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.story-cta-link:hover { color: var(--brand-dark) !important; }
/* === BLD Special Offer === */
.bld-offer-card {
  position: relative;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, #1a1a2e 0%, #2d1040 60%, #1a1a2e 100%);
  color: #fff;
  overflow: hidden;
  max-width: 780px;
}
/* subtle shimmer overlay */
.bld-offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(124,57,141,.45) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 110%, rgba(90,42,104,.3) 0%, transparent 50%);
  pointer-events: none;
}
.bld-badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  position: relative;
}
.bld-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.bld-logo {
  height: 48px;
  width: auto;
  filter: invert(1); /* make black SVG white */
}
.bld-logos-x {
  font-size: 1.5rem;
  color: rgba(255,255,255,.35);
  font-weight: 300;
  line-height: 1;
}
.bld-muhni-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.bld-headline {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw + .8rem, 2.2rem);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
}
.bld-headline span {
  color: #d9a8f5;
}
.bld-perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
}
@media(min-width:600px) {
  .bld-perks { flex-direction: row; gap: 1.5rem; }
}
.bld-perk {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .65rem;
  padding: 1.1rem 1rem;
  flex: 1;
}
.bld-perk-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}
.bld-perk strong {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: .3rem;
}
.bld-perk p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}
.bld-cta { position: relative; text-align: center; }
.bld-cta-btn {
  background: #fff !important;
  color: var(--brand-dark) !important;
  font-size: 1rem;
  padding: 0 2rem;
  min-height: 50px;
  border-radius: .45rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  transition: transform 150ms, box-shadow 150ms;
}
.bld-cta-btn:hover {
  background: #f3e8ff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,0,0,.3);
}
.bld-fine {
  margin-top: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}

/* === BLD Promo Banner === */
.bld-banner {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, #1a1a2e 0%, #2d1040 50%, #1a1a2e 100%);
  color: #fff;
  padding: .55rem 3rem .55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bld-banner-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem 1rem;
}
.bld-banner-logo {
  height: 20px;
  width: auto;
  filter: invert(1);
  flex-shrink: 0;
}
.bld-banner-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.bld-banner-text {
  font-family: 'Heebo', sans-serif;
  font-size: .88rem;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}
.bld-banner-text strong { color: #fff; }
.bld-banner-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .3rem .85rem;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background 150ms;
  flex-shrink: 0;
}
.bld-banner-btn:hover { background: var(--brand-dark); }
.bld-banner-close {
  position: absolute;
  inset-inline-end: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  padding: .25rem;
  line-height: 1;
  transition: color 150ms;
}
.bld-banner-close:hover { color: #fff; }
.bld-banner.hidden { display: none; }

/* === BLD Popup === */
.bld-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 5, 20, .72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.bld-popup-overlay[hidden] { display: none; }
.bld-popup {
  position: relative;
  background: linear-gradient(160deg, #1c1030 0%, #2e1248 55%, #1c1030 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  overflow: hidden;
  animation: popupIn 350ms cubic-bezier(.34,1.3,.64,1) both;
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(.88) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
/* glow blobs */
.bld-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(124,57,141,.5), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(90,42,104,.35), transparent 50%);
  pointer-events: none;
}
.bld-popup-close {
  position: absolute;
  top: .9rem;
  inset-inline-end: .9rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  transition: background 150ms, color 150ms;
  z-index: 1;
}
.bld-popup-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.bld-popup-ribbon {
  position: absolute;
  top: 18px;
  inset-inline-start: -28px;
  background: var(--brand);
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .12em;
  padding: .25rem 2.5rem;
  transform: rotate(45deg);
  transform-origin: center;
}
/* RTL: ribbon should be rotated the other way */
[dir="rtl"] .bld-popup-ribbon {
  inset-inline-start: auto;
  inset-inline-end: -28px;
  transform: rotate(-45deg);
}
.bld-popup-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.bld-popup-logo-bld {
  height: 38px;
  width: auto;
  filter: invert(1);
}
.bld-popup-logos-x {
  font-size: 1.3rem;
  color: rgba(255,255,255,.3);
  font-weight: 300;
}
.bld-popup-logo-muhni {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .8;
}
.bld-popup-eyebrow {
  font-family: 'Heebo', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #d9a8f5;
  margin-bottom: .6rem;
  position: relative;
}
.bld-popup-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: .65rem;
  position: relative;
}
.bld-popup-sub {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.bld-popup-perks {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.75rem;
  position: relative;
  text-align: start;
}
.bld-popup-perk {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .6rem;
  padding: .85rem 1rem;
}
.bld-popup-perk-num {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #d9a8f5;
  flex-shrink: 0;
  min-width: 2rem;
}
.bld-popup-perk strong {
  display: block;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .15rem;
}
.bld-popup-perk p {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  margin: 0;
  line-height: 1.4;
}
.bld-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--brand-dark);
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.5rem;
  border-radius: .5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: background 150ms, transform 150ms, box-shadow 150ms;
  position: relative;
}
.bld-popup-cta:hover {
  background: #f3e8ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.bld-popup-fine {
  margin-top: .65rem;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  position: relative;
}
