@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;1,300&family=Jost:wght@500;600;700&family=Urbanist:wght@400;500;600;700&display=swap");

:root {
  --violet: #634cc8;
  --violet-deep: #4d39a6;
  --periwinkle: #8c6efc;
  --periwinkle-50: #c6b6fd;
  --periwinkle-25: #e2dbfe;
  --green: #468b2b;
  --honeydew: #d4f489;
  --honeydew-50: #eafac4;
  --orange: #fba956;
  --charcoal: #242424;
  --muted: #686670;
  --grey: #dbd9e0;
  --grey-soft: #f4f3f6;
  --white: #ffffff;
  --radius: 5px;
  --shadow-sm: 0 12px 30px rgba(99, 76, 200, 0.1);
  --shadow-md: 0 24px 70px rgba(48, 35, 107, 0.14);
  --container: 1180px;
  --font-heading: "Jost", "Avenir Next", Avenir, sans-serif;
  --font-accent: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Urbanist", "Avenir Next", Avenir, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  overflow-x: clip;
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  color: var(--violet);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.7rem, 8vw, 7.3rem);
  line-height: 0.875;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
}

h4 {
  font-size: 1.18rem;
  line-height: 1.05;
}

p {
  margin-bottom: 1.2rem;
}

strong {
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--periwinkle);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 16px;
  padding: 11px 16px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  padding: 9px 20px;
  background: var(--honeydew);
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--grey);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav-shell,
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: block;
  flex: 0 0 auto;
  padding: 12px;
  margin-left: -12px;
}

.brand-link img {
  width: 166px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--violet);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}

.menu-toggle-lines::before {
  transform: translateY(-6px);
}

.menu-toggle-lines::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a:not(.button) {
  position: relative;
  padding: 28px 0 24px;
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-list a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease-out;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-list a[aria-current="page"] {
  color: var(--violet);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid var(--violet);
  border-radius: var(--radius);
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}

.button:hover {
  border-color: var(--violet-deep);
  background: var(--violet-deep);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.button--accent {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--charcoal);
}

.button--accent:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.button--ghost {
  border-color: currentColor;
  background: transparent;
  color: var(--violet);
}

.button--ghost:hover {
  border-color: var(--violet);
  background: var(--periwinkle-25);
  color: var(--violet-deep);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--violet);
}

.button--small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.77rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section--compact {
  padding: 72px 0;
}

.section--soft {
  background: var(--grey-soft);
}

.section--lavender {
  background: var(--periwinkle-25);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading--center p {
  margin-inline: auto;
}

.hero-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--violet), var(--periwinkle-25));
}

