/* ============================================================
   Waken — shared design system
   Light + ethereal · Two-tone palette: white + purple #5B2BCF
   No black anywhere. Spiritual/divine vibe via subtle lotus &
   cosmic ring motifs.
   ============================================================ */

/* Apfel Grotezk — Fontsource (OFL) */
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/apfel-grotezk/files/apfel-grotezk-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/apfel-grotezk/files/apfel-grotezk-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/apfel-grotezk/files/apfel-grotezk-latin-400-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Apfel Grotezk';
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/apfel-grotezk/files/apfel-grotezk-latin-700-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --purple: #5B2BCF;
  --purple-deep: #4A22B0;          /* shadows / hover */
  --purple-glow: #7C4DEC;
  --purple-soft: rgba(91, 43, 207, 0.08);
  --purple-line: rgba(91, 43, 207, 0.18);
  --on-purple: #ffffff;
  --on-purple-soft: rgba(255, 255, 255, 0.84);
  --on-purple-line: rgba(255, 255, 255, 0.18);
  --on-purple-line-strong: rgba(255, 255, 255, 0.30);
  --white: #ffffff;
  --ink: #1B0E3F;                  /* very dark purple instead of black */
  --ink-soft: rgba(27, 14, 63, 0.72);
  --ink-line: rgba(27, 14, 63, 0.10);
  --green: #0EA86B;
  --green-deep: #0B7C50;
  --green-glow: rgba(14,168,107,0.35);
  --display: 'Apfel Grotezk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: 'Apfel Grotezk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --nav-h: 68px;

  /* Backwards-compat aliases — sub-pages built before the light-theme refactor
     still reference these; map them to the new two-tone palette. */
  --gold: #ffffff;
  --black: #5B2BCF;
  --gray-1: #F7F4FF;
  --gray-3: rgba(27, 14, 63, 0.55);
  --lavender: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--white); }
body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  font-weight: 400;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
  color: inherit;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Layout primitives ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
}

/* On-purple surface — used for hero, founder, programs, final CTA.
   Inside this scope we redefine `--ink` / `--ink-soft` / `--gray-3` to white
   variants so descendant rules (and inline styles) using those variables
   resolve to white-on-purple automatically. We do NOT touch `--purple` here
   — the section's own `var(--purple)` background needs the original token. */
.section-purple {
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(255,255,255,0.10) 0%, transparent 60%),
    radial-gradient(70% 60% at 88% 92%, rgba(124,77,236,0.55) 0%, transparent 65%),
    var(--purple);
  color: var(--on-purple);
  position: relative;
  overflow: hidden;
}
/* Apply the variable inversion to immediate children only, so descendants
   inherit white-soft text without leaking into the section's own bg vars. */
.section-purple > * {
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.84);
  --ink-line: rgba(255, 255, 255, 0.20);
  --gray-3: rgba(255, 255, 255, 0.72);
}
/* Re-revert inside white cards so card text stays dark. */
.section-purple .card,
.section-purple .testi,
.section-purple .vt-card,
.section-purple .faq-item {
  --ink: #1B0E3F;
  --ink-soft: rgba(27, 14, 63, 0.72);
  --ink-line: rgba(27, 14, 63, 0.10);
  --gray-3: rgba(27, 14, 63, 0.55);
  color: var(--ink);
}
/* Subtle radial sparkle dots — barely visible, ethereal */
.section-purple::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(1.5px 1.5px at 78% 32%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1px 1px at 38% 64%, rgba(255,255,255,0.45), transparent 50%),
    radial-gradient(1.5px 1.5px at 88% 78%, rgba(255,255,255,0.40), transparent 50%),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,0.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 56% 14%, rgba(255,255,255,0.40), transparent 50%);
  pointer-events: none;
  opacity: 0.85;
}
.section-purple > * { position: relative; z-index: 1; }

.section-purple-soft {
  background: linear-gradient(180deg, var(--white) 0%, rgba(91,43,207,0.04) 100%);
  color: var(--ink);
}

.section-white { background: var(--white); color: var(--ink); }

/* ===== Eyebrow / typographic helpers ===== */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-purple .eyebrow {
  color: var(--on-purple-soft);
}

