:root {
  --primary-purple: #8e54b0;
  --primary-pink: #e52d87;
  --lavender-soft: #f4ecff;
  --text-dark: #2f1f3f;
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-soft: 0 15px 40px rgba(67, 29, 95, 0.18);
  /* Interaction — calm clarity (coach-aligned): selection & typing accent */
  --selection-bg: rgba(142, 84, 176, 0.2);
  --selection-text: var(--text-dark);
  --caret-coaching: #7c3aed;
    /* Brand palette */
  --brand-purple:   #7c3aed;
  --brand-pink:     #db2777;
  --brand-purple-lt: #a78bfa;
  --brand-pink-lt:  #f9a8d4;
    /* Surface / background */
  --surface-0:  #ffffff;
  --surface-1:  #faf7ff;
  --surface-2:  #f4eeff;
  --surface-3:  #ede9fe;
  --surface-dark: #1e1030;
  --surface-dark-2: #2d1a4a;
  
    /* Typography scale — 4 steps up, 2 down from base */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   clamp(1.55rem, 3vw, 2.2rem);
  --fs-2xl:  clamp(1.85rem, 4vw, 2.75rem);
  --fs-display: clamp(2.2rem, 5vw, 3.6rem);
  
  /* Line-height */
  --lh-tight:  1.2;
  --lh-snug:   1.4;
  --lh-body:   1.65;
  --lh-relax:  1.8;

  /* Letter-spacing */
  --ls-tight:  -0.02em;
  --ls-kicker:  0.14em;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
}

/* Selection & caret: warmth without distraction — reads “held space,” not corporate yellow */
::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]),
textarea,
select {
  caret-color: var(--caret-coaching);
}

/* Intentional pointer on actionable UI (respects native disabled states) */
a[href],
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
summary,
label[for],
input[type="checkbox"],
input[type="radio"],
select {
  cursor: pointer;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #ffffff 0%, var(--lavender-soft) 100%);
  overflow-x: hidden;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(142, 84, 176, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}


.nav-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(142, 84, 176, 0.28);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  line-height: 1;
  color: var(--brand-purple);
  font-size: 1.15rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: var(--surface-2);
  border-color: rgba(142, 84, 176, 0.5);
}

.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #7c3aed;
  background: #ede9fe;
}

section {
  position: relative;
  padding: 4.8rem 1.2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero--editorial {
  --mouse-x: 0.5;
  --mouse-y: 0.5;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fdfbff 0%, #f4ecff 38%, #fff8fb 100%);
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at calc(15% + var(--mouse-x) * 10%) calc(22% + var(--mouse-y) * 12%),
      rgba(168, 85, 247, 0.16),
      transparent 44%
    ),
    radial-gradient(circle at 88% 8%, rgba(236, 72, 153, 0.14), transparent 40%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(34, 211, 238, 0.07), transparent 55%),
    repeating-linear-gradient(
      -18deg,
      rgba(142, 84, 176, 0.03) 0 1px,
      transparent 1px 14px
    );
}

.hero-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-bg-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-bg-orbit--a {
  width: min(56vw, 520px);
  height: min(56vw, 520px);
  right: -10%;
  top: -6%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.42), transparent 72%);
}

.hero-bg-orbit--b {
  width: min(44vw, 400px);
  height: min(44vw, 400px);
  left: -8%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.32), transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-grid--split {
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-grid--split .hero-lead {
  grid-column: 1;
  grid-row: 1;
}

.hero-grid--split .hero-body {
  grid-column: 1;
  grid-row: 2;
}

.hero-grid--split .hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(107, 63, 138, 0.65);
}

.hero-eyebrow-line {
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
}

.hero-subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 1rem;
  color: rgba(47, 31, 63, 0.92);
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 34rem;
}

.hero-cta-row {
  margin-top: clamp(1.1rem, 2.8vw, 1.4rem);
  margin-bottom: 0.5rem;
  padding-block: 0.45rem;
}

.pill-link--solid {
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
  color: #000;
  border-color: transparent;
  font-weight: 600;
  padding: 0.62rem 1.15rem;
}

.pill-link--solid:hover {
  color: #fff;
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(142, 84, 176, 0.35);
}

.pill-link--ghost {
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(142, 84, 176, 0.35);
  font-weight: 600;
  padding: 0.62rem 1.15rem;
}

.pill-link--ghost:hover {
  background: #fff;
  color: var(--primary-purple);
}

.hero-visual--banner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-banner-stack {
  position: relative;
  width: min(100%, 420px);
}

.hero-banner-photo-wrap {
  position: relative;
  border-radius: 48% 52% 42% 58% / 46% 44% 56% 54%;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(67, 29, 95, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: rotate(-1.5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-banner-stack:hover .hero-banner-photo-wrap {
  transform: rotate(0deg) scale(1.01);
}

.hero-banner-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.hero-banner-cutout {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 35%, rgba(142, 84, 176, 0.08) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Portrait name tag — crisp logo + readable credentials at any size */
.profile-name-tag,
.hero-banner-badge {
  position: absolute;
  left: -0.5rem;
  bottom: 12%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 2vw, 0.65rem);
  max-width: min(calc(100% + 0.5rem), 22.5rem);
  padding: clamp(0.45rem, 1.8vw, 0.55rem) clamp(0.65rem, 2.5vw, 0.85rem);
  padding-left: clamp(0.45rem, 1.8vw, 0.55rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(142, 84, 176, 0.18);
  box-shadow: 0 16px 40px rgba(67, 29, 95, 0.14);
  backdrop-filter: blur(12px);
}

.profile-name-tag__logo,
.hero-banner-badge .profile-name-tag__logo {
  flex: 0 0 auto;
  width: clamp(4.25rem, 13vw, 5.75rem);
  height: auto;
  max-height: 2.4rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
}

.profile-name-tag__text {
  min-width: 0;
  flex: 1 1 auto;
}

.profile-name-tag__title,
.hero-banner-badge-title {
  display: block;
  font-weight: 700;
  font-size: clamp(0.8rem, 2.2vw, 0.88rem);
  line-height: 1.2;
  color: var(--text-dark);
}

.profile-name-tag__sub,
.hero-banner-badge-sub {
  display: block;
  font-size: clamp(0.62rem, 1.8vw, 0.68rem);
  line-height: 1.35;
  color: rgba(107, 63, 138, 0.65);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  max-width: 18ch;
}

.typewriter-text {
  background: linear-gradient(120deg, #6b3f8a 10%, var(--primary-pink) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.type-caret {
  width: 2px;
  height: 1.1em;
  background: rgba(107, 63, 138, 0.7);
  animation: blinkCaret 1s step-end infinite;
}

@keyframes blinkCaret {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.accent {
  color: var(--primary-pink);
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-copy {
  transition: transform 0.45s ease;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual:not(.flash-card-frame):not(.hero-visual--banner) img {
  width: min(430px, 85%);
  border-radius: 45% 55% 48% 52% / 50% 40% 60% 50%;
  box-shadow: var(--shadow-soft);
}

.hero-floating-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.float-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(142, 84, 176, 0.12);
  animation: riseDrift 14s linear infinite;
  opacity: 0.8;
}

.float-bubble.b1 {
  width: 24px;
  height: 24px;
  left: 8%;
  bottom: -50px;
  animation-duration: 13s;
}

.float-bubble.b2 {
  width: 44px;
  height: 44px;
  left: 20%;
  bottom: -80px;
  animation-duration: 17s;
  animation-delay: 1.2s;
}

.float-bubble.b3 {
  width: 30px;
  height: 30px;
  left: 43%;
  bottom: -70px;
  animation-duration: 15s;
  animation-delay: 2.1s;
}

.float-bubble.b4 {
  width: 54px;
  height: 54px;
  left: 67%;
  bottom: -100px;
  animation-duration: 18s;
  animation-delay: 0.7s;
}

.float-bubble.b5 {
  width: 26px;
  height: 26px;
  left: 80%;
  bottom: -60px;
  animation-duration: 16s;
  animation-delay: 3s;
}

.float-bubble.b6 {
  width: 36px;
  height: 36px;
  left: 92%;
  bottom: -90px;
  animation-duration: 19s;
  animation-delay: 1.8s;
}

@keyframes riseDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.9);
    opacity: 0;
  }
  20% {
    opacity: 0.75;
  }
  50% {
    transform: translate3d(-14px, -48vh, 0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(18px, -105vh, 0) scale(1.1);
    opacity: 0;
  }
}

.organic-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.organic-divider.top {
  top: -1px;
}

.organic-divider.bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.organic-divider svg {
  display: block;
  width: 100%;
  height: 95px;
}

.stats-ticker {
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(142, 84, 176, 0.18);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0;
  position: relative;
}

.stats-ticker--bare {
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 1rem 0 1.25rem;
  border-radius: 0;
}

.stats-ticker--bare .ticker-item {
  font-size: clamp(0.98rem, 1.35vw, 1.15rem);
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(142, 84, 176, 0.12);
  box-shadow: 0 4px 20px rgba(142, 84, 176, 0.06);
}

.stats-ticker::before,
.stats-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 58px;
  z-index: 2;
  pointer-events: none;
}

.stats-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.stats-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.stats-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(142, 84, 176, 0.18);
}

.ticker-item i {
  color: var(--primary-pink);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  padding: 1.6rem;
}

.bubbles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.voice-flow .bubbles-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem 1.25rem;
}

.bubble {
  border: 1px solid rgba(142, 84, 176, 0.18);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: linear-gradient(120deg, rgba(142, 84, 176, 0.2), rgba(229, 45, 135, 0.2));
  cursor: pointer;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  color: var(--text-dark);
  font-weight: 500;
  text-align: left;
  min-height: 86px;
  display: flex;
  align-items: center;
}

.voice-bubbles .bubble {
  border-radius: 22px;
  min-height: 96px;
  padding: 1.25rem 1.35rem;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
  color: var(--text-dark);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.22s ease;
}

.voice-bubbles .bubble:hover,
.voice-bubbles .bubble:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.75), 0 14px 32px rgba(67, 29, 95, 0.12);
}

.voice-bubbles .bubble:active {
  transform: scale(0.99);
}

.voice-bubbles .bubble--mauve {
  background: linear-gradient(145deg, rgba(196, 181, 253, 0.55), rgba(250, 245, 255, 0.96));
  border-color: rgba(139, 92, 246, 0.38);
}

.voice-bubbles .bubble--mauve:hover {
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.72), rgba(255, 255, 255, 0.98));
  border-color: rgba(124, 58, 237, 0.65);
}

.voice-bubbles .bubble--mauve.active {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  border-color: #5b21b6;
  color: #fff;
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.35);
}

.voice-bubbles .bubble--rose {
  background: linear-gradient(145deg, rgba(251, 207, 232, 0.65), rgba(255, 251, 254, 0.96));
  border-color: rgba(236, 72, 153, 0.38);
}

.voice-bubbles .bubble--rose:hover {
  background: linear-gradient(145deg, rgba(249, 168, 212, 0.82), rgba(255, 255, 255, 0.98));
  border-color: rgba(219, 39, 119, 0.55);
}

