/* GENERATED -- do not edit. Regenerate with scripts/sync-style-guide.ps1. */
/* Source: E:/projects/PI_LandingPage_Design/style-guide */
/* Source git rev: 03b5e0d */
/* Generated: 2026-05-12T01:07:31Z */

/* -- colors.md -- */
:root {
  --color-true-white:  #FFFFFF;
  --color-true-black:  #000000;
  --color-blue-black:  #101828;
  --color-off-black:   #1F1F1F;
  --color-red:         #9A1638;
  --color-berry-red:   #96004B;
  --color-dark-red:    #76003B;
  --color-magenta:     #C62F75;
  --color-magenta-2:   #EE66A5;
  --color-orange-cat:  #F3812C;
  --color-grey-1:      #EDEFF6;
  --color-grey-2:      #D9D9D9;
  --color-grey-3:      #979797;
  --color-grey-4:      #5A5D65;
  --color-blue-grey:   #A0AECB;
  --color-blue-grey-2: #939AA8;
  --color-light-red:   #F8F0F4;
}

/* -- typography.md -- */
/* Headers — Poppins Medium (h1) / Bold (h2–h5) */
.h1-header { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 64px; line-height: 1.2; }
.h2-header { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 30px; line-height: 1.2; }
.h3-header { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 22px; line-height: 1.2; }
.h4-header { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.2; }
.h5-header { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.2; }

/* Body — Nunito Sans Regular */
.b0-body { font-family: 'Nunito Sans', sans-serif; font-weight: 400; font-size: 20px; line-height: 1.6; }
.b1-body { font-family: 'Nunito Sans', sans-serif; font-weight: 400; font-size: 18px; line-height: 1.6; }
.b2-body { font-family: 'Nunito Sans', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.6; }
.b3-body { font-family: 'Nunito Sans', sans-serif; font-weight: 400; font-size: 12px; line-height: 1.6; }

/* Body — Nunito Sans Bold */
.b-bold  { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.6; }
.b1-bold { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.6; }
.b2-bold { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 16px; line-height: 1.6; }
.b3-bold { font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 12px; line-height: 1.6; }

/* Medium — Poppins Medium */
.m1-medium { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 40px; line-height: 1.2; }
.m2-medium { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 30px; line-height: 1.2; }
.m3-medium { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 22px; line-height: 1.2; }
.m4-medium { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 20px; line-height: 1.2; }
.m5-medium { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 16px; line-height: 1.2; }

/* Special */
.all-caps-16 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 1.6px; }
.pi-label    { font-family: 'Ubuntu', sans-serif;  font-weight: 700; font-size: 16px; text-transform: uppercase; }

/* -- buttons.md -- */
.form-grid ~ .btn {
  margin-top: 24px;
}

/* Base — structural only, no sizing */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

/* Variants */
.btn-primary {
  background: var(--color-red);
  color: var(--color-true-white);
  border-color: var(--color-red);
}
.btn-primary:hover {
  background: var(--color-dark-red);
  border-color: var(--color-dark-red);
}
.btn-primary:disabled,
.btn-primary[aria-disabled="true"] {
  background: var(--color-grey-2);
  border-color: var(--color-grey-2);
  color: var(--color-grey-3);
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--color-true-white);
  color: var(--color-red);
  border-color: var(--color-red);
}
.btn-secondary:hover {
  background: var(--color-light-red);
}
.btn-secondary:disabled,
.btn-secondary[aria-disabled="true"] {
  background: transparent;
  border-color: var(--color-grey-2);
  color: var(--color-grey-3);
  cursor: not-allowed;
}

.btn-text {
  background: transparent;
  color: var(--color-red);
  border-color: transparent;
}
.btn-text:hover {
  color: var(--color-dark-red);
}
.btn-text:disabled,
.btn-text[aria-disabled="true"] {
  color: var(--color-grey-3);
  cursor: not-allowed;
}

