:root {
  color-scheme: light;
  --bg: #070a12;
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.78);
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --primary: #7dd3fc;
  --primary2: #a7f3d0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --container: 1100px;
  /* FAQ → Blog → Podcast → Thank-you vertical flow (anchors for seamless stacking) */
  --flow-qna-slide: #12243f;
  /** Blog strip: deliberately different from FAQ (warmer violet–teal corridor) */
  --flow-blog-start: #12101c;
  --flow-blog-ink: #080f1c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  overflow-x: clip;
  max-width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

main img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 50% -10%, rgba(125, 211, 252, 0.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(167, 243, 208, 0.14), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(7, 10, 18, 0.78), rgba(7, 10, 18, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 0;
  position: relative;
}

.brand {
  font-weight: 750;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.92);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 2px;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 0.85rem;
}

.nav__link {
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: rgba(234, 240, 255, 0.88);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero__ctaFast__link.podcast-link,
.blog-topicNav__link.podcast-link {
  gap: 0.38rem;
}

.podcast-playIcon {
  flex-shrink: 0;
  opacity: 0.94;
}

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: grid;
  align-items: center;
  overflow: clip;
}

@media (max-width: 640px) {
  .hero {
    /* Shorter banner: height follows content (no full-viewport min) */
    min-height: 0;
    align-items: stretch;
    padding-top: 0.35rem;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0));
  }

  .hero__img {
    height: 100%;
    object-position: center 32%;
    transform: translate3d(0, var(--parallaxY, 0px), 0) scale(1.01);
  }

  .hero__content {
    padding: clamp(0.65rem, 2.5vh, 1.1rem) 0 clamp(0.65rem, 2.5vh, 1.1rem);
  }

  .hero__eyebrow {
    font-size: 0.8rem;
    margin: 0 0 0.55rem;
    padding: 0.28rem 0.5rem;
  }

  .hero__title {
    font-size: clamp(1.5rem, 6.8vw, 2.2rem);
    line-height: 1.07;
  }

  .hero__subtitle {
    margin: 0.55rem 0 0.75rem;
    font-size: clamp(0.92rem, 3.6vw, 1.08rem);
  }

  .hero__cta {
    gap: 0.55rem;
    margin-bottom: 0.75rem;
    width: 100%;
  }

  /* Primary row: one full-width control after another */
  .hero__ctaRow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.5rem;
  }

  .hero__ctaRow > .button,
  .hero__ctaRow > .hero__campaignVideoBtn {
    width: 100%;
    max-width: none;
    justify-content: center;
    text-align: center;
  }

  .hero__campaignVideoBtn {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.35rem;
    font-size: clamp(0.72rem, 1.95vw, 0.81rem);
    font-weight: 650;
    letter-spacing: 0.03em;
  }

  .hero__campaignVideoIcon {
    display: none;
  }

  .hero__campaignVideoText {
    justify-content: center;
    text-align: center;
  }

  .hero__campaignVideoLabel {
    font-weight: 650;
  }

  .hero__campaignVideoName {
    font-size: clamp(0.72rem, 1.95vw, 0.81rem);
    font-weight: 650;
  }

  /* Jump links: vertical list (same order as markup) */
  .hero__ctaFast__inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.45rem;
    overflow-x: visible;
    padding-bottom: 0;
    padding-inline-end: 0;
    margin-inline: 0;
  }

  .hero__ctaFast__link {
    width: 100%;
    flex: 0 0 auto;
    justify-content: center;
    white-space: normal;
    text-align: center;
    min-height: 40px;
    padding: 0.45rem 0.85rem;
  }

  .hero__stats {
    gap: 0.5rem;
  }

  .hero__stat {
    padding: 0.6rem 0.7rem;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform: translate3d(0, var(--parallaxY, 0px), 0) scale(1.03);
  will-change: transform;
  filter: saturate(1.05) contrast(1.05);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 22% 45%, rgba(7, 10, 18, 0.22), rgba(7, 10, 18, 0.7) 55%, rgba(7, 10, 18, 0.9)),
    linear-gradient(to bottom, rgba(7, 10, 18, 0.15), rgba(7, 10, 18, 0.9));
}

.hero__content {
  padding: clamp(5rem, 10vh, 8rem) 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem;
  margin: 0 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.92);
  font-size: 0.95rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 18px 65px rgba(0, 0, 0, 0.55);
}

.hero__subtitle {
  margin: 1rem 0 1.6rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  max-width: 58ch;
  color: var(--muted);
}

.hero__campaignVideoBtn {
  min-height: 44px;
  height: auto;
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
  text-align: left;
}

.hero__campaignVideoIcon {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero__campaignVideoText {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.45rem;
}

.hero__campaignVideoLabel {
  font-weight: 750;
  color: rgba(234, 240, 255, 0.98);
}

.hero__campaignVideoSep {
  opacity: 0.45;
}

.hero__campaignVideoName {
  font-weight: 600;
  max-width: 36ch;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.hero__ctaRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero__ctaFast {
  width: 100%;
  max-width: min(100%, 920px);
}

.hero__ctaFast__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.hero__ctaFast__link {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.82rem;
  min-height: 34px;
  border-radius: 999px;
  font-size: clamp(0.72rem, 1.95vw, 0.81rem);
  font-weight: 650;
  letter-spacing: 0.03em;
  color: rgba(234, 240, 255, 0.92);
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(125, 211, 252, 0.07);
  white-space: nowrap;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.hero__ctaFast__link:hover {
  border-color: rgba(167, 243, 208, 0.45);
  background: rgba(167, 243, 208, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.hero__ctaFast__link:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 2px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.button:hover {
  background: rgba(255, 255, 255, 0.09);
}

.button--primary {
  border-color: rgba(125, 211, 252, 0.55);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.35), rgba(167, 243, 208, 0.22));
}

.button--primary:hover {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.42), rgba(167, 243, 208, 0.26));
}

.button--ghost {
  background: rgba(7, 10, 18, 0.18);
}

/* Same typographic rhythm as Jump to sections pills (Q&A, Blog) */
#hero-open-ch-helplines.button.button--ghost {
  font-size: clamp(0.72rem, 1.95vw, 0.81rem);
  font-weight: 650;
  letter-spacing: 0.03em;
  height: auto;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 680px;
}

.hero__stat {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

/* Social media awareness campaign (hero video modal) */
.awareness-video-dialog {
  max-width: min(1180px, calc(100vw - 1.5rem));
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.awareness-video-dialog::backdrop {
  background: rgba(7, 10, 18, 0.78);
  backdrop-filter: blur(8px);
}

.awareness-video-dialog__inner {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 26, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 940px);
}

.awareness-video-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.awareness-video-dialog__title {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.awareness-video-dialog__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.92);
  cursor: pointer;
}

.awareness-video-dialog__close:hover {
  background: rgba(255, 255, 255, 0.11);
}