.voice-bubbles .bubble--rose.active {
  background: linear-gradient(135deg, #db2777, #f472b6);
  border-color: #be185d;
  color: #fff;
  box-shadow: 0 12px 36px rgba(219, 39, 119, 0.35);
}

.voice-bubbles .bubble--orchid {
  background: linear-gradient(145deg, rgba(233, 213, 255, 0.65), rgba(253, 250, 255, 0.96));
  border-color: rgba(168, 85, 247, 0.35);
}

.voice-bubbles .bubble--orchid:hover {
  background: linear-gradient(145deg, rgba(216, 180, 254, 0.82), rgba(255, 255, 255, 0.98));
  border-color: rgba(147, 51, 234, 0.55);
}

.voice-bubbles .bubble--orchid.active {
  background: linear-gradient(135deg, #9333ea, #d8b4fe);
  border-color: #7e22ce;
  color: #fff;
  box-shadow: 0 12px 36px rgba(147, 51, 234, 0.35);
}

.voice-bubbles .bubble--iris {
  background: linear-gradient(145deg, rgba(199, 210, 254, 0.55), rgba(248, 250, 255, 0.96));
  border-color: rgba(99, 102, 241, 0.38);
}

.voice-bubbles .bubble--iris:hover {
  background: linear-gradient(145deg, rgba(165, 180, 252, 0.78), rgba(255, 255, 255, 0.98));
  border-color: rgba(79, 70, 229, 0.55);
}

.voice-bubbles .bubble--iris.active {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  border-color: #4338ca;
  color: #fff;
  box-shadow: 0 12px 36px rgba(79, 70, 229, 0.35);
}

.voice-bubbles .bubble--sunset {
  background: linear-gradient(145deg, rgba(254, 215, 170, 0.55), rgba(255, 251, 246, 0.96));
  border-color: rgba(249, 115, 22, 0.38);
}

.voice-bubbles .bubble--sunset:hover {
  background: linear-gradient(145deg, rgba(253, 186, 116, 0.78), rgba(255, 255, 255, 0.98));
  border-color: rgba(234, 88, 12, 0.55);
}

.voice-bubbles .bubble--sunset.active {
  background: linear-gradient(135deg, #ea580c, #fb923c);
  border-color: #c2410c;
  color: #fff;
  box-shadow: 0 12px 36px rgba(234, 88, 12, 0.32);
}

.voice-bubbles .bubble--sea {
  background: linear-gradient(145deg, rgba(153, 246, 228, 0.55), rgba(240, 253, 250, 0.96));
  border-color: rgba(20, 184, 166, 0.4);
}

.voice-bubbles .bubble--sea:hover {
  background: linear-gradient(145deg, rgba(94, 234, 212, 0.78), rgba(255, 255, 255, 0.98));
  border-color: rgba(13, 148, 136, 0.55);
}

.voice-bubbles .bubble--sea.active {
  background: linear-gradient(135deg, #0d9488, #5eead4);
  border-color: #0f766e;
  color: #fff;
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.32);
}

.heart-response-shell {
  margin: 2.75rem auto 0;
  max-width: 720px;
  padding: 3px;
  border-radius: 30px;
  background: linear-gradient(
    120deg,
    #22d3ee,
    #a855f7,
    #ec4899,
    #22d3ee,
    #f472b6,
    #a855f7
  );
  background-size: 400% 400%;
  animation: neonBorderFlow 9s linear infinite;
  box-shadow:
    0 0 32px rgba(168, 85, 247, 0.5),
    0 0 64px rgba(236, 72, 153, 0.22);
}

@keyframes neonBorderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.heart-response {
  margin: 0;
  max-width: none;
  text-align: center;
  position: relative;
  padding: 2rem 2.25rem 2.35rem;
  border-radius: 27px;
  background: #faf9fc;
  overflow: hidden;
}

.heart-response-label,
.heart-typewriter {
  position: relative;
  z-index: 1;
}

.heart-response-label {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107, 63, 138, 0.75);
}

.heart-typewriter {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-dark);
  max-height: 4.5em;
}

@media (prefers-reduced-motion: reduce) {
  .heart-response-shell {
    animation: none;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.85), rgba(168, 85, 247, 0.85), rgba(236, 72, 153, 0.85));
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
  }

  .voice-bubbles .bubble:active {
    transform: none;
  }
}

.section-soft {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(243, 233, 252, 0.65));
}

.section-dark-soft {
  background: linear-gradient(160deg, rgba(39, 21, 52, 0.98), rgba(60, 31, 84, 0.98));
  color: #fff;
}

.credentials-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.credentials-list li {
  position: relative;
  line-height: 1.5;
  padding: 0.62rem 0.8rem 0.62rem 2.15rem;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.84), rgba(248, 241, 255, 0.9));
  border: 1px solid rgba(142, 84, 176, 0.16);
  box-shadow: 0 8px 20px rgba(67, 29, 95, 0.06);
}

.credentials-list li::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: calc(0.62rem + 0.5lh - 0.5rem);
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  transform: none;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.92) 0 24%, transparent 30%),
    linear-gradient(135deg, #8e54b0 0%, #e52d87 55%, #22d3ee 100%);
  box-shadow: 0 3px 10px rgba(142, 84, 176, 0.28);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.review-stars {
  color: #ffcc49;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.status-note {
  font-size: 0.9rem;
  opacity: 0.75;
}

.story-band {
  padding: 5.6rem 1.2rem;
}

.band-identity {
  background: linear-gradient(160deg, rgba(142, 84, 176, 0.12), rgba(255, 255, 255, 0.85));
}

.band-programs {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(229, 45, 135, 0.1));
}

.band-proof {
  background: linear-gradient(160deg, rgba(33, 19, 44, 0.96), rgba(58, 30, 80, 0.96));
  color: #fff;
}

.story-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.story-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(124, 74, 155, 0.9);
}

.mini-kpis {
  display: grid;
  gap: 0.8rem;
}

.mini-kpis span,
.path-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(142, 84, 176, 0.2);
  font-weight: 500;
}

.path-tags {
  display: grid;
  gap: 0.75rem;
}

.quote-ribbon {
  border-left: 3px solid rgba(255, 255, 255, 0.45);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.quote-ribbon p {
  margin: 0 0 0.8rem;
  opacity: 0.95;
}

.title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.subtitle {
  margin-top: 0;
  margin-bottom: 1.7rem;
  max-width: 700px;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--primary-purple), var(--primary-pink));
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary-pink);
}

.about-banner {
  --about-banner-cut: clamp(2.5rem, 5.5vw, 3.5rem);
  /* ~30° inward angle at bottom corners (run = depth × cot 30° ≈ 1.732) */
  --about-banner-inset: calc(var(--about-banner-cut) * 1.732);
  position: relative;
  min-height: clamp(240px, 34vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.75rem, 9vw, 5rem) max(var(--page-gutter), var(--safe-left))
    calc(clamp(4rem, 10vw, 5.5rem) + var(--about-banner-cut));
  padding-right: max(var(--page-gutter), var(--safe-right));
  overflow: hidden;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--about-banner-cut)),
    calc(100% - var(--about-banner-inset)) 100%,
    var(--about-banner-inset) 100%,
    0 calc(100% - var(--about-banner-cut))
  );
}

.about-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #1f1638 0%,
    #352560 16%,
    #5c3d8f 34%,
    #7e4cb5 50%,
    #a445a8 68%,
    #c93d8f 84%,
    #d946a8 100%
  );
}

.about-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
  padding-inline: 0.5rem;
}

.about-banner-eyebrow {
  margin: 0 0 0.75rem;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}

.about-banner-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

.about-banner-lede {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.about-timeline-wrap {
  padding: clamp(1.75rem, 5vw, 3rem) 1.2rem clamp(3rem, 7vw, 4.25rem);
  background: #fff;
}

.about-timeline-wrap .timeline--journey {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

/* About · Mission — image 40% / copy 60%, flat paragraphs */
.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.about-mission-media {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  transform: none;
  overflow: visible;
  border-radius: 18px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.about-mission-portrait-stack {
  position: relative;
  width: 100%;
  margin: 0;
}

.about-mission-portrait-stack__plate {
  position: relative;
  padding: clamp(1.35rem, 5vw, 2.35rem) clamp(1rem, 4vw, 1.75rem) clamp(2.75rem, 9vw, 3.75rem);
  border-radius: 18px;
  background:
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 10px,
      rgba(142, 84, 176, 0.045) 10px,
      rgba(142, 84, 176, 0.045) 11px
    ),
    radial-gradient(ellipse 120% 85% at 50% 12%, rgba(252, 248, 255, 0.98), rgba(236, 224, 250, 0.72) 52%, #efe4fa);
}

.about-mission-portrait-stack__ring {
  width: min(100%, 300px);
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 22px 48px rgba(67, 29, 95, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.about-mission-portrait-stack__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-mission-name-tag {
  left: clamp(0.5rem, 4%, 1.1rem);
  right: clamp(0.5rem, 4%, 1.1rem);
  bottom: clamp(0.55rem, 4.5%, 1.15rem);
  max-width: none;
  width: auto;
}

.about-mission-media__img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  margin: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.about-mission-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.about-mission-copy .story-kicker {
  margin: 0 0 0.65rem;
}

.about-mission-copy .fluid-heading {
  margin: 0 0 1.1rem;
}

.about-mission-copy p {
  margin: 0 0 1.05rem;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.88);
}

.about-mission-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 4vw, 1.75rem);
  }

  .about-mission-media,
  .about-mission-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .about-mission-media {
    max-width: min(100%, 380px);
    margin-inline: auto;
    width: 100%;
  }
}

/* Trainings · Why It Matters — image left 40% / copy right 60% */
.training-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.training-why-media {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  transform: none;
  overflow: hidden;
  border-radius: 18px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.training-why-media__img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  margin: 0;
  aspect-ratio: 343 / 253;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.training-why-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.training-why-copy .story-kicker {
  margin: 0 0 0.65rem;
}

.training-why-copy .fluid-heading {
  margin: 0 0 1.1rem;
}

.training-why-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.88);
}

.training-academic-media__img {
  aspect-ratio: 350 / 218;
  object-position: center;
}

@media (max-width: 900px) {
  .training-why-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 4vw, 1.75rem);
  }

  .training-why-media,
  .training-why-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .training-why-media {
    max-width: min(100%, 380px);
    margin-inline: auto;
    width: 100%;
  }
}

.timeline--journey {
  position: relative;
  --tl-axis: 1.375rem;
  --tl-pad: 3.125rem;
  --tl-dot: 1.125rem;
  --tl-dot-border: 3px;
  padding: 1.25rem 0.85rem 1.25rem var(--tl-pad);
}

.timeline--journey::before {
  content: "";
  position: absolute;
  left: var(--tl-axis);
  top: 1.85rem;
  bottom: 1.85rem;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--primary-purple) 0%,
    var(--primary-pink) 38%,
    rgba(229, 45, 135, 0.55) 70%,
    rgba(244, 236, 255, 0.35) 100%
  );
  background-size: 100% 280%;
}

.timeline--journey .timeline-item {
  position: relative;
  margin-bottom: 0;
  padding: 1.15rem 0.85rem 1.35rem 0;
  border-radius: 18px;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.42s ease;
}

.timeline--journey .timeline-item:not(:last-child) {
  margin-bottom: 0.55rem;
}

.timeline--journey .timeline-item h3 {
  margin-top: 0;
}

.timeline--journey .timeline-item:last-child {
  padding-bottom: 0.85rem;
}

.timeline--journey .timeline-item::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: calc(var(--tl-axis) - var(--tl-pad) - var(--tl-dot) / 2);
  width: var(--tl-dot);
  height: var(--tl-dot);
  margin: 0;
  border-radius: 50%;
  background: #fff;
  border: var(--tl-dot-border) solid var(--primary-pink);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  z-index: 2;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.timeline--journey .timeline-item:hover {
  transform: translateX(6px);
  background: rgba(244, 236, 255, 0.55);
  box-shadow: 0 10px 32px rgba(142, 84, 176, 0.1);
}

.timeline--journey .timeline-item:hover::before {
  transform: scale(1.08);
  border-color: var(--primary-purple);
  box-shadow:
    0 0 0 2px #fff,
    0 0 20px rgba(229, 45, 135, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .timeline--journey::before {
    animation: journeyLineFlow 5s ease-in-out infinite;
  }

  .timeline--journey .timeline-item:nth-child(1)::before {
    animation: journeyDotPulse 3.8s ease-in-out infinite;
  }

  .timeline--journey .timeline-item:nth-child(2)::before {
    animation: journeyDotPulse 3.8s ease-in-out infinite;
    animation-delay: 1.1s;
  }

  .timeline--journey .timeline-item:nth-child(3)::before {
    animation: journeyDotPulse 3.8s ease-in-out infinite;
    animation-delay: 2.2s;
  }

  .timeline--program-path::before {
    animation: journeyLineFlow 5s ease-in-out infinite;
  }
}

@keyframes journeyLineFlow {
  0%,
  100% {
    background-position: 0% 0%;
    filter: brightness(1);
    opacity: 1;
  }
  50% {
    background-position: 0% 100%;
    filter: brightness(1.06);
    opacity: 0.96;
  }
}

@keyframes journeyDotPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.95),
      0 0 6px rgba(229, 45, 135, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.95),
      0 0 16px rgba(142, 84, 176, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline--journey::before,
  .timeline--journey .timeline-item::before,
  .timeline--program-path::before,
  .timeline--program-path .timeline-item::before {
    animation: none;
  }

  .timeline--journey .timeline-item:hover {
    transform: none;
  }

  .timeline--journey .timeline-item:hover::before {
    transform: scale(1);
  }

  .timeline--program-path .timeline-item:hover {
    transform: none;
  }

  .timeline--program-path .timeline-item:hover::before {
    transform: scale(1);
  }
}