/* Sizes */
.btn-xs {
  height: 20px;
  font-size: 12px;
  padding: 0 10px;
}
.btn-s {
  height: 30px;
  font-size: 13px;
  padding: 0 14px;
}
.btn-m {
  height: 36px;
  font-size: 14px;
  padding: 0 18px;
}
.btn-l {
  height: 42px;
  font-size: 16px;
  padding: 0 24px;
}

/* Modifiers */
.btn.pill {
  border-radius: 999px;
}
.btn.icon-alone {
  padding: 0;
  aspect-ratio: 1 / 1;
}
.btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Form spacing */
.form-grid ~ .btn {
  margin-top: 24px;
}

/* -- tags.md -- */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: var(--color-grey-1);
  color: var(--color-grey-4);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.tag-xs { height: 20px; font-size: 12px; padding: 0 10px; }
.tag-s  { height: 30px; font-size: 13px; padding: 0 14px; }
.tag-m  { height: 36px; font-size: 14px; padding: 0 18px; }
.tag-l  { height: 42px; font-size: 16px; padding: 0 24px; }

/* -- cards.md -- */
/* Standalone card — stroke + shadow */
.card {
  background: var(--color-true-white);
  border: 1px solid var(--color-grey-2);
  border-radius: 8px;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

/* Card inside a container — stroke only, no shadow */
.container .card {
  box-shadow: none;
}

/* Card container — shadow only, no stroke */
.container {
  background: var(--color-grey-1);
  border-radius: 8px;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

/* -- components/faq.md -- */
.section--dark .faq-item       { border-bottom-color: rgba(255,255,255,0.15); }
.section--dark .faq-item:first-child { border-top-color: rgba(255,255,255,0.15); }
.section--dark .faq-btn h3     { color: var(--color-true-white); }
.section--dark .faq-answer p   { color: rgba(255,255,255,0.72); }
.section--dark .faq-num        { color: var(--color-magenta-2); }
.section--dark .faq-title      { color: var(--color-true-white); }
.section--dark .faq-sub        { color: rgba(255,255,255,0.58); }
.section--dark .faq-link       { color: var(--color-magenta-2); }
.section--dark .faq-link:hover { color: var(--color-true-white); }

/* FAQ */
.faq-list { max-width: 1000px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--color-grey-2); }
.faq-item:first-child { border-top: 1px solid var(--color-grey-2); }
.faq-btn {
  width: 100%; text-align: left; padding: 22px 0; background: none; border: none;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Poppins', sans-serif;
}
.faq-btn h3 { font-size: 22px; font-weight: 500; color: var(--color-blue-black); line-height: 1.4; }
.faq-icon {
  width: 30px; height: 30px; min-width: 30px; flex-shrink: 0;
  border-radius: 5px; border: 2px solid var(--color-red);
  background: var(--color-red);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.faq-icon img { width: 13px; height: 13px; filter: brightness(0) invert(1); transition: transform 0.2s; }
.faq-item.open .faq-icon { background: var(--color-dark-red); border-color: var(--color-dark-red); }
.faq-item.open .faq-icon img { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { font-size: 15px; color: var(--color-grey-4); line-height: 1.7; padding-bottom: 22px; }

/* -- landing-pages-vmelissa/color-system.md -- */
/* Section background */
.zone-warm-dark {
  background: linear-gradient(155deg, var(--color-berry-red) 0%, var(--color-dark-red) 55%, #4C002A 100%);
  position: relative;
  overflow: hidden;
}

/* Atmospheric radial washes */
.zone-warm-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(238, 102, 165, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 5% 95%, rgba(238, 102, 165, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 50% 60%, rgba(150, 0, 75, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Dot grid texture */
.zone-warm-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
.zone-warm-dark > * { position: relative; z-index: 1; }

.zone-light-editorial {
  background: var(--color-grey-1);
  position: relative;
  overflow: hidden;
}
/* Top warmth bleed (creates flow from Warm Dark above) + atmospheric corners */
.zone-light-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top: Berry Red bleed from previous warm dark zone */
    linear-gradient(to bottom, rgba(118, 0, 59, 0.18) 0%, transparent 18%),
    /* Mid magenta-2 wash */
    radial-gradient(ellipse 70% 40% at 50% 32%, rgba(238, 102, 165, 0.10) 0%, transparent 60%),
    /* Corner washes */
    radial-gradient(circle at 92% 14%, rgba(238, 102, 165, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 6% 75%, rgba(150, 0, 75, 0.16) 0%, transparent 50%),
    /* Fade to white at the bottom for clean transition out */
    linear-gradient(to bottom, transparent 75%, var(--color-true-white) 100%);
  pointer-events: none;
  z-index: 0;
}
.zone-light-editorial::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(150, 0, 75, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.zone-light-editorial > * { position: relative; z-index: 1; }

.zone-cool-dark {
  background: linear-gradient(155deg, var(--color-blue-black) 0%, #1A0E1F 55%, #2A0F2F 100%);
  position: relative;
  overflow: hidden;
}
.zone-cool-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Optional: top bleed-in from previous zone (Berry Red if coming from Warm Dark) */
    /* linear-gradient(to bottom, rgba(150, 0, 75, 0.30) 0%, transparent 14%), */
    radial-gradient(circle at 88% 25%, rgba(238, 102, 165, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 8% 95%, rgba(150, 0, 75, 0.28) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.zone-cool-dark > * { position: relative; z-index: 1; }

.zone-warm-transition {
  background: linear-gradient(160deg, var(--color-berry-red) 0%, var(--color-dark-red) 60%, #5C002E 100%);
  position: relative;
  overflow: hidden;
}
.zone-warm-transition::before {
  /* same radial atmospherics as zone-warm-dark */
}
/* Bottom fade — bridges into Cool Dark below */
.zone-warm-transition::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(16, 24, 40, 0.40));
  pointer-events: none;
  z-index: 0;
}

.zone-x::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 160px;
  /* Color = approximate dominant color of the NEXT zone */
  background: linear-gradient(to bottom, transparent, rgba(NEXT_ZONE_COLOR, 0.20));
  pointer-events: none;
  z-index: 0;
}

.zone-y::before {
  background:
    /* Top inherits color from PREVIOUS zone */
    linear-gradient(to bottom, rgba(PREV_ZONE_COLOR, 0.30) 0%, transparent 14%),
    /* ... rest of atmospheric layers */;
}

.zone-warm-dark--purple-magenta {
  background: linear-gradient(155deg,
    var(--color-blue-black) 0%,
    var(--color-dark-red) 50%,
    var(--color-berry-red) 80%,
    var(--color-magenta) 100%);
  position: relative;
  overflow: hidden;
}
.zone-warm-dark--purple-magenta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(238, 102, 165, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 5% 95%, rgba(198, 47, 117, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 50% 60%, rgba(150, 0, 75, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.zone-warm-dark--purple-magenta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
.zone-warm-dark--purple-magenta > * { position: relative; z-index: 1; }

.zone-light-cool {
  background: var(--color-grey-1);
  position: relative;
  overflow: hidden;
}
.zone-light-cool::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top: subtle magenta carry-over from a Zone 1/1b hero above */
    linear-gradient(to bottom, rgba(150, 0, 75, 0.16) 0%, transparent 8%),
    /* Cool atmospheric corners using style-guide blue-grey tokens */
    radial-gradient(circle at 92% 18%, rgba(160, 174, 203, 0.32) 0%, transparent 50%),
    radial-gradient(circle at 6% 72%, rgba(147, 154, 168, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 80% 32% at 50% 45%, rgba(160, 174, 203, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.zone-light-cool::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(rgba(16, 24, 40, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(to bottom, transparent 75%, rgba(16, 24, 40, 0.32) 100%);
  pointer-events: none;
  z-index: 0;
}
.zone-light-cool > * { position: relative; z-index: 1; }

.zone-book-band {
  background: linear-gradient(155deg, var(--color-blue-black) 0%, #1A0E1F 55%, #2A0F2F 100%);
  position: relative;
  overflow: hidden;
  padding: 112px 0;
}
.zone-book-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(238, 102, 165, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(150, 0, 75, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 60% 30% at 50% 50%, rgba(238, 102, 165, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.zone-book-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(237, 239, 246, 0.28));
  pointer-events: none;
  z-index: 0;
}
.zone-book-band > * { position: relative; z-index: 1; }
.zone-book-band .section__title { color: var(--color-true-white); }
.zone-book-band .section__title em { color: var(--color-magenta-2); font-weight: 300; }
.zone-book-band .title-mark { background: var(--color-magenta-2); }

#curriculum {
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(160, 174, 203, 0.32) 55%,
      rgba(147, 154, 168, 0.48) 100%),
    var(--color-grey-1);
  position: relative;
}
#curriculum > .container { position: relative; z-index: 1; }

/* -- landing-pages-vmelissa/components.md -- */
/* Generic chevron toggle — applies to any expandable trigger.
   Wrap in a button with aria-expanded + aria-controls. */
.chevron-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-berry-red), var(--color-dark-red));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px -6px rgba(150, 0, 75, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.chevron-toggle img,
.chevron-toggle svg {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1); /* turns dark SVG white */
  transition: transform 0.3s ease;
}
button:hover .chevron-toggle { transform: scale(1.06); }
[aria-expanded="true"] .chevron-toggle,
.is-open .chevron-toggle {
  box-shadow: 0 10px 20px -6px rgba(150, 0, 75, 0.55);
}
[aria-expanded="true"] .chevron-toggle img,
[aria-expanded="true"] .chevron-toggle svg,
.is-open .chevron-toggle img,
.is-open .chevron-toggle svg {
  transform: rotate(180deg);
}

.title-mark {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-magenta-2);
  border-radius: 2px;
  margin-bottom: 14px;
}

.some-title::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-magenta-2);
  border-radius: 2px;
  margin-bottom: 14px;
}

.card-with-stripe {
  position: relative;
  overflow: hidden;
  /* (rest of card styles) */
}
.card-with-stripe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-berry-red), var(--color-magenta));
  border-radius: 0 0 3px 0;
  opacity: 0.65;
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
}
.card-with-stripe:hover::before {
  width: 64px;
  opacity: 1;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.star-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--color-orange-cat);
  filter: drop-shadow(0 2px 4px rgba(243, 129, 44, 0.45));
}

.check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-magenta-2), var(--color-berry-red));
  box-shadow: 0 4px 10px -3px rgba(238, 102, 165, 0.45);
  color: var(--color-true-white);
}
.check-badge svg { width: 12px; height: 12px; }

/* Inline small variant — for fine-print trust lines */
.check-badge--small {
  width: 16px;
  height: 16px;
}
.check-badge--small svg { width: 9px; height: 9px; }

.icon-watermark {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 360px;
  height: 360px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
.icon-watermark img,
.icon-watermark svg {
  width: 100%;
  height: 100%;
}
.parent-card:hover .icon-watermark {
  transform: scale(1.06) rotate(-3deg);
  opacity: 0.16;
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-magenta-2); /* on dark backgrounds */
  margin: 0 0 8px;
}
.eyebrow--on-light { color: var(--color-berry-red); }

.title-accent {
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
}

/* Block variant — when the accent is its own line */
.title-accent--block {
  display: block;
  margin-top: 8px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--color-blue-black);
  color: var(--color-true-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--color-magenta-2);
  outline-offset: 2px;
}

.sparkle-mark {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--color-magenta-2);
  filter:
    drop-shadow(0 0 5px rgba(238, 102, 165, 0.85))
    drop-shadow(0 0 10px rgba(238, 102, 165, 0.45));
}
.sparkle-mark svg { width: 100%; height: 100%; fill: currentColor; }

/* Small variant — for hero stat ribbons or chip cards */
.sparkle-mark--sm { width: 14px; height: 14px; }

/* Large variant — for "moment" anchors above section content */
.sparkle-mark--lg { width: 22px; height: 22px; }

/* Optional twinkle animation — use on a row of sparkles with staggered delays */
.sparkle-mark--twinkle { animation: sparkle-twinkle 3.2s ease-in-out infinite; }
.sparkle-mark--twinkle:nth-child(2) { animation-delay: 0.9s; }
.sparkle-mark--twinkle:nth-child(3) { animation-delay: 1.8s; }
@keyframes sparkle-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg);     opacity: 0.85; }
  50%      { transform: scale(1.18) rotate(18deg); opacity: 1;    }
}