.awareness-video-dialog__body {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.12fr);
  gap: 0;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.awareness-video-dialog__media {
  background: #05070d;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.awareness-video-dialog__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(76vh, 820px);
  object-fit: contain;
}

.awareness-video-dialog__video:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: -2px;
}

.awareness-video-dialog__copy {
  padding: clamp(0.85rem, 2vw, 1.35rem);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  font-size: 0.9rem;
  line-height: 1.52;
  color: rgba(234, 240, 255, 0.85);
}

.awareness-video-dialog__copy p {
  margin: 0 0 0.95rem;
}

.awareness-video-dialog__copy p:last-child {
  margin-bottom: 0;
}

.awareness-video-dialog__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(125, 211, 252, 0.88);
  margin-bottom: 0.35rem !important;
}

.awareness-video-dialog__campaignTitle {
  margin: 0 0 1rem !important;
  font-size: 1.12rem;
  font-weight: 800;
  color: rgba(244, 247, 255, 0.96);
  line-height: 1.25;
}

.awareness-video-dialog__lede {
  font-size: 0.95rem;
  color: rgba(234, 240, 255, 0.92);
}

.awareness-video-dialog__questions {
  margin: 0.5rem 0 1.1rem;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  color: rgba(234, 240, 255, 0.82);
}

.awareness-video-dialog__questions li {
  margin-bottom: 0.55rem;
  padding-left: 0.2rem;
}

.awareness-video-dialog__questions li:last-child {
  margin-bottom: 0;
}

.awareness-video-dialog__rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0 1rem;
}

.awareness-video-dialog__subsection {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  font-weight: 780;
  color: rgba(244, 247, 255, 0.95);
  line-height: 1.35;
}

.awareness-video-dialog__steps {
  margin: 0 0 0.85rem;
}

.awareness-video-dialog__device {
  margin-bottom: 1rem;
}

.awareness-video-dialog__device:last-child {
  margin-bottom: 0;
}

.awareness-video-dialog__deviceTitle {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
  font-weight: 750;
  color: rgba(125, 211, 252, 0.95);
}

.awareness-video-dialog__path {
  font-size: 0.86rem;
  margin-bottom: 0.45rem !important;
  color: rgba(234, 240, 255, 0.88);
}

.awareness-video-dialog__tip {
  margin-top: 0.75rem !important;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(125, 211, 252, 0.07);
  font-size: 0.86rem;
  line-height: 1.48;
  color: rgba(234, 240, 255, 0.88);
}

.awareness-video-dialog__tipLead {
  margin-right: 0.25rem;
}

@media (max-width: 900px) {
  .awareness-video-dialog__body {
    grid-template-columns: 1fr;
  }

  .awareness-video-dialog__media {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: min(42vh, 360px);
  }

  .awareness-video-dialog__video {
    max-height: min(42vh, 360px);
  }

  .awareness-video-dialog__copy {
    max-height: min(48vh, 480px);
  }

  .awareness-video-dialog__inner {
    max-height: 94vh;
  }
}

/* Swiss helpline list (hero “Talk to someone”) */
.helplines-dialog {
  max-width: min(580px, calc(100vw - 1.5rem));
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.helplines-dialog::backdrop {
  background: rgba(7, 10, 18, 0.78);
  backdrop-filter: blur(8px);
}

.helplines-dialog__inner {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 26, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 720px);
}

.helplines-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.helplines-dialog__title {
  margin: 0;
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.helplines-dialog__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.92);
  cursor: pointer;
}

.helplines-dialog__close:hover {
  background: rgba(255, 255, 255, 0.11);
}

.helplines-dialog__close:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 2px;
}

.helplines-dialog__body {
  padding: 1rem 1.1rem 1.15rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(234, 240, 255, 0.86);
}

.helplines-dialog__lede {
  margin: 0 0 1rem;
}

.helplines-dialog__subheading {
  margin: 1.15rem 0 0.5rem;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.9);
}

.helplines-dialog__body .helplines-dialog__subheading:first-of-type {
  margin-top: 0;
}

.helplines-dialog__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.helplines-dialog__list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.helplines-dialog__list li:last-child {
  border-bottom: none;
}

.helplines-dialog__tel {
  color: rgba(125, 211, 252, 0.98);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  font-variant-numeric: tabular-nums;
}

.helplines-dialog__tel:hover {
  color: rgba(167, 243, 208, 0.98);
}

.helplines-dialog__tel strong {
  font-weight: 800;
  font-size: 1.02rem;
}

.helplines-dialog__meta {
  display: inline-block;
  margin-left: 0.25rem;
}

.helplines-dialog__meta a {
  color: rgba(167, 243, 208, 0.9);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.helplines-dialog__footnote {
  margin: 1.05rem 0 0;
  font-size: 0.82rem;
  line-height: 1.52;
  color: rgba(234, 240, 255, 0.58);
}

.hero__statNumber {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.hero__statLabel {
  display: block;
  color: rgba(234, 240, 255, 0.75);
  font-size: 0.92rem;
  margin-top: 0.25rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.6rem;
  margin: 0 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.86);
  font-size: 0.92rem;
}

.section__title {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.section__lede {
  margin: 0 0 1.5rem;
  max-width: 68ch;
  color: var(--muted);
}

.section--themes {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.themes-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
}

.themes-pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(234, 240, 255, 0.88);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.themes-pill--active {
  border-color: rgba(125, 211, 252, 0.45);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.28), rgba(167, 243, 208, 0.18));
  color: rgba(248, 250, 252, 0.98);
}

.themes-pill:focus-visible {
  outline: 2px solid rgba(167, 243, 208, 0.55);
  outline-offset: 2px;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.theme-card {
  text-align: left;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 22, 32, 0.55);
  padding: 1rem 1rem 0.85rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.theme-card:focus-visible {
  outline: 2px solid rgba(167, 243, 208, 0.55);
  outline-offset: 3px;
}

.theme-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 70px rgba(0, 0, 0, 0.35);
}

.theme-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.theme-card__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.theme-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.theme-card--societal {
  background-image:
    linear-gradient(135deg, rgba(96, 165, 250, 0.1), transparent 52%),
    linear-gradient(rgba(18, 22, 32, 0.88), rgba(18, 22, 32, 0.88));
}

.theme-card--crises {
  background-image:
    linear-gradient(135deg, rgba(52, 211, 153, 0.09), transparent 54%),
    linear-gradient(rgba(18, 22, 32, 0.88), rgba(18, 22, 32, 0.88));
}

.theme-card--performance {
  background-image:
    linear-gradient(135deg, rgba(251, 113, 133, 0.09), transparent 54%),
    linear-gradient(rgba(18, 22, 32, 0.88), rgba(18, 22, 32, 0.88));
}