@media (max-width: 520px) {
  .timeline--journey,
  .timeline--program-path {
    --tl-axis: 1.125rem;
    --tl-pad: 2.65rem;
  }
}

.fusion-grid,
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.program-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.toggle-btn {
  border: 1px solid rgba(142, 84, 176, 0.2);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  background: white;
  cursor: pointer;
}

.toggle-btn.active {
  color: white;
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
}

.program-panel {
  display: none;
}

.program-panel.active {
  display: block;
}

.orbital,
.wheel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.chip {
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  text-align: center;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.75);
}

.silver-card {
  border: 1px solid rgba(190, 190, 210, 0.8);
}

.diamond-card {
  border: 1px solid rgba(229, 45, 135, 0.38);
  background: linear-gradient(140deg, rgba(142, 84, 176, 0.2), rgba(229, 45, 135, 0.15));
}

.masonry {
  columns: 1 300px;
  column-gap: 1rem;
}

.quote-card {
  break-inside: avoid;
  margin-bottom: 1rem;
}

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

.testimonials-grid .quote-card {
  position: relative;
  margin: 0;
  min-height: 220px;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 1.1rem 1.12rem 1.15rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(251, 245, 255, 0.95)) padding-box,
    linear-gradient(130deg, rgba(142, 84, 176, 0.55), rgba(229, 45, 135, 0.45), rgba(34, 211, 238, 0.42)) border-box;
  box-shadow: 0 14px 34px rgba(67, 29, 95, 0.1);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonials-grid .quote-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #8e54b0, #e52d87, #22d3ee, #8e54b0);
  background-size: 220% 100%;
  opacity: 0.85;
  transform: translateX(-25%);
  transition: transform 0.55s ease;
}

.testimonials-grid .quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(67, 29, 95, 0.16);
}

.testimonials-grid .quote-card:hover::before {
  transform: translateX(0);
}

.quote-card-head {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  margin-bottom: 0.75rem;
}

.quote-avatar {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  box-shadow: 0 9px 20px rgba(67, 29, 95, 0.18);
}

.quote-avatar--violet {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.quote-avatar--rose {
  background: linear-gradient(135deg, #db2777, #f472b6);
}

.quote-avatar--teal {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.quote-card-head h3 {
  margin: 0;
}

.quote-card--voice p {
  margin: 0;
  line-height: 1.72;
  color: rgba(47, 31, 63, 0.82);
}

.quote-card--placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 255, 0.92)) padding-box,
    linear-gradient(130deg, rgba(34, 211, 238, 0.45), rgba(142, 84, 176, 0.45), rgba(229, 45, 135, 0.4)) border-box;
}

.quote-avatar--placeholder {
  background: linear-gradient(135deg, #8b9bb8, #b8c7df);
  font-size: 0.95rem;
}

.quote-card--placeholder h3 {
  margin: 0;
  font-size: 1rem;
  color: rgba(47, 31, 63, 0.9);
}

.quote-card--placeholder p {
  margin: 0;
  line-height: 1.65;
  color: rgba(47, 31, 63, 0.68);
}

.testimonial-quote-band {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.floating-quote {
  position: relative;
  margin: 0;
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.52));
  border: 1px dashed rgba(142, 84, 176, 0.28);
  box-shadow: 0 12px 28px rgba(67, 29, 95, 0.08);
}

.floating-quote::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  left: 0.65rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(142, 84, 176, 0.3);
}

