:root {
  color-scheme: light;
  --ink: #050505;
  --black: #040304;
  --charcoal: #171116;
  --soft-black: #211820;
  --white: #fffdfb;
  --paper: #f7f2f4;
  --blush: #f8e7ef;
  --rose: #ff2f9f;
  --rose-dark: #b90067;
  --silver: #d8d3d5;
  --muted: #6d656a;
  --line: rgba(5, 5, 5, 0.12);
  --line-light: rgba(255, 253, 251, 0.16);
  --shadow: 0 28px 80px rgba(5, 5, 5, 0.16);
  --display:
    Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Baskerville", "Times New Roman",
    serif;
  --sans:
    "Avenir Next", Montserrat, Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label:
    "Helvetica Neue", Helvetica, "Avenir Next", Inter, Arial, ui-sans-serif,
    system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 62px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 253, 251, 0.22);
  border-radius: 999px;
  background: rgba(2, 2, 2, 0.72);
  color: var(--white);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.timeline,
.apply-section,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 760;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 251, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  gap: 8px;
  justify-content: center;
}

.nav-links a,
.header-cta {
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255, 253, 251, 0.78);
  font-size: 0.9rem;
  font-weight: 720;
}

.nav-links a:hover,
.header-cta:hover {
  background: rgba(255, 253, 251, 0.12);
  color: var(--white);
}

.header-cta {
  justify-self: end;
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(255, 47, 159, 0.28);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 76px) clamp(38px, 6vw, 84px);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(4, 3, 4, 0.94) 0%, rgba(4, 3, 4, 0.84) 41%, rgba(4, 3, 4, 0.34) 69%, rgba(4, 3, 4, 0.08) 100%),
    url("assets/images/leila-hero.webp") right 12% center / auto 106% no-repeat,
    linear-gradient(135deg, #141114 0%, #5d575b 100%);
}

.hero-overlay {
  background:
    radial-gradient(circle at 80% 32%, rgba(255, 47, 159, 0.16), transparent 28%),
    linear-gradient(0deg, rgba(4, 3, 4, 0.72) 0%, transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.hero-lockup {
  width: min(450px, 74vw);
  margin: 0 0 28px -8px;
  opacity: 0.96;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.38));
}

.hero-lockup img {
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--rose);
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 253, 251, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(255, 47, 159, 0.24);
}

.button-secondary {
  border-color: rgba(255, 253, 251, 0.24);
  background: rgba(255, 253, 251, 0.08);
  color: var(--white);
}

.full-width {
  width: 100%;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 253, 251, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.08);
  color: rgba(255, 253, 251, 0.68);
  font-size: 0.9rem;
}

.hero-stats strong {
  color: var(--white);
}

.section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 5vw, 76px);
}

.leila-section,
.proof-section,
.program-section,
.coaching-section,
.community-section,
.apply-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.leila-section > :not(.lotus-ornament),
.proof-section > :not(.lotus-ornament),
.testimonials-section > :not(.lotus-ornament),
.program-section > :not(.lotus-ornament),
.coaching-section > :not(.lotus-ornament),
.community-section > :not(.lotus-ornament),
.apply-section > :not(.lotus-ornament) {
  position: relative;
  z-index: 1;
}

.lotus-ornament {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.18;
}

.lotus-ornament-leila {
  right: clamp(-12px, 5vw, 86px);
  bottom: clamp(16px, 4vw, 58px);
  width: clamp(300px, 28vw, 460px);
  transform: rotate(-12deg);
}

.lotus-ornament-proof {
  top: clamp(124px, 12vw, 190px);
  right: clamp(-220px, -9vw, -112px);
  width: clamp(340px, 30vw, 500px);
  transform: rotate(9deg);
}

.lotus-ornament-program {
  top: clamp(178px, 16vw, 270px);
  right: clamp(-230px, -10vw, -124px);
  width: clamp(340px, 31vw, 520px);
  transform: rotate(10deg);
}

.lotus-ornament-coaching {
  top: clamp(90px, 8vw, 142px);
  right: clamp(-210px, -8vw, -94px);
  width: clamp(320px, 29vw, 480px);
  transform: rotate(14deg);
}

.lotus-ornament-community,
.lotus-ornament-apply,
.lotus-ornament-testimonials,
.lotus-ornament-fellowship {
  filter: invert(1) grayscale(1) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
  opacity: 0.12;
}

.lotus-ornament-testimonials {
  left: clamp(-180px, -7vw, -78px);
  top: clamp(40px, 5vw, 86px);
  width: clamp(300px, 28vw, 460px);
  transform: rotate(-14deg);
}

.lotus-ornament-community {
  right: clamp(-190px, -8vw, -82px);
  bottom: clamp(62px, 9vw, 150px);
  width: clamp(320px, 30vw, 500px);
  transform: rotate(13deg);
}

.lotus-ornament-apply {
  top: 50%;
  right: clamp(-36px, 2vw, 32px);
  width: clamp(280px, 26vw, 430px);
  transform: translateY(-50%) rotate(8deg);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(32px, 6vw, 64px);
}

.section-head p,
.leila-grid p,
.coaching-grid p,
.apply-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.compact {
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
}

.proof-viewer,
.proof-stage,
.proof-metrics article,
.pathway-card,
.coach-visual,
.apply-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.leila-section,
.coaching-section {
  background: var(--paper);
}

.leila-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 0.96fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.authority-dossier {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: start;
  isolation: isolate;
}

.authority-dossier::before,
.authority-dossier::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.authority-dossier::before {
  /* pink rounded border removed per Leila's request */
  display: none;
}