.h-display {
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.h-section {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.h-block {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.12;
}
.lead {
  font-size: clamp(16px, 2.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
}
.section-purple .lead,
.section-purple p,
.section-purple li,
.section-purple .crumbs,
.section-purple .info-row,
.section-purple .info-row .item .k,
.section-purple .info-row .item .v {
  color: var(--on-purple-soft);
}
.section-purple h1,
.section-purple h2,
.section-purple h3,
.section-purple h4,
.section-purple h5,
.section-purple .info-row .item .v,
.section-purple .stat-num {
  color: var(--on-purple);
}

.italic-em {
  font-style: italic;
  font-weight: 500;
}
.italic-em.glow {
  color: var(--purple);
}
.section-purple .italic-em.glow { color: var(--white); opacity: 0.92; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: transform 0.2s, background 0.2s;
  flex: none;
}
.btn:hover .arrow { transform: translateX(2px); background: rgba(255,255,255,0.34); }

.btn-cta {
  background: var(--green);
  color: white;
  padding: 18px 32px;
  font-size: 16.5px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.16) inset,
    0 -1px 0 rgba(0,0,0,0.20) inset,
    0 8px 22px rgba(14,168,107,0.40),
    0 2px 6px rgba(14,168,107,0.28);
}
.btn-cta:hover {
  background: #12BD78;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.20) inset,
    0 -1px 0 rgba(0,0,0,0.20) inset,
    0 14px 30px rgba(14,168,107,0.50),
    0 4px 10px rgba(14,168,107,0.32);
}
.btn-cta:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--purple-line);
}
.btn-ghost:hover { background: var(--purple-soft); border-color: var(--purple); }
.btn-ghost .arrow { background: var(--purple-soft); }
.section-purple .btn-ghost {
  color: var(--on-purple);
  border-color: var(--on-purple-line-strong);
}
.section-purple .btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.55); }
.section-purple .btn-ghost .arrow { background: rgba(255,255,255,0.18); }

.btn-sm { padding: 10px 22px; font-size: 13px; gap: 10px; }
.btn-cta.btn-sm { padding: 12px 22px; font-size: 13.5px; }

/* ===== Sticky top nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(91, 43, 207, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--on-purple-line);
  height: var(--nav-h);
  color: var(--on-purple);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--on-purple);
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo img.logo-img {
  display: block;
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.16), 0 6px 14px rgba(0,0,0,0.18);
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
}
.nav-links a {
  color: var(--on-purple-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--on-purple); }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--on-purple);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu sheet */
.nav-sheet {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--purple);
  border-bottom: 1px solid var(--on-purple-line);
  padding: 18px 24px 24px;
  display: none;
  z-index: 79;
  color: var(--on-purple);
}
.nav-sheet.open { display: block; }
.nav-sheet a {
  display: block;
  padding: 14px 4px;
  color: var(--on-purple);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--on-purple-line);
}
.nav-sheet a:last-of-type { border-bottom: none; }
.nav-sheet .btn { margin-top: 16px; width: 100%; }

/* ===== Footer ===== */
.footer {
  background: var(--purple);
  color: var(--on-purple-soft);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; left: 50%; top: -1px; transform: translateX(-50%);
  width: 320px; height: 80px;
  background: radial-gradient(ellipse at top, var(--purple-glow), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer .tag {
  margin-top: 14px;
  font-size: 14px;
  color: var(--on-purple-soft);
  max-width: 320px;
  line-height: 1.5;
}
.footer h6 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--on-purple);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer ul a {
  color: var(--on-purple-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer ul a:hover { color: var(--on-purple); }

.socials {
  display: inline-flex; gap: 8px;
  margin-top: 20px;
}
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--on-purple-line-strong);
  color: var(--on-purple-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.socials a:hover { background: rgba(255,255,255,0.08); border-color: var(--on-purple); color: var(--on-purple); }

.footer-bottom {
  border-top: 1px solid var(--on-purple-line);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  font-size: 12.5px;
  color: var(--on-purple-soft);
  flex-wrap: wrap;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--ink-line);
  box-shadow: 0 2px 6px rgba(91,43,207,0.06), 0 18px 36px rgba(91,43,207,0.08);
}
.card-on-purple {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--on-purple-line-strong);
  border-radius: 18px;
  padding: 28px;
  color: var(--on-purple);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--on-purple-line-strong);
}
@media (max-width: 600px) { .stats { grid-template-columns: 1fr 1fr; gap: 16px; } }
.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12.5px;
  color: var(--on-purple-soft);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-top: 4px;
}

/* ===== Video facade (lite-YouTube) ===== */
.vt-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px) { .vt-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vt-grid { grid-template-columns: 1fr; } }