.floating-quote p {
  margin: 0;
  padding-left: 0.9rem;
  font-size: 1.03rem;
  line-height: 1.72;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(120deg, #7c3aed 0%, #db2777 48%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.floating-quote--a {
  transform: translateY(4px);
}

.floating-quote--b {
  transform: translateY(-2px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 22px;
  transition: transform 0.3s ease;
}

.video-grid iframe:hover {
  transform: translateY(-4px);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.status-message {
  border-radius: 16px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
}

.status-message.success {
  background: rgba(82, 194, 140, 0.2);
  border: 1px solid rgba(48, 154, 104, 0.35);
}

.status-message.error {
  background: rgba(229, 45, 135, 0.15);
  border: 1px solid rgba(182, 27, 104, 0.35);
}

.inline-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
  padding-block: 0.45rem;
}

.inline-links--cta {
  margin-top: clamp(1.15rem, 3vw, 1.5rem);
  margin-bottom: 0.35rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.pill-link {
  border-radius: 999px;
  padding: 0.52rem 1rem;
  background: rgba(142, 84, 176, 0.1);
  border: 1px solid rgba(142, 84, 176, 0.22);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.pill-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
  color: #fff;
}

.progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(142, 84, 176, 0.15);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(142, 84, 176, 0.23);
  border-radius: 16px;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.75);
}

button.primary {
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
  color: white;
  cursor: pointer;
}

.faq-item {
  border-bottom: 1px solid rgba(142, 84, 176, 0.2);
}

.faq-question {
  width: 100%;
  border: none;
  padding: 1rem 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
}

/* Site footer — four columns + legal bar */
.site-footer {
  background: linear-gradient(155deg, #1a1228 0%, #231832 42%, #2a173a 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(2.5rem, 6vw, 3.5rem) max(var(--page-gutter), var(--safe-left)) clamp(1.35rem, 3vw, 1.75rem);
  padding-right: max(var(--page-gutter), var(--safe-right));
  margin-top: 0;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer__logo img {
  display: block;
  width: min(200px, 100%);
  height: auto;
  filter: brightness(1.05);
}

.site-footer__bio {
  margin: 0 0 1.15rem;
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-footer__social {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__contact-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 100%;
}

.site-footer__contact-list i {
  margin-top: 0.15rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.site-footer__contact-list span {
  word-break: break-word;
}

.site-footer__bar {
  margin-top: clamp(1.75rem, 4vw, 2.35rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__legal-copy {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.site-footer__legal-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }

  .site-footer__brand-block {
    grid-column: 1 / -1;
  }
  
  .site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
    flex-flow: column;
    display: flex;
}
}

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

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-footer__legal-links a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.92);
}

.legal-page {
  padding: clamp(2.5rem, 6vw, 3.5rem) max(var(--page-gutter, 1rem), var(--safe-left, 0px))
    clamp(2rem, 5vw, 3rem);
  padding-right: max(var(--page-gutter, 1rem), var(--safe-right, 0px));
}

.legal-page__inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-page__content {
  margin-top: 1.25rem;
}

.legal-page__content h2 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.1rem;
}

.legal-page__content p {
  margin: 0 0 0.85rem;
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.88);
}

.legal-page__content a {
  color: var(--primary-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__back {
  margin: 1.75rem 0 0;
}

.legal-page__back a {
  color: var(--primary-purple);
  font-weight: 600;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.floating-socials {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.social-fab,
.scroll-top-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(34, 18, 47, 0.32);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.social-fab {
  color: #fff;
  font-size: 1rem;
}

.scroll-top-fab {
  border: 1px solid rgba(142, 84, 176, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 236, 255, 0.95));
  color: var(--primary-purple, #8e54b0);
  font-size: 1.05rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
}

.scroll-top-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-fab:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 84, 176, 0.45);
  box-shadow: 0 10px 24px rgba(142, 84, 176, 0.22);
}

.social-fab:hover {
  transform: translateY(-4px) scale(1.04);
}

.social-fab.whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba58);
  animation: waPulse 2s ease-in-out infinite;
}

.social-fab.instagram {
  background: linear-gradient(135deg, #f58529, #e1306c, #833ab4);
}

.social-fab.linkedin {
  background: linear-gradient(135deg, #0077b5, #005983);
}

.social-fab.youtube {
  background: linear-gradient(135deg, #ff2d2d, #c81010);
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 10px 24px rgba(34, 18, 47, 0.35);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 10px 24px rgba(34, 18, 47, 0.35);
  }
}

/* --- Home: fluid layout, flash-card frames, breathing space --- */
body[data-page="home"] section:not(.hero) {
  padding-top: clamp(3.25rem, 7vw, 3.25rem);
  padding-bottom: clamp(3.25rem, 7vw, 3.25rem);
  padding-left: max(var(--page-gutter), var(--safe-left));
  padding-right: max(var(--page-gutter), var(--safe-right));
}

body[data-page="home"] .hero--editorial {
  padding-left: max(var(--page-gutter), var(--safe-left));
  padding-right: max(var(--page-gutter), var(--safe-right));
}

body[data-page="home"] .fluid-strip--mist,
body[data-page="home"] .fluid-strip--rose,
body[data-page="home"] .fluid-strip--proof {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .fluid-strip--mist::after,
body[data-page="home"] .fluid-strip--rose::after {
  content: "";
  position: absolute;
  width: 52%;
  max-width: 480px;
  height: 160%;
  top: -30%;
  right: -8%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent 68%);
  pointer-events: none;
  animation: driftGlow 22s ease-in-out infinite;
}

body[data-page="home"] .fluid-strip--rose::after {
  left: -10%;
  right: auto;
  background: radial-gradient(circle, rgba(229, 45, 135, 0.06), transparent 65%);
  animation-duration: 26s;
  animation-delay: -4s;
}

@keyframes driftGlow {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.85;
  }
  50% {
    transform: translate(-18px, 12px) rotate(6deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .fluid-strip--mist::after,
  body[data-page="home"] .fluid-strip--rose::after {
    animation: none;
  }
}

.container--wide {
  max-width: 1200px;
}

/* Home: one content column width for hero + fluid sections */
body[data-page="home"] .container,
body[data-page="home"] .container.container--wide {
  max-width: 1200px;
  width: 100%;
}

.fluid-section--stats {
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

body[data-page="home"] section.fluid-section--stats {
  padding-top: 0.4rem;
  padding-bottom: 0.2rem;
  padding-left: max(var(--page-gutter), var(--safe-left));
  padding-right: max(var(--page-gutter), var(--safe-right));
}

body[data-page="home"] section.fluid-section--intro-blurb {
  padding-top: clamp(0.65rem, 2vw, 1.1rem);
  padding-bottom: clamp(1rem, 3.2vw, 1.85rem);
  padding-left: max(var(--page-gutter), var(--safe-left));
  padding-right: max(var(--page-gutter), var(--safe-right));
}

.intro-blurb-inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.intro-blurb-copy {
  margin: 0 0 1rem;
  font-size: clamp(1.02rem, 1.45vw, 1.12rem);
  line-height: 1.78;
  color: rgba(47, 31, 63, 0.88);
}

.intro-blurb-line {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-weight: 500;
  line-height: 1.65;
  font-style: italic;
  background: linear-gradient(120deg, #6b3f8a 0%, var(--primary-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fluid-eyebrow {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(124, 74, 155, 0.48);
}

.fluid-section--voice {
  padding-top: clamp(3.75rem, 9vw, 7rem);
  padding-bottom: clamp(3.75rem, 9vw, 7rem);
}

.fluid-kicker {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.subtitle--voice {
  max-width: 36rem;
  margin-bottom: 2.25rem;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(47, 31, 63, 0.85);
}

.flash-card-frame {
  position: relative;
  padding: 0.55rem 0.55rem 1.65rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 10px 22px 44px rgba(67, 29, 95, 0.12), 0 0 0 1px rgba(142, 84, 176, 0.07);
  transform: rotate(-2deg);
  transition: transform 0.45s ease;
}

.hero .flash-card-frame:hover {
  transform: rotate(0deg) translateY(-6px);
}

.flash-card-inner {
  border-radius: 2px;
  overflow: hidden;
  background: rgba(244, 236, 255, 0.35);
}

.hero-visual.flash-card-frame img, .flash-card-inner img {
    width: 100%;
    max-width: min(400px, 90vw);
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    height: 100%;
}
.mystoryimg {
    padding: 0;
    /* margin: 0; */
    border-radius: 10px;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    top: -15px;
}

.mystoryimg img {
    border-radius: 10px;
    max-height: 260px;
}

.flash-card-caption {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(107, 63, 138, 0.5);
  white-space: nowrap;
}

.flash-card-frame--tilt {
  transform: rotate(3deg);
}

.flash-card-frame--tilt-alt {
  transform: rotate(-2.5deg);
}

.flash-card-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 200px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #faf9fc;
  border: 2px dashed rgba(142, 84, 176, 0.2);
  border-radius: 8px;
  color: rgba(107, 63, 138, 0.42);
}

.flash-card-placeholder i {
  font-size: 1.85rem;
  opacity: 0.5;
}

.flash-card-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.flash-card-placeholder--light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
}

.flash-card-frame--light {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 12px 28px 56px rgba(0, 0, 0, 0.35);
}

.flash-card-frame--plain {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.chapter2-full-image {
  width: min(100%, 420px);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  object-fit: contain;
}

/* Home · The Shift — portrait left (40%) + content right (60%) */
.story-flow--shift {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.story-flow--shift .story-flow__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.5vw, 1.5rem);
  align-self: stretch;
  min-height: 100%;
}

.story-flow--shift .story-flow__body .fluid-lede,
.story-flow--shift .story-flow__body .intro-blurb-line {
  margin-bottom: 0;
}

.story-flow--shift .readmystory {
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
  padding-block: 0.45rem;
}

.story-flow--shift > .chapter2-media.flash-card-frame--plain {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(67, 29, 95, 0.14);
}

.story-flow--shift .chapter2-full-image {
  width: 100%;
  max-width: none;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  margin: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  transform: none;
  border-radius: 18px;
}

.proof-media {
  padding: 0.45rem;
}

.proof-image {
  width: min(100%, 360px);
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
  object-fit: cover;
}

.fluid-strip {
  padding: clamp(3.75rem, 10vw, 7.5rem) clamp(1rem, 4vw, 2rem);
}

.fluid-strip--mist {
  background: radial-gradient(ellipse 130% 90% at 40% -10%, rgba(244, 236, 255, 0.65), transparent 52%), #ffffff;
}

.fluid-strip--rose {
  background: radial-gradient(ellipse 90% 70% at 90% 10%, rgba(229, 45, 135, 0.07), transparent 45%), #fdfcfe;
}

.fluid-strip--path {
  position: relative;
}

.fluid-strip--path::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(142, 84, 176, 0.75), rgba(229, 45, 135, 0.65), rgba(34, 211, 238, 0.55));
  opacity: 0.55;
}

.fluid-strip--proof {
  background: linear-gradient(155deg, #23142f 0%, #3d2760 50%, #261832 100%);
  color: rgba(255, 255, 255, 0.94);
}

.story-flow {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem 2.75rem;
    align-items: start;
}
.story-flow .story-copy {
  grid-column: 1;
  grid-row: 1;
}

.story-flow .mini-kpis--fluid {
  grid-column: 1;
  grid-row: 2;
}

.story-flow > .flash-card-frame:not(.flash-card-frame--light):not(.flash-card-frame--path):not(.chapter2-media) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
}

.story-flow > .chapter2-media.flash-card-frame--plain {
  width: 100%;
  max-width: 460px;
}

/* Shift layout must win over generic .story-flow portrait rules above */
.story-flow.story-flow--shift {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
}

.story-flow.story-flow--shift > .chapter2-media.flash-card-frame--plain {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  justify-self: stretch;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.story-flow.story-flow--shift > .story-flow__body {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: stretch;
  min-height: 100%;
}

.story-flow.story-flow--shift .mini-kpis--fluid {
  grid-column: auto;
  grid-row: auto;
}

/* Path layout — content left (60%) + image right (40%), mirrors Shift rhythm */
.story-flow.story-flow--path {
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.story-flow.story-flow--path .story-flow__lead {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.story-flow.story-flow--path .story-copy--path {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  align-self: stretch;
}

.story-flow.story-flow--path > .path-portrait {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  transform: none;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  left: 0;
}

.story-flow--reverse {
  grid-template-columns: minmax(210px, 290px) 1fr;
}

.story-flow--reverse > .flash-card-frame {
  grid-column: 1;
  grid-row: 1;
}

.story-flow--reverse .story-copy {
  grid-column: 2;
  grid-row: 1;
}

.story-flow--reverse .path-tags--fluid {
  grid-column: 1 / -1;
  grid-row: 2;
}

.story-flow--path {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.story-flow--path .story-flow__lead {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.story-flow--path .story-copy--path {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.3rem);
  align-self: stretch;
}

.story-flow--path .story-copy--path .inline-links--cta {
  margin-top: clamp(0.35rem, 1.5vw, 0.65rem);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.story-flow--path .story-copy--path .fluid-lede {
  margin-bottom: 0;
}

.story-flow--path .story-copy--path .intro-blurb-line {
  margin-bottom: 0;
}

.story-flow--path .path-portrait__img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  margin: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.flash-card-placeholder--path {
  aspect-ratio: 4 / 5;
  max-width: 100%;
  width: 100%;
}

.program-preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.05rem 0 1.15rem;
}

.program-preview-tabs:empty {
  display: none;
  margin: 0;
}

.program-preview-tab {
  border: 1px solid rgba(142, 84, 176, 0.22);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: rgba(47, 31, 63, 0.72);
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.program-preview-tab:hover {
  border-color: rgba(142, 84, 176, 0.42);
}

.program-preview-tab--active {
  background: linear-gradient(120deg, rgba(142, 84, 176, 0.22), rgba(229, 45, 135, 0.14));
  border-color: rgba(142, 84, 176, 0.42);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(142, 84, 176, 0.12);
}

.programs-hero {
  position: relative;
  padding: clamp(4rem, 12vw, 7rem) 1.2rem clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.programs-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 22%, rgba(168, 85, 247, 0.22), transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 5%, rgba(236, 72, 153, 0.14), transparent 48%),
    linear-gradient(185deg, #faf7ff 0%, #ffffff 100%);
  z-index: 0;
}

.programs-hero.page-banner {
  padding-top: clamp(3.6rem, 9vw, 6.2rem);
}

.programs-hero.page-banner::before,
.programs-hero.page-banner::after {
  content: none;
}

.programs-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.programs-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(107, 63, 138, 0.55);
  margin: 0 0 0.75rem;
}

.programs-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.programs-lede {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(47, 31, 63, 0.78);
}

.programs-body {
  padding-top: 0.75rem;
}

.programs-intro-band {
  max-width: 920px;
  margin: 0 auto 1.35rem;
  display: grid;
  grid-template-columns: 1.2fr minmax(220px, 300px);
  gap: 1rem;
  align-items: stretch;
}

.programs-intro-copy {
  padding: 1.25rem 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(142, 84, 176, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 255, 0.8));
  box-shadow: 0 12px 30px rgba(67, 29, 95, 0.08);
}

.programs-intro-copy .fluid-heading {
  margin: 0 0 0.6rem;
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.28;
}

.programs-intro-copy .page-flow-lede {
  font-size: 1rem;
  line-height: 1.72;
}

.programs-intro-quote {
  margin: 0;
  display: grid;
  align-content: center;
  gap: 0.55rem;
  border-radius: 20px;
  padding: 1.1rem 1.15rem;
  border: 1px solid transparent;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(253, 247, 255, 0.95)) padding-box,
    linear-gradient(130deg, rgba(142, 84, 176, 0.58), rgba(229, 45, 135, 0.5), rgba(34, 211, 238, 0.42)) border-box;
  box-shadow: 0 14px 32px rgba(67, 29, 95, 0.11);
}

.programs-intro-quote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.62;
  font-weight: 600;
  color: rgba(47, 31, 63, 0.92);
}

.programs-intro-quote span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(107, 63, 138, 0.6);
}

.program-toggle--sleek {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.program-panel--sleek {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.program-panel--sleek > .inline-links {
  margin-top: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.65rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  justify-content: center;
}

.toggle-btn--silver,
.toggle-btn--diamond {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border-radius: 20px;
  padding: 1.05rem 1.25rem;
  border-width: 2px;
  text-align: left;
  line-height: 1.35;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.toggle-btn--silver:hover,
.toggle-btn--diamond:hover {
  border-color: rgba(142, 84, 176, 0.42);
}

.toggle-btn.active.toggle-btn--silver,
.toggle-btn.active.toggle-btn--diamond {
  border-color: rgba(142, 84, 176, 0.65);
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.98), rgba(244, 236, 255, 0.92));
  box-shadow: 0 14px 42px rgba(142, 84, 176, 0.14);
}

.toggle-kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(107, 63, 138, 0.48);
}

.toggle-name {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-dark);
}

.toggle-meta {
  font-size: 0.8rem;
  color: rgba(47, 31, 63, 0.54);
}

.fluid-heading {
  font-size: clamp(1.6rem, 2.9vw, 2.35rem);
  font-weight: 600;
  line-height: 1.22;
  margin: 0.25rem 0 1rem;
  letter-spacing: -0.02em;
}

.fluid-lede {
  font-size: 1.05rem;
  line-height: 1.78;
  margin: 0 0 1.2rem;
 
  color: rgba(47, 31, 63, 0.88);
}

.mini-kpis--fluid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mini-kpis--fluid span {
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(142, 84, 176, 0.14);
  font-size: 0.86rem;
}

.path-tags--fluid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.path-tags--fluid span {
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 45, 135, 0.16);
  font-size: 0.86rem;
}

.path-tags--stacked {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.55rem;
}

.path-tags__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  align-items: center;
}

.path-tags--stacked .path-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.42rem 0.82rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 45, 135, 0.16);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
}

.path-tags--stacked .path-tag--program {
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    linear-gradient(120deg, rgba(142, 84, 176, 0.85), rgba(229, 45, 135, 0.72)) border-box;
  box-shadow: 0 4px 14px rgba(142, 84, 176, 0.08);
}