.hero-home .eyebrow { color: var(--honeydew, #D4F489); }
.hero-home h1 { color: #fff; }
.hero-home .hero-copy .lede { color: rgba(255, 255, 255, 0.85); }
.hero-home .button--ghost { border-color: rgba(255, 255, 255, 0.65); color: #fff; }
.hero-home .button--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); color: #fff; }

.hero-stencil {
  width: 100%;
  align-self: stretch;
  margin-block: -92px;
  justify-self: end;
  margin-right: calc((min(var(--container), 100vw - 48px) - 100vw) / 2 - 60px);
  background: url("../img/hero-team.jpg") calc(50% - 121px) top / auto 135.5% no-repeat;
  -webkit-mask: url("../brand/icon-rotated.svg") center / auto 100% no-repeat;
  mask: url("../brand/icon-rotated.svg") center / auto 100% no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 580px);
  align-items: center;
  gap: 48px;
  padding-block: 92px;
}

.hero-copy {
  max-width: 780px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-copy .lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: #3f3d46;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-principles {
  display: grid;
  gap: 12px;
}

.principle {
  position: relative;
  display: grid;
  min-height: 110px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(99, 76, 200, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.principle-number {
  color: var(--periwinkle);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.principle strong {
  display: block;
  color: var(--violet);
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

.principle span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.stage-rail {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
}

.stage-rail span {
  padding: 12px 15px;
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}

.stage-rail span:nth-child(1) { background: var(--periwinkle-25); }
.stage-rail span:nth-child(2) { background: var(--periwinkle-50); }
.stage-rail span:nth-child(3) { background: var(--periwinkle); color: var(--white); }
.stage-rail span:nth-child(4) { background: var(--violet); color: var(--white); }

.system-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.system-card {
  display: flex;
  min-width: 0;
  min-height: 470px;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 rgba(99, 76, 200, 0);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.system-card:hover {
  border-color: var(--periwinkle-50);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.card-number {
  display: block;
  margin-bottom: 38px;
  color: var(--periwinkle-50);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.card-number::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 16px;
  background: var(--periwinkle);
  content: "";
}

.system-card h3 {
  min-height: 2em;
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.card-category {
  min-height: 2.6em;
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.card-description {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.card-tag {
  padding: 6px 8px;
  border: 1px solid var(--periwinkle-50);
  border-radius: 3px;
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-tag--primary {
  border-color: var(--honeydew);
  background: var(--honeydew-50);
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
}

.journey-line::before {
  position: absolute;
  top: 10px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--grey), var(--periwinkle), var(--violet));
  content: "";
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.77rem;
  font-weight: 500;
}

.journey-dot {
  width: 22px;
  height: 22px;
  border: 2px solid var(--periwinkle);
  border-radius: 50%;
  background: var(--white);
}

.journey-step:last-child {
  color: var(--violet);
  font-weight: 600;
}

.journey-step:last-child .journey-dot {
  border-color: var(--violet);
  background: var(--violet);
  box-shadow: 0 0 0 7px var(--periwinkle-25);
}

.belief-panel {
  position: relative;
  overflow: hidden;
  padding: 64px;
  border-radius: var(--radius);
  background: var(--violet);
  color: var(--white);
}

.belief-panel::after {
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  bottom: -160px;
  border: 80px solid var(--periwinkle);
  border-radius: 50%;
  content: "";
}

.belief-panel > * {
  position: relative;
  z-index: 1;
}

.belief-panel .eyebrow {
  color: var(--honeydew);
}

.belief-panel h2 {
  max-width: 850px;
  margin-bottom: 26px;
  color: var(--white);
}

.belief-panel h2 span {
  color: var(--honeydew);
}

.belief-panel > p {
  max-width: 730px;
  margin-bottom: 34px;
  color: #f3f1fa;
  font-size: 1.08rem;
}

.belief-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.belief-list li {
  padding: 10px 14px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-accent);
  font-size: 0.76rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 74px;
}

.split h2 {
  margin-bottom: 24px;
}

.display-accent {
  color: var(--periwinkle);
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.split-copy {
  padding-left: 32px;
  border-left: 2px solid var(--periwinkle-50);
}

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

.dark-path {
  position: relative;
  overflow: hidden;
}

.dark-path::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(140, 110, 252, 0.3), transparent 36%), linear-gradient(130deg, transparent 52%, rgba(212, 244, 137, 0.08));
  content: "";
}

.dark-path .container {
  position: relative;
  z-index: 1;
}

.dark-path h2 span {
  color: var(--honeydew);
}

.dark-path p {
  color: #cfccd6;
}

.path-mark {
  display: grid;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid #45424c;
  border-radius: var(--radius);
}

.path-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 46px;
  padding: 50px 56px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--periwinkle-25);
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.newsletter-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border: none; border-radius: 50%; background: var(--violet); color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 6px 18px rgba(99, 76, 200, 0.35); transition: background 0.2s ease, transform 0.2s ease; }
.newsletter-fab:hover { background: var(--violet-deep); transform: translateY(-2px); }
.newsletter-fab svg { width: 24px; height: 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr;
  gap: 70px;
  padding-block: 72px 48px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 420px;
  color: #bcb9c5;
  font-size: 0.88rem;
}

.footer-heading {
  display: block;
  margin-bottom: 18px;
  color: var(--periwinkle-50);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: #e9e6ef;
  font-size: 0.85rem;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--honeydew);
  text-decoration-color: currentColor;
}

.footer-bottom {
  padding: 22px 0 28px;
  border-top: 1px solid #45424c;
  color: #9f9ca7;
  font-size: 0.72rem;
  text-align: center;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease-out, transform 560ms ease-out;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--grey-soft);
}

.page-hero--dark {
  background: #1f1d27;
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  right: -130px;
  border: 110px solid var(--periwinkle-25);
  border-radius: 50%;
  content: "";
}

.page-hero--dark::before {
  border-color: #332d50;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 76px;
  padding-block: 96px;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
}

.page-hero--dark h1 {
  color: var(--white);
}

.page-hero--dark h1 span,
.page-hero--dark .eyebrow {
  color: var(--periwinkle-50);
}

.page-hero .lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.14rem;
}

.page-hero--dark .lede {
  color: #cfccd6;
}

.enrollment-pill {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 26px;
  border: 1px solid var(--honeydew);
  border-radius: 999px;
  background: var(--honeydew);
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collective-intro {
  margin-bottom: 14px;
  color: #b8b6be;
  font-size: 1.1rem;
}

.membership-price {
  margin: 16px 0 12px;
  color: #b8b6be;
  font-size: 0.88rem;
}

.membership-price strong {
  color: var(--white);
}

.collective-assessment-link {
  color: var(--honeydew);
  font-size: 0.85rem;
  font-weight: 600;
}

.collective-assessment-link:hover {
  color: var(--white);
}

.hero-emblem {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid #454052;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(140, 110, 252, 0.2), rgba(212, 244, 137, 0.04));
}

.hero-emblem img {
  width: min(220px, 58%);
}

.quote-band {
  padding: 54px 0;
  background: var(--violet) url("../brand/gradient.png") center 60% / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.quote-band blockquote {
  max-width: 900px;
  margin: 0 auto 18px;
  font-family: var(--font-accent);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.quote-band cite {
  color: var(--honeydew);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.content-card {
  padding: 30px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.content-card--lavender {
  border-color: var(--periwinkle-50);
  background: var(--periwinkle-25);
}

.content-card--honeydew {
  border-color: var(--honeydew);
  background: var(--honeydew-50);
}

.content-card .card-number {
  margin-bottom: 24px;
  font-size: 1.65rem;
}

.content-card h3 {
  margin-bottom: 14px;
  font-size: 1.34rem;
}

.content-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.collective-affirmation {
  max-width: 760px;
  margin: 38px auto 0;
  color: var(--violet);
  text-align: center;
}

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

.comparison-panel {
  padding: 38px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-panel--future {
  border-color: var(--honeydew);
  background: var(--honeydew-50);
}

.comparison-panel h3 {
  margin-bottom: 26px;
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
}

.check-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--grey);
  border-radius: 50%;
  color: var(--muted);
  content: "-";
  font-size: 0.72rem;
}

.comparison-panel--future .check-list li::before {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  content: "✓";
}

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

.feature-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 54px;
  border-radius: 3px;
  background: var(--violet);
  content: "";
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.pathway-list {
  border-top: 1px solid var(--grey);
}

.pathway-row {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.65fr) minmax(0, 1.35fr) minmax(230px, 0.8fr);
  align-items: start;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--grey);
}

.pathway-row .pathway-number {
  color: var(--periwinkle);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.pathway-row h3 {
  margin-bottom: 0;
}

.pathway-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.practice-note {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--periwinkle-25);
  color: var(--charcoal) !important;
}

.value-comparison {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card > span {
  min-height: 48px;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.price-card strong {
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-card small {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-card--featured {
  border-color: var(--violet);
  background: var(--violet);
  box-shadow: var(--shadow-md);
}

.price-card--featured > span,
.price-card--featured small,
.price-card--featured p {
  color: var(--periwinkle-50);
}

.price-card--featured strong {
  color: var(--white);
}

.price-card--featured .button {
  margin-top: auto;
  background: var(--white);
  color: var(--violet);
}

.assessment-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 40px 46px;
  border-radius: var(--radius);
  background: linear-gradient(105deg, var(--violet) 20%, var(--periwinkle) 100%);
  color: var(--white);
}

.assessment-banner .eyebrow,
.assessment-banner h2,
.assessment-banner p {
  color: var(--white);
}

.assessment-banner h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.assessment-banner p {
  max-width: 680px;
  margin-bottom: 0;
}

.assessment-banner .button {
  background: var(--white);
  color: var(--violet);
  white-space: nowrap;
}

.typeform-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 54px;
}

.typeform-layout .section-heading {
  margin-bottom: 0;
}

.home-assessment {
  padding-block: 72px;
}

.home-assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(48px, 10vw, 160px);
}

.home-assessment-layout .section-heading {
  max-width: 700px;
  margin-bottom: 0;
}

.home-assessment-action {
  justify-self: end;
}

.typeform-panel {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.typeform-panel [data-tf-live] {
  min-height: 540px;
}

.typeform-panel--assessment {
  max-width: 980px;
  margin-inline: auto;
}

.typeform-panel--assessment [data-tf-live] {
  min-height: 680px;
}

.embed-fallback {
  padding: 14px 12px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.embed-fallback a {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.assessment-hero {
  padding: 96px 0 76px;
  background: linear-gradient(135deg, var(--periwinkle-25), var(--white) 58%, var(--honeydew-50));
}

.assessment-hero .section-heading {
  margin-bottom: 0;
}

.assessment-hero h1 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
}

.assessment-hero p:last-child {
  max-width: 680px;
  margin-inline: auto;
}

.insights-hero {
  padding: 92px 0 70px;
  background: linear-gradient(120deg, var(--white) 52%, var(--periwinkle-25) 52%);
}

.insights-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 72px;
}

.insights-intro h1 {
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.insights-intro p:last-child {
  max-width: 460px;
  color: var(--muted);
}

.featured-story {
  display: grid;
  min-height: 340px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.story-visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--violet);
}

.story-visual::before,
.story-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.story-visual::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -70px;
  border: 66px solid var(--periwinkle);
}

.story-visual::after {
  width: 150px;
  height: 150px;
  bottom: -52px;
  left: -38px;
  border: 34px solid var(--honeydew);
}

.story-visual--orange::after {
  border-color: var(--orange);
}

.story-visual--green {
  background: var(--green);
}

.story-visual--green::before {
  border-color: var(--honeydew);
}

.story-visual--green::after {
  border-color: var(--periwinkle-25);
}

.story-visual--light {
  background: var(--periwinkle-25);
}

.story-visual--light::before {
  border-color: var(--periwinkle);
}

.story-visual--light::after {
  border-color: var(--violet);
}

.story-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 86px;
  transform: translate(-50%, -50%);
}

.featured-story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
}

.story-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-story h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

.story-meta {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.76rem;
}

.preview-label {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insights-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: 46px;
}

.filter-panel {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.filter-panel h2 {
  margin-bottom: 22px;
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-button {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  text-align: left;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--periwinkle-50);
  background: var(--periwinkle-25);
  color: var(--violet);
}

.filter-status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
}

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

.story-card {
  overflow: hidden;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.story-card[hidden] {
  display: none;
}

.story-card .story-visual {
  min-height: 210px;
}

.story-card-body {
  padding: 25px;
}

.story-card h3 {
  min-height: 3.1em;
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 1.2rem;
}

.story-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.83rem;
}

.featured-story-link { display: block; text-decoration: none; color: inherit; }
.featured-story-link:hover .featured-story { box-shadow: var(--shadow-md); }

.story-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.story-card-link .story-card-body {
  transition: background-color 180ms ease-out;
}

.story-card-link:hover .story-card-body {
  background: var(--periwinkle-25);
}

.story-card-link:focus-visible {
  outline: 3px solid var(--honeydew);
  outline-offset: -3px;
}

.standards-article {
  background: var(--white);
}

.article-header {
  padding: 104px 0 86px;
  background: linear-gradient(132deg, var(--periwinkle-25), var(--white) 58%, var(--honeydew-50));
}

.article-header .container {
  max-width: 940px;
}

.article-header h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 9vw, 7.8rem);
}

.article-deck {
  max-width: 820px;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.45;
}

.article-body {
  max-width: 840px;
  padding-block: 94px 110px;
}

.article-body > p {
  margin-bottom: 38px;
  color: var(--charcoal);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  letter-spacing: 0.025em;
  line-height: 1.72;
}

.article-body > p strong {
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 1.08em;
  letter-spacing: -0.02em;
}

.standards-commitment {
  padding: 42px;
  margin: 68px 0 46px;
  border-left: 5px solid var(--honeydew);
  border-radius: var(--radius);
  background: var(--violet);
  color: var(--white);
}

.standards-commitment p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 300;
  letter-spacing: 0;
}

.standards-commitment p + p {
  margin-top: 8px;
}

.article-sources p {
  color: #e2e1e6;
  font-size: 0.82rem;
  line-height: 1.55;
}

.article-sources #article-sources-heading {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-hero {
  padding: 96px 0 70px;
  background: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 72px;
}