.vt-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink-line);
  box-shadow: 0 2px 6px rgba(91,43,207,0.06), 0 12px 28px rgba(91,43,207,0.08);
}
.section-purple .vt-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--on-purple-line-strong);
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}
.vt-video {
  width: 100%;
  background: var(--purple-deep);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.vt-video.is-short { aspect-ratio: 9 / 16; }
.vt-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vt-video .vt-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vt-video .vt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  border-radius: 14px;
  background: rgba(91, 43, 207, 0.90);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, transform 0.18s;
  pointer-events: none;
  box-shadow: 0 8px 28px rgba(91,43,207,0.50);
}
.vt-video:hover .vt-play { background: #FF0033; transform: translate(-50%, -50%) scale(1.06); }
.vt-video .vt-play svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }
.vt-video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 30%, transparent 65%, rgba(91,43,207,0.30) 100%);
  pointer-events: none;
}
.vt-caption {
  padding: 14px 18px 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 2.6vw, 17px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.vt-quote {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.section-purple .vt-caption { color: var(--on-purple); }
.section-purple .vt-quote { color: var(--on-purple-soft); }

/* ===== Carousel (horizontal scroll-snap, with arrow buttons) ===== */
.carousel-wrap { position: relative; }
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 4px 18px;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { scroll-snap-align: start; }
@media (min-width: 920px) {
  .carousel { grid-auto-columns: minmax(300px, 360px); }
}
.carousel-controls {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 16px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--purple-line);
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
  box-shadow: 0 2px 6px rgba(91,43,207,0.10);
}
.carousel-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.section-purple .carousel-btn {
  background: rgba(255,255,255,0.10);
  color: var(--on-purple);
  border: 1px solid var(--on-purple-line-strong);
  backdrop-filter: blur(6px);
}
.section-purple .carousel-btn:hover { background: var(--white); color: var(--purple); border-color: var(--white); }

/* ===== FAQ accordion ===== */
.faq-list {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 780px; margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(91,43,207,0.04);
}
.section-purple .faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--on-purple-line-strong);
}
.faq-q {
  width: 100%;
  background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15.5px, 2.8vw, 17.5px);
  color: inherit;
  text-align: left;
  letter-spacing: -0.005em;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  transition: transform 0.2s, background 0.2s;
}
.section-purple .faq-icon {
  background: rgba(255,255,255,0.10);
  color: var(--on-purple);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: white; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-a-inner {
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.section-purple .faq-a-inner { color: var(--on-purple-soft); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a-inner { padding-bottom: 22px; }

/* ===== Generic grids ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 820px) { .grid-4 { grid-template-columns: 1fr 1fr; } }

/* Section header centered helper */
.section-head { max-width: 740px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

/* Crumbs */
.crumbs {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.crumbs a { color: inherit; text-decoration: none; opacity: 0.8; }
.crumbs a:hover { opacity: 1; }
.section-purple .crumbs { color: var(--on-purple-soft); }

/* Pulse helper */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(14,168,107,0.18);
  animation: pulse 1.6s infinite;
  display: inline-block;
}

/* Marquee */
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; gap: 18px;
  animation: marqueeLeft 40s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Lotus / divine motifs ===== */
/* SVG inline as background — lotus silhouette (simple) */
.lotus-divider {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  color: var(--purple);
  width: 80px;
  opacity: 0.65;
}
.section-purple .lotus-divider { color: var(--on-purple); opacity: 0.55; }
.lotus-divider svg { width: 100%; height: auto; }

/* Cosmic ring backdrop — circle of light around portraits / heroes */
.aura-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.aura-circle.r1 { animation: orbit 22s linear infinite; }
.aura-circle.r2 { animation: orbit 30s linear infinite reverse; }
@keyframes orbit { to { transform: rotate(360deg); } }

/* Utilities */
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.section-purple .muted { color: var(--on-purple-soft); }
.mt-0 { margin-top: 0; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.flex-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Backwards-compat aliases — old class names still used in some HTML. */
.section-black {
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(255,255,255,0.10) 0%, transparent 60%),
    radial-gradient(70% 60% at 88% 92%, rgba(124,77,236,0.55) 0%, transparent 65%),
    var(--purple);
  color: var(--on-purple);
  position: relative;
  overflow: hidden;
}
.section-black > * {
  --ink: #ffffff;
  --ink-soft: rgba(255, 255, 255, 0.84);
  --ink-line: rgba(255, 255, 255, 0.20);
  --gray-3: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
}
.section-black .card,
.section-black .testi,
.section-black .vt-card,
.section-black .faq-item {
  --ink: #1B0E3F;
  --ink-soft: rgba(27, 14, 63, 0.72);
  --ink-line: rgba(27, 14, 63, 0.10);
  --gray-3: rgba(27, 14, 63, 0.55);
  color: var(--ink);
}
.section-cream { background: var(--white); color: var(--ink); }