.proof-flow {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 260px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.fluid-heading--light {
  color: #fff;
}

.story-kicker--light {
  color: rgba(255, 255, 255, 0.5);
}

.quote-ribbon--open {
  border-left: none;
  padding-left: 0;
  padding-top: 1.15rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pill-link--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.pill-link--light:hover {
  background: #fff;
  color: var(--primary-purple);
}

.fluid-strip--cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
 
}

body[data-page="home"] section.fluid-strip--cta-final {
  padding-top: clamp(3.25rem, 8.5vw, 5.75rem);
  padding-bottom: clamp(3.25rem, 8.5vw, 5.75rem);
  padding-left: max(var(--page-gutter), var(--safe-left));
  padding-right: max(var(--page-gutter), var(--safe-right));
}

body[data-page="home"] .site-footer {
  margin-top: 0;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-final-heading {
  margin: 0 0 1.15rem;
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: rgba(35, 22, 52, 0.96);
  transition: color 0.4s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-highlight {
    /* background: linear-gradient(115deg, var(--primary-purple) 0%, #c4b5fd 45%, #a78bfa 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: #9655a1;
}

.cta-highlight--rose {
    /* background: linear-gradient(115deg, var(--primary-pink) 15%, #fbcfe8 50%, #db2777 100%); */
    -webkit-background-clip: text;
    background-clip: text;
    color: #9655a1;
}

.cta-final-break {
  display: none;
}

@media (min-width: 520px) {
  .cta-final-break {
    display: inline;
  }
}

.cta-final-lede {
  margin: 0 auto 1.75rem;
  max-width: 36.5rem;
  font-size: clamp(1rem, 1.35vw, 1.09rem);
  line-height: 1.78;
  color: rgba(47, 31, 63, 0.86);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-em {
  font-weight: 600;
  color: var(--primary-purple);
}

.cta-em-strong {
  font-weight: 600;
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(0.5rem, 1.5vw, 0.85rem);
  padding-top: 0.55rem;
  padding-bottom: 0.35rem;
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(125deg, var(--primary-purple), var(--primary-pink));
  box-shadow: 0 10px 38px rgba(142, 84, 176, 0.38);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.cta-final-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 46px rgba(229, 45, 135, 0.32);
  filter: brightness(1.04);
}

.cta-final-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.cta-final-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(107, 63, 138, 0.78);
  border-bottom: 1px solid rgba(142, 84, 176, 0.28);
  padding-bottom: 0.1rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.cta-final-link:hover {
  color: var(--primary-pink);
  border-color: rgba(229, 45, 135, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .cta-final-heading,
  .cta-final-lede,
  .cta-final-btn,
  .cta-final-link {
    transition: none;
  }

  .cta-final-btn:hover {
    transform: none;
  }
}

/* --- Cross-page fluid consistency (non-home) --- */
:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) {
  background: linear-gradient(180deg, #fdfbff 0%, #f8f4fc 38%, #f4ecff 100%);
}

:is(
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) section,
body[data-page="about"] section:nth-of-type(n + 3) {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.4rem) clamp(1rem, 4vw, 2rem);
}

/*
:is(
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) section:nth-of-type(odd),
body[data-page="about"] section:nth-of-type(n + 3):nth-of-type(odd) {
  background: radial-gradient(ellipse 85% 60% at 85% -10%, rgba(142, 84, 176, 0.1), transparent 54%), #ffffff;
}
*/
:is(
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) section:nth-of-type(even),
body[data-page="about"] section:nth-of-type(n + 3):nth-of-type(even) {
  background: radial-gradient(ellipse 80% 64% at 12% 0%, rgba(229, 45, 135, 0.08), transparent 52%), #faf7fd;
}

:is(
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) section:not(:first-of-type)::before,
body[data-page="about"] section:nth-of-type(n + 3)::before {
  content: "";
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(142, 84, 176, 0), rgba(142, 84, 176, 0.34), rgba(229, 45, 135, 0));
  opacity: 0.75;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: rgba(43, 27, 58, 0.96);
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .subtitle {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.84);
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .section-soft {
  background: radial-gradient(ellipse 88% 60% at 50% 0%, rgba(142, 84, 176, 0.08), transparent 52%), #faf6fd;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(249, 242, 255, 0.74));
  border: 1px solid rgba(142, 84, 176, 0.18);
  box-shadow: 0 14px 38px rgba(67, 29, 95, 0.11);
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .glass-card:not(.timeline--journey)::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(142, 84, 176, 0.55), rgba(229, 45, 135, 0.5), rgba(34, 211, 238, 0.35));
  opacity: 0.35;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(142, 84, 176, 0.32);
  box-shadow: 0 22px 54px rgba(67, 29, 95, 0.16);
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .glass-card:not(.timeline--journey):hover::before {
  opacity: 0.75;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .pill-link,
:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) button.primary {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.3s ease;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .pill-link:hover,
:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(142, 84, 176, 0.24);
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .fusion-grid > .glass-card,
:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .method-grid > .glass-card,
:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .masonry .quote-card {
  min-height: 100%;
}

:is(
    body[data-page="about"],
    body[data-page="programs"],
    body[data-page="trainings"],
    body[data-page="awards"],
    body[data-page="testimonials"],
    body[data-page="contact"]
  ) .video-grid iframe {
  border-radius: 24px;
  border: 1px solid rgba(142, 84, 176, 0.18);
  box-shadow: 0 12px 32px rgba(67, 29, 95, 0.14);
}

@media (prefers-reduced-motion: no-preference) {
  :is(
      body[data-page="about"],
      body[data-page="programs"],
      body[data-page="trainings"],
      body[data-page="awards"],
      body[data-page="testimonials"],
      body[data-page="contact"]
    ) .glass-card::before {
    animation: cardBorderDrift 9s linear infinite;
    background-size: 220% 220%;
  }

  :is(
      body[data-page="programs"],
      body[data-page="trainings"],
      body[data-page="awards"],
      body[data-page="testimonials"],
      body[data-page="contact"]
    ) section::after,
  body[data-page="about"] section:nth-of-type(n + 3)::after {
    content: "";
    position: absolute;
    width: min(46vw, 460px);
    height: min(46vw, 460px);
    border-radius: 50%;
    right: -12%;
    top: -22%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(142, 84, 176, 0.08), transparent 68%);
    animation: sectionGlowDrift 18s ease-in-out infinite;
  }
}

@keyframes cardBorderDrift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes sectionGlowDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate(-16px, 12px) scale(1.06);
    opacity: 0.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(
      body[data-page="about"],
      body[data-page="programs"],
      body[data-page="trainings"],
      body[data-page="awards"],
      body[data-page="testimonials"],
      body[data-page="contact"]
    ) .glass-card::before,
  :is(
      body[data-page="programs"],
      body[data-page="trainings"],
      body[data-page="awards"],
      body[data-page="testimonials"],
      body[data-page="contact"]
    ) section::after,
  body[data-page="about"] section:nth-of-type(n + 3)::after {
    animation: none;
    transition: none;
  }
}

/* --- Reusable narrative section pattern (non-home pages) --- */
.page-flow-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(3.4rem, 9vw, 5.8rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 8vw, 4.8rem);
  isolation: isolate;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 72% 54% at 8% 18%, rgba(168, 85, 247, 0.15), transparent 58%),
    radial-gradient(ellipse 58% 45% at 92% 12%, rgba(236, 72, 153, 0.12), transparent 52%),
    linear-gradient(180deg, #fcf9ff 0%, #f7f1fd 56%, #ffffff 100%);
}

.page-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 65%, rgba(255, 255, 255, 1) 100%);
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.page-banner-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(107, 63, 138, 0.55);
}

.page-banner-title {
  margin: 0 0 0.7rem;
  font-size: clamp(1.95rem, 4vw, 2.95rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: rgba(43, 27, 58, 0.96);
}

.page-banner-lede {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.82);
}