.square-avatar {
  width: 140px;
  height: 140px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--color-magenta-2), var(--color-berry-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-true-white);
  flex-shrink: 0;
}

.outlined-quote {
  position: relative;
  background: transparent;
  border: 1px solid rgba(238, 102, 165, 0.55);
  border-radius: 14px;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
}
.outlined-quote__avatar {
  /* per § 12 Square avatar, plus: */
  border-right: 1px solid rgba(238, 102, 165, 0.55);
}
.outlined-quote__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 26px;
}
.outlined-quote__content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
.outlined-quote__cite {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 102, 165, 0.30);
}
.outlined-quote__cite strong {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-true-white);
}
.outlined-quote__cite span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-magenta-2);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.25;
}

/* Mobile — stack vertically, avatar becomes a top band */
@media (max-width: 720px) {
  .outlined-quote { grid-template-columns: 1fr; }
  .outlined-quote__avatar {
    width: 100%;
    height: 120px;
    font-size: 28px;
    border-right: none;
    border-bottom: 1px solid rgba(238, 102, 165, 0.55);
  }
  .outlined-quote__content { padding: 20px 22px; }
}

.glass-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow:
    0 32px 64px -24px rgba(0, 0, 0, 0.55),
    0 0 60px -20px rgba(238, 102, 165, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-form-box {
  position: relative;
  background: var(--color-true-white);
  border-radius: 20px;
  padding: 36px 36px 28px;
  box-shadow:
    0 32px 64px -24px rgba(0, 0, 0, 0.45),
    0 0 80px -20px rgba(238, 102, 165, 0.25);  /* ambient magenta glow — used when card sits on a dark zone */
  border: none;
  overflow: hidden;
}
.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--color-berry-red), var(--color-magenta));
  border-radius: 0 0 4px 0;
}
.contact-form-box__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-berry-red);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-box__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-magenta-2);
  border-radius: 2px;
}
.contact-form-box__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--color-blue-black);
  margin: 0 0 4px;
}
.contact-form-box__sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--color-grey-4);
  line-height: 1.5;
  margin: 0 0 22px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-grey-4);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--color-grey-2);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--color-blue-black);
  background: var(--color-true-white);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  min-height: 44px;
}
.form-group input::placeholder { color: var(--color-grey-3); }
.form-group input:hover,
.form-group select:hover { border-color: var(--color-grey-3); }
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-magenta);
  box-shadow: 0 0 0 3px rgba(198, 47, 117, 0.14);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  height: 48px;
  font-size: 15px;
  gap: 10px;
}
.form-privacy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-grey-4);
  letter-spacing: 0.6px;
  margin: 12px 0 0;
  grid-column: 1 / -1;
}
.form-privacy__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-magenta-2), var(--color-berry-red));
  color: var(--color-true-white);
  font-weight: 700;
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
}