.about-hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
}

.about-hero .lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.14rem;
}

.about-brand-panel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--violet) url("../brand/gradient.png") center / cover no-repeat;
}

.about-brand-panel::before,
.about-brand-panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-brand-panel::before {
  width: 360px;
  height: 360px;
  top: -190px;
  left: -130px;
  border: 84px solid var(--honeydew);
}

.about-brand-panel::after {
  width: 310px;
  height: 310px;
  right: -120px;
  bottom: -160px;
  border: 72px solid var(--periwinkle);
}

.about-brand-panel img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(190px, 48%);
  transform: translate(-50%, -50%);
}

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

.founder-card {
  overflow: hidden;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.founder-identity {
  min-height: 300px;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.founder-copy {
  padding: 34px;
}

.founder-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.founder-role {
  display: block;
  margin-bottom: 22px;
  color: var(--violet);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy p {
  color: var(--muted);
  font-size: 0.91rem;
}

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

.values-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 54px;
}

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

.value-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--periwinkle-25);
}

.value-card span {
  display: block;
  margin-bottom: 50px;
  color: var(--periwinkle);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0;
  background: var(--violet) url("../brand/gradient.png") center / cover no-repeat;
  color: var(--white);
}

.contact-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(99, 76, 200, 0.95), rgba(99, 76, 200, 0.64));
  content: "";
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
}