.page-banner-highlight {
  background: linear-gradient(120deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-banner-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 1;
}

.page-banner-orb--a {
  width: min(34vw, 300px);
  height: min(34vw, 300px);
  top: -15%;
  left: 6%;
  background: rgba(168, 85, 247, 0.34);
}

.page-banner-orb--b {
  width: min(30vw, 260px);
  height: min(30vw, 260px);
  right: 8%;
  top: 10%;
  background: rgba(236, 72, 153, 0.28);
}

.page-banner-wave {
  position: absolute;
  left: -6%;
  width: 112%;
  height: 70px;
  bottom: 8px;
  z-index: 1;
  opacity: 0.42;
}

.page-banner-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

body[data-page="trainings"] .page-banner::before {
  background:
    radial-gradient(ellipse 72% 54% at 8% 18%, rgba(168, 85, 247, 0.13), transparent 58%),
    radial-gradient(ellipse 58% 45% at 92% 12%, rgba(34, 211, 238, 0.1), transparent 52%),
    linear-gradient(180deg, #fcf9ff 0%, #f4effc 56%, #ffffff 100%);
}

body[data-page="awards"] .page-banner::before {
  background:
    radial-gradient(ellipse 72% 54% at 8% 18%, rgba(245, 158, 11, 0.13), transparent 58%),
    radial-gradient(ellipse 58% 45% at 92% 12%, rgba(236, 72, 153, 0.1), transparent 52%),
    linear-gradient(180deg, #fffaf4 0%, #f8f1fb 56%, #ffffff 100%);
}

body[data-page="testimonials"] .page-banner::before {
  background:
    radial-gradient(ellipse 72% 54% at 8% 18%, rgba(236, 72, 153, 0.12), transparent 58%),
    radial-gradient(ellipse 58% 45% at 92% 12%, rgba(168, 85, 247, 0.1), transparent 52%),
    linear-gradient(180deg, #fff8fc 0%, #f7f1fd 56%, #ffffff 100%);
}

body[data-page="blog"] .page-banner::before {
  background:
    radial-gradient(ellipse 72% 54% at 8% 18%, rgba(236, 72, 153, 0.12), transparent 58%),
    radial-gradient(ellipse 58% 45% at 92% 12%, rgba(168, 85, 247, 0.1), transparent 52%),
    linear-gradient(180deg, #fff8fc 0%, #f7f1fd 56%, #ffffff 100%);
}

body[data-page="contact"] .page-banner::before {
  background:
    radial-gradient(ellipse 72% 54% at 8% 18%, rgba(34, 197, 94, 0.11), transparent 58%),
    radial-gradient(ellipse 58% 45% at 92% 12%, rgba(168, 85, 247, 0.1), transparent 52%),
    linear-gradient(180deg, #f7fffb 0%, #f3f2fd 56%, #ffffff 100%);
}

.page-flow-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(107, 63, 138, 0.58);
}

.page-flow-lede {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.84);
}

.page-chapter {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: clamp(1.2rem, 3.5vw, 2.5rem);
  align-items: start;
}

.page-chapter-lead {
  grid-column: 1;
  grid-row: 1;
}

.page-chapter:not(.page-chapter--reverse) > .page-chapter-media,
.page-chapter:not(.page-chapter--reverse) > figure.page-chapter-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.page-chapter:not(.page-chapter--reverse) .page-chapter-copy {
  grid-column: 1;
  grid-row: 2;
}

.page-chapter--reverse {
  grid-template-columns: minmax(220px, 300px) 1fr;
}

.page-chapter--reverse .page-chapter-lead {
  grid-column: 2;
  grid-row: 1;
}

.page-chapter--reverse > .page-chapter-media,
.page-chapter--reverse > figure.page-chapter-media {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.page-chapter--reverse .page-chapter-copy {
  grid-column: 2;
  grid-row: 2;
}

.page-chapter-copy {
  min-width: 0;
}

.page-chapter-copy .story-kicker {
  margin-top: 0.1rem;
}

.page-chapter-media {
  justify-self: end;
}

.page-chapter--reverse .page-chapter-media {
  justify-self: start;
}

/* Programs · Coaching methodology — image left 40% / copy right 60% */
.programs-methodology-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.programs-methodology-media {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  transform: none;
  overflow: hidden;
  border-radius: 18px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}

.programs-methodology-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.programs-methodology-copy .story-kicker {
  margin: 0 0 0.65rem;
}

.programs-methodology-copy .fluid-heading {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.22;
}

.programs-methodology-copy > p {
  margin: 0 0 1.15rem;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: rgba(47, 31, 63, 0.88);
}

.programs-methodology-copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.programs-methodology-copy .credentials-list {
  margin-bottom: 1.25rem;
}

.programs-methodology-copy .credentials-list:last-of-type {
  margin-bottom: 0;
}

.programs-methodology-media__img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  margin: 0;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .programs-methodology-grid {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 4vw, 1.75rem);
  }

  .programs-methodology-copy,
  .programs-methodology-media {
    grid-column: 1;
    grid-row: auto;
  }

  .programs-methodology-media {
    max-width: min(100%, 420px);
    margin-inline: auto;
    width: 100%;
  }
}

/* Legacy balanced chapter (unused on methodology after refactor) */
body[data-page="programs"] .page-chapter.page-chapter--balanced {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 42%);
  grid-template-rows: auto auto;
  align-items: start;
  gap: clamp(1.2rem, 3vw, 2rem);
}

body[data-page="programs"] .page-chapter.page-chapter--balanced .page-chapter-lead {
  grid-column: 1 / -1;
  grid-row: 1;
}

body[data-page="programs"] .page-chapter.page-chapter--balanced .page-chapter-copy.glass-card {
  grid-column: 1;
  grid-row: 2;
  height: auto;
  align-self: start;
}

body[data-page="programs"] .page-chapter.page-chapter--balanced .page-chapter-media {
  grid-column: 2;
  grid-row: 2;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  align-self: stretch;
  height: 100%;
  max-height: 100%;
  min-height: 0;
}

body[data-page="programs"] .page-chapter.page-chapter--balanced .programs-methodology-visual.flash-card-frame {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body[data-page="programs"] .page-chapter.page-chapter--balanced .programs-methodology-placeholder.flash-card-placeholder {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  width: 100%;
  max-width: none;
  aspect-ratio: unset;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}

body[data-page="programs"] .page-chapter.page-chapter--balanced .programs-methodology-placeholder .media-cover {
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
}

@media (min-width: 1024px) {
  body[data-page="programs"] .page-chapter.page-chapter--balanced .page-chapter-media {
    max-width: none;
  }
}

.page-chapter-media .flash-card-placeholder {
  max-width: 100%;
  width: 100%;
  min-height: 220px;
}

/* Trainings Ch.02 - "Learning · in motion" card: exact 343 x 285 frame, sharp photo scaling */
.page-chapter .page-chapter-media.training-learning-photo.flash-card-frame {
  width: min(343px, calc(100vw - 2rem));
  max-width: min(343px, calc(100vw - 2rem));
  height: 285px;
  box-sizing: border-box;
  padding: 6px 8px 30px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.page-chapter .training-learning-photo .flash-card-inner {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.page-chapter .training-learning-photo .flash-card-inner img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center 18%;
  image-rendering: auto;
}

.page-chapter .page-chapter-media.training-learning-photo.flash-card-frame {
    max-width: min(343px, 100%);
    width: min(343px, 100%);
    position: relative;
    top: -5px;
}

/* Trainings Ch.07 - Academic foundation card: exact 350 x 250 frame, sharp photo scaling */
.page-chapter .page-chapter-media.training-chapter07-photo.flash-card-frame {
  width: min(350px, calc(100vw - 2rem));
  max-width: min(350px, calc(100vw - 2rem));
  height: 250px;
  box-sizing: border-box;
  padding: 6px 8px 28px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.page-chapter .training-chapter07-photo .flash-card-inner {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}

.page-chapter .training-chapter07-photo .flash-card-inner img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center 22%;
  image-rendering: auto;
}

.page-chapter .page-chapter-media.training-chapter07-photo.flash-card-frame {
    max-width: min(350px, 100%);
    width: min(350px, 100%);
    postion: relative;
    top: -8px;
}

.flow-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.flow-tag-row span {
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.83rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(142, 84, 176, 0.18);
}

.training-gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0.25rem 0;
}

.training-gallery-viewport.is-lightbox-open .training-gallery--loop {
  animation-play-state: paused !important;
}

.training-gallery-a11y-hint {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(47, 31, 63, 0.72);
  max-width: 40rem;
}

.training-gallery-figure {
  overflow: hidden;
}

.training-gallery-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: 14px;
  line-height: 0;
  font: inherit;
  color: inherit;
}

.training-gallery-thumb:focus-visible {
  outline: 3px solid rgba(168, 85, 247, 0.85);
  outline-offset: 3px;
}

.training-gallery-figure--loop-clone img {
  cursor: zoom-in;
}

@media (prefers-reduced-motion: no-preference) {
  .training-gallery-thumb img,
  .training-gallery-figure--loop-clone img {
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .training-gallery-figure:is(:hover, :focus-within) .training-gallery-thumb img,
  .training-gallery-figure--loop-clone:is(:hover) img {
    transform: scale(1.07);
  }
}

.training-gallery-lightbox {
  padding: 0;
  border: none;
  max-width: none;
  width: min(96vw, 1280px);
  background: transparent;
  box-shadow: none;
}

.training-gallery-lightbox::backdrop {
  background: rgba(12, 6, 22, 0.78);
  backdrop-filter: blur(6px);
}

.training-gallery-lightbox-panel {
  position: relative;
  padding: 2.75rem 0.75rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.training-gallery-lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 10, 35, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.training-gallery-lightbox-close:hover {
  background: rgba(168, 85, 247, 0.45);
}

.training-gallery-lightbox-close:focus-visible {
  outline: 3px solid rgba(250, 250, 255, 0.95);
  outline-offset: 2px;
}

.training-gallery-lightbox-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.training-gallery-lightbox-img {
  display: block;
  width: 100%;
  max-height: min(86vh, 900px);
  object-fit: contain;
  border-radius: 14px;
  margin: 0 auto;
}

@media (prefers-reduced-motion: no-preference) {
  .training-gallery-lightbox[open] .training-gallery-lightbox-img {
    animation: trainingLightboxZoomOut 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes trainingLightboxZoomOut {
  from {
    transform: scale(1.12);
    opacity: 0.88;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.training-gallery--loop {
  --gallery-gap: 1.05rem;
  display: flex;
  gap: var(--gallery-gap);
  width: max-content;
}

.training-gallery--loop figure {
  margin: 0;
  padding: 0.52rem;
  border-radius: 20px;
  flex: 0 0 calc((100vw - 2rem - (var(--gallery-gap) * 3)) / 4);
  max-width: 290px;
}

.training-gallery--loop img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.growth-card {
  margin: 0;
  padding: 0.88rem;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(253, 248, 255, 0.95)) padding-box,
    linear-gradient(128deg, rgba(142, 84, 176, 0.5), rgba(229, 45, 135, 0.44), rgba(34, 211, 238, 0.38)) border-box;
  box-shadow: 0 14px 34px rgba(67, 29, 95, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.growth-card:nth-child(odd) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(252, 245, 255, 0.96)) padding-box,
    linear-gradient(128deg, rgba(142, 84, 176, 0.58), rgba(229, 45, 135, 0.48), rgba(34, 211, 238, 0.4)) border-box;
}

.growth-card:nth-child(even) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(241, 252, 255, 0.95)) padding-box,
    linear-gradient(128deg, rgba(34, 211, 238, 0.52), rgba(56, 189, 248, 0.44), rgba(142, 84, 176, 0.42)) border-box;
}

.growth-card-thumb {
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 14px;
  cursor: zoom-in;
  overflow: hidden;
  line-height: 0;
  font: inherit;
  color: inherit;
}

.growth-card-thumb:focus-visible {
  outline: 3px solid rgba(168, 85, 247, 0.88);
  outline-offset: 3px;
}

.growth-card-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .growth-card-thumb img {
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .growth-card-thumb:hover img,
  .growth-card-thumb:focus-visible img {
    transform: scale(1.07);
  }
}

.growth-card h3 {
  margin: 0.28rem 0 0.5rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(47, 31, 63, 0.95);
}

.growth-card p {
  margin: 0;
  line-height: 1.72;
  color: rgba(47, 31, 63, 0.82);
  text-wrap: balance;
}

.growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(67, 29, 95, 0.16);
}

.program-accordion {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.program-accordion details {
  border: 1px solid rgba(142, 84, 176, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.program-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 0.82rem 1rem;
  font-weight: 600;
  color: rgba(47, 31, 63, 0.92);
  position: relative;
}

.program-accordion summary::-webkit-details-marker {
  display: none;
}

.program-path-disclosure summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  padding-right: 2.85rem;
  line-height: 1.32;
}

.program-path-disclosure-label {
  font-weight: 700;
}

.program-path-disclosure-meta {
  font-size: 0.805rem;
  font-weight: 500;
  color: rgba(47, 31, 63, 0.54);
}

.program-path-disclosure-inner {
  padding: 0 1rem 0.98rem;
}

.program-path-disclosure-inner .program-path-lede {
  margin: 0 0 0.45rem;
}

.program-path-disclosure-inner .timeline--program-path {
  margin-top: 0.35rem;
}

.program-accordion summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
}

.program-accordion details[open] summary::after {
  content: "−";
}

.program-accordion details > p,
.program-accordion details > ul,
.program-accordion details > ol {
  margin: 0;
  padding: 0 1rem 0.95rem;
}

.program-path-lede {
  margin: 0 0 0.2rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(47, 31, 63, 0.66);
}

.timeline--program-path {
  position: relative;
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  --tl-axis: 1.3rem;
  --tl-pad: 3rem;
  --tl-dot: 1.0625rem;
  --tl-dot-border: 3px;
  padding: 1.1rem 0.65rem 0.85rem var(--tl-pad);
}

.timeline--program-path::before {
  content: "";
  position: absolute;
  left: var(--tl-axis);
  top: 1.32rem;
  bottom: 1.12rem;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--primary-purple) 0%,
    var(--primary-pink) 38%,
    rgba(229, 45, 135, 0.55) 70%,
    rgba(244, 236, 255, 0.35) 100%
  );
  background-size: 100% 280%;
}

.timeline--program-path .timeline-item {
  position: relative;
  margin-bottom: 0;
  padding: 0.82rem 0.72rem 0.9rem 0;
  border-radius: 16px;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.42s ease;
}

.timeline--program-path .timeline-item:not(:last-child) {
  margin-bottom: 0.42rem;
}

.timeline--program-path .timeline-item:last-child {
  padding-bottom: 0.6rem;
}

.timeline--program-path .timeline-item::before {
  content: "";
  position: absolute;
  top: 1.08rem;
  left: calc(var(--tl-axis) - var(--tl-pad) - var(--tl-dot) / 2);
  width: var(--tl-dot);
  height: var(--tl-dot);
  margin: 0;
  border-radius: 50%;
  background: #fff;
  border: var(--tl-dot-border) solid var(--primary-pink);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  z-index: 2;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.timeline--program-path .timeline-item h4 {
  margin: 0 0 0.38rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.34;
  color: rgba(36, 24, 58, 0.96);
}

.timeline--program-path .timeline-item p {
  margin: 0;
  font-size: 0.885rem;
  line-height: 1.62;
  color: rgba(47, 31, 63, 0.82);
}

.timeline--program-path .timeline-item:hover {
  transform: translateX(5px);
  background: rgba(244, 236, 255, 0.48);
  box-shadow: 0 10px 28px rgba(142, 84, 176, 0.088);
}

.timeline--program-path .timeline-item:hover::before {
  transform: scale(1.07);
  border-color: var(--primary-purple);
  box-shadow:
    0 0 0 2px #fff,
    0 0 17px rgba(229, 45, 135, 0.4);
}

.about-credentials-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.88rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(142, 84, 176, 0.14);
  box-shadow: 0 8px 22px rgba(67, 29, 95, 0.07);
}

.about-credential-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(47, 31, 63, 0.9);
}

.about-credential-icon {
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  box-shadow: 0 8px 18px rgba(67, 29, 95, 0.14);
}

.about-credential-icon--violet { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.about-credential-icon--pink { background: linear-gradient(135deg, #db2777, #f472b6); }
.about-credential-icon--teal { background: linear-gradient(135deg, #0d9488, #2dd4bf); }
.about-credential-icon--amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.about-credential-icon--indigo { background: linear-gradient(135deg, #4f46e5, #818cf8); }
.about-credential-icon--rose { background: linear-gradient(135deg, #e11d48, #fb7185); }
.about-credential-icon--orange { background: linear-gradient(135deg, #ea580c, #fb923c); }
.about-credential-icon--sky { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.about-credential-icon--mint { background: linear-gradient(135deg, #059669, #34d399); }
.about-credential-icon--gold { background: linear-gradient(135deg, #ca8a04, #facc15); }

.about-credentials-actions {
  margin-top: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  padding-block: 0.5rem;
}

/* My Story - spotlight chapters 04 & 05 */
.about-chapter-focus {
  position: relative;
  scroll-margin-top: 5.5rem;
}

.about-chapter-focus--beliefs {
  background:
    radial-gradient(ellipse 85% 55% at 50% 0%, rgba(168, 85, 247, 0.12), transparent 62%),
    radial-gradient(ellipse 70% 50% at 12% 88%, rgba(34, 211, 238, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(252, 250, 255, 0.98) 0%, rgba(244, 239, 252, 0.96) 100%);
}

.about-chapter-focus--people {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(244, 114, 182, 0.14), transparent 58%),
    radial-gradient(ellipse 65% 45% at 92% 70%, rgba(251, 191, 36, 0.1), transparent 52%),
    linear-gradient(180deg, rgba(255, 251, 253, 0.98) 0%, rgba(255, 245, 248, 0.97) 100%);
}

.about-chapter-focus-shell {
  position: relative;
  margin-top: 0.35rem;
  padding: clamp(1.35rem, 3.5vw, 2.15rem) clamp(1rem, 3vw, 1.85rem) clamp(1.5rem, 3.5vw, 2.35rem);
  border-radius: clamp(22px, 4vw, 30px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)) padding-box,
    linear-gradient(125deg, rgba(142, 84, 176, 0.55), rgba(229, 45, 135, 0.48), rgba(34, 211, 238, 0.42)) border-box;
  border: 2px solid transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 22px 56px rgba(67, 29, 95, 0.12),
    0 0 80px rgba(168, 85, 247, 0.08);
  overflow: hidden;
}

.about-chapter-focus--people .about-chapter-focus-shell {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 252, 253, 0.88)) padding-box,
    linear-gradient(128deg, rgba(229, 45, 135, 0.52), rgba(244, 114, 182, 0.45), rgba(251, 191, 36, 0.38)) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 22px 56px rgba(120, 30, 70, 0.1),
    0 0 72px rgba(236, 72, 153, 0.1);
}

/* Beliefs chapter — no outer gradient shell; inner cards unchanged */
.about-chapter-focus--beliefs .about-chapter-focus-shell {
  margin-top: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about-chapter-focus--beliefs .about-chapter-focus-shell::before {
  display: none;
}

.about-chapter-focus--beliefs.about-chapter-focus--revealed .about-chapter-focus-shell {
  animation: none;
  transform: none;
  box-shadow: none;
}

.about-chapter-focus-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(90deg, #a855f7, #ec4899, #22d3ee, #a855f7);
  background-size: 240% 100%;
  opacity: 0.92;
}

.about-chapter-focus--people .about-chapter-focus-shell::before {
  background: linear-gradient(90deg, #ec4899, #f97316, #fbbf24, #ec4899);
  background-size: 240% 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .about-chapter-focus-shell::before {
    animation: aboutChapterFocusBarDrift 14s linear infinite;
  }

  .about-chapter-focus--revealed .about-chapter-focus-shell {
    animation: aboutChapterShellSettle 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .about-chapter-focus--revealed .about-chapter-focus-shell::before {
    animation:
      aboutChapterFocusBarDrift 14s linear infinite,
      aboutChapterBarPulse 1.1s ease-out 0.15s both;
  }
}

@keyframes aboutChapterFocusBarDrift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes aboutChapterBarPulse {
  0% {
    filter: brightness(1);
    opacity: 0.75;
  }

  40% {
    filter: brightness(1.15);
    opacity: 1;
  }

  100% {
    filter: brightness(1);
    opacity: 0.95;
  }
}

@keyframes aboutChapterShellSettle {
  0% {
    transform: translateY(18px) scale(0.985);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.65) inset,
      0 12px 32px rgba(67, 29, 95, 0.06),
      0 0 40px rgba(168, 85, 247, 0.04);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.about-chapter-focus-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0 auto 1.15rem;
  padding: 0.48rem 1.05rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(88, 48, 120, 0.92);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 236, 255, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(67, 29, 95, 0.08);
}

.about-chapter-focus-pill i {
  font-size: 0.95rem;
  color: #a855f7;
  opacity: 0.95;
}

.about-chapter-focus-pill--warm {
  color: rgba(120, 40, 70, 0.92);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 250, 0.92));
  border-color: rgba(236, 72, 153, 0.32);
}

.about-chapter-focus-pill--warm i {
  color: #ec4899;
}

.about-chapter-focus .story-kicker {
  text-align: center;
  margin-bottom: 0.45rem;
}

.about-chapter-focus .fluid-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: min(40rem, 100%);
  font-size: clamp(1.42rem, 3.6vw, 2.15rem);
  line-height: 1.22;
}

.about-chapter-focus .page-flow-lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}

.about-chapter-focus-grid {
  margin-top: 1.5rem;
}

.about-chapter-focus .about-credentials-actions {
  justify-content: center;
  flex-wrap: wrap;
}

.about-chapter-focus .about-focus-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-chapter-focus .about-focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(67, 29, 95, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-chapter-focus-shell::before {
    animation: none;
    background-position: 50% 50%;
  }

  .about-chapter-focus--revealed .about-chapter-focus-shell {
    animation: none;
  }

  .about-chapter-focus .about-focus-card {
    transition: none;
  }

  .about-chapter-focus .about-focus-card:hover {
    transform: none;
  }
}

.training-mastery-stack {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.95rem;
}

.training-mastery-group {
  border-radius: 22px;
}

.training-mastery-group h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: rgba(47, 31, 63, 0.94);
}

.training-mastery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.training-mastery-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Chapter 03: center the last card when it sits alone on the final row (odd count in 2-col grid) */
@media (min-width: 901px) {
  body[data-page="trainings"] .training-mastery-grid > article:last-child:nth-child(odd):not(:only-child) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 0.375rem);
  }
}

/* Trainings page - Chapter 05 Awards cards */
#awards-journey .fusion-grid .glass-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(251, 246, 255, 0.94)) padding-box,
    linear-gradient(130deg, rgba(142, 84, 176, 0.58), rgba(229, 45, 135, 0.56), rgba(34, 211, 238, 0.52)) border-box;
  box-shadow: 0 14px 34px rgba(67, 29, 95, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

#awards-journey .fusion-grid .glass-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0;
}

#awards-journey .fusion-grid .glass-card h3 i {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  box-shadow: 0 8px 18px rgba(67, 29, 95, 0.18);
}

#awards-journey .fusion-grid .glass-card:nth-child(1) h3 i {
  background: linear-gradient(135deg, #db2777, #f472b6);
}

#awards-journey .fusion-grid .glass-card:nth-child(2) h3 i {
  background: linear-gradient(135deg, #8e54b0, #a78bfa);
}

#awards-journey .fusion-grid .glass-card:nth-child(3) h3 i {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

#awards-journey .fusion-grid .glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(67, 29, 95, 0.18), 0 0 0 1px rgba(229, 45, 135, 0.16);
  filter: saturate(1.06);
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(142, 84, 176, 0.15);
  padding: 0.7rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: rgba(142, 84, 176, 0.08);
  font-weight: 600;
  color: rgba(47, 31, 63, 0.92);
}

.compare-table tbody tr:nth-child(odd) td {
  background: rgba(142, 84, 176, 0.055);
}

.compare-table tbody tr:nth-child(even) td {
  background: rgba(34, 211, 238, 0.06);
}

/* Accordion: hidden on large screens, visible on mobile */
.compare-accordion {
  display: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(142, 84, 176, 0.18);
  background: rgba(255, 255, 255, 0.85);
}

.compare-acc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.65rem 1rem;
  background: rgba(142, 84, 176, 0.08);
  border-bottom: 1px solid rgba(142, 84, 176, 0.15);
}

.compare-acc-plan {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-acc-plan--silver {
  color: #7c5cbc;
}

.compare-acc-plan--diamond {
  color: #b4236e;
}

.compare-acc-item {
  border-bottom: 1px solid rgba(142, 84, 176, 0.12);
}

.compare-acc-item:last-child {
  border-bottom: none;
}

.compare-acc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  background: rgba(142, 84, 176, 0.04);
  transition: background 0.2s ease;
  user-select: none;
}

.compare-acc-summary::-webkit-details-marker {
  display: none;
}

.compare-acc-summary::after {
  content: "\f107"; /* fa-angle-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--brand-purple);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.compare-acc-item[open] > .compare-acc-summary {
  background: rgba(142, 84, 176, 0.09);
}

.compare-acc-item[open] > .compare-acc-summary::after {
  transform: rotate(-180deg);
}

.compare-acc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.6);
}

.compare-acc-col {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.compare-acc-col--silver {
  background: rgba(142, 84, 176, 0.05);
  border-right: 1px solid rgba(142, 84, 176, 0.1);
}

.compare-acc-col--diamond {
  background: rgba(229, 45, 135, 0.04);
}

.compare-acc-col p {
  margin: 0;
}

/* Signature Programs - programs.php parity, fluid narrative + 2px borders */
.fluid-strip--signature-programs {
  background: linear-gradient(
    175deg,
    rgba(255, 252, 247, 0.98) 0%,
    rgba(253, 245, 255, 1) 40%,
    rgba(244, 236, 255, 0.92) 100%
  );
}

body[data-page="programs"] .fluid-strip--signature-programs--after-rose {
  background: linear-gradient(
    175deg,
    #fdfcfe 0%,
    rgba(255, 252, 247, 0.98) 18%,
    rgba(253, 245, 255, 1) 48%,
    rgba(244, 236, 255, 0.92) 100%
  );
}

body[data-page="programs"] .fluid-strip--methodology {
  background: radial-gradient(ellipse 130% 90% at 40% -10%, rgba(244, 236, 255, 0.65), transparent 52%), #ffffff;
  padding-top: clamp(3.25rem, 8vw, 6rem);
}

.signature-programs-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.signature-programs-lede {
  margin-top: 0.35rem;
}

.signature-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(1rem, 2.2vw, 1.4rem);
}

@media (min-width: 1100px) {
  .signature-program-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.signature-program-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 0 0 1.35rem;
  text-align: center;
  border: 2px solid rgba(142, 84, 176, 0.38);
  background:
    linear-gradient(168deg, rgba(255, 252, 247, 0.98) 0%, rgba(253, 245, 255, 0.99) 48%, rgba(244, 236, 255, 0.96) 100%);
  box-shadow: 0 14px 36px rgba(67, 29, 95, 0.1);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.signature-program-card::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(90% 70% at 12% 8%, rgba(142, 84, 176, 0.12), transparent 55%),
    radial-gradient(75% 60% at 92% 18%, rgba(229, 45, 135, 0.1), transparent 50%),
    radial-gradient(60% 50% at 50% 100%, rgba(244, 236, 255, 0.55), transparent 48%);
  opacity: 0.9;
}

.signature-program-card > * {
  position: relative;
  z-index: 1;
}

.signature-program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 45, 135, 0.52);
  box-shadow: 0 20px 48px rgba(142, 84, 176, 0.2);
}

.signature-program-card__media {
  margin: 0 0 0.95rem;
  line-height: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.signature-program-card__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .signature-program-card__media img {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .signature-program-card:hover .signature-program-card__media img {
    transform: scale(1.06);
  }
}

.signature-program-card h3,
.signature-program-card p {
  padding-inline: 1.05rem;
}

.signature-program-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--primary-purple);
}

.signature-program-card__subtitle {
  margin: -0.15rem 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(142, 84, 176, 0.92);
}

.signature-program-card p:not(.signature-program-card__subtitle):not(.signature-program-card__tagline) {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(47, 31, 63, 0.9);
}

.signature-program-card__tagline {
  margin: 0.75rem 0 0;
  font-weight: 600;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-pink);
}

/* Desktop polish parity */
@media (min-width: 1024px) {
  .page-banner-inner {
    max-width: 48rem;
  }

  .page-chapter {
    gap: clamp(1.8rem, 3.8vw, 3rem);
  }

  .page-chapter-media {
    max-width: 300px;
  }
}

@media (max-width: 900px) {
  .page-banner {
    padding-top: clamp(3rem, 10vw, 4rem);
    padding-bottom: clamp(2.4rem, 8vw, 3.2rem);
  }

  .programs-intro-band {
    grid-template-columns: 1fr;
  }

  .programs-intro-copy,
  .programs-intro-quote {
    text-align: center;
  }

  .page-banner-wave {
    height: 52px;
    bottom: 4px;
  }

  .page-chapter,
  .page-chapter--reverse {
    grid-template-columns: 1fr;
  }

  .page-chapter-media,
  .page-chapter--reverse .page-chapter-media {
    justify-self: center;
    max-width: 320px;
    width: 100%;
  }

  body[data-page="programs"] .page-chapter.page-chapter--balanced .page-chapter-media {
    max-width: min(420px, 100%);
  }

  body[data-page="programs"] .page-chapter.page-chapter--balanced .programs-methodology-visual.flash-card-frame {
    height: auto;
  }

  body[data-page="programs"] .page-chapter.page-chapter--balanced .page-chapter-lead {
    grid-column: 1;
  }

  body[data-page="programs"] .page-chapter.page-chapter--balanced .programs-methodology-placeholder.flash-card-placeholder {
    flex: 0 1 auto;
    min-height: min(220px, 50vw);
    max-height: none;
  }

  .page-chapter-copy {
    text-align: center;
  }

  .flow-tag-row {
    justify-content: center;
  }

  .page-banner-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.2;
  }

  .page-banner-lede {
    max-width: 31rem;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .training-gallery--loop figure {
    flex-basis: calc((100vw - 2rem - 1.05rem) / 2);
    max-width: 280px;
  }

  .growth-grid {
    grid-template-columns: 1fr;
  }

  .about-credentials-grid {
    grid-template-columns: 1fr;
  }

  .training-mastery-grid,
  .training-mastery-grid--compact {
    grid-template-columns: 1fr;
  }

  .compare-table {
    min-width: 620px;
    font-size: 0.88rem;
  }

  body[data-page="contact"] .contact-grid > .glass-card {
    margin-top: 0.6rem;
  }
}

@media (max-width: 600px) {
  .page-banner {
    padding: 2.75rem 0.95rem 2.3rem;
  }

  .page-banner-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .page-banner-title {
    font-size: clamp(1.42rem, 8.4vw, 1.82rem);
  }

  .page-banner-wave {
    height: 42px;
    bottom: 2px;
  }

  .page-banner-orb {
    filter: blur(28px);
    opacity: 0.34;
  }

  .training-gallery--loop figure {
    flex-basis: calc(100vw - 2rem);
    max-width: 320px;
  }

  .training-gallery--loop img,
  .growth-card-thumb img {
    aspect-ratio: 16 / 11;
  }

  .story-kicker {
    letter-spacing: 0.11em;
    font-size: 0.68rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-quote-band {
    grid-template-columns: 1fr;
  }

  .floating-quote--a,
  .floating-quote--b {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .training-gallery--loop {
    animation: trainingGalleryLoop 42s linear infinite;
  }

  .training-gallery-viewport:hover .training-gallery--loop {
    animation-play-state: paused;
  }

  .page-banner::before {
    background-size: 140% 140%, 140% 140%, 100% 100%;
    animation: pageBannerTone 16s ease-in-out infinite;
  }

  .page-banner-orb--a {
    animation: pageBannerOrbA 14s ease-in-out infinite;
  }

  .page-banner-orb--b {
    animation: pageBannerOrbB 17s ease-in-out infinite;
  }

  .page-banner-wave {
    animation: pageBannerWave 18s ease-in-out infinite;
  }
}

@keyframes pageBannerTone {
  0%,
  100% {
    background-position: 0% 0%, 100% 0%, 0 0;
    opacity: 1;
  }
  50% {
    background-position: 8% 6%, 92% 6%, 0 0;
    opacity: 0.98;
  }
}

@keyframes pageBannerOrbA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8px, -10px) scale(1.06);
  }
}

@keyframes pageBannerOrbB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, 8px) scale(1.04);
  }
}