.theme-card__mark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.theme-card__mark-btn {
  appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.theme-card__mark-btn:focus-visible {
  outline: 2px solid rgba(167, 243, 208, 0.55);
  outline-offset: 2px;
}

.theme-card__mark-btn[aria-pressed="true"] {
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(125, 211, 252, 0.1);
}

.theme-card__title {
  margin: 0.85rem 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(248, 250, 252, 0.96);
}

.theme-card__desc {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.theme-card__cta {
  margin-top: 1rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(226, 232, 240, 0.86);
  font-weight: 650;
  font-size: 0.9rem;
}

.theme-card__infoMark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 900;
  font-size: 0.78rem;
  color: rgba(125, 211, 252, 0.95);
  line-height: 1;
}

body[data-modal-open="true"] {
  overflow: hidden;
}

.topic-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.topic-modal[hidden] {
  display: none;
}

.topic-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(10px);
}

.topic-modal__dialog {
  position: relative;
  width: min(960px, calc(100vw - 2rem));
  max-height: min(86vh, 900px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(14, 18, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.topic-modal__hero {
  padding: 1rem 1.1rem 1rem;
  background:
    radial-gradient(900px 220px at 18% 0%, rgba(96, 165, 250, 0.22), transparent 60%),
    radial-gradient(820px 200px at 92% 30%, rgba(52, 211, 153, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(18, 22, 32, 0.95), rgba(12, 16, 26, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topic-modal__heroTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.topic-modal__brandIcon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.45), rgba(167, 243, 208, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.topic-modal__heroActions {
  display: flex;
  gap: 0.5rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  color: rgba(234, 240, 255, 0.92);
}

.icon-btn[data-pressed="true"] {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(125, 211, 252, 0.12);
  box-shadow: 0 0 0 1px rgba(167, 243, 208, 0.15);
}

.topic-modal__title {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  color: rgba(248, 250, 252, 0.96);
}

.topic-modal__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.85rem;
  font-weight: 650;
}

.topic-modal__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: rgba(7, 10, 18, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topic-tab {
  border: none;
  background: transparent;
  padding: 0.75rem 0.65rem;
  font: inherit;
  font-weight: 700;
  color: rgba(148, 163, 184, 0.9);
  cursor: pointer;
}

.topic-tab--active {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.96);
  box-shadow: inset 0 -2px 0 rgba(125, 211, 252, 0.55);
}

.topic-modal__body {
  padding: 1rem 1.1rem 1.1rem;
  overflow: auto;
  background: rgba(10, 13, 22, 0.55);
}

.topic-quote {
  margin: 0 0 1rem;
  padding: 0.95rem 0.95rem 0.95rem 1rem;
  border-left: 4px solid rgba(125, 211, 252, 0.55);
  background: rgba(125, 211, 252, 0.08);
  border-radius: 12px;
  color: rgba(226, 232, 240, 0.9);
  font-style: italic;
}

.topic-rich {
  color: rgba(234, 240, 255, 0.88);
}

.topic-rich h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.02rem;
  color: rgba(248, 250, 252, 0.95);
}

.topic-rich ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.topic-rich li {
  margin: 0.35rem 0;
}

.topic-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 18, 0.55);
}

.topic-modal__meta {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

.topic-modal__footerActions {
  display: flex;
  gap: 0.5rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: rgba(234, 240, 255, 0.92);
}

.btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

.btn--ghost {
  background: rgba(7, 10, 18, 0.18);
}

.btn--primary {
  border-color: rgba(125, 211, 252, 0.45);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.32), rgba(167, 243, 208, 0.2));
  color: rgba(248, 250, 252, 0.98);
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.4), rgba(167, 243, 208, 0.26));
}

