/* ============================================================
   HARMONY APP — Design System
   Palette: deep purple bg · rose-orange-gold gradient · purple accents
   ============================================================ */
:root {
  /* Background */
  --bg:          #0D0618;
  --bg-mid:      #160C2A;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);

  /* Brand gradient (logo / CTA / highlights) */
  --grad-start:  #FF2D8A;
  --grad-mid:    #FF6B2B;
  --grad-end:    #FFD700;

  /* Purple family */
  --purple-deep: #2D0A5E;
  --purple-mid:  #6B21A8;
  --purple-light:#9333EA;
  --purple-glow: rgba(147,51,234,0.35);

  /* Text */
  --text:        #F0EAF8;
  --text-muted:  #9B89B8;
  --text-dim:    #5C4F78;

  /* Borders */
  --border:      rgba(147,51,234,0.25);
  --border-hot:  rgba(255,45,138,0.45);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(109,40,217,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255,45,138,0.12) 0%, transparent 60%);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, .heading { font-family: 'Cinzel', serif; }
a { color: inherit; text-decoration: none; }

/* ── Starfield ── */
.stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.star  { position: absolute; background: #fff; border-radius: 50%;
         animation: twinkle var(--dur,3s) ease-in-out infinite; }
@keyframes twinkle {
  0%,100% { opacity: var(--min-op,0.15); transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); }
}

/* ── Gradient text helper ── */
.grad-text {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Gradient button ── */
.btn-grad {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255,45,138,0.35), 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-grad:hover  { transform: translateY(-2px); box-shadow: 0 0 45px rgba(255,45,138,0.55), 0 8px 24px rgba(0,0,0,0.45); }
.btn-grad:active { transform: scale(0.97); }
.btn-grad:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}

.login-card {
  width: 100%; max-width: 400px;
  background: linear-gradient(160deg, rgba(45,10,94,0.6), rgba(13,6,24,0.7));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(109,40,217,0.2), 0 30px 80px rgba(0,0,0,0.6);
  text-align: center;
}

.logo-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,45,138,0.15), rgba(109,40,217,0.15));
  border: 1px solid var(--border-hot);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(255,45,138,0.2);
}
.logo-wrap svg { width: 40px; height: 40px; }

.brand-title {
  font-size: 26px; font-weight: 600; letter-spacing: 3px;
  margin-bottom: 6px;
}

.brand-subtitle {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 36px;
}

.form-group { text-align: left; margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-group input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text); font-family: inherit; font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder { color: rgba(240,234,248,0.25); }
.form-group input:focus {
  outline: none;
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(147,51,234,0.18);
}

.forgot-link {
  display: inline-block; margin-top: 20px;
  color: var(--purple-light); font-size: 13px;
}
.forgot-link:hover { text-decoration: underline; }

.auth-message {
  margin-top: 16px; font-size: 13px; line-height: 1.5;
  border-radius: 10px; display: none; padding: 10px 14px;
}
.auth-message.error  { display: block; background: rgba(255,90,90,0.1); color: #ff9a9a; border: 1px solid rgba(255,90,90,0.25); }
.auth-message.success{ display: block; background: rgba(147,51,234,0.12); color: var(--purple-light); border: 1px solid var(--border); }

/* ============================================================
   HOME PAGE  (brand landing — after login)
   ============================================================ */
.home-page {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding-bottom: 0;
}

/* Top bar shared */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(env(safe-area-inset-top) + 14px) 20px 12px;
  max-width: 500px; margin: 0 auto;
  min-height: calc(env(safe-area-inset-top) + 64px);
}

.topbar-brand {
  display: flex; align-items: center; gap: 10px;
}
.topbar-logo {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 10px rgba(255,45,138,0.6));
}
.topbar-logo svg { width: 100%; height: 100%; }