@keyframes pageBannerWave {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-1.6%);
    opacity: 0.52;
  }
}

@keyframes trainingGalleryLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.525rem));
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid--split {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual--banner {
    justify-content: center;
  }

  .program-toggle--sleek {
    grid-template-columns: 1fr;
  }

  .hero p {
    margin: 0 auto;
  }

  .story-split {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(142, 84, 176, 0.18);
    border-radius: 20px;
    padding: 0.7rem;
    box-shadow: var(--shadow-soft);
  }

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

  .nav-inner {
    position: relative;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .social-fab,
  .scroll-top-fab {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .voice-flow .bubbles-grid--three {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-flow,
  .story-flow--reverse,
  .story-flow--path,
  .story-flow--shift,
  .story-flow.story-flow--shift,
  .story-flow.story-flow--path {
    grid-template-columns: 1fr;
  }

  .story-flow > .flash-card-frame:not(.flash-card-frame--light):not(.flash-card-frame--path),
  .story-flow--reverse > .flash-card-frame {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    max-width: 320px;
  }

  .story-flow > .chapter2-media.flash-card-frame--plain,
  .story-flow--shift > .chapter2-media.flash-card-frame--plain {
    max-width: min(100%, 380px);
    justify-self: center;
    grid-column: 1;
    grid-row: auto;
  }

  .story-flow.story-flow--shift > .story-flow__body {
    grid-column: 1;
    grid-row: auto;
  }

  .story-flow.story-flow--path > .path-portrait {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    width: 100%;
    max-width: min(100%, 380px);
    margin-inline: auto;
    left: 0;
    transform: none;
  }

  .story-flow.story-flow--path .story-flow__lead {
    grid-column: 1;
    grid-row: auto;
  }

  .story-flow .story-copy,
  .story-flow--reverse .story-copy,
  .story-flow--path .story-copy--path {
    grid-column: 1;
    grid-row: auto;
    text-align: center;
  }

  .story-flow .mini-kpis--fluid {
    grid-column: 1;
    justify-content: center;
  }

  .story-flow--reverse .path-tags--fluid,
  .story-flow--path .path-tags--below {
    grid-column: 1;
    justify-content: center;
  }

  .proof-flow {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proof-flow .flash-card-frame {
    justify-self: center;
    margin: 0 auto;
  }

  .quote-ribbon--open {
    text-align: left;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .voice-flow .bubbles-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .type-caret {
    animation: none;
  }

  .training-gallery--loop {
    animation: none;
  }

  .signature-program-card:hover {
    transform: none;
  }

  #awards-journey .fusion-grid .glass-card:hover {
    transform: none;
    filter: none;
  }

  .growth-card:hover {
    transform: none;
  }

  .testimonials-grid .quote-card:hover {
    transform: none;
  }

  .testimonials-grid .quote-card::before {
    transform: none;
  }
}

/* Blog page */
.blog-hero-title {
  letter-spacing: 0.22em;
  font-size: clamp(2rem, 5vw, 2.85rem);
}

.blog-hero-placeholder {
  margin-top: 0.5rem;
  padding: 0;
  overflow: hidden;
}

.blog-hero-placeholder-inner {
  min-height: clamp(200px, 28vw, 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(145deg, rgba(244, 236, 255, 0.95), rgba(255, 251, 254, 0.98));
  border: 2px dashed rgba(142, 84, 176, 0.22);
  border-radius: 22px;
  color: rgba(107, 63, 138, 0.45);
}

.blog-hero-placeholder-inner i {
  font-size: 2rem;
  opacity: 0.65;
}

.blog-hero-placeholder-inner span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-post-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.blog-post-card h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.35;
  margin: 0.35rem 0 0.5rem;
}

.blog-post-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(47, 31, 63, 0.82);
}

a.blog-post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

a.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(67, 29, 95, 0.14);
  border-color: rgba(229, 45, 135, 0.28);
}

.blog-post-card__read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-purple);
}