.btn--sm {
  padding: 0.42rem 0.85rem;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card--accent-a {
  background:
    radial-gradient(900px 260px at 18% 15%, rgba(96, 165, 250, 0.14), transparent 60%),
    radial-gradient(820px 280px at 85% 90%, rgba(52, 211, 153, 0.1), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
}

.card--accent-b {
  background:
    radial-gradient(920px 300px at 20% 20%, rgba(52, 211, 153, 0.14), transparent 62%),
    radial-gradient(820px 280px at 88% 88%, rgba(196, 181, 253, 0.1), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
}

.card--accent-c {
  background:
    radial-gradient(920px 300px at 18% 18%, rgba(251, 113, 133, 0.14), transparent 62%),
    radial-gradient(820px 280px at 88% 88%, rgba(253, 186, 116, 0.1), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
}

.card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.card__subtitle {
  margin: 0 0 0.75rem;
  color: rgba(234, 240, 255, 0.78);
  font-size: 0.95rem;
  display: inline-block;
  transform-origin: left center;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    color 380ms ease,
    text-shadow 380ms ease;
}

.card__subtitle--twoline {
  display: block;
  line-height: 1.42;
}

.card__body {
  margin: 0;
  color: rgba(234, 240, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.6;
}

.community-waBtns {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.community-waCta {
  padding: 1rem 1.05rem clamp(1.05rem, 2.8vw, 1.35rem);
  border-radius: 14px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(5, 8, 14, 0.58);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 42px rgba(0, 0, 0, 0.28);
}

.card--accent-b .community-waCta {
  border-color: rgba(167, 243, 208, 0.28);
}

.community-waCta--detox {
  border-color: rgba(253, 186, 116, 0.25);
}

.community-waCta__meta {
  margin: 0 0 0.8rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.88);
}

.card--accent-b .community-waCta__meta {
  color: rgba(167, 243, 208, 0.9);
}

.community-waCta--detox .community-waCta__meta {
  color: rgba(253, 186, 116, 0.88);
}

.community-waCta .community-waBtns {
  margin-top: 0;
}

.community-waBtns--cta {
  flex-direction: column;
  align-items: stretch;
}

.community-waBtns--single .community-waBtn {
  width: 100%;
  justify-content: center;
}

.community-waBtns .button {
  min-height: 40px;
  height: auto;
  padding: 0.42rem 0.95rem;
  font-size: 0.87rem;
  font-weight: 650;
}

.button--whatsapp {
  border-color: rgba(37, 211, 102, 0.42);
  background: rgba(37, 211, 102, 0.09);
  color: rgba(234, 240, 255, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.button--whatsapp:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.55);
}

.community-waNew {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem;
  padding: 0.12rem 0.42rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: 6px;
  color: rgba(17, 24, 14, 0.95);
  background: rgba(253, 230, 138, 0.95);
  border: 1px solid rgba(250, 204, 21, 0.65);
}

.button--whatsapp:hover .community-waNew {
  background: rgba(254, 240, 138, 0.98);
}

.card__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.88);
}

.global-shapers-card .card__kicker {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(125, 211, 252, 0.95);
}

.community-cardRich + .community-waCta {
  margin-top: 1.05rem;
}

.digital-detox-hook {
  margin: 0 0 0.95rem;
  font-size: 0.93rem;
  font-weight: 650;
  color: rgba(234, 240, 255, 0.88);
}

.community-cardMedia {
  margin: 0 0 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 8, 14, 0.45);
}

.community-cardImg {
  display: block;
  width: 100%;
  height: clamp(150px, 24vw, 210px);
  object-fit: cover;
  object-position: center;
}

.community-cardRich {
  margin: 0;
  color: rgba(234, 240, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.6;
}

.community-cardRich > p {
  margin: 0;
}

.community-cardRich > p + p {
  margin-top: 0.85rem;
}

.digital-detox-close {
  margin-bottom: 0 !important;
}

.digital-detox-emoji {
  margin-left: 0.25rem;
  white-space: nowrap;
}

/* -- FAQ (after Community initiatives) -- */
.faq {
  scroll-margin-top: 80px;
}

/* Layered blues + cool accents-flows into Blog without a harsh seam */
.faq.section--alt {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(ellipse 100% 58% at 10% 22%, rgba(56, 189, 248, 0.16), transparent 58%),
    radial-gradient(ellipse 85% 52% at 92% 12%, rgba(129, 140, 248, 0.13), transparent 56%),
    radial-gradient(ellipse 72% 48% at 52% 98%, rgba(167, 243, 208, 0.1), transparent 54%),
    linear-gradient(
      168deg,
      #040810 0%,
      #081222 34%,
      #0f1e3a 64%,
      var(--flow-qna-slide) 100%
    );
  border-top-color: rgba(125, 211, 252, 0.16);
  border-bottom: none;
}

.faq .section__tag {
  border-color: rgba(125, 211, 252, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(56, 189, 248, 0.08));
}

.faq .section__lede.faq__lede {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.faq__list {
  max-width: 72ch;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.074);
}

.faq__item:nth-child(odd) {
  border-bottom-color: rgba(125, 211, 252, 0.1);
}

.faq__item:nth-child(even) {
  border-bottom-color: rgba(167, 243, 208, 0.09);
}

.faq__item:first-of-type {
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.faq__q {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  margin: 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.02rem, 2.1vw, 1.12rem);
  font-weight: 650;
  color: rgba(234, 240, 255, 0.96);
  line-height: 1.42;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "";
  flex: 0 0 auto;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.38rem;
  border-right: 2px solid rgba(234, 240, 255, 0.5);
  border-bottom: 2px solid rgba(234, 240, 255, 0.5);
  transform: rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.faq__item[open] .faq__q::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
  border-color: rgba(125, 211, 252, 0.75);
}

.faq__q:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq__a {
  padding: 0 0 1.15rem;
  margin: 0;
  color: rgba(234, 240, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.62;
}

.faq__a p {
  margin: 0;
}

.faq__a p + p {
  margin-top: 0.85rem;
}

.faq__a a {
  color: rgba(125, 211, 252, 0.94);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq__a a:hover {
  color: rgba(167, 243, 208, 0.95);
}

@media (prefers-reduced-motion: reduce) {
  .faq__q::after {
    transition: none;
  }
}

/* -- Blog (long-form article) -- */
.blog-post-section {
  scroll-margin-top: 80px;
}

/* Own palette vs FAQ: plum base + teal/amber washes (not cyan-forward like Q&A) */
.blog-post-section.section--alt {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(ellipse 105% 60% at 12% 18%, rgba(167, 243, 208, 0.09), transparent 58%),
    radial-gradient(ellipse 88% 52% at 92% 30%, rgba(251, 191, 36, 0.09), transparent 56%),
    radial-gradient(ellipse 72% 45% at 52% -8%, rgba(139, 92, 246, 0.1), transparent 55%),
    linear-gradient(
      195deg,
      var(--flow-blog-start) 0%,
      #151832 42%,
      #0f1a2e 70%,
      var(--flow-blog-ink) 100%
    );
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom-color: rgba(253, 186, 116, 0.1);
}

.blog-post-section .section__tag {
  border-color: rgba(167, 243, 208, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(167, 243, 208, 0.07));
}

.blog-post-section__inner {
  max-width: 900px;
  margin-inline: auto;
}

.blog-feed {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.blog-feed .blog-post {
  margin-bottom: 0;
  scroll-margin-top: 92px;
}

.blog-post-section__intro {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.blog-post-section__introTop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-bottom: 0.55rem;
}

.blog-post-section__introTop .section__tag {
  margin: 0;
}

.blog-post-section__podcastBtn {
  height: auto;
  min-height: 38px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
}

.blog-post-section__lede {
  margin-inline: auto;
}

.blog-post-section .section__title {
  margin-bottom: 0.65rem;
}

.blog-topicNav {
  margin: 0 auto clamp(1.5rem, 4vw, 2.4rem);
  max-width: 56rem;
  padding-bottom: clamp(1rem, 3vw, 1.35rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

.blog-topicNav__label {
  margin: 0 0 0.8rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.52);
}

.blog-topicNav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-topicNav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.38rem 0.96rem;
  border-radius: 999px;
  font-size: 0.852rem;
  font-weight: 650;
  line-height: 1.25;
  color: rgba(234, 240, 255, 0.94);
  border: 1px solid rgba(125, 211, 252, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(56, 189, 248, 0.07));
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.blog-topicNav__link:hover {
  border-color: rgba(167, 243, 208, 0.48);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(167, 243, 208, 0.11));
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.blog-topicNav__link:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.65);
  outline-offset: 3px;
}

.blog-post {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: clip;
}

.blog-post__header {
  padding: clamp(1.25rem, 4vw, 1.85rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.25rem, 3.2vw, 1.45rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(234, 240, 255, 0.98);
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blog-post__avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(125, 211, 252, 0.25);
}

.blog-post__byline {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.blog-post__author {
  font-weight: 680;
  color: rgba(234, 240, 255, 0.95);
}

.blog-post__metaLine {
  font-size: 0.9rem;
  color: rgba(234, 240, 255, 0.62);
}

.blog-post__dot {
  padding: 0 0.35rem;
  opacity: 0.85;
}

.blog-post__body {
  padding: clamp(1.25rem, 4vw, 2rem);
  color: rgba(234, 240, 255, 0.86);
  font-size: 0.97rem;
  line-height: 1.62;
}

.blog-post__body > p:last-child {
  margin-bottom: 0;
}

.blog-post__h {
  margin: 1.75rem 0 0.75rem;
  font-size: clamp(1.05rem, 2vw, 1.12rem);
  font-weight: 720;
  color: rgba(234, 240, 255, 0.96);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.blog-post__h:first-child {
  margin-top: 0;
}

.blog-post__subh {
  margin: 1.35rem 0 0.5rem;
  font-size: 1rem;
  color: rgba(234, 240, 255, 0.92);
}

.blog-post__listLead {
  margin: 1.15rem 0 0.5rem;
}

.blog-post__list {
  margin: 0.5rem 0 1.1rem;
  padding-left: 1.35rem;
  color: rgba(234, 240, 255, 0.84);
}

.blog-post__list li + li {
  margin-top: 0.5rem;
}

.blog-post__list--plain {
  list-style: disc;
}

.blog-post__body p {
  margin: 0 0 0.95rem;
}

.blog-post__source {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(234, 240, 255, 0.55);
}

.blog-post__source cite {
  font-style: normal;
}

.blog-post__ctaWrap {
  margin: 1.5rem 0 0 !important;
}

.blog-post__cta.blog-post__cta {
  min-height: 46px;
  font-weight: 650;
}

.blog-post__pullquote {
  margin: 1rem 0 1.1rem;
  padding: 0.85rem 0 0.85rem 1.05rem;
  border-left: 3px solid rgba(125, 211, 252, 0.42);
}

.blog-post__pullquote p {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 450;
  line-height: 1.55;
  color: rgba(234, 240, 255, 0.92);
}

.blog-post__pullquote--muted {
  border-left-color: rgba(167, 243, 208, 0.32);
}

.blog-post__pullquote + p,
p + .blog-post__pullquote {
  margin-top: 0;
}

.blog-post__kicker {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: rgba(234, 240, 255, 0.68);
}

.blog-post__kicker em {
  font-style: italic;
  font-weight: 550;
}

/* -- Podcast (audio episode) -- */
.podcast-section {
  scroll-margin-top: 80px;
}

.podcast-section.section--alt {
  position: relative;
  isolation: isolate;
  background: linear-gradient(185deg, var(--flow-blog-ink) 0%, #0b1224 48%, #080f1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.podcast-section .section__tag {
  border-color: rgba(251, 191, 36, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(251, 191, 36, 0.08));
}

.podcast-section__inner {
  max-width: min(720px, 100%);
  margin-inline: auto;
  text-align: center;
}

.podcast-section .section__title {
  max-width: 38rem;
  margin-inline: auto;
  line-height: 1.22;
  text-wrap: balance;
}

.podcast-section__lede {
  margin-inline: auto;
}

.podcast-section__disclaimer {
  margin: -0.35rem auto 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.45;
  font-style: italic;
  color: rgba(234, 240, 255, 0.62);
}

.podcast-section__player {
  margin-top: clamp(1rem, 3vw, 1.5rem);
}

.podcast-section__audio {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* -- Thank you (closing) -- */
.thank-you {
  scroll-margin-top: 80px;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.5rem, 9vw, 6rem);
  border-top: none;
  background:
    radial-gradient(ellipse 125% 55% at 50% -18%, rgba(125, 211, 252, 0.13), transparent 58%),
    linear-gradient(195deg, var(--flow-blog-ink) 0%, #060912 52%, var(--bg) 100%);
}

.thank-you__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: min(1200px, 100%);
}

.thank-you__title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  color: rgba(234, 240, 255, 0.98);
}

.thank-you__text {
  margin: 0;
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.62;
  color: rgba(234, 240, 255, 0.82);
}

.thank-you__cta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
  max-width: min(56rem, 100%);
}

.thank-you__figure {
  margin: 0;
  padding: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.thank-you__img {
  display: block;
  width: 100%;
  height: auto;
}

/* -- Mood map (live pins, after thank-you) -- */
.mood-map-section {
  scroll-margin-top: 80px;
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(3.5rem, 9vw, 5rem);
  border-top: 1px solid rgba(125, 211, 252, 0.12);
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    linear-gradient(185deg, #070a12 0%, #0c1428 55%, #070a12 100%);
}

.mood-map-section .section__tag {
  border-color: rgba(125, 211, 252, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(56, 189, 248, 0.1));
}

.mood-map-section__inner {
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

.mood-map-section__intro {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.mood-map-section__lede {
  margin-inline: auto;
  max-width: 52ch;
}

.mood-map-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  /* start: avoid stretching the map shell to the form height (that left a grey band under the map). */
  align-items: start;
}

@media (max-width: 900px) {
  .mood-map-section__grid {
    grid-template-columns: 1fr;
  }
}

.mood-map-card {
  position: relative;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mood-map-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  color: rgba(234, 240, 255, 0.95);
}

.mood-map-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mood-map-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.55);
}

.mood-map-input {
  width: 100%;
  height: 44px;
  padding: 0 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.45);
  color: var(--text);
  font-size: 1rem;
}

.mood-map-input:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 2px;
}

.mood-map-emojiMessageRow {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.15rem;
}

@media (min-width: 36rem) {
  .mood-map-emojiMessageRow {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    align-items: start;
  }
}

.mood-map-field--message {
  margin: 0;
}

.mood-map-textarea {
  display: block;
  width: 100%;
  min-height: 5.5rem;
  resize: vertical;
  line-height: 1.4;
}

.mood-map-emojiField {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.mood-map-emojiRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.mood-map-emoji {
  flex: 1 1 auto;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 18, 0.35);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.mood-map-emoji:hover {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(125, 211, 252, 0.1);
}

.mood-map-emoji[aria-pressed="true"] {
  border-color: rgba(167, 243, 208, 0.65);
  background: rgba(167, 243, 208, 0.14);
  transform: translateY(-1px);
}

.mood-map-emoji:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 2px;
}

.mood-map-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mood-map-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.mood-map-mapShell {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow);
  width: 100%;
  /* Hug the map only — min-height here duplicated the tile height and left a grey band under Leaflet. */
  height: fit-content;
  background: #dfe8f2;
}

.mood-map-canvas {
  display: block;
  line-height: 0;
  width: 100%;
  height: clamp(280px, 52vw, 420px);
  margin: 0;
  padding: 0;
  z-index: 0;
}

.mood-map-canvas .leaflet-container {
  font-family: inherit;
  background: #e8eef5;
}

.mood-map-canvas .leaflet-control-attribution {
  display: none !important;
}

.mood-map-marker {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  background: rgba(8, 12, 24, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mood-map-marker__emoji {
  font-size: 1.35rem;
  line-height: 1;
}

.mood-map-popup {
  font-size: 0.88rem;
  color: #0b1224;
  min-width: min(280px, 86vw);
  max-width: min(340px, 92vw);
}

.mood-map-popup__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-weight: 600;
}

.mood-map-popup__emoji {
  font-size: 1.35rem;
  line-height: 1;
}

.mood-map-popup__place {
  font-weight: 500;
}

.mood-map-popup__when {
  font-size: 0.78rem;
  color: rgba(11, 18, 36, 0.65);
  margin: 0.2rem 0 0.35rem;
}

.mood-map-popup__msg {
  margin: 0.35rem 0 0.5rem;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.45;
}

.mood-map-popup__msgNone {
  color: rgba(11, 18, 36, 0.45);
  font-style: italic;
}

.mood-map-popup__threadLabel {
  margin: 0.35rem 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(11, 18, 36, 0.55);
}

.mood-map-popup__thread {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  max-height: 11rem;
  overflow: auto;
  border: 1px solid rgba(11, 18, 36, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}

.mood-map-popup__threadItem {
  padding: 0.45rem 0.55rem;
  border-bottom: 1px solid rgba(11, 18, 36, 0.06);
  font-size: 0.82rem;
}

.mood-map-popup__threadItem:last-child {
  border-bottom: 0;
}

.mood-map-popup__threadBody {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}

.mood-map-popup__threadMeta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  color: rgba(11, 18, 36, 0.5);
}

.mood-map-popup__threadEmpty,
.mood-map-popup__threadLoading,
.mood-map-popup__threadErr {
  padding: 0.5rem 0.55rem;
  font-size: 0.8rem;
  color: rgba(11, 18, 36, 0.55);
}

.mood-map-popup__threadErr {
  color: #9f1239;
}

.mood-map-popup__reply {
  margin: 0.35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mood-map-popup__textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(11, 18, 36, 0.18);
  font: inherit;
  font-size: 0.82rem;
  resize: vertical;
}

.mood-map-popup__replyBtn {
  align-self: flex-start;
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
}

.mood-map-popup__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mood-map-popup__micro {
  margin: 0.25rem 0 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(11, 18, 36, 0.5);
}

.mood-map-status {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(234, 240, 255, 0.72);
}

.mood-map-status[data-kind="live"] {
  color: rgba(167, 243, 208, 0.92);
}

.mood-map-status[data-kind="warn"] {
  color: rgba(251, 191, 36, 0.95);
}

.mood-map-status[data-kind="err"] {
  color: rgba(252, 165, 165, 0.95);
}

.card--pillar:hover .card__subtitle,
.card--pillar:focus-within .card__subtitle {
  transform: scale(1.09);
  color: rgba(244, 247, 255, 0.94);
  text-shadow: 0 10px 42px rgba(99, 102, 241, 0.22);
}

@media (hover: none) {
  .card--pillar:hover .card__subtitle,
  .card--pillar:focus-within .card__subtitle {
    transform: none;
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card__subtitle {
    transition: none;
  }

  .card--pillar:hover .card__subtitle,
  .card--pillar:focus-within .card__subtitle {
    transform: none;
    text-shadow: none;
  }
}

/* Random "?" burst overlay (pillars hover) - see script.js */
#qm-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  overflow: hidden;
}

#qm-overlay .qm {
  position: absolute;
  color: rgba(234, 240, 255, 0.55);
  text-shadow:
    0 0 18px rgba(99, 102, 241, 0.35),
    0 0 32px rgba(52, 211, 153, 0.2);
  font-weight: 700;
  line-height: 1;
  transform: translate3d(0, 8px, 0) rotate(var(--rot, 0deg)) scale(0.35);
  opacity: 0;
  animation: qmPop 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes qmPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) rotate(var(--rot, 0deg)) scale(0.35);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -6px, 0) rotate(var(--rot, 0deg)) scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  #qm-overlay .qm {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* -- Life Cycle journey -- */
.life-cycle {
  --life-scroll: 0;
  --p: 0;
  position: relative;
  z-index: 0;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 10vw, 7rem);
  scroll-margin-top: 80px;
}

/* Community initiatives: same layered backdrop + orbs as Life Cycle for visual continuity */
.community-initiatives {
  position: relative;
  z-index: 0;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 10vw, 7rem);
  scroll-margin-top: 80px;
}

.community-initiatives__inner {
  position: relative;
  z-index: 1;
}

.life-cycle__bg,
.community-initiatives__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 45% at 50% -5%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 40%, rgba(99, 102, 241, 0.09), transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 75%, rgba(251, 191, 36, 0.08), transparent 50%),
    linear-gradient(
      to bottom,
      #04060d 0%,
      #080c18 18%,
      #0f111c 45%,
      #151018 72%,
      #1a1412 100%
    );
  transition: filter 1.1s ease, opacity 1s ease;
}