/* -- landing-pages-vmelissa/accordion.md -- */
.panels-wrap {
  max-width: 1000px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.panel-item {
  background: var(--color-true-white);
  border: 1px solid var(--color-grey-2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px -8px rgba(16, 24, 40, 0.12);
  transition: box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}
.panel-item:hover {
  box-shadow: 0 12px 24px -12px rgba(16, 24, 40, 0.18);
  border-color: var(--color-grey-3);
}
.panel-item.open {
  box-shadow: 0 24px 40px -16px rgba(150, 0, 75, 0.20);
  border-color: var(--color-berry-red);
}

/* Left accent rail */
.panel-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-berry-red), var(--color-magenta));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}
.panel-item.open::before { transform: scaleY(1); }

.panel-btn {
  width: 100%;
  text-align: left;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Poppins', sans-serif;
}
.panel-btn__left {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 28px;
  row-gap: 6px;
  align-items: center;
}
.panel-num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--color-magenta);
  text-transform: none;
  display: block;
  margin: 0;
}
.panel-title {
  grid-column: 2;
  grid-row: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-blue-black);
  margin: 0;
}
.panel-sub {
  grid-column: 2;
  grid-row: 2;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--color-grey-4);
  line-height: 1.5;
  margin: 0;
}

/* Chevron badge — see components.md § 1 */
.panel-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-berry-red), var(--color-dark-red));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px -6px rgba(150, 0, 75, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.panel-icon img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.panel-btn:hover .panel-icon { transform: scale(1.06); }
.panel-item.open .panel-icon { box-shadow: 0 10px 20px -6px rgba(150, 0, 75, 0.55); }
.panel-item.open .panel-icon img { transform: rotate(180deg); }

.panel-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.panel-item.open .panel-body { max-height: 1600px; }
.panel-body__inner {
  padding: 4px 32px 32px;
  position: relative;
}
.panel-body__inner::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--color-berry-red), transparent 80%);
  margin-bottom: 24px;
}
.panel-body__inner p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: var(--color-grey-4);
  line-height: 1.7;
  padding-bottom: 18px;
  margin: 0;
}
.panel-body__inner p strong {
  color: var(--color-blue-black);
  font-weight: 700;
}