.authority-dossier::after {
  right: 2%;
  bottom: 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 159, 0.18), transparent 72%);
  filter: blur(8px);
}

.authority-sticky-rail {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 14px;
}

.authority-hero-card,
.authority-portrait-card,
.authority-chapter {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.1);
}

.authority-hero-card {
  padding: 24px 26px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(4, 3, 4, 0.96), rgba(46, 23, 38, 0.94));
}

.authority-hero-card span,
.authority-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.authority-hero-card strong {
  display: block;
  max-width: 460px;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.authority-hero-card p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 253, 251, 0.74);
}

.authority-portrait-card {
  overflow: hidden;
  margin: 0;
  background: var(--white);
}

.authority-portrait-media {
  position: relative;
}

.authority-portrait-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 3, 4, 0), rgba(4, 3, 4, 0.36));
  pointer-events: none;
}

.authority-portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

.authority-message-stack {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.authority-message {
  width: fit-content;
  max-width: min(86%, 240px);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 251, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(5, 5, 5, 0.18);
  font-size: 0.88rem;
  line-height: 1.35;
}

.authority-message strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.authority-message-leila {
  justify-self: start;
  background: rgba(22, 12, 18, 0.88);
  color: var(--white);
}

.authority-message-leila strong {
  color: var(--rose);
}

.authority-message-client {
  justify-self: end;
  background: rgba(92, 63, 78, 0.88);
  color: var(--white);
}

.authority-message-client strong {
  color: rgba(255, 168, 213, 0.96);
}

.leila-grid .authority-message {
  color: var(--white);
}

.authority-portrait-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.authority-chapters {
  display: grid;
  gap: 14px;
}

.authority-chapter {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(18px);
}

.authority-chapter span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.authority-chapter strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.authority-chapter h3 {
  max-width: 18ch;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.authority-chapter p {
  max-width: 50ch;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1rem;
}

.authority-chapter-note {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.62);
  color: var(--ink);
  font-size: 0.88rem;
}

.authority-chapter-quote blockquote {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid rgba(255, 47, 159, 0.54);
  background: rgba(255, 47, 159, 0.08);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.authority-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.authority-proof-list li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.68);
  color: var(--ink);
  font-size: 0.88rem;
}

.authority-depth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.authority-depth-grid div {
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.62);
  color: var(--ink);
  font-size: 0.96rem;
}

.authority-depth-grid small {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.proof-section {
  background: var(--paper);
}

.proof-viewer {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.48fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 47, 159, 0.08), transparent 42%),
    var(--white);
}

.proof-sidebar {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}

.proof-caption {
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.97);
}

.proof-editorial {
  min-width: 0;
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
}

.proof-editorial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.proof-editorial span,
.proof-caption span,
.community-proof-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.proof-editorial strong,
.community-proof-panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.proof-editorial strong {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 0.98;
}

.proof-editorial p {
  max-width: 28ch;
  margin-bottom: 0;
  color: rgba(255, 253, 251, 0.72);
  font-size: 0.92rem;
}

.proof-editorial-action {
  width: fit-content;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 253, 251, 0.16);
  border-radius: 999px;
  background: rgba(255, 47, 159, 0.92);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(255, 47, 159, 0.18);
}

.proof-stage {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: grid;
  align-self: start;
  grid-template-rows: auto auto;
}

.proof-frame {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: #efe7ec;
}

.proof-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 3, 4, 0), rgba(4, 3, 4, 0.46));
  pointer-events: none;
}