.community-initiatives__bg {
  filter: saturate(1.05) hue-rotate(-4deg);
}

.life-cycle[data-active-stage="1"] .life-cycle__bg {
  filter: saturate(1.05) hue-rotate(-4deg);
}
.life-cycle[data-active-stage="2"] .life-cycle__bg {
  filter: saturate(1.08) hue-rotate(2deg);
}
.life-cycle[data-active-stage="3"] .life-cycle__bg {
  filter: saturate(1.05) hue-rotate(8deg);
}
.life-cycle[data-active-stage="4"] .life-cycle__bg {
  filter: saturate(1.02) hue-rotate(14deg);
}
.life-cycle[data-active-stage="5"] .life-cycle__bg {
  filter: saturate(1) hue-rotate(18deg);
}

.life-cycle__orb,
.life-cycle__orb--2,
.community-initiatives__orb,
.community-initiatives__orb--2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.life-cycle__orb,
.community-initiatives__orb {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.35), transparent 68%);
}

.life-cycle__orb--2,
.community-initiatives__orb--2 {
  width: min(380px, 60vw);
  height: min(380px, 60vw);
  bottom: 12%;
  right: -6%;
  background: radial-gradient(circle, rgba(253, 186, 116, 0.4), transparent 65%);
}

.life-cycle__intro {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.life-cycle__title {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.life-cycle__lede {
  margin: 0 auto;
  max-width: 38rem;
  color: rgba(234, 240, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.life-cycle__track {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .life-cycle__track {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: start;
  }

  .life-cycle__main {
    grid-column: 1;
    grid-row: 1;
  }

  .life-cycle__progress {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 899px) {
  .life-cycle__track {
    align-items: center;
  }

  .life-cycle__progress {
    order: -1;
    flex: 0 0 auto;
    width: min(100%, 38rem);
    align-self: center;
  }

  /* One column: stage cards centered (arrow rail is too left-heavy on phones) */
  .life-cycle__main {
    grid-template-columns: 1fr;
    justify-items: stretch;
    width: min(100%, 38rem);
    align-self: center;
  }

  .life-cycle__arrowColumn {
    display: none;
  }

  .life-cycle__stages {
    width: 100%;
  }

  .life-cycle__stageInner {
    width: 100%;
    max-width: min(34rem, 100%);
    margin-inline: auto;
  }
}

.life-cycle__main {
  display: grid;
  grid-template-columns: clamp(40px, 8vw, 64px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(0.75rem, 3vw, 1.75rem);
  min-width: 0;
}

.life-cycle__arrowColumn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.life-cycle__svg {
  width: 100%;
  max-width: 64px;
  height: 100%;
  min-height: min(100%, 2400px);
  flex: 1 1 auto;
  display: block;
}

.life-cycle__stages {
  min-width: 0;
}

.life-cycle__stage {
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vh, 4rem) 0;
  scroll-margin-top: min(20vh, 140px);
}

.life-cycle__stageInner {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 4vw, 2rem);
}

.life-cycle__stageMark {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.life-cycle__pictogramWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.6rem;
  min-height: clamp(3.25rem, 9vw, 4rem);
}

.life-cycle__pictogramHost {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: clamp(3rem, 8vw, 4rem);
  min-height: clamp(3rem, 8vw, 4rem);
}

.life-cycle__pictogramReact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: default;
}

.life-cycle__pictogramReact.is-active svg {
  filter:
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42)),
    drop-shadow(0 0 24px rgba(125, 211, 252, 0.12));
}

.life-cycle__stage:nth-child(5) .life-cycle__pictogramReact.is-active svg {
  filter:
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42)),
    drop-shadow(0 0 20px rgba(253, 186, 116, 0.16));
}