@media (max-width: 768px) {
  .panel-num { font-size: 44px; }
  .panel-title { font-size: 20px; }
  .panel-btn { padding: 22px 24px; }
  .panel-body__inner { padding: 4px 24px 24px; }
}

.faq-list { margin: 48px 0 0; }
.faq-item { border-bottom: 1px solid var(--color-grey-2); }
.faq-item:first-child { border-top: 1px solid var(--color-grey-2); }
.faq-btn {
  width: 100%; text-align: left; padding: 28px 0; background: none; border: none;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: 'Poppins', sans-serif;
}
.faq-btn h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-blue-black);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Chevron badge — same as panel-icon */
.faq-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-berry-red), var(--color-dark-red));
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 12px -6px rgba(150, 0, 75, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-icon img {
  width: 14px; height: 14px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.faq-btn:hover .faq-icon { transform: scale(1.06); }
.faq-item.open .faq-icon { box-shadow: 0 10px 20px -6px rgba(150, 0, 75, 0.55); }
.faq-item.open .faq-icon img { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 1200px; }
.faq-answer p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: var(--color-grey-4);
  line-height: 1.7;
  padding-bottom: 28px;
  margin: 0;
  max-width: 90ch;
}

/* Dark-zone overrides — when FAQ sits inside a Cool Dark section */
#faqs .faq-btn h3          { color: var(--color-true-white); }
#faqs .faq-answer p        { color: rgba(255, 255, 255, 0.9); }
#faqs .faq-item            { border-bottom-color: rgba(255, 255, 255, 0.18); }
#faqs .faq-item:first-child { border-top-color: rgba(255, 255, 255, 0.18); }

/* -- landing-pages-vmelissa/patterns.md -- */
/* Unified white card with shared shadow */
.learn-phases {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: stretch;
  background: var(--color-true-white);
  border-radius: 24px;
  border: 1px solid rgba(150, 0, 75, 0.12);
  box-shadow:
    0 32px 64px -32px rgba(150, 0, 75, 0.25),
    0 8px 24px -16px rgba(16, 24, 40, 0.10);
  overflow: hidden;
}

/* LEFT — tinted nav with stacked tabs */
.learn-phases__nav {
  padding: 28px 16px;
  background: linear-gradient(180deg, rgba(237, 239, 246, 0.65), rgba(237, 239, 246, 0.30));
  border-right: 1px solid rgba(150, 0, 75, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.learn-phases__group-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-blue-black);
  margin: 14px 12px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.learn-phases__group-label:first-child { margin-top: 0; }
.learn-phases__group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(150, 0, 75, 0.18), transparent);
}

