:root {
  --brand:       #5D17EB;
  --brand-dark:  #4812BC;
  --brand-light: #ECE3FD;
  --green:       #00BF62;
  --text:        #1a1b2e;
  --border:      #e2e4f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

/* ── Navbar ── */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}

/* Positioning reference for all dropdowns */
.site-nav .container {
  position: relative;
}

.site-nav .navbar-brand img {
  height: 38px;
  width: auto;
}

.site-nav .nav-link {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  padding: .45rem 1rem;
  border-radius: 8px;
  transition: color .15s, background .15s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--brand);
  background: var(--brand-light);
}

.site-nav .dropdown-toggle::after {
  margin-left: .35em;
  vertical-align: .12em;
}

/* ── Standard dropdowns (Features, Solutions) ── */
.std-dropdown {
  min-width: 220px;
  padding: .75rem .5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(85,51,245,.08);
  margin-top: .5rem;
}

.std-dropdown .dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  border-radius: 8px;
  padding: .42rem .85rem;
  color: var(--text);
  transition: background .12s, color .12s;
}

.std-dropdown .dropdown-item:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.std-dropdown .dropdown-header {
  font-family: 'Fredoka', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
  padding: .1rem .85rem .4rem;
}

/* ── Mega menu (Resources) ── */
.mega-menu {
  width: 640px;
  padding: 1.75rem 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(85,51,245,.1);
  left: 50% !important;
  transform: translateX(-50%);
  margin-top: .5rem;
}

.mega-col-head {
  font-family: 'Fredoka', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 0 .75rem;
  margin-bottom: .4rem;
}

.mega-menu .dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  border-radius: 8px;
  padding: .38rem .75rem;
  color: var(--text);
  transition: background .12s, color .12s;
}

.mega-menu .dropdown-item:hover {
  background: var(--brand-light);
  color: var(--brand);
}

/* ── "Coming soon" / not-yet-built links ── */
.mega-menu .dropdown-item.is-soon,
.footer-links a.is-soon {
  pointer-events: none;
  cursor: default;
}

.mega-menu .dropdown-item.is-soon {
  color: var(--muted, #9a9ab0);
  opacity: .65;
}

.footer-links a.is-soon {
  color: rgba(255, 255, 255, 0.35);
}

.mega-divider {
  border-top: 1px solid var(--border);
  margin: 1rem 0 .75rem;
}

.mega-footer-link {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.mega-footer-link:hover { text-decoration: underline; }

/* Below the lg breakpoint the navbar collapses into the hamburger panel.
   The mega menu's fixed 640px width + centering transform then overflow the
   panel and get chopped off at the edges — reset it to flow inside the panel
   and stack the columns full-width. */
@media (max-width: 991.98px) {
  .mega-menu {
    width: auto;
    left: 0 !important;
    transform: none;
    padding: .5rem .25rem 1rem;
    border: 0;
    box-shadow: none;
    margin-top: 0;
  }
  .mega-menu .row > [class^="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mega-col-head { margin-top: 1rem; }
  .mega-menu .row > [class^="col-"]:first-child .mega-col-head { margin-top: 0; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  background-image: url('/assets/img/hero-home.jpg');
  background-size: cover;
  background-position: center right;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,27,46,0.93) 0%,
    rgba(26,27,46,0.72) 50%,
    rgba(26,27,46,0.25) 100%
  );
}

.hero-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-hero-primary {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--brand);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.75rem;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-hero-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(85,51,245,.45);
}

.btn-hero-outline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50px;
  padding: .6rem 1.75rem;
  transition: border-color .2s, background .2s;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ── Footer ── */
.site-footer {
  background: var(--brand);
  padding: 4rem 0 0;
  color: rgba(255,255,255,0.75);
}

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: .85rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color .15s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,0.5);
}

/* ── Request a Demo page ── */
.demo-section {
  background: linear-gradient(135deg, #f8f7ff 0%, #fff 60%);
  padding: 5rem 0;
}

.demo-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}

.demo-section h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.demo-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 0;
}

.demo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(85,51,245,.08);
  padding: 2.25rem;
}

.demo-form label {
  font-family: 'Fredoka', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .35rem;
}

.demo-form .form-control,
.demo-form .form-select {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .65rem .85rem;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(85,51,245,.15);
}

.demo-form .form-check-label {
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  color: #6b7280;
}

.demo-form .form-check-input:checked {
  background-color: var(--green);
  border-color: var(--green);
}