@media (prefers-reduced-motion: reduce) {
  .life-cycle__pictogramReact.is-active svg,
  .life-cycle__pictogramReact svg * {
    transition: none !important;
  }

  .life-cycle__pictogramReact svg {
    transform: none !important;
  }
}

.life-cycle__pictogram {
  flex-shrink: 0;
  width: clamp(3rem, 8vw, 4rem);
  height: clamp(3rem, 8vw, 4rem);
  overflow: visible;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42));
}

.life-cycle__stage:nth-child(1) .life-cycle__pictogram {
  color: rgba(134, 239, 172, 0.95);
}

.life-cycle__stage:nth-child(2) .life-cycle__pictogram {
  color: rgba(125, 211, 252, 0.95);
}

.life-cycle__stage:nth-child(3) .life-cycle__pictogram {
  color: rgba(196, 181, 253, 0.95);
}

.life-cycle__stage:nth-child(4) .life-cycle__pictogram {
  color: rgba(167, 243, 208, 0.92);
}

.life-cycle__stage:nth-child(5) .life-cycle__pictogram {
  color: rgba(253, 186, 116, 0.95);
}

.life-cycle__ages {
  display: block;
  font-weight: 750;
  font-size: clamp(1.1rem, 2.4vw, 1.25rem);
  letter-spacing: 0.02em;
  color: rgba(244, 247, 255, 0.96);
}