.topbar-name {
  font-family: 'Cinzel', serif;
  font-size: 18px; letter-spacing: 2px;
  background: linear-gradient(90deg, #fff 0%, #C9A0FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.icon-btn {
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 10px; padding: 9px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.icon-btn:hover { color: var(--purple-light); border-color: var(--purple-light); }
.icon-btn svg { width: 20px; height: 20px; }

/* Hero welcome */
.home-hero {
  text-align: center;
  padding: 32px 24px 20px;
  max-width: 500px; margin: 0 auto;
}
.home-hero .eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.home-hero h1 {
  font-size: 28px; line-height: 1.25; letter-spacing: 1px; margin-bottom: 10px;
}
.home-hero p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* Thought of the Day */
.thought-card {
  margin: 10px 20px 0;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(109,40,217,0.15), rgba(255,45,138,0.08));
  border: 1px solid var(--border);
  max-width: 460px;
  margin-left: auto; margin-right: auto;
  position: relative; overflow: hidden;
}
.thought-card::before {
  content: '"'; position: absolute; top: -10px; left: 16px;
  font-size: 80px; font-family: 'Cinzel', serif;
  color: rgba(147,51,234,0.12); line-height: 1;
}
.thought-card .label {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 10px;
}
.thought-card p {
  font-size: 14.5px; line-height: 1.7;
  font-style: italic; color: var(--text);
}

/* Products section */
.section-label {
  margin: 28px 20px 10px;
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim);
  max-width: 460px; margin-left: auto; margin-right: auto;
  padding: 0 0 0 2px;
}

.products-list {
  display: flex; flex-direction: column; gap: 16px;
  padding: 0 20px;
  max-width: 500px; margin: 0 auto;
}

/* Product card — big featured card */
.product-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(45,10,94,0.55), rgba(13,6,24,0.65));
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: block;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,45,138,0.4);
  box-shadow: 0 0 40px rgba(109,40,217,0.25), 0 8px 40px rgba(0,0,0,0.5);
}
.product-card:active { transform: scale(0.98); }

.product-card-inner {
  padding: 28px 24px;
}
.product-badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,45,138,0.2), rgba(109,40,217,0.2));
  border: 1px solid var(--border-hot);
  color: var(--grad-start);
  margin-bottom: 16px;
}
.product-card h2 {
  font-size: 22px; letter-spacing: 1px; line-height: 1.25;
  margin-bottom: 10px;
}
.product-card .product-desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 22px;
}
.product-card .product-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 22px;
}
.product-card .product-meta span {
  display: flex; align-items: center; gap: 5px;
}
.product-card .product-meta svg { width: 14px; height: 14px; color: var(--purple-light); }

/* Coming soon card */
.product-card.locked {
  opacity: 0.5;
  pointer-events: none;
}
.product-card.coming-soon {
  border-style: dashed;
  cursor: default;
}
.product-card.coming-soon:hover { transform: none; box-shadow: none; }
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px dashed var(--text-dim);
  margin-bottom: 14px;
}

/* People using strip */
.social-proof {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  margin: 8px 20px 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 460px; margin-left: auto; margin-right: auto;
}
.avatars { display: flex; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border: 2px solid var(--bg);
  margin-right: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
}
.social-proof-text {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}
.social-proof-text strong { color: var(--text); }

/* ============================================================
   DASHBOARD  (inside SacredHeal Experience)
   ============================================================ */
.app-shell {
  position: relative; z-index: 1;
  min-height: 100vh;
  padding-bottom: 0;
}