.demo-form .form-check-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 .2rem rgba(34,214,90,.2);
}

.btn-demo-submit {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--brand);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .7rem 2rem;
  width: 100%;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-demo-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(85,51,245,.45);
}

/* ── Demo button ── */
.btn-demo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--brand);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .45rem 1.5rem;
  white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-demo:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(85,51,245,.35);
}

/* ── "Now Playing" pill — Spotify track link over the hero ── */
.now-playing {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem 1.25rem .55rem .9rem;
  background: var(--green);
  border-radius: 50px;
  text-decoration: none;
}

/* animated equalizer bars */
.now-playing-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.now-playing-eq span {
  width: 4px;
  border-radius: 2px;
  background: #fff;
  animation: nowPlayingEq .9s ease-in-out infinite;
}

.now-playing-eq span:nth-child(1) { height: 40%; animation-delay: 0s;    }
.now-playing-eq span:nth-child(2) { height: 90%; animation-delay: .25s;  }
.now-playing-eq span:nth-child(3) { height: 60%; animation-delay: .5s;   }
.now-playing-eq span:nth-child(4) { height: 80%; animation-delay: .15s;  }

@keyframes nowPlayingEq {
  0%, 100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1);   }
}

.now-playing-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.now-playing-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.now-playing-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,0.85);
}

@media (prefers-reduced-motion: reduce) {
  .now-playing-eq span { animation: none; }
}

/* ── Listener photo badge — recurring circular brand motif ── */
.listener-badge {
  position: absolute;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid var(--green);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index: 3;
  pointer-events: none;
}

/* Below ~1500px, absolute-positioned badges inevitably overlap content
   (Bootstrap containers max at 1320px, leaving no safe gutter for a
   ~300px badge). A tiny script in _footer.php picks ONE badge at
   random per page load, clones it as `.listener-badge-hero`, and drops
   it above the first <h1>. The original scattered badges hide.
   Only ultra-wide displays keep the "casually placed" floating look. */
body.has-hero-listener .listener-badge:not(.listener-badge-hero) {
  display: none !important;
}
.listener-badge-hero {
  position: static !important;
  display: block !important;
  width: clamp(140px, 22vw, 200px) !important;
  height: auto;
  margin: 0 auto 1.5rem !important;
  border-width: 8px;
  transform: rotate(-6deg) !important;
}

/* ════════════════════════════════════════════
   FEATURES PAGE
   ════════════════════════════════════════════ */

/* ── Features hero ── */
.features-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 64vh;
  padding: 5rem 0 3.5rem;
  overflow: hidden;
  background-image: url('/assets/img/hero-features.jpg');
  background-size: cover;
  background-position: center 32%;
  color: #fff;
}

.features-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,27,46,0.95) 0%,
    rgba(26,27,46,0.62) 48%,
    rgba(72,18,188,0.30) 100%
  );
}

.features-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1rem;
}

.features-hero-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* quick-jump chips below the hero copy */
.feature-jump {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
}

.feature-jump a {
  font-family: 'Fredoka', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: .4rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  transition: background .18s, border-color .18s, color .18s;
}

.feature-jump a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ── Feature section base ── */
.feature-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 73px;
  padding: 6rem 0;
}