.life-cycle__themes {
  margin: 0.35rem 0 0.25rem;
  font-size: 0.92rem;
  color: rgba(167, 243, 208, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 650;
}

.life-cycle__emotional {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(234, 240, 255, 0.78);
  font-style: italic;
}

.life-cycle__questionsBlock {
  margin: 0 0 clamp(1.75rem, 4vw, 2.25rem);
  padding-bottom: clamp(1.35rem, 3vw, 1.85rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.life-cycle__questionsHeading {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.88);
}

.life-cycle__questionsLede {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(234, 240, 255, 0.52);
}

.life-cycle__questions {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.95rem, 2.2vw, 1.15rem);
}

.life-cycle__questionItem {
  position: relative;
  margin: 0;
  padding: 0.65rem 0 0.65rem 1.15rem;
  border-left: 2px solid rgba(125, 211, 252, 0.28);
  border-radius: 2px 0 0 2px;
  font-size: clamp(0.98rem, 2.1vw, 1.06rem);
  line-height: 1.58;
  letter-spacing: -0.01em;
  color: rgba(244, 247, 255, 0.94);
  font-feature-settings: "kern" 1;
}

.life-cycle__stage:nth-child(3) .life-cycle__questionItem {
  border-left-color: rgba(196, 181, 253, 0.42);
}

.life-cycle__stage:nth-child(5) .life-cycle__questionItem {
  border-left-color: rgba(253, 186, 116, 0.4);
}

@media (min-width: 640px) {
  .life-cycle__questionItem {
    padding-left: 1.35rem;
    line-height: 1.62;
  }
}

.life-cycle__ideasHeading {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.55);
}

.life-cycle__ideas {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.life-cycle__ideaItem {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(234, 240, 255, 0.9);
}

.life-cycle__ideaDot {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), rgba(251, 191, 36, 0.8));
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.35);
}

.life-cycle__lucideIcon {
  display: block;
}

.life-cycle__progress {
  position: sticky;
  top: max(5rem, 14vh);
  align-self: start;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 18, 0.65);
  backdrop-filter: blur(12px);
}

.life-cycle__progressText {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.72);
}

.life-cycle__progressNum {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0;
}

.life-cycle__progressBar {
  margin-top: 0.65rem;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.life-cycle__progressFill {
  display: block;
  height: 100%;
  width: calc((var(--p, 0) * 100%) + 1px);
  max-width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.95), rgba(251, 191, 36, 0.85));
  box-shadow: 0 0 16px rgba(125, 211, 252, 0.35);
  transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.life-cycle__endDot {
  text-align: center;
  margin: 3rem 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.65);
}

@media (max-width: 899px) {
  .life-cycle__progress {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
  }

  .life-cycle__progressBar {
    flex: 1;
    max-width: 200px;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .life-cycle__bg {
    transition: none;
  }

  .life-cycle__progressFill {
    transition: none;
  }

  .life-cycle__stageInner {
    opacity: 1 !important;
    transform: none !important;
  }

  .life-cycle__questionItem {
    border-left-color: rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .brand {
    order: 1;
    font-size: clamp(0.62rem, 2.65vw, 0.78rem);
    letter-spacing: 0.04em;
    padding: 0.35rem 0.5rem;
  }

  .nav {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin: 0;
    padding: 0.5rem 0 0.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.5rem 0.65rem;
    border-radius: 12px;
    white-space: normal;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
  .cards--pillars,
  .cards--community {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .themes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-modal__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-tab {
    padding: 0.65rem 0.55rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 520px) {
  .themes-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__layer {
    transform: none !important;
    will-change: auto;
  }
}

/* -- Mental health quiz - aligns with homepage dark glass UI -- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mh-quiz {
  scroll-margin-top: 80px;
}

/* Don’t stack a second frosted band behind the quiz card (reads as “two boxes”) */
.mh-quiz.section--alt {
  background: transparent;
}

.mh-quiz__inner {
  max-width: 640px;
}

.mh-quiz .section__tag {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.mh-quiz__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
}

.mh-quiz__intro {
  margin-bottom: 1.75rem !important;
}

.mh-quiz__pageHeader {
  margin-bottom: 1rem;
}

/* Outer shell: padding once for intro + stage (quiz answers never sit in a second boxed layer) */
.mh-quiz__cardShell {
  padding: clamp(1.35rem, 4vw, 2rem);
  overflow: hidden;
}

.mh-quiz__card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

/*
 * Quiz results: paint the tinted panel on #quiz-root only.
 * Inner .mh-quizResult is content + padding - no second background/border (avoids “two boxes”).
 */
.mh-quiz__card.mh-quiz__card--result {
  background: none;
  background-color: var(--bg);
  overflow: hidden;
  /* Keeps tinted layer + typography compositing on this pane only */
  isolation: isolate;
}

.mh-quiz__card.mh-quiz__card--result.mh-quiz__band-crisis {
  background-image: linear-gradient(
    180deg,
    rgba(239, 68, 68, 0.14) 0%,
    rgba(125, 211, 252, 0.11) 32%,
    rgba(125, 211, 252, 0.04) 68%,
    transparent 100%
  );
  border-color: rgba(248, 113, 113, 0.38);
  box-shadow: var(--shadow);
}

.mh-quiz__card.mh-quiz__card--result.mh-quiz__band-high {
  background-image: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.18) 0%,
    rgba(125, 211, 252, 0.07) 58%,
    transparent 100%
  );
  border-color: rgba(125, 211, 252, 0.32);
  box-shadow: var(--shadow);
}

.mh-quiz__card.mh-quiz__card--result.mh-quiz__band-moderate {
  background-image: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.14) 0%,
    rgba(125, 211, 252, 0.055) 58%,
    transparent 100%
  );
  border-color: rgba(125, 211, 252, 0.25);
  box-shadow: var(--shadow);
}

.mh-quiz__card.mh-quiz__card--result.mh-quiz__band-low {
  background-image: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.12) 0%,
    rgba(125, 211, 252, 0.042) 58%,
    transparent 100%
  );
  border-color: rgba(125, 211, 252, 0.22);
  box-shadow: var(--shadow);
}

