/* ── Mauve CSS custom properties ───────────────────────────── */
:root {
  --mauve-light: #e0afff;
  --mauve-300: #cfa3c4;
  --mauve-400: #b87aa7;
  --mauve-500: #9f5a8d;
  --mauve-700: #6c305c;
}

/* ── Decorative background blobs ───────────────────────────── */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,175,255,0.18), transparent 70%);
  opacity: 0.55;
  top: -180px;
  right: -180px;
}
body::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176,130,240,0.14), transparent 70%);
  opacity: 0.45;
  bottom: -160px;
  left: -160px;
}

/* ── Glassmorphism card (dark) ─────────────────────────────── */
.card {
  background: rgba(224, 175, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(224, 175, 255, 0.12);
  box-shadow:
    0 8px 40px rgba(224, 175, 255, 0.08),
    0 2px 8px  rgba(224, 175, 255, 0.05),
    inset 0 1px 0 rgba(224, 175, 255, 0.08);
}

/* ── Logo container ────────────────────────────────────────── */
.logo-wrap {
  background: rgba(224, 175, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(224, 175, 255, 0.15),
    0 4px 24px rgba(224, 175, 255, 0.18);
}

/* Logo SVG image */
.logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ── Brand name vector wordmark ─────────────────────────────── */
.brand-svg {
  width: clamp(220px, 55vw, 420px);
  height: auto;
  display: block;
}

/* ── Gradient divider bar ──────────────────────────────────── */
.divider-bar {
  background: linear-gradient(90deg,
    rgba(224,175,255,0.15),
    rgba(224,175,255,0.65),
    rgba(224,175,255,0.15));
}