.feature-section--tint  { background: linear-gradient(135deg,#f8f7ff 0%,#fff 70%); }
.feature-section--dark  { background: var(--brand-dark); color: #fff; }
.feature-section--green { background: linear-gradient(135deg,#eafff4 0%,#fff 70%); }

/* giant ghost feature-name watermark */
.feature-watermark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .82;
  letter-spacing: -.02em;
  position: absolute;
  top: -1rem;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.feature-watermark--left  { left: -.5rem;  text-align: left;  }
.feature-watermark--right { right: -.5rem; text-align: right; }

.feature-section--tint  .feature-watermark { color: rgba(93,23,235,.06); }
.feature-section--green .feature-watermark { color: rgba(0,191,98,.09);  }
.feature-section--dark  .feature-watermark { color: rgba(255,255,255,.06); }

.feature-content { position: relative; z-index: 2; }

.feature-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.feature-section--tint  .feature-eyebrow { color: var(--brand); }
.feature-section--green .feature-eyebrow { color: var(--green); }
.feature-section--dark  .feature-eyebrow { color: #9be8c4; }

.feature-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.feature-section--dark h2 { color: #fff; }

.feature-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #5b5d72;
  margin-bottom: 1.5rem;
}

.feature-section--dark .feature-lead { color: rgba(255,255,255,0.8); }

/* check-list of feature points */
.feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.feature-points li {
  font-family: 'Poppins', sans-serif;
  font-size: .98rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.feature-points li i {
  flex: none;
  margin-top: .15rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: .7rem;
  background: var(--green);
  color: #fff;
}

.feature-section--dark .feature-points li { color: rgba(255,255,255,0.9); }

/* "Coming Soon" pill — flags a feature point that isn't shipped yet */
.soon-pill {
  display: inline-block;
  vertical-align: 2px;
  font-family: 'Fredoka', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--brand);
  background: var(--brand-light);
  border: 1px solid rgba(93,23,235,.18);
  padding: .12rem .5rem;
  border-radius: 50px;
  margin-left: .3rem;
}

.feature-section--dark .soon-pill {
  color: #cdbcff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}

.btn-feature {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: var(--brand);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .58rem 1.7rem;
  display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-feature:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(85,51,245,.4);
}

.feature-section--dark .btn-feature        { background: var(--green); }
.feature-section--dark .btn-feature:hover  { background: #00a854; box-shadow: 0 8px 24px rgba(0,191,98,.45); }

/* ── Faux-UI mockup shell ── */
.fx {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(26,27,46,.16);
  padding: 1.4rem;
}

.feature-section--dark .fx { box-shadow: 0 22px 55px rgba(0,0,0,.4); }

.fx-bar {
  display: flex;
  gap: .4rem;
  margin-bottom: 1rem;
}

.fx-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}

.fx-bar span:nth-child(1) { background: #ff6b6b; }
.fx-bar span:nth-child(2) { background: #ffd93d; }
.fx-bar span:nth-child(3) { background: var(--green); }

/* mockup 1 — contact rows */
.fx-contact {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem;
  border-radius: 12px;
  margin-bottom: .55rem;
  background: #f7f6fd;
}

.fx-contact:last-child { margin-bottom: 0; }

.fx-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: .95rem;
}

.fx-contact-meta { flex: 1 1 auto; min-width: 0; }

.fx-contact-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}

.fx-contact-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  color: #9094a8;
}

.fx-tag {
  font-family: 'Fredoka', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  padding: .2rem .65rem;
  border-radius: 50px;
  background: var(--brand-light);
  color: var(--brand);
  white-space: nowrap;
}

.fx-tag--green { background: #d9f8e8; color: #00824a; }

/* mockup 2 — campaign flow steps */
.fx-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fx-step {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: .85rem 1rem;
}

.fx-step-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: var(--brand-light);
  color: var(--brand);
}

.fx-step-icon--green { background: #d9f8e8; color: var(--green); }

.fx-step-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}

.fx-step-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  color: #9094a8;
}

.fx-connector {
  width: 2px;
  height: 18px;
  background: var(--border);
  margin-left: 2.05rem;
}

/* mockup 3 — calendar grid */
.fx-cal-head {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fx-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .35rem;
}

.fx-cal-grid span {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  border-radius: 8px;
  background: #f7f6fd;
  color: #5b5d72;
}

.fx-cal-grid span.dow {
  background: none;
  color: #b4b7c9;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.fx-cal-grid span.on {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.fx-cal-grid span.on-green {
  background: var(--green);
  color: #fff;
  font-weight: 600;
}

/* mockup 4 — email preview */
.fx-email-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.fx-email-subject {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}

.fx-email-from {
  font-family: 'Poppins', sans-serif;
  font-size: .76rem;
  color: #9094a8;
}

.fx-email-banner {
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--green) 130%);
  color: #fff;
  margin-bottom: 1rem;
}

.fx-email-banner b {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: block;
}

.fx-email-banner span {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  opacity: .85;
}

.fx-line {
  height: 9px;
  border-radius: 50px;
  background: #ecebf5;
  margin-bottom: .6rem;
}

.fx-line.w-90 { width: 90%; }
.fx-line.w-70 { width: 70%; }
.fx-line.w-50 { width: 50%; }

.fx-email-btn {
  margin-top: 1rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: #fff;
  background: var(--green);
  border-radius: 50px;
  padding: .5rem 1.4rem;
  display: inline-block;
}

/* features closing CTA */
.features-cta {
  background: linear-gradient(135deg, var(--brand) 0%, #7a3df0 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.features-cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: .75rem;
}

.features-cta p {
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
}

.btn-cta-light {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  background: #fff;
  color: var(--brand) !important;
  border: none;
  border-radius: 50px;
  padding: .65rem 2rem;
  display: inline-block;
  transition: transform .15s, box-shadow .2s;
}

.btn-cta-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}

/* ════════════════════════════════════════════
   PRO PAGE — extra mockup pieces (reuse .fx shell)
   ════════════════════════════════════════════ */

/* filter / segment chip row at top of a mockup */
.fx-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .9rem;
}

.fx-filter-chip {
  font-family: 'Fredoka', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  padding: .25rem .75rem;
  border-radius: 50px;
  background: #f1eefd;
  color: var(--brand);
  border: 1px solid rgba(93,23,235,.18);
}

.fx-filter-chip--on { background: var(--brand); color: #fff; border-color: var(--brand); }
.fx-filter-chip--green { background: #d9f8e8; color: #00824a; border-color: rgba(0,191,98,.22); }

/* a big highlight number (donation total, entry count, etc.) */
.fx-stat {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: .15rem;
}

.fx-stat-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  color: #9094a8;
  margin-bottom: 1rem;
}

/* progress bar — donation goal, etc. */
.fx-progress {
  height: 12px;
  background: #ecebf5;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.fx-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--green) 100%);
  border-radius: 50px;
}

/* live "on air" pulse */
.fx-live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e84545;
  margin-bottom: 1rem;
}

.fx-live::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e84545;
  animation: nowPlayingEq 1.2s ease-in-out infinite;
}

/* show-schedule row (weekly programming grid) */
.fx-show {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .65rem .85rem;
  background: #f7f6fd;
  border-radius: 12px;
  margin-bottom: .5rem;
}

.fx-show:last-child { margin-bottom: 0; }

.fx-show-time {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--brand);
}