/* Tab button */
.learn-phase-btn {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}
.learn-phase-btn::before {
  content: '';
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--color-berry-red), var(--color-magenta));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.learn-phase-btn.is-active::before { opacity: 1; }
.learn-phase-btn:hover { background: rgba(255, 255, 255, 0.7); }
.learn-phase-btn.is-active {
  /* Same white as the panel — visually merges with it */
  background: var(--color-true-white);
  box-shadow: 0 10px 20px -10px rgba(150, 0, 75, 0.30);
}

/* 44px icon tile (small) on the tab */
.learn-phase-btn__icon {
  grid-column: 1; grid-row: 1 / 3;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(238, 102, 165, 0.16), rgba(150, 0, 75, 0.08));
  color: var(--color-berry-red);
  transition: all 0.3s ease;
}
.learn-phase-btn__icon svg { width: 20px; height: 20px; }
.learn-phase-btn:hover .learn-phase-btn__icon { transform: scale(1.04); }
.learn-phase-btn.is-active .learn-phase-btn__icon {
  background: linear-gradient(135deg, var(--color-berry-red), var(--color-dark-red));
  color: var(--color-true-white);
  box-shadow: 0 6px 14px -4px rgba(150, 0, 75, 0.45);
}

.learn-phase-btn__name {
  grid-column: 2; grid-row: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue-black);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.learn-phase-btn__count {
  grid-column: 2; grid-row: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-grey-3);
}
.learn-phase-btn.is-active .learn-phase-btn__count { color: var(--color-berry-red); }