.contact-hero p {
  max-width: 610px;
  margin-bottom: 0;
  color: #f4f1fb;
  font-size: 1.16rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(500px, 1.35fr);
  align-items: start;
  gap: 62px;
}

.scheduler-panel {
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.scheduler-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.scheduler-panel > p:not(.eyebrow, .embed-fallback) {
  margin-bottom: 24px;
  color: var(--muted);
}

.scheduler-panel iframe {
  display: block;
  min-width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

.contact-pathways {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  align-items: start;
  gap: 32px;
}

.message-panel,
.assessment-card {
  padding: 40px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.message-panel h2,
.assessment-card h2 {
  margin-bottom: 12px;
  color: var(--violet);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.message-panel > p:not(.embed-fallback),
.assessment-card > p:not(.eyebrow) {
  color: var(--muted);
}

.message-panel [data-tf-live] {
  min-height: 680px;
  margin-top: 24px;
}

.assessment-card {
  position: sticky;
  top: 134px;
}

.contact-pathways aside { position: sticky; top: 134px; align-self: start; }
.contact-pathways aside .assessment-card { position: static; }
.assessment-card.card--brand {
  background: var(--violet);
  border-color: var(--violet);
}
.assessment-card.card--brand h2 { color: var(--white); }
.assessment-card.card--brand > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.85); }
.assessment-card.card--brand .text-link { color: var(--honeydew); }
.assessment-card.card--lavender {
  background: var(--periwinkle-25);
  border-color: var(--periwinkle-50);
}
.assessment-card .text-link {
  display: inline-flex;
  margin-top: 10px;
  gap: 8px;
  font-size: 1rem;
}

.expectation-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.expectation-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
}

.expectation-list strong {
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.expectation-list span {
  color: var(--muted);
  font-size: 0.86rem;
}

.booking-panel {
  position: relative;
  padding: 42px;
  border: 1px solid var(--periwinkle-50);
  border-radius: var(--radius);
  background: var(--periwinkle-25);
  box-shadow: var(--shadow-md);
}

.booking-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.booking-panel > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.booking-note {
  margin: 18px 0 0 !important;
  color: var(--muted);
  font-size: 0.72rem;
}

.booking-fallback {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--periwinkle-50);
}

.booking-fallback p {
  margin-bottom: 14px;
  font-size: 0.84rem;
}

@media (max-width: 1179px) {
  .system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .system-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
}

@media (max-width: 1040px) {
  .nav-list { gap: 18px; }
  .nav-list a:not(.button) { font-size: 0.7rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; }
  .hero-stencil { align-self: center; margin-block: 0; aspect-ratio: 244.41 / 288.67; background-position: calc(50% - 71px) top; background-size: auto 135.5%; -webkit-mask-size: contain; mask-size: contain; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-card:nth-child(4), .feature-card:nth-child(5) { grid-column: span 1; }
  .value-comparison { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pathway-row { grid-template-columns: 60px 180px 1fr; }
  .practice-note { grid-column: 2 / -1; }
  .insights-layout { grid-template-columns: 190px 1fr; gap: 28px; }
  .insights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-layout { grid-template-columns: 220px 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .value-card span { margin-bottom: 28px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 78px; }
  .nav-shell, .container { width: min(100% - 36px, var(--container)); }
  .nav-shell { min-height: 68px; }
  .brand-link img { width: 150px; }
  .menu-toggle { display: inline-flex; }
  .js .nav-list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px;
    background: var(--white);
    border-top: 1px solid var(--grey);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 180ms ease-out, visibility 180ms ease-out;
  }
  .js .nav-list[data-open="true"] { opacity: 1; pointer-events: auto; visibility: visible; }
  .nav-list a:not(.button) { display: block; padding: 18px 8px; border-bottom: 1px solid var(--grey); font-size: 1rem; }
  .nav-list a:not(.button)::after { display: none; }
  .nav-list .button { margin-top: 20px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 74px; }
  .hero-copy { max-width: 700px; }
  .hero-stencil { justify-self: center; width: min(372px, 100%); height: auto; aspect-ratio: 244.41 / 288.67; margin-block: 0; margin-right: 0; background-position: calc(50% - 78px) top; -webkit-mask-size: contain; mask-size: contain; }
  .hero-principles { grid-template-columns: repeat(3, 1fr); }
  .principle { min-height: 150px; grid-template-columns: 1fr; align-content: center; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split-copy { padding-left: 24px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 76px; }
  .hero-emblem { min-height: 270px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .typeform-layout { grid-template-columns: 1fr; }
  .assessment-banner { grid-template-columns: auto 1fr; }
  .assessment-banner .button { grid-column: 2; justify-self: start; }
  .insights-intro { grid-template-columns: 1fr; gap: 36px; }
  .insights-hero { background: var(--periwinkle-25); }
  .featured-story { grid-template-columns: 1fr; }
  .insights-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .filter-list { grid-template-columns: repeat(3, 1fr); }
  .about-hero-grid, .contact-layout, .contact-pathways { grid-template-columns: 1fr; }
  .about-brand-panel { min-height: 320px; }
  .assessment-card { position: static; }
}

@media (max-width: 680px) {
  .home-assessment { padding-block: 64px; }
  .home-assessment-layout { grid-template-columns: 1fr; gap: 30px; }
  .home-assessment-action { justify-self: start; }
  .stage-rail { grid-template-columns: 1fr; }
  .system-grid { grid-template-columns: 1fr; }
  .system-card,
  .system-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
  }
  .system-card h3,
  .card-category { min-height: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .announcement { padding-inline: 12px; font-size: 0.62rem; }
  .section { padding: 76px 0; }
  .home-assessment { padding-block: 64px; }
  .section--compact { padding: 54px 0; }
  .hero-grid { gap: 40px; padding-block: 60px; }
  .hero-principles { grid-template-columns: 1fr; }
  .principle { min-height: 0; grid-template-columns: 38px 1fr; }
  .journey-line { grid-template-columns: 1fr; gap: 0; margin-top: 38px; }
  .journey-line::before { top: 10px; bottom: 10px; left: 10px; width: 2px; height: auto; background: linear-gradient(var(--grey), var(--periwinkle), var(--violet)); }
  .journey-step { min-height: 60px; grid-template-columns: 22px 1fr; justify-items: start; align-items: start; gap: 16px; text-align: left; }
  .belief-panel { padding: 38px 26px; }
  .belief-panel::after { display: none; }
  .cta-panel { padding: 36px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .page-hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .comparison-grid, .card-grid, .feature-grid, .value-comparison { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-card::before { margin-bottom: 34px; }
  .pathway-row { grid-template-columns: 44px 1fr; gap: 18px; }
  .pathway-row > p { grid-column: 2; }
  .practice-note { grid-column: 2; }
  .filter-list, .insights-grid { grid-template-columns: 1fr; }
  .story-card h3 { min-height: 0; }
  .article-header { padding: 76px 0 62px; }
  .article-header h1 { font-size: clamp(3rem, 14vw, 4rem); }
  .article-body { padding-block: 68px 82px; }
  .standards-commitment { padding: 32px 26px; }
  .founder-grid, .values-layout { grid-template-columns: 1fr; }
  .founder-identity { min-height: 250px; }
  .founder-photo { min-height: 250px; }
  .booking-panel { padding: 32px 24px; }
  .scheduler-panel, .message-panel, .assessment-card { padding: 30px 22px; }
  .typeform-panel { padding: 10px; }
  .typeform-panel [data-tf-live] { min-height: 620px; }
  .assessment-banner { grid-template-columns: 1fr; padding: 34px 26px; }
  .assessment-banner .button { grid-column: auto; }
}

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