.fx-show-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}

.fx-show-host {
  font-family: 'Poppins', sans-serif;
  font-size: .74rem;
  color: #9094a8;
}

.fx-show--live {
  background: linear-gradient(90deg, rgba(0,191,98,.12) 0%, #f7f6fd 80%);
  border-left: 3px solid var(--green);
}

.fx-show--live .fx-show-time { color: var(--green); }

/* ════════════════════════════════════════════
   PRICING — plan comparison table
   ════════════════════════════════════════════ */
.pricing-compare {
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}

.pricing-compare-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  text-align: center;
  color: var(--text);
  margin-bottom: 2rem;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(85,51,245,.08);
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: .85rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.pricing-compare-table thead th {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  background: #f8f7ff;
  border-bottom: 3px solid var(--brand);
  color: var(--brand);
}

.pricing-compare-table thead th:first-child {
  color: var(--text);
  border-bottom-color: var(--border);
}

.pricing-compare-table thead th.is-recommended {
  border-bottom-color: var(--green);
  color: var(--green);
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Anchor every body cell to the top so the check icon in every cell
   starts at the same Y inside the row — checks stay vertically aligned
   down the column even when neighbour cells have extra note text. */
.pricing-compare-table tbody td { vertical-align: top; }
.pricing-compare-table tbody td:first-child {
  vertical-align: middle; /* feature name reads better centred */
}

.pricing-compare-group td {
  background: var(--brand-light);
  font-family: 'Fredoka', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  text-align: left !important;
}

/* Cells stack: check on top (always at the same Y), then optional
   note text, then optional SOON pill. This keeps the check column
   straight even when sibling cells carry extra copy. */
.pricing-compare-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  line-height: 1.25;
}

.pricing-compare-yes {
  color: var(--green);
  font-size: 1.05rem;
  vertical-align: middle;
}

.pricing-compare-no {
  color: #e84545; /* same red as the on-air pulse */
  font-size: 1.15rem;
  vertical-align: middle;
}

.pricing-compare-note {
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-compare-footnote {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--text-muted, #6b6b6b);
  margin-top: .9rem;
}

/* SOON pill inside a compare cell sits tighter than in feature lists */
.pricing-compare-cell .soon-pill { margin-left: 0; }

@media (max-width: 575.98px) {
  .pricing-compare-table th,
  .pricing-compare-table td { padding: .6rem .55rem; font-size: .82rem; }
  .pricing-compare-table thead th { font-size: .9rem; }
}

/* ════════════════════════════════════════════
   BLOG — index + single post
   ════════════════════════════════════════════ */

.blog-hero,
.blog-single-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg,#f8f7ff 0%,#fff 60%);
}

.blog-hero h1,
.blog-single-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}