a.blog-post-card:hover .blog-post-card__read {
  color: var(--primary-pink);
}

/* Blog article pages */
.blog-article {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2rem);
}

.blog-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(107, 63, 138, 0.85);
  transition: color 0.25s ease;
}

.blog-article-back:hover {
  color: var(--primary-pink);
}

.blog-article-header {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.blog-article-header .fluid-heading {
  margin: 0.35rem 0 0.75rem;
}

.blog-article-meta {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(107, 63, 138, 0.65);
}

.blog-article-body {
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(47, 31, 63, 0.9);
}

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

.blog-article-body h2 {
  margin: clamp(1.75rem, 4vw, 2.25rem) 0 0.85rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.35;
  color: var(--primary-purple);
  letter-spacing: 0.02em;
}

.blog-article-body ul {
  margin: 0 0 1.15rem;
  padding-left: 1.25rem;
}

.blog-article-body li {
  margin-bottom: 0.55rem;
}

.blog-article-body li strong {
  color: var(--text-dark);
}

.blog-article-figure {
  margin: clamp(1.5rem, 4vw, 2rem) 0;
}

.blog-article-placeholder {
  aspect-ratio: 16 / 9;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.25rem;
  text-align: center;
  border-radius: 18px;
  border: 2px dashed rgba(142, 84, 176, 0.28);
  background: linear-gradient(145deg, rgba(244, 236, 255, 0.92), rgba(255, 251, 254, 0.98));
  color: rgba(107, 63, 138, 0.5);
}

.blog-article-placeholder i {
  font-size: 1.85rem;
  opacity: 0.6;
}

.blog-article-placeholder span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 22rem;
  line-height: 1.5;
}

.blog-article-page {
  padding-top: clamp(2.5rem, 8vw, 4rem);
}

.blog-article-media,
.blog-article-placeholder1 {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 12px 32px rgba(67, 29, 95, 0.1);
}

.blog-article-media img,
.blog-article-placeholder1 img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.blog-article-cta {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding: clamp(1.25rem, 3vw, 1.65rem);
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(244, 236, 255, 0.95), rgba(255, 248, 252, 0.98));
  border: 1px solid rgba(142, 84, 176, 0.2);
}

.blog-article-cta p {
  margin: 0 0 1rem;
  font-weight: 500;
}

.blog-article-cta .inline-links--cta {
  justify-content: center;
}

.contact-connect-card {
  text-align: center;
}

.contact-form-cta-row {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1.15rem, 3vw, 1.45rem);
  margin-bottom: 0.5rem;
  padding-block: 0.5rem;
}

/* Home testimonial carousel — full container width (matches other home sections) */
.home-testimonials-strip .story-kicker--light,
.home-testimonials-strip .fluid-heading--light {
  text-align: center;
}

.home-testimonials-lede {
  margin: 0.35rem auto 1.2rem;
  max-width: 38rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.home-testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.home-tc-viewport {
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  min-width: 0;
}

.home-testimonial-carousel .home-tc-nav {
    position: absolute;
    top: auto;
    z-index: 2;
    translate: 0 -50%;
    bottom: -36%;
}
.home-testimonial-carousel .home-tc-nav--prev {
  left: clamp(0.35rem, 1.2vw, 0.65rem);
}

.home-testimonial-carousel .home-tc-nav--next {
  right: clamp(0.35rem, 1.2vw, 0.65rem);
}

.home-tc-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-tc-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  padding: 0.15rem 0;
}

.home-tc-card {
  position: relative;
  height: 100%;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.15rem) clamp(1rem, 2.2vw, 1.2rem);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) padding-box,
    linear-gradient(130deg, rgba(168, 85, 246, 0.55), rgba(236, 72, 153, 0.48), rgba(34, 211, 238, 0.4)) border-box;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.home-tc-head {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.55rem;
}

.home-tc-avatar {
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.home-tc-avatar--photo {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.home-tc-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-tc-avatar--rose {
  background: linear-gradient(135deg, #db2777, #f472b6);
}

.home-tc-avatar--teal {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.home-tc-avatar--sky {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.home-tc-avatar--amber {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.home-tc-avatar--violet {
  background: linear-gradient(135deg, #6d28d9, #a78bfa);
}

.home-tc-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.home-tc-role {
  margin: 0.12rem 0 0.15rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.home-tc-quote {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.9);
}

.home-tc-nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-tc-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  scale: 1.05;
}

.home-tc-footer {
  justify-content: center;
  margin-top: clamp(1.35rem, 3.5vw, 1.65rem);
  margin-bottom: 0.5rem;
  padding-block: 0.55rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .home-tc-slide {
    grid-template-columns: 1fr;
  }

  .home-testimonial-carousel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .home-testimonial-carousel .home-tc-nav {
    position: static;
    translate: none;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }

  .home-tc-nav--prev {
    order: 2;
  }

  .home-tc-viewport {
    order: 1;
  }

  .home-tc-nav--next {
    order: 3;
  }
}

.story-flow1 {
  display: grid;
}
.blog-hero-placeholder-inner1 {
  margin: 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: clamp(200px, 28vw, 280px);
}

.blog-hero-placeholder-inner1 .media-cover {
  width: 100%;
  height: 100%;
  min-height: clamp(200px, 28vw, 280px);
  object-fit: cover;
}
figure.flash-card-frame.flash-card-frame--tilt.page-chapter-media.programs-methodology-visual {
  margin: 0;
  padding: 0;
}
.bradius {
    border-radius: 28px;
}

.text-center{
	text-align:center;
}


.w-100 .subtitle--voice{
	min-width:100%;
}


/* ── Page Banner (unified) ───────────────────────────────────── */
.page-banner1 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, #2d1a4a 0%, var(--brand-purple) 55%, #be185d 100%);
  color: var(--text-inverse);
  text-align: center;
}
.page-banner1__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  opacity: .45;
}
.page-banner1__orb--a {
  width: min(50vw, 480px); height: min(50vw, 480px);
  top: -15%; right: -8%;
  background: radial-gradient(circle, rgba(219,39,119,.5), transparent 70%);
}
.page-banner1__orb--b {
  width: min(40vw, 360px); height: min(40vw, 360px);
  bottom: -10%; left: -6%;
  background: radial-gradient(circle, rgba(167,139,250,.45), transparent 70%);
}
.page-banner__inner {
  position: relative; z-index: 1;
}
.page-banner1__kicker { color: rgba(255,255,255,.65); }
.page-banner1__title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin: 0 0 var(--space-4);
    color: #fff;
}
.page-banner1__lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relax);
  color: rgba(255,255,255,.82);
  max-width: 54ch;
  margin-inline: auto;
}
.page-banner1__wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.page-banner1__wave svg { width: 100%; height: auto; }

path[Attributes Style] {
    fill: var(--surface-1);
    d: path("M 0 32 L 120 26.7 C 240 21 480 11 720 13.3 C 960 16 1200 32 1320 40 L 1440 48 L 1440 56 L 0 56 Z");
}
:not(svg) {
    transform-origin: 0px 0px;
}

.page-banner__wave svg {
    width: 100%;
    height: auto;
}