/* RIGHT — content panel with atmospheric corner */
.learn-phases__content {
  position: relative;
  padding: 44px;
  min-height: 400px;
  overflow: hidden;
}
.learn-phases__content::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(238, 102, 165, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.learn-phase { position: relative; z-index: 1; display: none; }
.learn-phase.is-active {
  display: block;
  animation: phase-fade 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes phase-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel header with mirrored 56px gradient icon disc */
.learn-phase__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(150, 0, 75, 0.15);
}
.learn-phase__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-berry-red), var(--color-dark-red));
  color: var(--color-true-white);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 16px 28px -10px rgba(150, 0, 75, 0.45),
    0 0 0 4px rgba(238, 102, 165, 0.10);
}
.learn-phase__icon svg { width: 28px; height: 28px; }
.learn-phase__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-blue-black);
  line-height: 1.15;
  margin: 0;
  flex: 1;
}

/* Responsive: tabs collapse to 2-col grid above content */
@media (max-width: 1024px) {
  .learn-phases { grid-template-columns: 1fr; }
  .learn-phases__nav {
    border-right: none;
    border-bottom: 1px solid rgba(150, 0, 75, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 18px;
  }
  .learn-phases__group-label { display: none; }
  .learn-phases__content { padding: 32px 28px; }
  .learn-phase__icon { width: 48px; height: 48px; }
  .learn-phase__icon svg { width: 24px; height: 24px; }
  .learn-phase__title { font-size: 26px; }
}

.learn-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.learn-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.learn-row__verb {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--color-berry-red);
}
.learn-row__body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-blue-black);
  margin: 0;
  max-width: 56ch;
}

@media (max-width: 720px) {
  .learn-row__verb { font-size: 20px; }
}

.learn-flow--standalone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 52px;
}
.learn-flow--standalone .learn-row__verb {
  font-size: 36px;  /* up from 22px since no H3 to compete with */
  font-weight: 300; /* lighter at this size */
}