.blog-single-hero { text-align: center; padding-bottom: 2.5rem; }
.blog-single-hero h1 { max-width: 760px; margin: 0 auto 1.25rem; }

/* index hero — text superimposed on a slightly tilted image card,
   with a "Featured" post sitting in the right column next to it.
   On lg+ both cards "fall out of grid" — hero shoves left of the
   container, featured shoves right — for a scrapbook layout. */
.blog-hero--cover {
  padding: 3rem 0 2.5rem;
  background: #fff;
  overflow-x: clip;            /* keep the off-grid edges from causing horiz. scroll */
}

.blog-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 60vh, 600px);
  margin: 0;
  padding: 3.5rem clamp(1.75rem, 4vw, 3.5rem);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(26,27,46,.28);
  transform: rotate(-2deg);
  background: var(--text);
  color: #fff;
}

.blog-hero-image-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  z-index: 1;
}

.blog-hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(26,27,46,0.88) 0%,
    rgba(26,27,46,0.62) 50%,
    rgba(26,27,46,0.25) 100%
  );
}

.blog-hero-image-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.blog-hero-image-content .hero-eyebrow {
  color: var(--green);
  margin-bottom: .75rem;
}

.blog-hero-image-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.25rem;
}

.blog-hero-image-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* tighten things on smaller screens — drop the tilt at phone so the
   rounded corners don't poke out of the viewport */
@media (max-width: 575.98px) {
  .blog-hero-image {
    transform: none;
    padding: 2.5rem 1.5rem;
    min-height: 440px;
  }
}

.blog-back {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--brand);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.75rem;
}

.blog-back:hover { color: var(--green); }

.blog-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .85rem;
}

.blog-byline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  color: #6b7280;
}

.blog-byline .blog-author { font-weight: 600; color: var(--text); }

/* ── Index ── */
.blog-section {
  position: relative;      /* anchor for scattered .listener-badge motif */
  overflow: hidden;        /* keep off-grid badges from causing horiz. scroll */
  padding: 1.5rem 0 6rem;  /* tight against the hero row above */
}

.blog-featured {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 40px rgba(85,51,245,.06);
  transition: transform .2s, box-shadow .2s, color .2s;
}

.blog-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(85,51,245,.14);
  color: inherit;
}

.blog-featured .row { min-height: 360px; }

.blog-featured-img {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 30%;
}

.blog-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.blog-featured-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.blog-excerpt {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform .2s, box-shadow .2s, color .2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(85,51,245,.12);
  color: inherit;
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1 1 auto;
}

.blog-card-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0;
  color: var(--text);
}

/* "Featured" variant used in the hero row — neutral brand-purple lift,
   matches the soft shadow used on .demo-card / .pricing-compare-table
   so it doesn't fight the green badge / green eyebrow nearby. */
.blog-card--featured {
  box-shadow:
    0 14px 36px rgba(85, 51, 245, 0.16),
    0 4px 10px rgba(26, 27, 46, 0.06);
}

.blog-card--featured:hover {
  box-shadow:
    0 22px 50px rgba(85, 51, 245, 0.24),
    0 8px 16px rgba(26, 27, 46, 0.10);
}

.blog-card--featured .blog-eyebrow { margin-bottom: 0; }

/* "fall out of grid" offsets — only on lg+ where the two cards sit side by side */
@media (min-width: 992px) {
  .blog-hero-image      { margin-left:  clamp(-7rem, -4vw, -2.5rem); }
  .blog-card--featured  { margin-right: clamp(-5rem, -3vw, -1.5rem); }
}

.blog-card-body .blog-excerpt {
  font-size: .92rem;
  margin: 0;
  flex: 1 1 auto;
}

/* ── Single post body ── */
.blog-body-section { padding: 0 0 6rem; background: #fff; }

.blog-body {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-body-hero {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 2.5rem;
  display: block;
}

.blog-body h2,
.blog-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--text);
  margin: 2rem 0 .75rem;
  line-height: 1.2;
}

.blog-body h2 { font-size: 1.85rem; }
.blog-body h3 { font-size: 1.35rem; }

.blog-body p { margin: 0 0 1.25rem; }

.blog-body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-body a:hover { color: var(--green); }

.blog-body blockquote {
  border-left: 4px solid var(--brand);
  background: var(--brand-light);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 14px 14px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brand-dark);
}