.proof-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-caption strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.proof-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-controls {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.proof-controls-overlay {
  position: absolute;
  right: 18px;
  bottom: 34px;
  left: 18px;
  z-index: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
}

.proof-control {
  min-width: 0;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4edf1;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.proof-control:hover {
  transform: translateY(-2px);
}

.proof-control.is-active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.proof-control span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 760;
}

.proof-control strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.proof-control small {
  display: block;
  line-height: 1.35;
}

.proof-control small {
  color: var(--muted);
}

.proof-control.is-active small {
  color: rgba(255, 253, 251, 0.68);
}

.proof-controls-overlay .proof-control {
  min-height: 96px;
  padding: 14px 14px 13px;
  border-color: rgba(255, 253, 251, 0.18);
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.proof-controls-overlay .proof-control span {
  margin-bottom: 10px;
}

.proof-controls-overlay .proof-control strong {
  font-size: 1rem;
}

.proof-controls-overlay .proof-control small {
  color: rgba(5, 5, 5, 0.66);
  font-size: 0.88rem;
}

.proof-controls-overlay .proof-control.is-active {
  border-color: rgba(255, 253, 251, 0.28);
  background: rgba(4, 3, 4, 0.86);
}

.proof-controls-overlay .proof-control.is-active small {
  color: rgba(255, 253, 251, 0.72);
}

@media (min-width: 1101px) {
  .leila-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .leila-grid > :first-child {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(540px, 0.68fr) minmax(300px, 0.32fr);
    gap: 20px clamp(36px, 4vw, 64px);
    align-items: end;
  }

  .leila-section h2 {
    margin-bottom: 0;
    font-size: clamp(2.9rem, 3.6vw, 4.2rem);
  }

  .leila-grid > :first-child h2 {
    grid-column: 1;
    grid-row: 1 / span 2;
    max-width: 520px;
  }

  .leila-grid > :first-child p {
    grid-column: 2;
    max-width: 34ch;
    margin-bottom: 0;
  }

  .authority-dossier {
    grid-template-columns: minmax(350px, 0.44fr) minmax(0, 0.56fr);
    gap: 24px;
  }

  .authority-dossier::before {
    inset: 42px 0 12px 18%;
  }

  .authority-sticky-rail {
    position: static;
    gap: 18px;
    align-self: stretch;
    grid-template-rows: auto 1fr;
  }

  .authority-hero-card {
    padding: 24px;
  }

  .authority-hero-card strong {
    font-size: clamp(2.25rem, 2.6vw, 3rem);
  }

  .authority-portrait-card {
    height: 100%;
  }

  .authority-portrait-card img {
    aspect-ratio: 4 / 4.65;
  }

  .authority-chapters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .authority-chapter {
    min-height: 320px;
    display: grid;
    align-content: start;
    padding: 22px;
  }

  .authority-chapter strong {
    margin-bottom: 12px;
    font-size: clamp(2rem, 2.55vw, 3.05rem);
    line-height: 0.95;
  }

  .authority-chapter h3 {
    max-width: none;
    font-size: clamp(1.08rem, 1.3vw, 1.38rem);
    font-weight: 660;
    line-height: 1.08;
  }

  .authority-chapter p {
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .authority-chapter-note {
    width: 100%;
    border-radius: 8px;
    font-size: 0.84rem;
  }

  .authority-chapter-quote blockquote {
    padding: 16px;
    font-size: clamp(1.12rem, 1.35vw, 1.45rem);
    line-height: 1.08;
  }

  .authority-proof-list,
  .authority-depth-grid {
    gap: 8px;
  }

  .authority-proof-list li,
  .authority-depth-grid div {
    font-size: 0.84rem;
  }

  .proof-section .section-head {
    grid-template-columns: minmax(500px, 0.66fr) minmax(340px, 0.34fr);
    align-items: start;
    margin-bottom: 34px;
  }

  .proof-section .section-head h2 {
    font-size: clamp(2.6rem, 3.25vw, 3.8rem);
    max-width: 520px;
  }

  .proof-section .section-head p {
    max-width: 31ch;
    font-size: 1rem;
  }

  .proof-viewer {
    grid-template-columns: minmax(0, 1fr) 356px;
    gap: 22px;
    align-items: start;
    padding: 22px;
  }

  .proof-stage {
    display: grid;
    grid-template-rows: auto;
  }

  .proof-frame {
    aspect-ratio: 1.06 / 1;
  }

  .proof-sidebar {
    gap: 16px;
  }

  .proof-editorial {
    order: 1;
    gap: 10px;
    min-height: 0;
    padding: 20px 20px 18px;
  }

  .proof-caption {
    order: 2;
    padding: 20px 20px 22px;
    box-shadow: 0 18px 46px rgba(5, 5, 5, 0.08);
  }

  .proof-caption span {
    margin-bottom: 10px;
  }

  .proof-caption strong {
    font-size: clamp(2rem, 2.35vw, 2.55rem);
    line-height: 0.98;
  }

  .proof-caption p {
    max-width: 28ch;
  }

  .proof-controls-overlay {
    left: 18px;
    right: auto;
    bottom: 18px;
    width: min(470px, calc(100% - 36px));
  }

  .proof-controls-overlay .proof-control {
    min-height: 88px;
    padding: 12px 13px;
  }
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.proof-metrics article {
  min-height: 150px;
  padding: 22px;
  box-shadow: none;
}

.proof-metrics span {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.proof-metrics p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 520;
}

.pathway-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.program-section {
  background: var(--white);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pathway-card {
  min-height: 270px;
  padding: 24px;
  box-shadow: none;
}

.pathway-card h3 {
  font-size: 1.7rem;
}

.pathway-card p {
  color: var(--muted);
}

.pathway-card.accent {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.pathway-card.accent span,
.pathway-card.accent p {
  color: rgba(255, 253, 251, 0.82);
}

.coaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.timeline {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.timeline div {
  min-width: 132px;
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 720;
}

.timeline span {
  display: block;
  color: var(--rose);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.coach-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.coach-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 38%;
}

.message-stack {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 10px;
}

.message-stack p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 251, 0.2);
  border-radius: 8px;
  background: rgba(2, 2, 2, 0.78);
  color: rgba(255, 253, 251, 0.84);
  backdrop-filter: blur(16px);
}

.message-stack strong {
  color: var(--rose);
}

.community-section {
  background: var(--black);
  color: var(--white);
}

.community-section .section-head p {
  color: rgba(255, 253, 251, 0.68);
}

.community-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.56fr);
  gap: 0;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 251, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.06);
}

.community-proof img {
  width: 100%;
  height: min(52vw, 520px);
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.community-proof-panel {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(150deg, rgba(255, 47, 159, 0.18), transparent 45%),
    rgba(255, 253, 251, 0.04);
}

.community-proof-panel strong {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.3rem);
}

.community-proof-panel p {
  margin-bottom: 0;
  color: rgba(255, 253, 251, 0.72);
}

.challenge-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.challenge-item {
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 251, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 251, 0.06);
  color: rgba(255, 253, 251, 0.86);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.challenge-item span {
  display: block;
  margin-bottom: 40px;
  color: rgba(255, 253, 251, 0.5);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.challenge-item.active {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.apply-section {
  justify-content: space-between;
  gap: 24px;
  margin: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 76px);
  padding: clamp(28px, 5vw, 52px);
  background: var(--black);
  color: var(--white);
}

.apply-section h2 {
  max-width: 780px;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.apply-content p {
  max-width: 620px;
  color: rgba(255, 253, 251, 0.7);
}

.application-modal {
  width: min(980px, calc(100vw - 32px));
  height: min(760px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  max-width: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 251, 0.18);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  box-shadow: 0 42px 120px rgba(2, 2, 2, 0.46);
  overscroll-behavior: contain;
}

.application-modal::backdrop {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 47, 159, 0.24), transparent 28%),
    rgba(4, 3, 4, 0.76);
  backdrop-filter: blur(14px);
}

.application-shell {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  background: var(--black);
}

.application-rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(150deg, rgba(255, 47, 159, 0.2), transparent 42%),
    linear-gradient(180deg, #090609, #1b1018);
}

.application-rail img {
  width: min(220px, 78%);
  filter: drop-shadow(0 20px 46px rgba(0, 0, 0, 0.38));
}

.application-rail h2 {
  max-width: 360px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.application-rail p {
  max-width: 360px;
  color: rgba(255, 253, 251, 0.72);
}

.application-points {
  display: grid;
  gap: 10px;
}

.application-points span,
.application-fallback {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 253, 251, 0.16);
  border-radius: 999px;
  color: rgba(255, 253, 251, 0.74);
  font-size: 0.9rem;
}

.application-points span {
  padding: 10px 14px;
}

.application-panel {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #f8f4f6;
  color: var(--ink);
}

.application-panel-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px 14px 24px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  font-size: 0.86rem;
  font-weight: 760;
  text-transform: uppercase;
}

.application-panel-body {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  overscroll-behavior: contain;
}

.application-summary strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.application-summary p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
}