.mh-quiz__cardInner {
  padding: 0;
}

.mh-quiz__progressSection {
  margin-bottom: 1rem;
}

.mh-quiz__counter {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 750;
  color: rgba(244, 247, 255, 0.96);
}

.mh-quiz__counter span {
  color: var(--primary);
}

.mh-quiz__hint {
  margin: 0 0 0.95rem;
  font-size: 0.92rem;
  color: rgba(234, 240, 255, 0.62);
  font-style: italic;
}

.mh-quiz__bar {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mh-quiz__barFill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.95), rgba(251, 191, 36, 0.85));
  box-shadow: 0 0 16px rgba(125, 211, 252, 0.25);
  transition: width 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mh-quiz__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1.15rem 0 1.25rem;
}

.mh-quiz__body {
  padding-bottom: 0.35rem;
}

.mh-quiz__questionTitle {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.43;
  color: rgba(234, 240, 255, 0.94);
}

.mh-quiz__fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

.mh-quiz__option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.82rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.mh-quiz__option:last-child {
  margin-bottom: 0;
}

.mh-quiz__option:hover {
  background: rgba(255, 255, 255, 0.055);
}

.mh-quiz__radio {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.mh-quiz__optionText {
  font-size: 0.96rem;
  line-height: 1.43;
  color: rgba(234, 240, 255, 0.86);
}

.mh-quiz__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.65rem;
  flex-wrap: wrap;
}

.mh-quiz__footerSpacer {
  flex: 1;
  min-width: 0;
}

.mh-quiz__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  border-radius: 999px;
  cursor: pointer;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.mh-quiz__btn:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.55);
  outline-offset: 3px;
}

.mh-quiz__btn--primary {
  margin-left: auto;
  border: 1px solid rgba(125, 211, 252, 0.55);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.35), rgba(167, 243, 208, 0.22));
  color: rgba(234, 240, 255, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.mh-quiz__btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.42), rgba(167, 243, 208, 0.26));
}

.mh-quiz__btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mh-quiz__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.88);
}

.mh-quiz__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mh-quiz__disclaimer {
  margin: 1.35rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1.52;
  color: rgba(234, 240, 255, 0.55);
}

.quiz-stage {
  min-width: 0;
}

.mh-quizResult {
  padding: 0;
  border-radius: 0;
  text-align: left;
}

.mh-quizResult__header {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mh-quiz__icon {
  flex-shrink: 0;
  color: currentColor;
}

.mh-quizResult--crisis .mh-quizResult__header .mh-quiz__icon {
  color: #f87171;
}

.mh-quizResult__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(244, 247, 255, 0.98);
}

.mh-quizResult__subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fda4af;
}

.mh-quizResult--high .mh-quizResult__subtitle {
  color: #7dd3fc;
}

.mh-quizResult--moderate .mh-quizResult__subtitle {
  color: var(--primary);
}

.mh-quizResult--low .mh-quizResult__subtitle {
  color: #a5d8fc;
}

.mh-quizResult__lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(234, 240, 255, 0.82);
}

.mh-quizResult__alert {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(248, 113, 113, 0.35);
  background: rgba(239, 68, 68, 0.1);
}

.mh-quizResult--high .mh-quizResult__alert {
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(125, 211, 252, 0.1);
}

.mh-quizResult--moderate .mh-quizResult__alert {
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(125, 211, 252, 0.08);
}

.mh-quizResult--low .mh-quizResult__alert {
  border-color: rgba(125, 211, 252, 0.28);
  background: rgba(125, 211, 252, 0.07);
}

.mh-quizResult__alert .mh-quiz__icon {
  margin-top: 0.05rem;
}

.mh-quizResult__alertTitle {
  margin: 0 0 0.4rem;
  font-size: 0.94rem;
  font-weight: 800;
  color: #fecaca;
}

.mh-quizResult--moderate .mh-quizResult__alertTitle {
  color: var(--primary);
}

.mh-quizResult--low .mh-quizResult__alertTitle {
  color: #bae6fd;
}

.mh-quizResult--high .mh-quizResult__alertTitle {
  color: #7dd3fc;
}

.mh-quizResult__alertBody {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.53;
  color: rgba(234, 240, 255, 0.85);
}

.mh-quizResult__tipsTitle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 780;
  color: rgba(244, 247, 255, 0.94);
}

.mh-quizResult__tipsTitle svg {
  color: var(--primary);
}

.mh-quizResult__tipsList {
  margin: 0;
  padding: 0 0 1.85rem 1.15rem;
  color: rgba(234, 240, 255, 0.78);
  line-height: 1.65;
}

.mh-quizResult__tipsList li {
  margin-bottom: 0.5rem;
}

.mh-quizResult__tipsList li:last-child {
  margin-bottom: 0;
}

.mh-quizResult__resTitle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 780;
  color: rgba(244, 247, 255, 0.94);
}

.mh-quizResult__resTitle svg {
  color: rgba(125, 211, 252, 0.88);
}

.mh-quizResult__resourceGrid {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-bottom: 1.5rem;
}

/*
 * No second “glass lid” behind links: translucent rgba() was mixing oddly with the
 * panel tint and read as a second box / green-yellow spot vs the heading area above.
 */
.mh-quiz__resourceCard {
  padding: 0.92rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.mh-quiz__resourceTitle {
  margin: 0 0 0.35rem;
  font-weight: 750;
  font-size: 0.93rem;
  color: rgba(244, 247, 255, 0.96);
}

.mh-quiz__resourceBody {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.52;
  color: rgba(234, 240, 255, 0.65);
}

.mh-quiz__resourceContact {
  margin: 0.65rem 0 0;
  font-weight: 700;
}

.mh-quiz__resourceContact a {
  color: var(--primary);
}

.mh-quizResult__actions {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 520px) {
  .mh-quiz__footer .mh-quiz__btn--ghost {
    order: 3;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mh-quiz__footer .mh-quiz__btn--primary {
    width: 100%;
    margin-left: 0 !important;
    order: 2;
  }
}