/* in-body images — default, then the float utilities text wraps around */
.blog-body img,
.blog-body figure {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.25rem 0;
}

.blog-body img.float-left,
.blog-body figure.float-left,
.blog-body .blog-img-left {
  float: left;
  max-width: 45%;
  margin: .25rem 1.75rem 1rem 0;
  clear: left;
}

.blog-body img.float-right,
.blog-body figure.float-right,
.blog-body .blog-img-right {
  float: right;
  max-width: 45%;
  margin: .25rem 0 1rem 1.75rem;
  clear: right;
}

/* clear floats at the end of the article so the next section starts clean */
.blog-body::after { content: ''; display: block; clear: both; }

/* size presets set by the editor's alignment panel — override the
   default float max-width so authors can pick a smaller/larger image. */
.blog-body figure.size-s, .blog-body img.size-s { max-width: 25%; }
.blog-body figure.size-m, .blog-body img.size-m { max-width: 50%; }
.blog-body figure.size-l, .blog-body img.size-l { max-width: 100%; }

/* on narrow screens, drop the floats AND the size caps — text wrapping
   at 320px reads badly, and a 25% image is microscopic on a phone. */
@media (max-width: 575.98px) {
  .blog-body img.float-left,
  .blog-body img.float-right,
  .blog-body figure.float-left,
  .blog-body figure.float-right,
  .blog-body .blog-img-left,
  .blog-body .blog-img-right,
  .blog-body figure.size-s,
  .blog-body figure.size-m,
  .blog-body img.size-s,
  .blog-body img.size-m {
    float: none;
    max-width: 100%;
    margin: 1.25rem 0;
  }
}

/* ════════════════════════════════════════════
   FAQ CAROUSEL
   ════════════════════════════════════════════ */
.faq-carousel {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 6rem;   /* room for the side arrows + breathing space */
}

/* stack every slide in one grid cell so the carousel height never changes
   (otherwise the side arrows, anchored at top:50%, hop between questions) */
.faq-carousel .carousel-inner {
  display: grid;
  overflow: visible;   /* let the card's soft shadow breathe; Bootstrap clips it square otherwise */
}

.faq-carousel .carousel-item {
  display: block;
  grid-area: 1 / 1;          /* all slides share the same cell */
  transform: none !important; /* kill Bootstrap's slide translate */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.faq-carousel .carousel-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.faq-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.75rem;
  border: 5px solid var(--brand);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);   /* soft, matches listener badge */
}

.faq-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}

.faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--brand);
  margin-bottom: 1rem;
}

.faq-a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  flex: 1 1 auto;
  margin-bottom: 1.25rem;
}

.faq-more {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  align-self: flex-start;
  transition: gap .15s, color .15s;
}

.faq-more:hover {
  color: var(--green);
  gap: .55rem;
}

/* side arrows */
.faq-ctrl {
  width: 3.75rem;
  height: 3.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}

.faq-ctrl.carousel-control-prev { left: 0; }
.faq-ctrl.carousel-control-next { right: 0; }

/* keep the chevron visible in every state (Bootstrap dims controls on focus) */
.faq-ctrl,
.faq-ctrl:focus,
.faq-ctrl:focus-visible,
.faq-ctrl:active {
  opacity: 1;
  outline: none;
  background: #fff;
  color: var(--green);
}

.faq-ctrl:hover {
  background: var(--green);
  color: #fff;
}

.faq-ctrl svg { display: block; color: inherit; width: 24px; height: 24px; }

/* indicator dots */
.faq-dots {
  position: static;
  margin: 1.75rem 0 0;
}

.faq-dots [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(93,23,235,.25);
  opacity: 1;
  transition: background .18s, transform .18s;
}

.faq-dots [data-bs-target].active {
  background: var(--green);
  transform: scale(1.2);
}

@media (max-width: 575.98px) {
  .faq-carousel { padding: 0 3.5rem; }
  .faq-card     { padding: 1.75rem; }
  .faq-ctrl     { width: 3rem; height: 3rem; }
  .faq-ctrl svg { width: 20px; height: 20px; }
}

/* ──────────────────────────────────────────────
   STATUS PAGE
   ────────────────────────────────────────────── */
.status-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

.status-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
}

.status-hero .container {
  text-align: center;
}

.status-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 1.05;
  color: var(--green);
  margin: 0;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.status-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: clamp(.85rem, 1.4vw, 1.1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 1.5rem 0 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