.application-checklist {
  display: grid;
  gap: 12px;
}

.application-checklist div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}

.application-checklist span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 760;
}

.application-checklist p {
  margin: 0;
  color: var(--ink);
  font-weight: 520;
}

.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.application-fallback {
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.04);
}

.modal-close {
  min-height: 40px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.application-modal :focus-visible {
  outline: 2px solid rgba(255, 47, 159, 0.86);
  outline-offset: 3px;
}

.modal-close:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 47, 159, 0.16);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .section-head,
  .section-head.compact,
  .leila-grid,
  .proof-viewer,
  .proof-metrics,
  .pathway-grid,
  .coaching-grid,
  .community-proof,
  .challenge-track,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .apply-section,
  .site-footer {
    align-items: flex-start;
  }

  .apply-section,
  .site-footer {
    flex-direction: column;
  }

  .apply-section .button {
    width: 100%;
  }

  .authority-dossier {
    grid-template-columns: 1fr;
  }

  .authority-dossier::before,
  .authority-dossier::after {
    display: none;
  }

  .authority-sticky-rail {
    position: static;
  }

  .proof-viewer {
    padding: 12px;
  }

  .proof-sidebar {
    gap: 12px;
  }

  .lotus-ornament {
    opacity: 0.16;
  }

  .lotus-ornament-leila,
  .lotus-ornament-proof,
  .lotus-ornament-program,
  .lotus-ornament-coaching {
    right: -118px;
    left: auto;
    width: 360px;
  }

  .lotus-ornament-community {
    right: -126px;
    bottom: 90px;
    width: 360px;
    opacity: 0.12;
  }

  .lotus-ornament-apply {
    right: -116px;
    width: 340px;
    opacity: 0.12;
  }

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

  .coach-visual,
  .coach-visual img {
    min-height: 430px;
    height: 430px;
  }

  .application-modal {
    width: min(920px, calc(100vw - 18px));
    height: min(720px, calc(100dvh - 18px));
    max-height: calc(100dvh - 18px);
  }

  .application-shell {
    grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1.24fr);
    min-height: 0;
  }

  .application-rail {
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
  }

  .application-rail img {
    width: 132px;
  }

  .application-rail h2 {
    font-size: clamp(1.9rem, 4.6vw, 2.7rem);
  }

  .application-points {
    gap: 8px;
  }

  .application-panel-body {
    padding: 22px;
    gap: 18px;
  }

  .application-summary strong {
    font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  }

  .application-checklist div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .application-actions > * {
    width: 100%;
  }

  .application-panel-top {
    min-height: 56px;
    padding: 10px 12px;
  }

  .application-panel-top span {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .modal-close {
    min-height: 36px;
    padding: 8px 12px;
  }

  .application-modal {
    width: calc(100vw - 14px);
    height: calc(100dvh - 14px);
    max-height: calc(100dvh - 14px);
  }

  .application-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .application-rail {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    padding: 14px 16px 12px;
  }

  .application-rail img {
    grid-row: 1 / 3;
    width: 72px;
  }

  .application-rail .eyebrow {
    margin: 0;
    font-size: 0.68rem;
  }

  .application-rail h2 {
    margin: 0;
    max-width: none;
    font-size: 1.45rem;
    line-height: 1;
  }

  .application-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .application-points span {
    min-height: 34px;
    justify-content: center;
    padding: 6px 7px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .application-panel-body {
    padding: 16px;
    gap: 14px;
  }

  .application-summary strong {
    margin-bottom: 8px;
    font-size: 1.55rem;
  }

  .application-summary p,
  .application-checklist p {
    font-size: 0.9rem;
  }

  .application-checklist {
    gap: 0;
  }

  .application-checklist div {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .application-checklist span {
    min-height: 34px;
    font-size: 0.72rem;
  }

  .application-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 8px;
    margin: 2px -16px -16px;
    padding: 12px 16px 16px;
    background:
      linear-gradient(180deg, rgba(248, 244, 246, 0), #f8f4f6 18%),
      #f8f4f6;
    box-shadow: 0 -18px 34px rgba(248, 244, 246, 0.92);
  }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .application-modal {
    width: min(920px, calc(100vw - 18px));
    height: min(720px, calc(100dvh - 18px));
    max-height: calc(100dvh - 18px);
  }

  .application-shell {
    grid-template-columns: minmax(220px, 0.76fr) minmax(0, 1.24fr);
    grid-template-rows: none;
  }

  .application-rail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
  }

  .application-rail img {
    grid-row: auto;
    width: 132px;
  }

  .application-rail .eyebrow {
    margin: 0 0 8px;
    font-size: 0.74rem;
  }

  .application-rail h2 {
    margin: 0;
    max-width: 300px;
    font-size: clamp(1.9rem, 4.6vw, 2.7rem);
    line-height: 0.98;
  }

  .application-points {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .application-points span {
    min-height: 40px;
    justify-content: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    text-align: left;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .application-panel-body {
    padding: 22px;
    gap: 18px;
  }

  .application-summary strong {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 4.8vw, 2.8rem);
  }

  .application-summary p,
  .application-checklist p {
    font-size: 0.94rem;
  }

  .application-checklist {
    gap: 0;
  }

  .application-checklist div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .application-checklist span {
    min-height: 38px;
    font-size: 0.76rem;
  }

  .application-actions {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: auto 0 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .application-actions > * {
    width: 100%;
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    min-height: 54px;
    padding: 6px 8px 6px 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.88rem;
  }

  main section[id] {
    scroll-margin-top: 84px;
  }

  .section {
    padding: 64px 42px;
  }

  h2 {
    font-size: clamp(2.4rem, 5.2vw, 3.15rem);
    line-height: 0.96;
  }

  .section-head,
  .section-head.compact {
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.72fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 34px;
  }

  .section-head p,
  .leila-grid p,
  .coaching-grid p,
  .apply-content p {
    font-size: 0.98rem;
  }

  .leila-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .authority-dossier {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    gap: 16px;
  }

  .authority-sticky-rail {
    position: static;
    gap: 14px;
  }

  .authority-hero-card {
    padding: 20px;
  }

  .authority-hero-card strong {
    font-size: clamp(2rem, 4.8vw, 2.7rem);
  }

  .authority-portrait-card img {
    aspect-ratio: 4 / 5.2;
  }

  .authority-message {
    max-width: min(88%, 210px);
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .authority-chapters {
    gap: 12px;
  }

  .authority-chapter {
    padding: 20px;
  }

  .authority-chapter strong {
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 2.85rem);
  }

  .authority-chapter h3 {
    max-width: 16ch;
    font-size: 1.35rem;
  }

  .authority-chapter p {
    margin-bottom: 14px;
    font-size: 0.92rem;
  }

  .authority-chapter-note {
    white-space: normal;
  }

  .proof-section .section-head h2 {
    max-width: 520px;
    font-size: clamp(2.45rem, 5vw, 3.05rem);
  }

  .proof-viewer {
    grid-template-columns: minmax(0, 1fr) 276px;
    gap: 16px;
    padding: 16px;
  }

  .proof-stage {
    display: grid;
  }

  .proof-frame {
    aspect-ratio: 1;
  }

  .proof-sidebar {
    gap: 12px;
  }

  .proof-caption,
  .proof-editorial {
    padding: 16px;
  }

  .proof-caption strong {
    font-size: clamp(1.7rem, 4vw, 2.25rem);
  }

  .proof-editorial strong {
    font-size: clamp(1.35rem, 3vw, 1.7rem);
  }

  .proof-editorial p {
    font-size: 0.86rem;
  }

  .proof-controls-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .proof-controls-overlay .proof-control {
    min-height: 78px;
    padding: 10px 11px;
  }

  .proof-controls-overlay .proof-control span {
    margin-bottom: 6px;
  }

  .proof-controls-overlay .proof-control strong {
    font-size: 0.88rem;
  }

  .proof-controls-overlay .proof-control small {
    font-size: 0.78rem;
  }

  .pathway-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .pathway-card {
    min-height: 190px;
    padding: 18px;
  }

  .pathway-card h3 {
    font-size: 1.25rem;
  }

  .pathway-card p {
    font-size: 0.9rem;
  }

  .coaching-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
    gap: 28px;
    align-items: start;
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .timeline div {
    min-width: 0;
    min-height: 72px;
  }

  .coach-visual,
  .coach-visual img {
    min-height: 440px;
    height: 440px;
  }

  .message-stack p {
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .community-proof {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .community-proof img {
    height: 360px;
    min-height: 360px;
  }

  .community-proof-panel {
    padding: 22px;
  }

  .community-proof-panel strong {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .challenge-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .challenge-item {
    min-height: 116px;
    padding: 16px;
    font-size: 1.25rem;
  }

  .challenge-item span {
    margin-bottom: 26px;
  }

  .apply-section {
    margin: 64px 42px;
    padding: 32px;
  }

  .apply-section h2 {
    font-size: clamp(2.45rem, 5vw, 3.25rem);
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .section-head,
  .section-head.compact {
    grid-template-columns: 1fr;
  }

  .authority-dossier {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .authority-dossier::before,
  .authority-dossier::after {
    display: none;
  }

  .authority-sticky-rail {
    grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1fr);
    align-items: stretch;
  }

  .authority-hero-card {
    display: grid;
    align-content: center;
  }

  .authority-portrait-card img {
    aspect-ratio: 4 / 3.2;
  }

  .authority-message {
    max-width: min(82%, 230px);
    padding: 9px 11px;
    font-size: 0.76rem;
  }

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

  .authority-chapter {
    min-height: 0;
  }

  .authority-chapter h3 {
    max-width: none;
  }
}

@media (min-width: 621px) and (max-width: 740px) {
  .authority-sticky-rail,
  .authority-chapters {
    grid-template-columns: 1fr;
  }

  .authority-portrait-card img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 54px;
    padding-left: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    max-width: 130px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 108px;
  }

  main section[id] {
    scroll-margin-top: 86px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(4, 3, 4, 0.08) 0%, rgba(4, 3, 4, 0.5) 43%, rgba(4, 3, 4, 0.95) 67%),
      url("assets/images/leila-hero.webp") center top / auto 62% no-repeat,
      linear-gradient(135deg, #1b171b 0%, #6a6468 100%);
  }

  .hero-lockup {
    width: min(330px, 82vw);
    margin-bottom: 22px;
  }

  .authority-hero-card {
    padding: 18px;
  }

  .authority-hero-card strong {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .authority-portrait-card figcaption {
    padding: 12px 14px 14px;
    font-size: 0.88rem;
  }

  .authority-message-stack {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 8px;
  }

  .authority-message {
    max-width: min(92%, 244px);
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .authority-message strong {
    margin-bottom: 5px;
    font-size: 0.68rem;
  }

  .authority-chapter {
    padding: 18px;
  }

  .authority-chapter strong {
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .authority-chapter h3 {
    font-size: 1.35rem;
  }

  .authority-chapter p {
    margin-bottom: 16px;
    font-size: 0.94rem;
  }

  .authority-chapter-note {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
  }

  .authority-proof-list,
  .authority-depth-grid {
    grid-template-columns: 1fr;
  }

  .authority-depth-grid div {
    min-height: 0;
  }

  .lotus-ornament {
    display: block;
    opacity: 0.12;
  }

  .authority-chapter,
  .authority-chapter-note,
  .authority-proof-list li,
  .authority-depth-grid div {
    background: var(--white);
  }

  .challenge-item {
    background: #141114;
  }

  .challenge-item.active {
    background: var(--rose);
  }

  .lotus-ornament-leila {
    right: -138px;
    bottom: 34px;
    width: 310px;
  }

  .lotus-ornament-proof {
    top: 462px;
    right: -150px;
    width: 286px;
    transform: rotate(-12deg);
  }

  .lotus-ornament-program {
    top: auto;
    right: auto;
    bottom: -96px;
    left: -132px;
    width: 340px;
    transform: rotate(-17deg);
  }

  .lotus-ornament-coaching {
    top: auto;
    right: -132px;
    left: auto;
    bottom: 36px;
    width: 275px;
    transform: rotate(12deg);
  }

  .lotus-ornament-community {
    right: auto;
    bottom: 92px;
    left: -122px;
    width: 285px;
    transform: rotate(-13deg);
  }

  .lotus-ornament-apply {
    right: -118px;
    width: 270px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .hero-stats span {
    min-width: 0;
    min-height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 6px;
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
  }

  .hero-stats strong {
    display: block;
    font-size: 0.86rem;
    line-height: 1;
  }

  .proof-editorial,
  .proof-caption,
  .proof-metrics article {
    padding: 18px;
  }

  .proof-section .section-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .proof-section .section-head h2 {
    font-size: clamp(2.15rem, 10.4vw, 3.35rem);
    line-height: 0.97;
  }

  .proof-section .section-head p {
    font-size: 1rem;
  }

  .proof-frame {
    aspect-ratio: 1;
  }

  .proof-caption strong {
    font-size: clamp(1.75rem, 8.8vw, 2.65rem);
  }

  .proof-sidebar {
    gap: 10px;
  }

  .proof-caption {
    padding: 16px;
  }

  .proof-editorial {
    gap: 10px;
    padding: 16px;
  }

  .proof-editorial-head {
    gap: 10px;
  }

  .proof-editorial-head span {
    margin-bottom: 0;
  }

  .proof-editorial span {
    margin-bottom: 6px;
  }

  .proof-editorial strong {
    font-size: 1.28rem;
  }

  .proof-editorial p {
    max-width: none;
    font-size: 0.88rem;
  }

  .proof-editorial-action {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 0.76rem;
  }

  .proof-control {
    padding: 12px;
    min-height: 104px;
  }

  .proof-control span {
    margin-bottom: 12px;
  }

  .proof-controls-overlay {
    right: 12px;
    bottom: 16px;
    left: 12px;
    gap: 6px;
  }

  .proof-controls-overlay .proof-control {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 999px;
  }

  .proof-controls-overlay .proof-control span {
    flex: 0 0 auto;
    margin-bottom: 0;
    font-size: 0.76rem;
  }

  .proof-controls-overlay .proof-control strong {
    min-width: 0;
    margin-bottom: 0;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .proof-controls-overlay .proof-control small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* === Round-4 refactor: method triangle, journey timeline, proof grid, single-col coaching === */

.coaching-grid-single {
  grid-template-columns: 1fr;
}

.method-title,
.journey-title {
  margin-top: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(16px, 3vw, 28px);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

.journey-title {
  color: var(--white);
}

.method-title {
  color: var(--ink);
}

.method-triangle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top    top"
    "left   right";
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  justify-items: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 36px) 0;
}

.method-triangle-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Lotus mark sitting at the centroid of the polygon (vertices 50,8 / 25,80 / 75,80
   centroid at ~50%, 56% of the SVG container). Aspect-ratio preserved by being a
   separate <img>, decoupled from the parent SVG's preserveAspectRatio="none". */
.method-triangle-mark {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 110px);
  height: auto;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

/* The grid-positioned .method-logo is no longer needed on desktop — the
   .method-triangle-mark replaces it. Hide on desktop. */
@media (min-width: 641px) {
  .method-logo { display: none; }
}

/* Mobile triangle medallion: re-enable a small triangle frame around the lotus,
   shown above the first pillar on mobile. */
@media (max-width: 640px) {
  .method-triangle-mark { display: none; }
}

.method-triangle > .method-pillar,
.method-triangle > .method-logo {
  position: relative;
  z-index: 1;
}

.method-pillar {
  max-width: 32ch;
  text-align: center;
  margin: 0;
}

.method-pillar h4 {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--ink);
}

.method-pillar p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.method-pillar--top { grid-area: top; }
.method-pillar--left { grid-area: left; }
.method-pillar--right { grid-area: right; }

.method-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 16vw, 200px);
  opacity: 0.55;
  pointer-events: none;
}

.method-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop: place labels AT the triangle vertices instead of on a grid.
   Top label sits at top vertex; bottom labels sit at bottom-left/right
   vertices with their descriptions stacked above (inside the triangle).
   Placed late in the cascade so it overrides the base grid + position rules. */
@media (min-width: 641px) {
  .method-triangle {
    display: block;
    aspect-ratio: 1.55;
    padding: 0;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: 0;
  }
  .method-triangle > .method-pillar {
    position: absolute;
    text-align: center;
    z-index: 2;
    width: 30%;
  }
  .method-triangle .method-pillar h4 {
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }
  .method-triangle .method-pillar p {
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    line-height: 1.5;
  }
  .method-triangle > .method-pillar--top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .method-triangle > .method-pillar--left {
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .method-triangle > .method-pillar--right {
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  /* White halo so any line passing behind text reads as broken, not blurry.
     Stacked shadows give a more opaque mask near smaller breakpoints. */
  .method-triangle .method-pillar h4,
  .method-triangle .method-pillar p {
    text-shadow:
      0 0 3px var(--paper, #fff),
      0 0 6px var(--paper, #fff),
      0 0 9px var(--paper, #fff),
      0 0 12px var(--paper, #fff);
  }
}

@media (max-width: 640px) {
  .method-triangle {
    grid-template-columns: 1fr;
    grid-template-areas:
      "frame"
      "top"
      "left"
      "right";
    gap: clamp(14px, 4vw, 22px);
    padding-top: 0;
  }
  .method-logo {
    /* Becomes a medallion on mobile: small triangle SVG with lotus inside,
       centered above the first stacked pillar. */
    grid-area: frame;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 168px;
    height: 140px;
    margin: 0 auto;
    opacity: 1;
    display: grid;
    place-items: center;
  }
  .method-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><polygon points='50,8 8,92 92,92' fill='none' stroke='%23ff2f9f' stroke-opacity='0.55' stroke-width='1.4' stroke-linejoin='round' vector-effect='non-scaling-stroke'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 0;
  }
  .method-logo img {
    position: relative;
    z-index: 1;
    width: 70px;
    height: auto;
    opacity: 0.65;
  }
  .method-triangle-frame {
    display: none;
  }
}

.journey-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  text-align: center;
  background: none;
  border: none;
  padding: 0;
}

.journey-phase span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.5);
  margin-bottom: 8px;
}

.journey-phase strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  color: rgba(255, 253, 251, 0.86);
}

.journey-phase--active strong {
  color: var(--rose);
}

.journey-arrow {
  font-family: var(--display);
  font-size: 1.5rem;
  color: rgba(255, 253, 251, 0.4);
  user-select: none;
}

@media (max-width: 640px) {
  .journey-timeline {
    flex-direction: column;
  }
  .journey-arrow {
    transform: rotate(90deg);
  }
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 32px);
  margin: 0 0 clamp(20px, 4vw, 32px);
}

.proof-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.proof-card figcaption {
  padding: 16px 20px 20px;
}

.proof-card figcaption span {
  display: block;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.proof-card figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.proof-card figcaption p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.proof-editorial-stripe {
  margin: 0;
  max-width: none;
}

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

/* Athletic Proof: Leila personal before/after */

.leila-personal-proof {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leila-personal-proof img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-light);
  display: block;
}

.leila-personal-proof figcaption {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 253, 251, 0.7);
  font-style: italic;
}

/* What Her Clients Say */

.testimonials-section {
  background: var(--black);
  color: var(--white);
}

.testimonials-section .section-head h2,
.testimonials-section .section-head p {
  color: var(--white);
}

.testimonials-section .section-kicker {
  color: var(--rose);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
  align-items: stretch;
}

.testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 253, 251, 0.04);
  border-left: 3px solid var(--rose);
  border-radius: 6px;
}

.testimonial-card blockquote {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 253, 251, 0.92);
}

.testimonial-card blockquote::before {
  content: "\201C";
  display: inline-block;
  margin-right: 4px;
  font-size: 1.6rem;
  line-height: 0.6;
  color: var(--rose);
  vertical-align: -0.1em;
}

.testimonial-card figcaption {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.55);
}

.testimonial-card--featured {
  background: rgba(255, 47, 159, 0.1);
  border-left-color: var(--rose);
  border-left-width: 4px;
  grid-column: span 2;
}

.testimonial-card--featured blockquote {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--white);
}

@media (max-width: 720px) {
  .testimonial-card--featured {
    grid-column: span 1;
  }
}

/* === Round-6: anti-stack — horizontal carousels + method spine on mobile === */

/* Generic scroll-snap deck. Apply .snap-deck to a container that's a grid/stack
   on desktop; below 720px it becomes a swipe carousel with edge peek. */
@media (max-width: 720px) {
  .snap-deck {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-block: 4px 16px;
    scroll-padding-inline: 20px;
  }
  .snap-deck::-webkit-scrollbar { display: none; }
  .snap-deck > * {
    flex: 0 0 calc(100vw - 88px);
    max-width: 360px;
    min-width: 240px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* Subtle swipe hint (editorial micro-copy, only visible on mobile) */
.snap-deck-hint { display: none; }
@media (max-width: 720px) {
  .snap-deck-hint {
    display: block;
    margin: 8px 0 -2px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .snap-deck-hint::before {
    content: "Swipe \2192 \2003";
    color: var(--rose);
  }
  .testimonials-section .snap-deck-hint {
    color: rgba(255, 253, 251, 0.55);
  }
  .leila-section .snap-deck-hint,
  .testimonials-section .snap-deck-hint {
    margin-left: 4px;
  }
}

/* Authority dossier — uniform card structure across all 4 chapters.
   Apply on every viewport (not just mobile) so desktop layout also benefits
   from the consistent rhythm now that chapters share the same shape. */
.authority-chapter {
  display: flex;
  flex-direction: column;
}
.authority-chapter > .authority-chapter-note {
  margin-top: auto;
}

/* Inline chapter image — sits as a card-internal element, not page-dominating.
   Default crop is 4:3; portrait/wide modifiers tune object-position so faces
   stay in frame across the variety of source aspect ratios. */
.authority-chapter-image {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  max-height: 200px;
  margin: 4px auto 14px;
  object-fit: cover;
  object-position: center 30%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.authority-chapter-image--portrait {
  object-position: center 22%;
}

.authority-chapter-image--wide {
  object-position: center 40%;
}

/* Authority dossier carousel — chapter cards keep their own padding/border */
@media (max-width: 720px) {
  .authority-chapters.snap-deck > .authority-chapter {
    margin: 0;
    min-height: 320px;
  }
}

/* Proof grid — let the existing .proof-card border-radius/border ride along */
@media (max-width: 720px) {
  .proof-grid.snap-deck {
    margin-bottom: clamp(20px, 4vw, 32px);
  }
  .proof-grid.snap-deck > .proof-card {
    flex: 0 0 calc(100vw - 96px);
    max-width: 320px;
  }
}

/* Authority proof-grid carousel ALSO on desktop + iPad (per Leila's request).
   Override the 2-column grid with a horizontal scroll-snap layout. */
@media (min-width: 721px) {
  .proof-grid.snap-deck {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: clamp(18px, 2.4vw, 28px);
    padding-block: 4px 16px;
    margin-bottom: clamp(20px, 4vw, 32px);
  }
  .proof-grid.snap-deck::-webkit-scrollbar { display: none; }
  .proof-grid.snap-deck > .proof-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    max-width: 360px;
  }
}

/* Wider desktop: bigger cards, still ~3 visible with peek */
@media (min-width: 1100px) {
  .proof-grid.snap-deck > .proof-card {
    flex-basis: 360px;
  }
}

/* Show the swipe hint on desktop too for the proof-grid */
@media (min-width: 721px) {
  .proof-section .snap-deck-hint {
    display: block;
    margin: 8px 0 -2px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .proof-section .snap-deck-hint::before {
    content: "Swipe \2192 \2003";
    color: var(--rose);
  }
}

/* Testimonials carousel */
@media (max-width: 720px) {
  .testimonials-grid.snap-deck > .testimonial-card {
    min-height: 180px;
  }
  .testimonials-grid.snap-deck > .testimonial-card--featured {
    flex: 0 0 calc(100vw - 70px);
    max-width: 380px;
  }
}

/* Journey timeline (Transformation Arc) — keep horizontal flow on mobile,
   override the round-4 vertical-stack rule */
@media (max-width: 640px) {
  .journey-timeline {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-block: 6px 14px;
  }
  .journey-timeline::-webkit-scrollbar { display: none; }
  .journey-phase {
    flex: 0 0 auto;
    min-width: 96px;
    scroll-snap-align: center;
    padding: 12px 14px;
    background: rgba(255, 253, 251, 0.04);
    border-radius: 8px;
    border-left: 2px solid var(--rose);
    text-align: left;
    align-items: flex-start;
  }
  .journey-phase span {
    margin-bottom: 4px;
  }
  .journey-arrow {
    flex: 0 0 auto;
    transform: none;
    font-size: 1.2rem;
    align-self: center;
    padding: 0 2px;
  }
}

/* Coaching System: Assess / Build / Coach / Optimize timeline as horizontal scroll */
@media (max-width: 720px) {
  .timeline.snap-deck {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin-inline: -20px;
    padding-inline: 20px;
    padding-block: 4px 14px;
    margin-top: 26px;
  }
  .timeline.snap-deck::-webkit-scrollbar { display: none; }
  .timeline.snap-deck > div {
    flex: 0 0 auto;
    min-width: 142px;
    scroll-snap-align: center;
  }
}

/* Method triangle on mobile: replace the generic vertical stack with a
   branded "spine + dots" layout — logo at top, three pillars connected
   by a vertical line and rose-colored dots between. */
@media (max-width: 640px) {
  .method-triangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-areas: none;
    grid-template-columns: none;
    gap: 0;
    padding: 0;
    max-width: 480px;
  }
  .method-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: clamp(140px, 32vw, 180px);
    margin: 0 0 4px;
    opacity: 1;
    order: -1;
  }
  .method-pillar {
    position: relative;
    text-align: center;
    padding: 22px 16px 14px;
    max-width: 36ch;
  }
  .method-pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, transparent, var(--rose));
  }
  .method-pillar:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.7;
  }
  .method-pillar--top { order: 1; }
  .method-pillar--left { order: 2; }
  .method-pillar--right { order: 3; }
}