.stat-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
}
.stat-list__row {
  position: relative;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(150, 0, 75, 0.18);
  padding: 26px 4px;
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  align-items: center;
  gap: 26px;
  transition: padding 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* No bottom border on the last row of each column (last 2 in a 2-col grid) */
.stat-list__row:nth-last-child(-n+2) { border-bottom: none; }

.stat-list__row:hover {
  padding-left: 12px;
}
.stat-list__row:hover .stat-list__num { color: var(--color-magenta); }

.stat-list__num {
  font-family: 'Poppins', sans-serif;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-berry-red);
  margin: 0;
  text-align: left;
  transition: color 0.3s ease;
}
.stat-list__num em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-magenta);
  letter-spacing: -0.02em;
}
.stat-list__label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--color-blue-black);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .stat-list { column-gap: 40px; }
  .stat-list__num { font-size: 56px; }
  .stat-list__row { grid-template-columns: minmax(90px, auto) 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .stat-list { grid-template-columns: 1fr; column-gap: 0; }
  .stat-list__row { grid-template-columns: 80px 1fr; gap: 18px; padding: 20px 0; }
  .stat-list__num { font-size: 44px; }
  .stat-list__row:nth-last-child(-n+2) { border-bottom: 1px solid rgba(150, 0, 75, 0.18); }
  .stat-list__row:last-child { border-bottom: none; }
}

.who__roles {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.who__role {
  position: relative;
  background: var(--color-true-white);
  border: 1px solid rgba(150, 0, 75, 0.10);
  border-radius: 14px;
  padding: 18px 20px 18px 46px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--color-blue-black);
  line-height: 1.5;
  box-shadow: 0 4px 12px -8px rgba(16, 24, 40, 0.12);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.who__role::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--color-berry-red), var(--color-magenta));
  border-radius: 0 0 3px 0;
  opacity: 0.55;
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
}
.who__role:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -16px rgba(150, 0, 75, 0.22);
  border-color: rgba(238, 102, 165, 0.45);
}
.who__role:hover::after { width: 60px; opacity: 1; }
.who__role-spark {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 16px;
  height: 16px;
  color: var(--color-magenta-2);
  filter:
    drop-shadow(0 0 5px rgba(238, 102, 165, 0.85))
    drop-shadow(0 0 10px rgba(238, 102, 165, 0.40));
}
.who__role-spark svg { width: 100%; height: 100%; fill: currentColor; }
.who__role strong {
  font-weight: 700;
  color: var(--color-berry-red);
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .who__roles { grid-template-columns: 1fr; }
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 28px 26px 26px;
  position: relative;
}
.hero-stats::before {
  /* hairline divider above the stats area */
  content: '';
  position: absolute;
  top: 0;
  left: 26px; right: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 102, 165, 0.30), transparent);
}
.hero-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 6px;
  position: relative;
}
/* faint vertical hairline between items */
.hero-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14%; bottom: 14%;
  right: -3px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.14), transparent);
}
.hero-stats__spark {
  display: inline-flex;
  width: 14px; height: 14px;
  color: var(--color-magenta-2);
  filter:
    drop-shadow(0 0 5px rgba(238, 102, 165, 0.85))
    drop-shadow(0 0 10px rgba(238, 102, 165, 0.45));
  animation: hero-stats-twinkle 3.2s ease-in-out infinite;
}
.hero-stats__item:nth-child(2) .hero-stats__spark { animation-delay: 0.9s; }
.hero-stats__item:nth-child(3) .hero-stats__spark { animation-delay: 1.8s; }
.hero-stats__spark svg { width: 100%; height: 100%; }
@keyframes hero-stats-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg);     opacity: 0.85; }
  50%      { transform: scale(1.18) rotate(18deg); opacity: 1;    }
}
.hero-stats__item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-true-white);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-stats__item strong em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-magenta-2);
}
.hero-stats__label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
  max-width: 16ch;
}