.dash-header {
  padding: 20px 20px 0;
  max-width: 500px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.back-to-home {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.back-to-home:hover { color: var(--purple-light); }
.back-to-home svg { width: 16px; height: 16px; }

/* Module section title */
.dash-section-title {
  font-family: 'Cinzel', serif;
  font-size: 22px; letter-spacing: 1.5px;
  margin: 20px 20px 4px;
  max-width: 460px; margin-left: auto; margin-right: auto;
  padding: 0 20px;
}

/* Modules grid */
.section-label {
  margin: 20px 20px 10px;
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim);
  max-width: 460px; margin-left: auto; margin-right: auto;
  padding: 0 20px;
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 8px 20px 20px;
  max-width: 500px; margin: 0 auto;
}

.module-card {
  background: linear-gradient(160deg, rgba(45,10,94,0.5), rgba(13,6,24,0.6));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 14px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 12px;
  text-decoration: none; color: var(--text);
  min-height: 150px;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  opacity: 0; transition: opacity 0.2s;
}
.module-card:hover { border-color: rgba(255,45,138,0.35); box-shadow: 0 0 30px rgba(109,40,217,0.2); }
.module-card:hover::before { opacity: 1; }
.module-card:active { transform: scale(0.97); }

.module-card .m-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,45,138,0.18), rgba(109,40,217,0.18));
  border: 1px solid rgba(255,45,138,0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(255,45,138,0.2);
  flex-shrink: 0;
}
.module-card .m-icon svg { width: 22px; height: 22px; stroke: url(#iconGrad) !important; }
.module-card:nth-child(1) .m-icon svg { color: #FF2D8A; stroke: #FF2D8A; }
.module-card:nth-child(2) .m-icon svg { color: #FF6B2B; stroke: #FF6B2B; }
.module-card:nth-child(3) .m-icon svg { color: #C084FC; stroke: #C084FC; }
.module-card:nth-child(4) .m-icon svg { color: #FFD700; stroke: #FFD700; }
.module-card.featured    .m-icon svg { color: #FF2D8A; stroke: #FF2D8A; }

.module-card .title {
  font-size: 13px; font-weight: 600; line-height: 1.4;
  letter-spacing: 0.3px;
}

/* Featured module — full width */
.module-card.featured {
  grid-column: span 2;
  flex-direction: row;
  text-align: left;
  justify-content: flex-start;
  gap: 18px;
  min-height: 100px;
  background: linear-gradient(135deg, rgba(255,45,138,0.1), rgba(109,40,217,0.15));
  border-color: rgba(255,45,138,0.3);
  padding: 22px 20px;
}
.module-card.featured::before { opacity: 1; }
.module-card.featured .m-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,45,138,0.25), rgba(109,40,217,0.25));
}
.module-card.featured .m-icon svg { width: 24px; height: 24px; }
.module-card.featured .title { font-size: 14.5px; }
.module-card.featured .feat-sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ============================================================
   MODULE DETAIL PAGES
   ============================================================ */
.page-header {
  display: flex; align-items: center; gap: 14px;
  padding: calc(env(safe-area-inset-top) + 14px) 20px 12px;
  max-width: 500px; margin: 0 auto;
  min-height: calc(env(safe-area-inset-top) + 64px);
}

.back-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px; border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none; flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.back-btn:hover { color: var(--purple-light); border-color: var(--purple-light); }
.back-btn svg { width: 22px; height: 22px; }

.page-header-text { min-width: 0; }
.page-eyebrow {
  font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.page-title {
  font-family: 'Cinzel', serif;
  font-size: 18px; letter-spacing: 1px; line-height: 1.3;
}
.page-title.grad-text { /* uses .grad-text helper */ }

.page-intro {
  margin: 14px 20px 4px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(109,40,217,0.1);
  border: 1px solid var(--border);
  font-size: 13.5px; line-height: 1.7; color: var(--text-muted);
  max-width: 460px; margin-left: auto; margin-right: auto;
}

/* Audio list */
.audio-list {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 20px 30px;
  max-width: 500px; margin: 0 auto;
}

.audio-item {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, rgba(45,10,94,0.4), rgba(13,6,24,0.5));
  border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.audio-item:hover  { border-color: rgba(147,51,234,0.4); }
.audio-item.playing { border-color: var(--grad-start); background: rgba(255,45,138,0.08); }

.play-btn {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(255,45,138,0.3);
  transition: transform 0.15s, box-shadow 0.2s;
}
.play-btn:hover  { transform: scale(1.08); box-shadow: 0 0 24px rgba(255,45,138,0.5); }
.play-btn svg { width: 18px; height: 18px; margin-left: 2px; }

.audio-item.playing .play-btn {
  background: linear-gradient(135deg, var(--grad-mid), var(--grad-end));
  box-shadow: 0 0 20px rgba(255,107,43,0.45);
}

.audio-info { flex: 1; min-width: 0; }
.audio-info .audio-title {
  font-size: 14px; font-weight: 600; margin-bottom: 3px; line-height: 1.35;
}
.audio-info .audio-subtitle {
  font-size: 12px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.audio-duration { flex-shrink: 0; font-size: 12px; color: var(--text-muted); }

/* Subcategory tabs */
.sub-tabs {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 12px 20px 0;
  scrollbar-width: none;
  max-width: 500px; margin: 0 auto;
}
.sub-tabs::-webkit-scrollbar { display: none; }
.sub-tab {
  flex-shrink: 0; padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: none; color: var(--text-muted);
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px;
  cursor: pointer; transition: all 0.2s;
}
.sub-tab.active {
  background: linear-gradient(135deg, rgba(255,45,138,0.2), rgba(109,40,217,0.2));
  border-color: var(--border-hot); color: var(--text);
}

/* ============================================================
   BOTTOM NAVIGATION
   ============================================================ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: space-around; align-items: center;
  background: rgba(13,6,24,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px 6px calc(10px + env(safe-area-inset-bottom));
}

.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--text-dim); text-decoration: none;
  font-size: 10px; letter-spacing: 0.5px;
  flex: 1; padding: 4px 0; transition: color 0.2s;
}
.nav-item svg { width: 22px; height: 22px; }
.nav-item.active { color: var(--purple-light); }
.nav-item.active svg { filter: drop-shadow(0 0 6px var(--purple-glow)); }

/* ============================================================
   VIDEO MODULE
   ============================================================ */
.video-list {
  display: flex; flex-direction: column; gap: 20px;
  padding: 16px 20px 30px;
  max-width: 500px; margin: 0 auto;
}

.video-item {
  background: linear-gradient(145deg, rgba(45,10,94,0.4), rgba(13,6,24,0.5));
  border: 1px solid var(--border);
  border-radius: 16px; padding: 16px 16px 0; overflow: hidden;
}

.video-title {
  font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.video-description {
  font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px;
}
.video-frame {
  position: relative;
  width: calc(100% + 32px); margin-left: -16px;
  padding-top: 56.25%;
  border-top: 1px solid var(--border);
}
.video-frame iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 96px; left: 50%;
  transform: translate(-50%, 12px);
  background: rgba(45,10,94,0.95);
  border: 1px solid var(--border-hot);
  color: var(--text);
  padding: 12px 22px; border-radius: 10px;
  font-size: 13px; text-align: center; max-width: 85%;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s; z-index: 50;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 480px) {
  .login-card   { padding: 56px 44px; }
  .thought-card { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   LEGAL FOOTER
   ============================================================ */
.harmony-legal-footer {
  position: relative; z-index: 1;
  margin-top: 16px;
  padding: 24px 20px calc(90px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  text-align: center;
  background: rgba(13,6,24,0.5);
}
.harmony-legal-footer .footer-links {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin-bottom: 12px;
}
.harmony-legal-footer .footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.harmony-legal-footer .footer-links a:hover { color: var(--grad-end); }
.harmony-legal-footer .footer-copy {
  font-size: 11px; color: var(--text-dim); margin-bottom: 12px;
}
.harmony-legal-footer .disclaimer-bar {
  background: rgba(107,33,168,0.10);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 11px; color: var(--text-dim); line-height: 1.6;
  max-width: 480px; margin: 0 auto;
}
