/* Shared ATP base styles - copied from style.css */
@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times";
  src: url("assets/fonts/happy-times-at-the-ikob.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times Swash";
  src: url("assets/fonts/happy-times-at-the-ikob-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #222222;
  --muted: #56616d;
  --paper: #ffffff;
  --panel: #f3f2f0;
  --dark: #1f1f1f;
  --line: #e9ecef;
  --shadow: 0 28px 80px rgba(22, 22, 22, 0.12);
  --radius: 8px;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --site-gutter: clamp(28px, 7vw, 150px);
  --site-shell: min(calc(100% - var(--site-gutter)), 1500px);
  --site-shell-reading: min(calc(100% - var(--site-gutter)), 1280px);
  --home-shell: var(--site-shell);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  border-top: 8px solid var(--dark);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.96)),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  opacity: 0.52;
  filter: saturate(0.72);
}

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

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

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

.site-header {
  width: var(--home-shell);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  position: relative;
  z-index: 10;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(230px, 18vw, 340px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 36px);
  margin-right: auto;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
}

.main-nav > a,
.header-actions > a:not(.button) {
  color: #232323;
  font: inherit;
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #232323;
  font: inherit;
  cursor: pointer;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-menu:hover .nav-trigger::after,
.nav-menu:focus-within .nav-trigger::after,
.nav-menu.is-open .nav-trigger::after {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-dropdown {
  width: min(640px, calc(100vw - 48px));
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 120;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(28, 32, 36, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 24px;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown,
.nav-menu.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-product {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 114px;
  border: 1px solid rgba(32, 34, 38, 0.05);
  border-radius: 10px;
  padding: 22px 24px;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nav-product:nth-child(1) {
  background: #edf7ed;
}

.nav-product:nth-child(2) {
  background: #eaf2fa;
}

.nav-product:nth-child(3) {
  background: #f7e8ee;
}

.nav-product:hover,
.nav-product:focus-visible {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.12);
  transform: translateY(-1px);
}

.nav-product img {
  width: 142px;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.nav-product strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.08;
  font-weight: 600;
}

.nav-product small {
  display: block;
  margin-top: 7px;
  color: #56616d;
  font-size: 15px;
  line-height: 1.34;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 24px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
}

.button-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

.button-light {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.button-glass {
  min-width: 214px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 11px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.hero {
  width: var(--home-shell);
  height: clamp(560px, 45.8vw, 936px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  padding: clamp(42px, 5.2vw, 72px);
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.99) 0%, rgba(18, 16, 13, 0.97) 42%, rgba(18, 16, 13, 0.86) 60%, rgba(18, 16, 13, 0.28) 79%, rgba(18, 16, 13, 0.06) 100%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.02) 0%, rgba(18, 16, 13, 0.17) 52%, rgba(18, 16, 13, 0.62) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  max-width: min(850px, 64vw);
  color: #ffffff;
}

.hero-copy h1 {
  max-width: 840px;
  margin: 0 0 clamp(22px, 2.1vw, 32px);
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(50px, 5.05vw, 96px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0;
  font-synthesis-style: none;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}

.hero-copy h1 em {
  font-style: normal;
}

.hero-copy p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 1.55vw, 30px);
  font-weight: 550;
  line-height: 1.32;
}

.hero-actions {
  margin-top: clamp(28px, 3vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.trusted-section,
.statement-section,
.pillar-section,
.impact-heading-section,
.impact-card-section,
.challenge-section,
.system-section,
.practice-section,
.founders-section,
.faq-section {
  width: var(--home-shell);
  margin: 0 auto;
}

.trusted-section {
  padding: clamp(58px, 6vw, 92px) 0 clamp(46px, 5vw, 76px);
  text-align: center;
}

.trusted-section p {
  margin: 0 0 clamp(38px, 4vw, 58px);
  color: #56616d;
  font-size: clamp(17px, 1.3vw, 23px);
  font-weight: 600;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(80px, 1fr));
  align-items: center;
  gap: clamp(26px, 3vw, 56px);
}

.brand-strip img {
  width: 100%;
  max-width: 150px;
  max-height: 78px;
  justify-self: center;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.brand-strip .logo-tall {
  max-width: 86px;
}

.brand-strip .logo-wide {
  max-width: 172px;
}

.statement-section {
  padding: clamp(74px, 7vw, 126px) 0;
  text-align: center;
}

.statement-section h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #242424;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.statement-section p {
  max-width: 900px;
  margin: clamp(22px, 2.4vw, 34px) auto 0;
  color: #56616d;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 550;
  line-height: 1.42;
  letter-spacing: 0;
}

.pillar-section {
  padding: 0 0 clamp(80px, 7vw, 130px);
}

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

.pillar-grid article {
  min-height: 320px;
  padding: clamp(26px, 2.4vw, 38px);
  border-radius: 8px;
  background: #f3f2f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(36, 36, 36, 0.04);
}

.pillar-grid article:nth-child(1) {
  background: #e7f5e9;
}

.pillar-grid article:nth-child(2) {
  background: #dcedfb;
}

.pillar-grid article:nth-child(3) {
  background: #fff2c6;
}

.pillar-grid article:nth-child(4) {
  background: #ead1dc;
}

.pillar-grid span {
  margin-bottom: auto;
  color: rgba(36, 36, 36, 0.74);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
}

.pillar-grid h3 {
  margin: clamp(58px, 5vw, 86px) 0 12px;
  color: #252525;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.pillar-grid p {
  margin: 0;
  color: #535353;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 550;
  line-height: 1.28;
  letter-spacing: 0;
}

.impact-heading-section {
  padding: clamp(72px, 7vw, 126px) 0;
  text-align: center;
}

.impact-heading-section h2 {
  max-width: 980px;
  margin: 0 auto;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.impact-heading-section em {
  font-family: inherit;
  font-style: normal;
}

.impact-heading-section h2,
.challenge-intro h2,
.system-intro h2,
.metrics-intro h2,
.practice-header h2,
.founders-heading h2 {
  font-style: normal;
}

.impact-card-section {
  padding: 0 0 clamp(86px, 8vw, 140px);
}

.impact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.impact-card-grid article {
  min-height: clamp(520px, 42vw, 650px);
  padding: clamp(34px, 3.2vw, 48px);
  border-radius: 8px;
  background: #f3f2f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.impact-card-visual {
  min-height: clamp(230px, 20vw, 320px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.impact-card-visual img {
  width: 100%;
  height: clamp(230px, 20vw, 320px);
  object-fit: cover;
  object-position: center;
}

.impact-card-copy img {
  width: min(230px, 82%);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: clamp(20px, 2vw, 30px);
}

.impact-card-copy p {
  max-width: 460px;
  margin: 0 0 clamp(18px, 1.8vw, 26px);
  color: #505050;
  font-size: clamp(21px, 1.55vw, 29px);
  font-weight: 550;
  line-height: 1.28;
  letter-spacing: 0;
}

.impact-card-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
  margin-top: 2px;
  padding: 0 18px;
  border-radius: 8px;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease;
}

.impact-card-copy a:hover,
.impact-card-copy a:focus-visible {
  background: #2b2b2b;
  transform: translateY(-1px);
}

.impact-card-copy a span {
  font-size: 20px;
  line-height: 1;
}

.challenge-section {
  padding: 0 0 clamp(90px, 8vw, 150px);
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.challenge-intro {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 4vw, 62px);
  border-radius: 8px;
  background: #1f1f1f;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.challenge-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.58), rgba(20, 19, 17, 0.92)),
    linear-gradient(90deg, rgba(20, 19, 17, 0.82), rgba(20, 19, 17, 0.34)),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.02);
  pointer-events: none;
}

.challenge-intro::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    -110px 160px 0 -1px rgba(255, 255, 255, 0.04),
    -210px 300px 0 -2px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.challenge-intro > * {
  position: relative;
  z-index: 1;
}

.challenge-intro h2 {
  max-width: 640px;
  margin: 0;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(52px, 5.2vw, 94px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}

.challenge-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.42;
  font-weight: 550;
}

.challenge-button {
  width: fit-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0 24px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.5vw, 22px);
}

.challenge-grid article {
  min-height: clamp(132px, 9.6vw, 172px);
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(36, 36, 36, 0.04);
  border-radius: 8px;
  background: #f3f2f0;
  display: grid;
  grid-template-columns: clamp(56px, 4.6vw, 78px) minmax(0, 1fr) 34px;
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
  cursor: pointer;
  outline: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.challenge-grid article:hover,
.challenge-grid article:focus-visible,
.challenge-grid article.is-active {
  border-color: rgba(36, 36, 36, 0.11);
  box-shadow: 0 18px 46px rgba(31, 31, 31, 0.13);
  filter: saturate(1.04);
  transform: translateY(-5px) scale(1.01);
}

.challenge-grid article:active {
  transform: translateY(-2px) scale(1.006);
}

.challenge-grid article:nth-child(1) {
  background: linear-gradient(90deg, #e9f8ec 0%, #f7fcf8 100%);
  color: #242424;
}

.challenge-grid article:nth-child(2) {
  background: linear-gradient(90deg, #e7def1 0%, #fbf8ff 100%);
}

.challenge-grid article:nth-child(3) {
  background: linear-gradient(90deg, #dceefc 0%, #f5fbff 100%);
}

.challenge-grid article:nth-child(4) {
  background: linear-gradient(90deg, #fff1c9 0%, #fffaf0 100%);
}

.challenge-grid article:nth-child(5) {
  background: linear-gradient(90deg, #ead2dd 0%, #fff7fb 100%);
}

.challenge-grid article:nth-child(6) {
  background: linear-gradient(90deg, #edc0b6 0%, #fff4f1 100%);
}

.challenge-grid span {
  width: clamp(56px, 4.6vw, 78px);
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.challenge-grid article:hover span,
.challenge-grid article:focus-visible span,
.challenge-grid article.is-active span {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 22px rgba(31, 31, 31, 0.08);
  transform: scale(1.04);
}

.challenge-grid h3 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.challenge-grid p {
  margin: 0;
  color: #535353;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.38;
  font-weight: 550;
}

.challenge-grid b {
  justify-self: end;
  color: rgba(36, 36, 36, 0.38);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
  transition: transform 520ms ease, color 520ms ease;
}

.challenge-grid article.is-visible b {
  color: rgba(36, 36, 36, 0.5);
  transform: translateX(4px);
}

.challenge-grid article:hover b,
.challenge-grid article:focus-visible b,
.challenge-grid article.is-active b {
  color: rgba(36, 36, 36, 0.82);
  transform: translateX(12px);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.challenge-grid article.scroll-reveal {
  transform: translateY(18px) scale(0.985);
}

.challenge-section .scroll-reveal:not(.is-visible),
.challenge-grid article.scroll-reveal:not(.is-visible) {
  transform: none;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .challenge-grid article.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .challenge-grid article.is-visible b {
    transform: none;
  }

  .challenge-grid article:hover,
  .challenge-grid article:focus-visible,
  .challenge-grid article.is-active,
  .challenge-grid article:active {
    transform: none;
  }
}

.system-section {
  padding: clamp(82px, 8vw, 140px) 0 clamp(110px, 9vw, 170px);
}

.system-intro,
.metrics-intro {
  max-width: 1260px;
  margin: 0 auto clamp(60px, 6vw, 92px);
  text-align: center;
}

.system-intro h2,
.metrics-intro h2 {
  max-width: 1180px;
  margin: 0 auto clamp(26px, 2.8vw, 42px);
  color: #24262a;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(56px, 5.6vw, 104px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: 0;
}

.system-intro p,
.metrics-intro p {
  max-width: 1180px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(21px, 1.75vw, 30px);
  line-height: 1.42;
  font-weight: 550;
}

.system-use-grid {
  margin: 0 auto clamp(96px, 9vw, 150px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 68px);
}

.system-use-grid article {
  min-width: 0;
}

.system-use-grid span {
  width: clamp(78px, 7vw, 112px);
  aspect-ratio: 1;
  margin-bottom: clamp(34px, 3.8vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(31, 31, 31, 0.08);
  color: #24262a;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
}

.system-use-grid h3 {
  margin: 0 0 18px;
  color: #24262a;
  font-size: clamp(23px, 1.65vw, 31px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.system-use-grid p {
  max-width: 360px;
  margin: 0;
  color: #555d66;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.36;
  font-weight: 550;
}

.system-loop {
  --timeline-bg: #ffffff;
  --timeline-blue: #1f1f1f;
  --timeline-blue-deep: #1f1f1f;
  --timeline-line: #1f1f1f;
  --step-size: clamp(88px, 7.2vw, 118px);
  --step-pad-x: clamp(44px, 5vw, 76px);
  --step-pad-y: clamp(36px, 4vw, 56px);
  width: min(100%, 1500px);
  margin: 0 auto clamp(96px, 9vw, 150px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 58px);
  padding: var(--step-pad-y) var(--step-pad-x) clamp(42px, 4.5vw, 70px);
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #24262a;
}

.system-loop::before {
  content: "";
  position: absolute;
  left: calc(var(--step-pad-x) + (var(--step-size) / 2));
  right: calc(var(--step-pad-x) + (var(--step-size) / 2));
  top: calc(var(--step-pad-y) + (var(--step-size) / 2));
  height: 1px;
  background: rgba(31, 31, 31, 0.28);
}

.loop-card {
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loop-card span {
  width: var(--step-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #1f1f1f;
  border-radius: 50%;
  background: #ffffff;
  color: var(--timeline-blue-deep);
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 400;
  line-height: 1;
}

.loop-card-3 span {
  border-color: var(--timeline-blue);
  background: var(--timeline-blue);
  color: #ffffff;
  box-shadow: 0 0 0 8px var(--timeline-bg);
}

.loop-card div {
  margin-top: clamp(26px, 3vw, 40px);
}

.loop-card h3 {
  margin: 0 0 12px;
  color: #24262a;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.loop-card p {
  max-width: 260px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.35;
  font-weight: 550;
}

.practice-section {
  padding: clamp(74px, 7vw, 126px) 0 clamp(110px, 9vw, 160px);
}

.practice-header {
  margin-bottom: clamp(44px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.practice-header h2 {
  margin: 0;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.practice-header a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 0 0 auto;
  padding: 0 22px;
  border: 1px solid #e3e5e8;
  border-radius: 8px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.practice-header a span {
  font-size: 22px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.practice-grid article {
  min-height: 470px;
  padding: 24px;
  border: 1px solid #eceff2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(21, 21, 21, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.practice-grid img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 30px;
}

.practice-grid span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #dfe2e5;
  border-radius: 999px;
  color: #5a5f65;
  font-size: 16px;
  font-weight: 550;
  line-height: 1;
}

.practice-grid h3 {
  margin: 22px 0 14px;
  color: #242424;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.practice-grid p {
  margin: 0;
  color: #535d68;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 550;
}

.practice-using {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #5a5f65;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.practice-using strong {
  color: #6c737a;
  font-weight: 600;
}

.practice-using span {
  min-height: 0;
  display: inline;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #242424;
  font: inherit;
}

.practice-using-products {
  min-width: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.practice-using-products img {
  width: auto;
  max-width: 112px;
  height: 22px;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
}

.practice-grid .practice-using-products span {
  min-height: 0;
  display: inline;
  border: 0;
  padding: 0;
  color: #242424;
  font: inherit;
}

.simple-page-hero {
  width: var(--home-shell);
  margin: 0 auto;
  padding: clamp(100px, 10vw, 170px) 0 clamp(64px, 7vw, 104px);
  text-align: center;
}

.simple-page-hero > span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.simple-page-hero h1 {
  max-width: 1100px;
  margin: clamp(24px, 3vw, 44px) auto 0;
  color: var(--ink);
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(64px, 8vw, 138px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.simple-page-hero p {
  max-width: 780px;
  margin: clamp(24px, 2.8vw, 42px) auto 0;
  color: var(--muted);
  font-size: clamp(20px, 1.6vw, 30px);
  line-height: 1.35;
  font-weight: 550;
}

.simple-card-grid {
  width: var(--home-shell);
  margin: 0 auto clamp(110px, 10vw, 180px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.simple-card-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(36, 36, 36, 0.08);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 48px);
  background: #e7f5e9;
}

.simple-card-grid article:nth-child(2) {
  background: #dcedfb;
}

.simple-card-grid article:nth-child(3) {
  background: #fff2c6;
}

.simple-card-grid article:nth-child(4) {
  background: #ead1dc;
}

.simple-card-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 1;
  font-weight: 600;
}

.simple-card-grid p {
  max-width: 620px;
  margin: clamp(52px, 6vw, 92px) 0 0;
  color: #535d68;
  font-size: clamp(18px, 1.3vw, 23px);
  line-height: 1.38;
  font-weight: 550;
}

.solutions-tab-section {
  width: min(calc(100% - clamp(36px, 7vw, 140px)), 1500px);
  margin: 0 auto;
  padding: clamp(60px, 6vw, 104px) 0 clamp(78px, 7vw, 128px);
}

.solutions-page-heading {
  max-width: 1040px;
  margin: 0 auto clamp(38px, 4.4vw, 68px);
  text-align: center;
}

.solutions-page-heading h1 {
  margin: 0 0 18px;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(64px, 7vw, 118px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.solutions-page-heading p {
  max-width: 840px;
  margin: 0 auto;
  color: #535d68;
  font-size: clamp(18px, 1.32vw, 23px);
  line-height: 1.36;
  font-weight: 550;
}

.solutions-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(20px, 2vw, 28px);
}

.solutions-tab-list article {
  --solution-tint: #e7f5e9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--solution-tint);
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.055);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.solutions-tab-list article:not(.is-open) {
  min-height: clamp(520px, 32vw, 610px);
}

.solutions-tab-list article:not(.is-open) .solution-trigger {
  min-height: clamp(520px, 32vw, 610px);
}

.solutions-tab-list article:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.11);
}

.solutions-tab-list article.is-open {
  grid-column: 1 / -1;
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.08);
}

.solutions-tab-list article:nth-child(2) {
  --solution-tint: #f3ebf8;
}

.solutions-tab-list article:nth-child(3) {
  --solution-tint: #dcedfb;
}

.solutions-tab-list article:nth-child(4) {
  --solution-tint: #fff2c6;
}

.solutions-tab-list article:nth-child(5) {
  --solution-tint: #ead1dc;
}

.solutions-tab-list article:nth-child(6) {
  --solution-tint: #f3cbc7;
}

.solution-trigger {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.solution-trigger:focus-visible {
  outline: 3px solid rgba(7, 21, 86, 0.68);
  outline-offset: -6px;
}

.solution-marker {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--solution-tint);
}

.solution-marker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(17, 17, 17, 0.04));
  pointer-events: none;
}

.solution-marker img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.84) contrast(0.96);
}

.solution-trigger > span:not(.solution-marker) {
  flex: 1;
  display: block;
  padding: clamp(22px, 2vw, 30px);
  background: color-mix(in srgb, var(--solution-tint) 82%, #ffffff);
}

.solutions-tab-list article.is-open .solution-trigger {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  align-items: stretch;
}

.solutions-tab-list article.is-open .solution-marker {
  height: 100%;
  min-height: clamp(220px, 18vw, 300px);
  aspect-ratio: auto;
}

.solutions-tab-list article.is-open .solution-trigger > span:not(.solution-marker) {
  align-self: center;
  padding: clamp(30px, 3vw, 48px);
}

.solution-title {
  display: block;
  margin: 0;
  color: #242424;
  font-size: clamp(23px, 1.62vw, 31px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: 0;
}

.solution-summary {
  display: block;
  margin: clamp(12px, 1.2vw, 18px) 0 0;
  color: #5f6872;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.44;
  font-weight: 550;
}

.solution-detail {
  display: block;
  margin: 0 clamp(20px, 2.2vw, 34px) clamp(22px, 2.4vw, 36px);
  padding: clamp(24px, 2.5vw, 36px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.solution-detail[hidden] {
  display: none;
}

.solution-detail-label {
  display: block;
  margin: 0 0 clamp(20px, 2vw, 30px);
  color: #242424;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-detail-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 34px) clamp(26px, 3vw, 48px);
  align-content: start;
}

.solution-detail-copy h3 {
  margin: 0 0 8px;
  color: #242424;
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0;
}

.solution-detail-copy p {
  margin: 0;
  color: #535d68;
  font-size: clamp(15px, 0.95vw, 16px);
  line-height: 1.54;
  font-weight: 550;
}

.solutions-next-cta {
  width: min(calc(100% - clamp(36px, 7vw, 140px)), 1660px);
  margin: 0 auto clamp(88px, 8vw, 140px);
  min-height: clamp(360px, 34vw, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(52px, 6vw, 96px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 16, 13, 0.66), rgba(18, 16, 13, 0.78)),
    url("assets/reflect-meeting.jpg") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.solutions-next-cta h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(44px, 4.5vw, 78px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.solutions-next-cta p {
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.36;
  font-weight: 550;
}

.solutions-next-cta div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.solutions-next-cta .button-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.solutions-next-cta .button-light:hover,
.solutions-next-cta .button-light:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

.founders-section {
  padding: clamp(76px, 8vw, 140px) 0 clamp(110px, 9vw, 170px);
}

.founders-heading {
  margin-bottom: clamp(54px, 6vw, 92px);
  text-align: center;
}

.founders-heading h2 {
  max-width: 1120px;
  margin: 0 auto clamp(26px, 3vw, 42px);
  color: #24262a;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(76px, 8.4vw, 152px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.founders-heading p {
  max-width: 1180px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.42;
  font-weight: 550;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.founder-card {
  min-height: 640px;
  padding: clamp(26px, 2.6vw, 40px);
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.founder-photo {
  height: clamp(330px, 30vw, 450px);
  position: relative;
  margin-bottom: clamp(28px, 3vw, 44px);
  display: grid;
  place-items: center;
}

.founder-mark {
  width: min(390px, 88%);
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  opacity: 0.96;
  filter: brightness(0) saturate(100%) invert(88%) sepia(19%) saturate(603%) hue-rotate(174deg) brightness(103%) contrast(97%);
  transform: translate(-50%, -50%);
}

.founder-portrait {
  width: min(255px, 62%);
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.founder-linkedin {
  width: 48px;
  aspect-ratio: 1;
  position: absolute;
  right: 16%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.founder-card h3 {
  margin: 0 0 16px;
  color: #202226;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.founder-card p {
  max-width: 410px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.36;
  font-weight: 550;
}

.founder-card-orange {
  background: #ffffff;
}

.founder-card-purple {
  background: #ffffff;
}

.impact-stories-hero {
  width: min(calc(100% - clamp(36px, 7vw, 140px)), 1440px);
  margin: 0 auto;
  padding: clamp(58px, 6vw, 110px) 0 clamp(34px, 4vw, 64px);
  text-align: center;
}

.impact-stories-hero > span,
.case-section-heading > span,
.case-study-cover .eyebrow-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  background: #eef8ff;
  color: #232323;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-stories-hero h1 {
  max-width: 1020px;
  margin: 18px auto 18px;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(66px, 8vw, 140px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.impact-stories-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: #535d68;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.38;
  font-weight: 550;
}

.impact-story-library {
  width: min(calc(100% - clamp(36px, 7vw, 140px)), 1440px);
  margin: 0 auto clamp(72px, 7vw, 118px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.impact-story-card {
  min-height: clamp(360px, 28vw, 470px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #e7f5e9;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.055);
}

.impact-story-card:hover,
.impact-story-card:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.02);
}

.impact-story-card:nth-child(2) {
  background: #dcedfb;
}

.impact-story-card:nth-child(3) {
  background: #fff2c6;
}

.impact-story-card:nth-child(4) {
  background: #ead1dc;
}

.impact-story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.impact-story-card span {
  display: block;
  margin: clamp(22px, 2vw, 30px) clamp(22px, 2vw, 30px) 12px;
  color: #535d68;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-story-card h2 {
  margin: 0;
  padding: 0 clamp(22px, 2vw, 30px) clamp(24px, 2.4vw, 36px);
  color: #242424;
  font-size: clamp(22px, 1.6vw, 31px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: 0;
}

.case-study-detail {
  width: min(calc(100% - clamp(36px, 7vw, 140px)), 1440px);
  margin: 0 auto clamp(96px, 8vw, 150px);
}

.case-page-nav {
  width: min(calc(100% - clamp(36px, 7vw, 140px)), 1440px);
  margin: clamp(28px, 4vw, 58px) auto clamp(18px, 2.4vw, 34px);
}

.case-page-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: #f7f9fc;
  color: #232323;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.case-placeholder-cover {
  min-height: clamp(520px, 43vw, 720px);
}

.case-placeholder-blue {
  background: linear-gradient(135deg, #dcedfb 0%, #f7f9fc 72%);
}

.case-placeholder-yellow {
  background: linear-gradient(135deg, #fff2c6 0%, #f7f9fc 72%);
}

.case-placeholder-pink {
  background: linear-gradient(135deg, #ead1dc 0%, #f7f9fc 72%);
}

.case-placeholder-cover aside {
  align-self: stretch;
  display: grid;
  gap: 24px;
  background: #ffffff;
}

.case-placeholder-cover aside img {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  object-fit: cover;
}

.case-placeholder-cover::before,
.case-placeholder-cover::after {
  display: none;
}

.case-study-cover,
.case-section {
  border-radius: 8px;
  margin-bottom: clamp(26px, 3vw, 46px);
  background: #f7f9fc;
}

.case-study-cover {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(36px, 5vw, 78px);
  background: linear-gradient(135deg, #f4f1fa 0%, #f7f9fc 68%);
}

.case-study-cover h2 {
  max-width: 920px;
  margin: 22px 0 34px;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(50px, 5.4vw, 94px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.case-enabled {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.case-enabled span {
  width: fit-content;
  border-radius: 6px;
  padding: 8px 11px;
  background: #ffffff;
  color: #535d68;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-enabled img {
  width: min(360px, 80%);
}

.case-study-cover p {
  max-width: 860px;
  margin: 0;
  color: #535d68;
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.46;
  font-weight: 550;
}

.case-study-cover aside {
  align-self: end;
  border-radius: 8px;
  padding: clamp(28px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.06);
}

.case-study-cover aside > p {
  color: #202226;
  font-size: clamp(21px, 1.55vw, 28px);
  font-weight: 600;
}

.case-metric-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.case-metric-pair div {
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.case-metric-pair strong,
.case-scope strong,
.outcome-stack > article > strong,
.leading-indicators strong {
  display: block;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 4.2vw, 78px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.case-metric-pair span {
  display: block;
  margin: 12px 0 8px;
  color: #242424;
  font-size: 18px;
  font-weight: 600;
}

.case-metric-pair p {
  color: #5f6872;
  font-size: 15px;
  line-height: 1.42;
}

.case-study-cover aside > b {
  display: block;
  color: #202226;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.25;
}

.case-section {
  padding: clamp(34px, 4vw, 64px);
}

.case-section-heading {
  max-width: 1080px;
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

.case-section-heading h2 {
  margin: 18px 0 18px;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(42px, 5vw, 82px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.case-section-heading p {
  margin: 0;
  color: #535d68;
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.48;
  font-weight: 550;
}

.case-risk-grid {
  display: grid;
  gap: 18px;
}

.case-risk-grid article,
.case-initiative-grid article,
.action-recommendations article,
.leading-indicators article {
  border-radius: 8px;
  padding: clamp(24px, 2.5vw, 36px);
}

.case-risk-grid .risk-red {
  background: #f8d8d8;
}

.case-risk-grid .risk-yellow {
  background: #fff2c6;
}

.case-risk-grid .risk-blue {
  background: #dcedfb;
}

.case-risk-grid h3,
.case-insight-list h3,
.case-initiative-grid p,
.case-table-grid h3,
.implementation-list h3,
.action-recommendations h3,
.leading-indicators h3 {
  margin: 0 0 12px;
  color: #242424;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.case-risk-grid p,
.case-insight-list li,
.case-initiative-grid article,
.implementation-list p,
.driver-definition-table p,
.action-recommendations p,
.outcome-stack li,
.leading-indicators p,
.case-note {
  margin: 0;
  color: #535d68;
  font-size: clamp(17px, 1.18vw, 21px);
  line-height: 1.52;
  font-weight: 550;
}

.case-scope {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr) minmax(220px, 0.45fr);
  gap: 24px;
  align-items: end;
  margin-top: clamp(30px, 3.4vw, 54px);
}

.case-scope > p {
  margin: 0;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(28px, 3vw, 50px);
  line-height: 1.02;
}

.case-scope div,
.outcome-stack article {
  border-radius: 8px;
  padding: 26px;
  background: #ffffff;
}

.case-scope span {
  display: block;
  margin-top: 10px;
  color: #535d68;
  font-size: 17px;
  font-weight: 600;
}

.case-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.case-table-grid table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  color: #535d68;
  font-size: clamp(16px, 1vw, 18px);
}

.case-table-grid th,
.case-table-grid td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(32, 34, 38, 0.07);
}

.case-table-grid th {
  color: #242424;
  font-weight: 600;
}

.case-table-grid tr:last-child td {
  border-bottom: 0;
}

.case-insight-list {
  margin-top: clamp(30px, 4vw, 58px);
}

.case-insight-list ul,
.outcome-stack ul {
  margin: 0;
  padding-left: 24px;
}

.case-insight-list li + li,
.outcome-stack li + li {
  margin-top: 12px;
}

.case-initiative-grid,
.action-recommendations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(28px, 3.2vw, 48px);
}

.case-initiative-grid p,
.action-recommendations > p {
  grid-column: 1 / -1;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
}

.case-initiative-grid article,
.action-recommendations article {
  background: #ebe8f4;
}

.implementation-list {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.implementation-list article {
  border-top: 4px solid #202226;
  padding-top: 20px;
}

.implementation-list span {
  display: block;
  margin-bottom: 16px;
  color: #535d68;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
}

.driver-definition-table {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.08);
}

.driver-definition-table div {
  display: grid;
  grid-template-columns: minmax(200px, 0.38fr) minmax(0, 1fr);
  gap: 26px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(32, 34, 38, 0.08);
}

.driver-definition-table div:last-child {
  border-bottom: 0;
}

.driver-definition-table strong {
  color: #242424;
  font-size: 18px;
  font-weight: 600;
}

.case-note,
.roi-callout {
  margin-top: 26px;
  border-radius: 8px;
  padding: 24px 28px;
  background: #dcedfb;
  color: #202226;
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.45;
  font-weight: 600;
}

.outcomes-section {
  background: #f8f7fb;
}

.outcome-stack {
  display: grid;
  gap: 22px;
}

.outcome-stack article {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.outcome-stack h3 {
  margin: 12px 0 0;
  color: #242424;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}

.roi-callout {
  background: #d9f6d7;
}

.leading-indicators {
  margin-top: clamp(34px, 4vw, 58px);
  padding-top: 30px;
  border-top: 1px solid rgba(32, 34, 38, 0.18);
}

.leading-indicators > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leading-indicators article {
  background: #ebe8f4;
}

/* Impact story pages: visual ATP editorial treatment. Content stays unchanged. */
body.case-studies-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #f7f9fc 54%, #ffffff 100%);
}

.case-page-nav {
  margin-top: clamp(22px, 3vw, 42px);
}

.case-page-nav a {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.08);
}

.case-study-detail {
  width: min(calc(100% - clamp(36px, 6vw, 116px)), 1540px);
}

.case-study-cover {
  min-height: clamp(680px, 64vw, 920px);
  position: relative;
  isolation: isolate;
  align-items: end;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.58fr);
  background: #f5f2fb;
}

.case-study-cover::before,
.case-study-cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.case-study-cover::before {
  inset: 0 0 0 auto;
  width: min(48%, 680px);
  z-index: 0;
  background:
    linear-gradient(90deg, #f5f2fb 0%, rgba(245, 242, 251, 0.18) 32%, rgba(245, 242, 251, 0.08) 100%),
    linear-gradient(180deg, rgba(35, 35, 35, 0.02), rgba(35, 35, 35, 0.18)),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  filter: saturate(0.92) contrast(0.96);
}

.case-study-cover::after {
  width: clamp(420px, 43vw, 780px);
  aspect-ratio: 1;
  left: clamp(-260px, -12vw, -90px);
  bottom: clamp(-300px, -20vw, -140px);
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 0 0 clamp(70px, 8vw, 130px) rgba(220, 237, 251, 0.58),
    0 0 0 clamp(140px, 15vw, 250px) rgba(234, 209, 220, 0.24);
}

.case-study-cover > div {
  position: relative;
  z-index: 1;
  align-self: center;
}

.case-study-cover h2 {
  max-width: 980px;
  font-size: clamp(62px, 6.8vw, 116px);
  line-height: 0.93;
}

.case-study-cover > div > p {
  max-width: 860px;
  color: #535d68;
  font-size: clamp(20px, 1.45vw, 28px);
}

.case-enabled {
  width: fit-content;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.case-enabled img {
  width: min(390px, 84vw);
}

.case-study-cover aside {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}

.case-study-cover aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: linear-gradient(90deg, #e7f5e9, #dcedfb, #fff2c6, #ead1dc);
}

.case-study-cover aside > p {
  padding-top: 14px;
}

.case-metric-pair {
  gap: 14px;
}

.case-metric-pair div {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-metric-pair div:first-child {
  background: #f7e8ee;
}

.case-metric-pair div:last-child {
  background: #eaf2fa;
}

.case-study-cover aside > b {
  border-radius: 8px;
  padding: 22px 24px;
  background: #fff2c6;
}

.case-section {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 84px);
  background: #ffffff;
}

.case-section::before {
  content: "";
  width: clamp(240px, 24vw, 430px);
  aspect-ratio: 1;
  position: absolute;
  right: clamp(-210px, -10vw, -90px);
  top: clamp(-210px, -10vw, -80px);
  border-radius: 50%;
  background: rgba(220, 237, 251, 0.42);
  pointer-events: none;
}

.case-section > * {
  position: relative;
  z-index: 1;
}

.case-study-detail > .case-section:nth-of-type(2) {
  background: #fff9e8;
}

.case-study-detail > .case-section:nth-of-type(3) {
  background: #f7f9fc;
}

.case-study-detail > .case-section:nth-of-type(4) {
  background: #eef8ff;
}

.case-study-detail > .case-section:nth-of-type(5) {
  background: #fbf8ff;
}

.case-section-heading {
  max-width: 1180px;
}

.case-section-heading h2 {
  max-width: 1040px;
  font-size: clamp(54px, 5.8vw, 96px);
  line-height: 0.96;
}

.case-risk-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: caseRisk;
}

.case-risk-grid article {
  min-height: clamp(250px, 22vw, 360px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.case-risk-grid article::before {
  counter-increment: caseRisk;
  content: "0" counter(caseRisk);
  position: absolute;
  top: 24px;
  left: 26px;
  color: rgba(35, 35, 35, 0.24);
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(62px, 6vw, 108px);
  line-height: 0.82;
}

.case-risk-grid article::after {
  content: "";
  width: 82px;
  aspect-ratio: 1;
  position: absolute;
  right: 26px;
  top: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.case-risk-grid h3 {
  max-width: 420px;
  font-size: clamp(27px, 2.2vw, 42px);
}

.case-scope {
  align-items: stretch;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.case-scope div,
.outcome-stack article,
.case-table-grid > div,
.driver-definition-table,
.case-insight-list,
.case-initiative-grid article,
.action-recommendations article,
.leading-indicators article {
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.06);
}

.case-table-grid > div {
  border-radius: 8px;
  padding: clamp(22px, 2.4vw, 34px);
  background: #ffffff;
}

.case-table-grid h3 {
  min-height: 68px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(32, 34, 38, 0.08);
}

.case-table-grid table {
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
}

.case-table-grid th,
.case-table-grid td {
  border-bottom: 0;
}

.case-table-grid tbody tr {
  background: #f7f9fc;
}

.case-table-grid tbody tr:nth-child(2) {
  background: #fbf8ff;
}

.case-table-grid tbody tr:nth-child(3) {
  background: #fff9e8;
}

.case-table-grid td:first-child {
  border-radius: 8px 0 0 8px;
}

.case-table-grid td:last-child {
  border-radius: 0 8px 8px 0;
  color: #202226;
  font-weight: 600;
}

.case-insight-list {
  border-radius: 8px;
  padding: clamp(26px, 3vw, 42px);
  background: #ffffff;
}

.case-insight-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-left: 0;
  list-style: none;
}

.case-insight-list li {
  min-height: 190px;
  border-radius: 8px;
  padding: 26px;
  background: #e7f5e9;
}

.case-insight-list li + li {
  margin-top: 0;
  background: #eaf2fa;
}

.case-initiative-grid article,
.action-recommendations article {
  min-height: 240px;
  background: #ebe8f4;
}

.case-initiative-grid article:nth-of-type(2),
.action-recommendations article:nth-of-type(2) {
  background: #e7f5e9;
}

.implementation-list {
  gap: 18px;
  counter-reset: implementationStep;
}

.implementation-list article {
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(92px, 0.18fr) minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
  border-top: 0;
  border-radius: 8px;
  padding: clamp(24px, 2.6vw, 38px);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.06);
}

.implementation-list article:nth-child(even) {
  background: #fbf8ff;
}

.implementation-list span {
  width: 76px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  margin: 0;
  background: #232323;
  color: #ffffff;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: 34px;
  line-height: 1;
}

.implementation-list h3 {
  margin: 6px 0 0;
  font-size: clamp(26px, 2.1vw, 38px);
}

.driver-definition-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: #ffffff;
}

.driver-definition-table div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 0;
  border-radius: 8px;
  padding: clamp(24px, 2.4vw, 34px);
  background: #f7f9fc;
}

.driver-definition-table div:nth-child(2) {
  background: #fff9e8;
}

.driver-definition-table div:nth-child(3) {
  background: #e7f5e9;
}

.driver-definition-table div:nth-child(4) {
  background: #eaf2fa;
}

.driver-definition-table strong {
  max-width: 280px;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.1;
}

.action-recommendations > p {
  max-width: 940px;
}

.case-note,
.roi-callout {
  padding: clamp(28px, 3vw, 42px);
}

.outcomes-section {
  background: #ffffff;
}

.outcome-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-stack article {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f7f9fc;
}

.outcome-stack article:nth-child(2) {
  background: #fff9e8;
}

.outcome-stack article:nth-child(3) {
  background: #eaf2fa;
}

.outcome-stack h3 {
  margin-top: 18px;
  font-size: clamp(24px, 1.9vw, 34px);
}

.outcome-stack ul {
  padding-left: 20px;
}

.roi-callout {
  display: flex;
  align-items: center;
  min-height: 150px;
  background: #d9f6d7;
}

.leading-indicators > div {
  gap: 22px;
}

.leading-indicators article {
  min-height: 230px;
  background: #ebe8f4;
}

.faq-section {
  padding: clamp(72px, 7vw, 128px) 0 clamp(76px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.4fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.faq-intro {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-intro h2 {
  max-width: 500px;
  margin: 0;
  color: #222429;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(56px, 6.2vw, 112px);
  line-height: 0.98;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  font-synthesis-style: none;
}

.impact-heading-section h2,
.system-intro h2,
.metrics-intro h2,
.practice-header h2,
.faq-intro h2 {
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  font-synthesis-style: none;
}

.impact-heading-section h2 {
  font-size: clamp(46px, 5vw, 84px);
  line-height: 1.05;
}

.system-intro h2,
.metrics-intro h2 {
  font-size: clamp(56px, 5.6vw, 104px);
  line-height: 1.03;
}

.practice-header h2 {
  font-size: clamp(46px, 5vw, 78px);
  line-height: 1.04;
}

.faq-intro h2 {
  font-size: clamp(56px, 6.2vw, 112px);
  line-height: 0.98;
}

.faq-intro p {
  margin: 0 0 32px;
  color: #5d6875;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.4;
  font-weight: 550;
}

.faq-intro a {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  color: #222429;
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 8px;
  background: #f4f9fd;
}

.faq-item button {
  width: 100%;
  min-height: 88px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: #24262a;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-item button span {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}

.faq-item button b {
  width: 28px;
  aspect-ratio: 1;
  position: relative;
  flex: 0 0 auto;
}

.faq-item button b::before,
.faq-item button b::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  inset: 50% auto auto 0;
  border-radius: 999px;
  background: #222429;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item button b::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding 220ms ease;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 30px 28px;
  color: #5d6875;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.5;
  font-weight: 550;
}

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

.faq-item.is-open button b::after {
  transform: translateY(-50%) rotate(0deg);
}

.closing-cta-section {
  width: var(--home-shell);
  margin: 0 auto clamp(24px, 3vw, 56px);
}

.closing-cta {
  min-height: clamp(520px, 43vw, 830px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: clamp(42px, 7vw, 96px);
  text-align: center;
  background: #1f1f1f;
}

.closing-cta::before,
.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.closing-cta::before {
  background: url("assets/consult-placeholder.png") center / cover no-repeat;
  filter: blur(2px);
  opacity: 0.85;
  transform: scale(1.04);
}

.closing-cta::after {
  background:
    radial-gradient(circle at center, rgba(28, 27, 24, 0.2), rgba(28, 27, 24, 0.74) 62%, rgba(15, 15, 14, 0.88)),
    linear-gradient(180deg, rgba(17, 17, 16, 0.32), rgba(17, 17, 16, 0.82));
}

.closing-cta-copy {
  width: min(1120px, 100%);
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.closing-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(56px, 6vw, 112px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  font-synthesis-style: none;
}

.closing-cta h2 em {
  color: #e5f5ff;
  font-style: inherit;
}

.closing-cta p {
  max-width: 1120px;
  margin: clamp(34px, 4vw, 62px) auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(21px, 1.7vw, 34px);
  line-height: 1.38;
  font-weight: 600;
}

.closing-cta-actions {
  margin-top: clamp(34px, 3.8vw, 58px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.closing-cta-actions .button {
  min-width: 190px;
  min-height: 70px;
  padding: 0 30px;
  color: #07145d;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 600;
}

.closing-cta-actions .button-glass {
  min-width: 188px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.35);
  color: #07145d;
}

.closing-cta-cursor {
  width: 26px;
  height: 34px;
  margin-top: clamp(28px, 3vw, 52px);
  position: relative;
  display: block;
  transform: rotate(-18deg);
}

.closing-cta-cursor::before {
  content: "";
  width: 18px;
  height: 28px;
  position: absolute;
  left: 3px;
  top: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 55%, 58% 62%, 82% 100%, 63% 100%, 42% 66%, 0 93%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55));
}

.closing-cta-cursor::after {
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  left: 8px;
  top: 5px;
  background: #202124;
  clip-path: polygon(0 0, 100% 55%, 52% 61%, 82% 100%, 63% 100%, 37% 65%, 0 88%);
}

.site-footer {
  width: var(--home-shell);
  margin: 0 auto;
  padding: clamp(70px, 7vw, 100px) 0 56px;
  border-top: 1px solid #dfe6ee;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.footer-brand img {
  width: min(420px, 100%);
  margin-bottom: 30px;
}

.footer-brand p {
  max-width: 350px;
  margin: 0;
  color: #5d6875;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.42;
  font-weight: 550;
}

.footer-brand p + p {
  margin-top: 42px;
}

.footer-demo {
  min-height: 62px;
  margin: clamp(58px, 6vw, 88px) 0 0;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  color: #24262a;
  background: #ffffff;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 600;
}

.footer-ai-summary {
  width: min(520px, 100%);
  min-height: 168px;
  position: sticky;
  top: 24px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  margin-top: clamp(42px, 5vw, 72px);
  border-radius: 10px;
  padding: clamp(22px, 2.2vw, 30px);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 2px, transparent 2.5px) 0 0 / 22px 22px,
    #111111;
  color: #ffffff;
  box-shadow: none;
  transform: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.footer-ai-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(234, 242, 250, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(237, 247, 237, 0.1), rgba(247, 232, 238, 0.12));
  opacity: 0.9;
}

.footer-ai-summary:hover,
.footer-ai-summary:focus-visible {
  transform: none;
  box-shadow: none;
}

.footer-ai-summary > span:first-child {
  max-width: 430px;
  color: #ffffff;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-ai-summary strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-ai-summary small {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.3;
  font-weight: 600;
}

.footer-ai-icons {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.1vw, 18px);
  color: #ffffff;
}

.footer-ai-icon {
  width: clamp(38px, 2.7vw, 46px);
  height: clamp(38px, 2.7vw, 46px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(38px, 2.7vw, 46px);
}

.footer-ai-icons img {
  width: clamp(34px, 2.35vw, 40px);
  height: clamp(34px, 2.35vw, 40px);
  display: block;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: screen;
}

.footer-column {
  display: grid;
  gap: 18px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #24262a;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.2;
  font-weight: 600;
}

.footer-column a {
  color: #5d6875;
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.28;
  font-weight: 550;
}

.footer-bottom {
  margin-top: clamp(86px, 9vw, 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #7a8592;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  font-weight: 550;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom a {
  color: #7a8592;
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #24262a;
}

@media (max-width: 1040px) {
  .site-header {
    width: min(calc(100% - 48px), 1960px);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    position: fixed;
    left: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    background: #ffffff;
    border: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 8px 8px 0 0;
  }

  body.nav-open .nav-menu {
    display: block;
  }

  body.nav-open .nav-trigger {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
    text-align: left;
  }

  body.nav-open .nav-dropdown {
    width: 100%;
    position: static;
    display: none;
    margin: 12px 0 6px;
    padding: 10px;
    border-color: #dfe6ee;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  body.nav-open .nav-dropdown::before {
    display: none;
  }

  body.nav-open .nav-menu.is-open .nav-dropdown,
  body.nav-open .nav-menu:focus-within .nav-dropdown {
    display: grid;
  }

  body.nav-open .nav-menu:focus-within:not(.is-open) .nav-dropdown {
    display: none;
  }

  body.nav-open .nav-product {
    grid-template-columns: minmax(94px, 116px) minmax(0, 1fr);
    min-height: 94px;
    padding: 14px;
  }

  body.nav-open .nav-product img {
    width: 104px;
    max-height: 36px;
  }

  body.nav-open .header-actions {
    top: 462px;
    align-items: flex-start;
    padding: 0 22px 22px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .hero {
    width: min(calc(100% - 40px), 1960px);
    height: clamp(560px, 76vh, 720px);
    padding: 42px;
  }

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

  .trusted-section,
  .statement-section,
  .pillar-section,
  .impact-heading-section,
  .impact-card-section,
  .challenge-section,
  .system-section,
  .practice-section,
  .founders-section,
  .faq-section {
    width: min(calc(100% - 48px), 1500px);
  }

  .brand-strip {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

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

  .impact-card-grid {
    grid-template-columns: 1fr;
  }

  .impact-card-grid article {
    min-height: 420px;
  }

  .challenge-section {
    grid-template-columns: 1fr;
  }

  .challenge-intro {
    min-height: 420px;
  }

  .system-loop {
    --step-size: clamp(70px, 8vw, 86px);
    --step-pad-x: clamp(24px, 4vw, 38px);
    --step-pad-y: 34px;
    gap: clamp(12px, 2vw, 20px);
  }

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

  .loop-card h3 {
    font-size: clamp(22px, 3vw, 28px);
  }

  .loop-card p {
    font-size: clamp(15px, 1.9vw, 18px);
  }

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

  .practice-grid article {
    min-height: auto;
  }

  .solutions-tab-section {
    width: min(calc(100% - 48px), 1660px);
  }

  .solutions-tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-tab-list article.is-open .solution-trigger {
    grid-template-columns: 1fr;
  }

  .solutions-tab-list article.is-open .solution-marker {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .solution-detail-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founders-heading,
  .founder-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    min-height: 0;
    gap: 40px;
  }

  .closing-cta-section {
    width: min(calc(100% - 48px), 1960px);
  }

  .site-footer {
    width: min(calc(100% - 48px), 1500px);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 680px) {
  body {
    border-top-width: 6px;
  }

  .site-header {
    width: min(calc(100% - 28px), 1960px);
    min-height: 76px;
  }

  .brand img {
    width: min(190px, 62vw);
  }

  .hero {
    width: min(calc(100% - 24px), 1960px);
    height: min(680px, calc(100vh - 104px));
    min-height: 580px;
    padding: 24px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 16, 13, 0.18) 0%, rgba(18, 16, 13, 0.52) 34%, rgba(18, 16, 13, 0.9) 100%),
      linear-gradient(90deg, rgba(18, 16, 13, 0.74), rgba(18, 16, 13, 0.2));
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.92;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .solutions-tab-section {
    width: min(calc(100% - 28px), 1660px);
    padding-top: 18px;
  }

  .solutions-page-heading {
    text-align: left;
  }

  .solutions-page-heading h1 {
    font-size: clamp(56px, 17vw, 86px);
  }

  .solutions-tab-list {
    grid-template-columns: 1fr;
  }

  .solution-trigger {
    display: block;
  }

  .solutions-tab-list article.is-open .solution-trigger {
    display: block;
  }

  .solution-detail {
    margin: 0 18px 22px;
    padding: 22px;
  }

  .solution-detail-copy {
    grid-template-columns: 1fr;
  }

  .solutions-next-cta {
    width: min(calc(100% - 28px), 1660px);
    padding: 34px 24px;
  }

  .solutions-next-cta div {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    min-height: 52px;
  }

  .trusted-section,
  .statement-section,
  .pillar-section,
  .impact-heading-section,
  .impact-card-section,
  .challenge-section,
  .system-section,
  .practice-section,
  .founders-section,
  .faq-section {
    width: min(calc(100% - 28px), 1500px);
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }

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

  .pillar-grid article {
    min-height: 260px;
  }

  .impact-card-grid article {
    min-height: 360px;
    padding: 26px;
  }

  .impact-card-visual {
    min-height: 160px;
  }

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

  .challenge-intro,
  .challenge-grid article {
    min-height: auto;
  }

  .system-loop {
    --step-size: 56px;
    --step-pad-x: 22px;
    --step-pad-y: 26px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: var(--step-pad-y) var(--step-pad-x) 30px;
  }

  .system-loop::before {
    left: calc(var(--step-pad-x) + (var(--step-size) / 2));
    right: auto;
    top: calc(var(--step-pad-y) + var(--step-size));
    bottom: calc(var(--step-pad-y) + (var(--step-size) / 2));
    width: 1px;
    height: auto;
  }

  .system-use-grid {
    grid-template-columns: 1fr;
  }

  .system-use-grid span {
    margin-bottom: 24px;
  }

  .loop-card {
    display: grid;
    grid-template-columns: var(--step-size) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    text-align: left;
  }

  .loop-card span {
    width: var(--step-size);
    font-size: 27px;
  }

  .loop-card-3 span {
    box-shadow: 0 0 0 6px var(--timeline-bg);
  }

  .loop-card div {
    margin-top: 0;
    padding-top: 3px;
  }

  .loop-card h3 {
    margin-bottom: 7px;
    font-size: 26px;
  }

  .loop-card p {
    margin: 0;
    font-size: 16px;
  }

  .practice-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .founders-heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .founder-card {
    min-height: auto;
  }

  .closing-cta-section {
    width: min(calc(100% - 24px), 1960px);
  }

  .closing-cta {
    min-height: 560px;
    padding: 34px 22px;
  }

  .closing-cta h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .closing-cta p {
    font-size: 18px;
  }

  .closing-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .closing-cta-actions .button {
    width: 100%;
    min-height: 58px;
  }

  .site-footer {
    width: min(calc(100% - 28px), 1500px);
    padding-top: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand img {
    width: min(310px, 100%);
  }

  .footer-demo {
    width: 100%;
    margin-top: 36px;
  }

  .footer-brand p + p {
    margin-top: 30px;
  }

  .footer-bottom {
    margin-top: 64px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}


/* Shared variables used by all merged pages. */
:root {
  --shell: min(calc(100% - clamp(40px, 8vw, 160px)), 1500px);
  --narrow: min(calc(100% - 40px), 1000px);
  --serif: "Happy Times", Georgia, "Times New Roman", Times, serif;
  --swash: "Happy Times Swash", "Happy Times", Georgia, "Times New Roman", Times, serif;
  --green: #e7f5e9;
  --blue: #dcedfb;
  --yellow: #fff2c6;
  --rose: #ead1dc;
  --peach: #faebe5;
  --pink: #f3cbc7;
  --soft-shadow: none;
}


/* ATP Reflect page styles. */

body.reflect-page * {
  box-sizing: border-box;
}

body.reflect-page {
  margin: 0;
  border-top: 8px solid var(--dark);
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

body.reflect-page img,
body.reflect-page svg {
  display: block;
  max-width: 100%;
}

body.reflect-page a {
  color: inherit;
  text-decoration: none;
}

body.reflect-page button {
  font: inherit;
}

body.reflect-page mark {
  color: inherit;
}

body.reflect-page h1,
body.reflect-page h2,
body.reflect-page h3,
body.reflect-page h4,
body.reflect-page p {
  margin: 0;
  letter-spacing: 0;
}

body.reflect-page .site-header {
  width: var(--shell);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  position: relative;
  z-index: 20;
  background: #ffffff;
}

body.reflect-page .brand {
  flex: 0 0 auto;
}

body.reflect-page .brand img {
  width: clamp(230px, 18vw, 340px);
}

body.reflect-page .main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  margin-right: auto;
  color: #232323;
  font-size: clamp(14px, 0.96vw, 17px);
  font-weight: 600;
}

body.reflect-page .header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  color: #232323;
  font-size: clamp(14px, 0.96vw, 17px);
  font-weight: 600;
}

body.reflect-page .menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 11px;
}

body.reflect-page .menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
}

body.reflect-page .hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 118px) 0 0;
  background: #ffffff;
  text-align: center;
}

body.reflect-page .hero-copy {
  width: var(--narrow);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

body.reflect-page .product-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: clamp(24px, 3vw, 38px);
}

body.reflect-page .product-logo img {
  width: clamp(168px, 15vw, 246px);
}

body.reflect-page .hero-copy h1 {
  font-size: clamp(58px, 7.1vw, 116px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

body.reflect-page .hero-copy h1 span {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

body.reflect-page .hero-copy h2 {
  max-width: 880px;
  margin: clamp(16px, 1.8vw, 26px) auto 0;
  color: #222222;
  font-size: clamp(26px, 3.1vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

body.reflect-page .hero-copy p,
body.reflect-page .section-copy p,
body.reflect-page .feature-copy p,
body.reflect-page .faq-content p {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 550;
  line-height: 1.52;
}

body.reflect-page .hero-copy p {
  max-width: 820px;
  margin: clamp(24px, 2.5vw, 36px) auto 0;
}

body.reflect-page .button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 3.3vw, 52px);
}

body.reflect-page .button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 24px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

body.reflect-page .button:hover,
body.reflect-page .button:focus-visible {
  transform: none;
}

body.reflect-page .button-dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
}

body.reflect-page .button-light {
  background: #ffffff;
  color: var(--ink);
}

body.reflect-page .hero-media {
  width: min(calc(100% - clamp(40px, 10vw, 190px)), 1280px);
  margin: clamp(58px, 6vw, 96px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

body.reflect-page .hero-media img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  object-position: center top;
}

body.reflect-page .problem-section,
body.reflect-page .three-c-section,
body.reflect-page .feature-section,
body.reflect-page .metrics-section,
body.reflect-page .use-case-section,
body.reflect-page .faq-section {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(92px, 8vw, 148px) 0;
}

body.reflect-page .section-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

body.reflect-page .section-copy h2,
body.reflect-page .solution-block h3,
body.reflect-page .feature-copy h2,
body.reflect-page .faq-section h2,
body.reflect-page .contact-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  line-height: 1.02;
}

body.reflect-page .section-copy h2 {
  color: var(--ink);
  font-size: clamp(42px, 5.1vw, 86px);
}

body.reflect-page .section-copy p {
  max-width: 880px;
  margin: clamp(22px, 2.2vw, 34px) auto 0;
}

body.reflect-page .mark-rose,
body.reflect-page .mark-green {
  border-radius: 7px;
  padding: 0 0.12em;
}

body.reflect-page .mark-rose {
  background: var(--pink);
}

body.reflect-page .mark-green {
  background: var(--green);
}

body.reflect-page .solution-block {
  max-width: 1040px;
  margin: clamp(56px, 6vw, 92px) auto 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 76px);
  background: var(--dark);
  color: #ffffff;
  text-align: left;
}

body.reflect-page .solution-block span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.reflect-page .solution-block h3 {
  max-width: 760px;
  margin-top: 28px;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 68px);
}

body.reflect-page .solution-block p {
  max-width: 850px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 450;
  line-height: 1.52;
}

body.reflect-page .cycle-section,
body.reflect-page .contact-section {
  width: 100%;
  padding: clamp(88px, 8vw, 142px) max(20px, calc((100% - min(100% - 40px, 1500px)) / 2));
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.reflect-page .cycle-canvas {
  width: clamp(300px, 32vw, 460px);
  height: clamp(300px, 32vw, 460px);
  margin: clamp(72px, 7vw, 112px) auto clamp(54px, 5vw, 86px);
  position: relative;
}

body.reflect-page .cycle-ring {
  position: absolute;
  inset: 0;
  border: 3px dashed rgba(34, 34, 34, 0.2);
  border-radius: 50%;
  animation: spin 42s linear infinite;
}

body.reflect-page .cycle-node {
  width: clamp(116px, 10vw, 154px);
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

body.reflect-page .node-listen {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.reflect-page .node-understand {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

body.reflect-page .node-act {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

body.reflect-page .node-improve {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

body.reflect-page .node-icon,
body.reflect-page .card-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

body.reflect-page .node-icon {
  width: clamp(70px, 6.4vw, 94px);
  aspect-ratio: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

body.reflect-page .node-icon svg,
body.reflect-page .card-icon svg,
body.reflect-page .faq-btn svg {
  width: 48%;
  height: 48%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

body.reflect-page .cycle-node:hover .node-icon {
  transform: none;
}

body.reflect-page .node-listen .node-icon {
  background: #ffffff;
}

body.reflect-page .node-understand .node-icon {
  background: #ffffff;
}

body.reflect-page .node-improve .node-icon {
  background: #ffffff;
}

body.reflect-page .node-act .node-icon {
  width: clamp(88px, 7.4vw, 116px);
  background: var(--dark);
  color: #ffffff;
}

body.reflect-page .cycle-node h3 {
  width: fit-content;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 600;
  white-space: nowrap;
}

body.reflect-page .three-c-grid,
body.reflect-page .metric-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

body.reflect-page .three-c-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(52px, 5vw, 82px);
}

body.reflect-page .three-c-grid article,
body.reflect-page .metric-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 36, 36, 0.05);
  border-radius: var(--radius);
  box-shadow: none;
  transition:
    background-color 200ms ease,
    border-color 200ms ease;
}

body.reflect-page .three-c-grid article {
  min-height: 360px;
  padding: clamp(28px, 3vw, 44px);
}

body.reflect-page .three-c-grid article:nth-child(1),
body.reflect-page .metric-grid article:nth-child(1):hover {
  background: var(--green);
}

body.reflect-page .three-c-grid article:nth-child(2),
body.reflect-page .metric-grid article:nth-child(3):hover {
  background: var(--blue);
}

body.reflect-page .three-c-grid article:nth-child(3),
body.reflect-page .metric-grid article:nth-child(2):hover {
  background: var(--yellow);
}

body.reflect-page .metric-grid article:nth-child(4):hover {
  background: var(--rose);
}

body.reflect-page .three-c-grid article:hover,
body.reflect-page .metric-grid article:hover {
  transform: none;
  box-shadow: none;
}

body.reflect-page .ghost-letter {
  position: absolute;
  top: -48px;
  right: -14px;
  color: rgba(34, 34, 34, 0.08);
  font-family: var(--serif);
  font-size: clamp(170px, 14vw, 238px);
  line-height: 1;
  pointer-events: none;
}

body.reflect-page .card-icon {
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: clamp(46px, 5vw, 84px);
}

body.reflect-page .three-c-grid h3,
body.reflect-page .metric-grid h3 {
  color: var(--ink);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 600;
}

body.reflect-page .three-c-grid p {
  max-width: 430px;
  margin-top: 16px;
  color: #4f5963;
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 550;
  line-height: 1.5;
}

body.reflect-page .feature-stack {
  display: grid;
  gap: clamp(84px, 8vw, 144px);
}

body.reflect-page .feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

body.reflect-page .feature-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

body.reflect-page .feature-reverse .feature-media {
  order: 2;
}

body.reflect-page .feature-reverse .feature-copy {
  order: 1;
}

body.reflect-page .feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

body.reflect-page .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.reflect-page .feature-copy {
  max-width: 670px;
}

body.reflect-page .feature-copy h2 {
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 70px);
}

body.reflect-page .feature-copy p {
  margin-top: clamp(22px, 2.3vw, 34px);
}

body.reflect-page .feature-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

body.reflect-page .feature-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.reflect-page .feature-copy li::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 40%, #2f7d45 41% 58%, transparent 59%),
    var(--green);
}

body.reflect-page .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(52px, 5vw, 82px);
}

body.reflect-page .metric-grid article {
  min-height: 280px;
  padding: clamp(28px, 2.6vw, 38px);
  background: #ffffff;
}

body.reflect-page .metric-grid .card-icon {
  margin-bottom: clamp(48px, 4vw, 70px);
  background: #ffffff;
}

body.reflect-page .metric-grid p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

body.reflect-page .use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(52px, 5vw, 82px);
}

body.reflect-page .use-case-grid article {
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

body.reflect-page .use-case-grid img {
  width: 100%;
  height: clamp(190px, 15vw, 260px);
  object-fit: cover;
}

body.reflect-page .use-case-grid div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 34px);
}

body.reflect-page .use-case-grid h3 {
  max-width: 420px;
  color: var(--ink);
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.02;
  font-weight: 600;
}

body.reflect-page .use-case-grid p {
  margin-top: auto;
  color: var(--muted);
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.42;
}

body.reflect-page .faq-section {
  max-width: 920px;
}

body.reflect-page .faq-section h2 {
  margin-bottom: clamp(44px, 4vw, 68px);
  text-align: center;
  font-size: clamp(36px, 3.4vw, 54px);
}

body.reflect-page .faq-list {
  display: grid;
  gap: 14px;
}

body.reflect-page .faq-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

body.reflect-page .faq-btn {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

body.reflect-page .faq-btn span {
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}

body.reflect-page .faq-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 180ms ease;
}

body.reflect-page .faq-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

body.reflect-page .faq-content {
  border-top: 1px solid var(--line);
  padding: 0 24px 24px;
}

body.reflect-page .faq-content p {
  margin-top: 18px;
  font-size: 16px;
}

body.reflect-page .contact-section {
  width: var(--shell);
  min-height: clamp(450px, 42vw, 680px);
  margin: clamp(42px, 5vw, 84px) auto clamp(34px, 4vw, 68px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: clamp(44px, 5vw, 88px);
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.86), rgba(31, 31, 31, 0.64) 52%, rgba(31, 31, 31, 0.28)),
    linear-gradient(180deg, rgba(31, 31, 31, 0.18), rgba(31, 31, 31, 0.86)),
    url("assets/reflect-meeting.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

body.reflect-page .contact-section .section-copy {
  width: min(920px, 100%);
  position: relative;
  z-index: 1;
}

body.reflect-page .contact-section .section-copy h2 {
  color: #ffffff;
  font-family: var(--sans);
  font-size: clamp(22px, 1.65vw, 34px);
  font-weight: 600;
  line-height: 1.18;
}

body.reflect-page .contact-section .section-copy p {
  max-width: 860px;
  margin-top: clamp(24px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 600;
  line-height: 1.36;
}

body.reflect-page .contact-section .button-row {
  position: relative;
  z-index: 1;
  margin-top: clamp(34px, 3.6vw, 58px);
}

body.reflect-page .contact-section .button {
  min-width: 220px;
  min-height: 58px;
  font-size: clamp(15px, 1vw, 18px);
}

body.reflect-page .contact-section .button-dark {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

body.reflect-page .contact-section .button-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.reflect-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.reflect-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.reflect-page .reveal-delay-1 {
  transition-delay: 150ms;
}

body.reflect-page .reveal-delay-2 {
  transition-delay: 300ms;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

body.reflect-page *,
body.reflect-page *::before,
body.reflect-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

}

@media (max-width: 1100px) {

body.reflect-page .main-nav,
body.reflect-page .header-actions {
    display: none;
  }

body.reflect-page .menu-toggle {
    display: grid;
    margin-left: auto;
  }

body.reflect-page.nav-open .main-nav,
body.reflect-page.nav-open .header-actions {
    width: calc(100vw - 48px);
    position: fixed;
    left: 24px;
    z-index: 60;
    display: flex;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

body.reflect-page.nav-open .main-nav {
    top: 96px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 16px 20px;
  }

body.reflect-page.nav-open .main-nav a {
    padding: 12px 0;
  }

body.reflect-page.nav-open .header-actions {
    top: 344px;
    justify-content: space-between;
    padding: 16px 20px;
  }

body.reflect-page.nav-open .header-actions .button {
    width: auto;
  }

body.reflect-page .three-c-grid,
body.reflect-page .metric-grid,
body.reflect-page .use-case-grid,
body.reflect-page .feature-block,
body.reflect-page .feature-reverse {
    grid-template-columns: 1fr;
  }

body.reflect-page .feature-reverse .feature-media,
body.reflect-page .feature-reverse .feature-copy {
    order: initial;
  }

body.reflect-page .feature-copy {
    max-width: 860px;
    text-align: center;
    justify-self: center;
  }

body.reflect-page .feature-copy ul {
    justify-items: center;
  }

body.reflect-page .cycle-canvas {
    width: min(460px, calc(100vw - 170px));
    height: min(460px, calc(100vw - 170px));
  }

}

@media (max-width: 720px) {

body.reflect-page .site-header {
    min-height: 76px;
  }

body.reflect-page .brand img {
    width: min(190px, 64vw);
  }

body.reflect-page.nav-open .main-nav,
body.reflect-page.nav-open .header-actions {
    width: calc(100vw - 28px);
    left: 14px;
  }

body.reflect-page.nav-open .main-nav {
    top: 84px;
  }

body.reflect-page.nav-open .header-actions {
    top: 332px;
  }

body.reflect-page .hero-section {
    padding-top: 52px;
  }

body.reflect-page .hero-copy h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

body.reflect-page .hero-copy h2 {
    font-size: clamp(24px, 7.6vw, 38px);
  }

body.reflect-page .button-row,
body.reflect-page .button {
    width: 100%;
  }

body.reflect-page .hero-media {
    width: calc(100% - 28px);
    margin-top: 48px;
  }

body.reflect-page .hero-media img {
    height: 360px;
  }

body.reflect-page .problem-section,
body.reflect-page .three-c-section,
body.reflect-page .feature-section,
body.reflect-page .metrics-section,
body.reflect-page .use-case-section,
body.reflect-page .faq-section,
body.reflect-page .cycle-section,
body.reflect-page .contact-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

body.reflect-page .section-copy h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

body.reflect-page .solution-block {
    padding: 28px;
  }

body.reflect-page .solution-block h3,
body.reflect-page .feature-copy h2 {
    font-size: clamp(36px, 9.8vw, 54px);
  }

body.reflect-page .cycle-canvas {
    width: min(280px, calc(100vw - 120px));
    height: min(280px, calc(100vw - 120px));
    margin-top: 82px;
    margin-bottom: 82px;
  }

body.reflect-page .cycle-node {
    width: 104px;
  }

body.reflect-page .node-icon {
    width: 64px;
  }

body.reflect-page .node-act .node-icon {
    width: 76px;
  }

body.reflect-page .cycle-node h3 {
    font-size: 13px;
    padding: 6px 10px;
  }

body.reflect-page .three-c-grid article,
body.reflect-page .metric-grid article,
body.reflect-page .use-case-grid article {
    min-height: auto;
  }

body.reflect-page .use-case-grid div {
    min-height: 230px;
  }

body.reflect-page .feature-media {
    aspect-ratio: 1 / 1;
  }

body.reflect-page .contact-section {
    min-height: 460px;
    padding: 44px 20px;
    background-position: center;
  }

body.reflect-page .contact-section .section-copy h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

body.reflect-page .contact-section .section-copy p {
    margin-top: 22px;
    font-size: 18px;
  }

body.reflect-page .contact-section .button {
    min-width: 0;
  }

}


/* ATP Embark page styles. */

body.embark-page * {
  box-sizing: border-box;
}

body.embark-page {
  margin: 0;
  border-top: 8px solid var(--dark);
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

body.embark-page img,
body.embark-page svg {
  display: block;
  max-width: 100%;
}

body.embark-page a {
  color: inherit;
  text-decoration: none;
}

body.embark-page button {
  font: inherit;
}

body.embark-page mark {
  color: inherit;
}

body.embark-page h1,
body.embark-page h2,
body.embark-page h3,
body.embark-page p {
  margin: 0;
  letter-spacing: 0;
}

body.embark-page .site-header {
  width: var(--shell);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  position: relative;
  z-index: 20;
  background: #ffffff;
}

body.embark-page .brand {
  flex: 0 0 auto;
}

body.embark-page .brand img {
  width: clamp(230px, 18vw, 340px);
}

body.embark-page .main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  margin-right: auto;
  color: #232323;
  font-size: clamp(14px, 0.96vw, 17px);
  font-weight: 600;
}

body.embark-page .header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  color: #232323;
  font-size: clamp(14px, 0.96vw, 17px);
  font-weight: 600;
}

body.embark-page .menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 11px;
}

body.embark-page .menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
}

body.embark-page .hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 118px) 0 0;
  background: #ffffff;
  text-align: center;
}

body.embark-page .hero-copy {
  width: var(--narrow);
  margin: 0 auto;
}

body.embark-page .product-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: clamp(24px, 3vw, 38px);
}

body.embark-page .product-logo img {
  width: clamp(176px, 15vw, 260px);
}

body.embark-page .hero-copy h1 {
  color: var(--ink);
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

body.embark-page .hero-copy h1 span {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

body.embark-page .hero-copy p,
body.embark-page .section-copy p,
body.embark-page .feature-copy p,
body.embark-page .faq-content p {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 550;
  line-height: 1.52;
}

body.embark-page .hero-copy p {
  max-width: 900px;
  margin: clamp(24px, 2.5vw, 36px) auto 0;
}

body.embark-page .button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 3.3vw, 52px);
}

body.embark-page .button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 24px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

body.embark-page .button-dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
}

body.embark-page .button-light {
  background: #ffffff;
  color: var(--ink);
}

body.embark-page .hero-media {
  width: min(calc(100% - clamp(40px, 10vw, 190px)), 1280px);
  margin: clamp(58px, 6vw, 96px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

body.embark-page .hero-media img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  object-position: center;
}

body.embark-page .problem-section,
body.embark-page .journey-section,
body.embark-page .framework-section,
body.embark-page .feature-section,
body.embark-page .metrics-section,
body.embark-page .hiring-section,
body.embark-page .faq-section {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(92px, 8vw, 148px) 0;
}

body.embark-page .section-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

body.embark-page .section-copy h2,
body.embark-page .solution-block h3,
body.embark-page .feature-copy h2,
body.embark-page .faq-section h2,
body.embark-page .contact-section h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  line-height: 1.02;
}

body.embark-page .section-copy h2 {
  font-size: clamp(42px, 5.1vw, 86px);
}

body.embark-page .section-copy p {
  max-width: 880px;
  margin: clamp(22px, 2.2vw, 34px) auto 0;
}

body.embark-page .mark-rose,
body.embark-page .mark-yellow {
  border-radius: 7px;
  padding: 0 0.12em;
}

body.embark-page .mark-rose {
  background: var(--pink);
}

body.embark-page .mark-yellow {
  background: var(--yellow);
}

body.embark-page .solution-block {
  max-width: 1040px;
  margin: clamp(56px, 6vw, 92px) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(40px, 5vw, 76px);
  background: var(--dark);
  color: #ffffff;
  text-align: left;
}

body.embark-page .solution-block span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.embark-page .solution-block h3 {
  max-width: 850px;
  margin-top: 28px;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 68px);
}

body.embark-page .solution-block p {
  max-width: 850px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 450;
  line-height: 1.52;
}

body.embark-page .journey-section {
  width: 100%;
  padding-left: max(20px, calc((100% - min(100% - 40px, 1500px)) / 2));
  padding-right: max(20px, calc((100% - min(100% - 40px, 1500px)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

body.embark-page .journey-flow {
  max-width: 1180px;
  margin: clamp(56px, 6vw, 96px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 1.2vw, 22px);
}

body.embark-page .journey-flow article {
  min-height: clamp(150px, 12vw, 190px);
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  margin-left: 0;
  padding: clamp(26px, 2.4vw, 38px) clamp(44px, 3.4vw, 60px);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%, 34px 50%);
  color: var(--ink);
  text-align: left;
}

body.embark-page .journey-flow article:first-child {
  margin-left: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
}

body.embark-page .journey-flow article:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 34px 50%);
}

body.embark-page .journey-icon,
body.embark-page .card-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

body.embark-page .journey-icon {
  display: none;
}

body.embark-page .journey-flow article:nth-of-type(1) {
  background: var(--blue);
}

body.embark-page .journey-flow article:nth-of-type(2) {
  background: var(--yellow);
}

body.embark-page .journey-flow article:nth-of-type(4) {
  background: var(--green);
}

body.embark-page .journey-flow article.is-active {
  background: var(--dark);
  color: #ffffff;
}

body.embark-page .journey-icon svg,
body.embark-page .card-icon svg,
body.embark-page .hiring-visual svg,
body.embark-page .faq-btn svg {
  width: 48%;
  height: 48%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

body.embark-page .journey-flow h3 {
  color: currentColor;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 600;
  line-height: 0.95;
}

body.embark-page .journey-flow p {
  color: currentColor;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.25;
  opacity: 0.72;
}

body.embark-page .journey-arrow {
  display: none;
}

body.embark-page .journey-arrow svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.embark-page .framework-grid,
body.embark-page .metric-grid,
body.embark-page .hiring-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(52px, 5vw, 82px);
}

body.embark-page .framework-grid,
body.embark-page .hiring-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.embark-page .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.embark-page .framework-grid article,
body.embark-page .metric-grid article,
body.embark-page .hiring-grid article {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 36, 36, 0.05);
  border-radius: var(--radius);
  padding: clamp(28px, 2.7vw, 42px);
  background: #ffffff;
}

body.embark-page .framework-grid article:nth-child(1) {
  background: var(--blue);
}

body.embark-page .framework-grid article:nth-child(2) {
  background: var(--rose);
}

body.embark-page .framework-grid article:nth-child(3) {
  background: var(--yellow);
}

body.embark-page .card-icon {
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: clamp(46px, 5vw, 84px);
}

body.embark-page .framework-grid h3,
body.embark-page .metric-grid h3,
body.embark-page .hiring-grid h3 {
  max-width: 420px;
  color: var(--ink);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 600;
}

body.embark-page .framework-grid p,
body.embark-page .metric-grid p,
body.embark-page .hiring-grid p {
  margin-top: 16px;
  color: #4f5963;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 550;
  line-height: 1.5;
}

body.embark-page .feature-stack {
  display: grid;
  gap: clamp(84px, 8vw, 144px);
}

body.embark-page .feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

body.embark-page .feature-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

body.embark-page .feature-reverse .feature-media {
  order: 2;
}

body.embark-page .feature-reverse .feature-copy {
  order: 1;
}

body.embark-page .feature-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

body.embark-page .feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.embark-page .feature-copy {
  max-width: 700px;
}

body.embark-page .feature-copy h2 {
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 70px);
}

body.embark-page .feature-copy p {
  margin-top: clamp(22px, 2.3vw, 34px);
}

body.embark-page .metric-grid article {
  min-height: 280px;
  border: 0;
  box-shadow: none;
  background: var(--green);
}

body.embark-page .metric-grid article:nth-child(1) {
  background: var(--green);
}

body.embark-page .metric-grid article:nth-child(2) {
  background: var(--rose);
}

body.embark-page .metric-grid article:nth-child(3) {
  background: var(--blue);
}

body.embark-page .metric-grid article:nth-child(4) {
  background: var(--yellow);
}

body.embark-page .metric-grid article:hover {
  border: 0;
  box-shadow: none;
  transform: none;
}

body.embark-page .metric-grid .card-icon {
  margin-bottom: clamp(48px, 4vw, 70px);
  border: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.68);
}

body.embark-page .hiring-section {
  width: 100%;
  padding-left: max(20px, calc((100% - min(100% - 40px, 1500px)) / 2));
  padding-right: max(20px, calc((100% - min(100% - 40px, 1500px)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

body.embark-page .hiring-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

body.embark-page .hiring-visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 34, 34, 0.06);
}

body.embark-page .hiring-grid article:nth-child(1) .hiring-visual {
  background: var(--rose);
}

body.embark-page .hiring-grid article:nth-child(2) .hiring-visual {
  background: var(--blue);
}

body.embark-page .hiring-grid article:nth-child(3) .hiring-visual {
  background: var(--green);
}

body.embark-page .hiring-visual svg {
  width: 58px;
  height: 58px;
}

body.embark-page .faq-section {
  max-width: 920px;
}

body.embark-page .faq-section h2 {
  margin-bottom: clamp(44px, 4vw, 68px);
  text-align: center;
  font-size: clamp(36px, 3.4vw, 54px);
}

body.embark-page .faq-list {
  display: grid;
  gap: 14px;
}

body.embark-page .faq-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

body.embark-page .faq-btn {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

body.embark-page .faq-btn span {
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}

body.embark-page .faq-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 180ms ease;
}

body.embark-page .faq-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

body.embark-page .faq-content {
  border-top: 1px solid var(--line);
  padding: 0 24px 24px;
}

body.embark-page .faq-content p {
  margin-top: 18px;
  font-size: 16px;
}

body.embark-page .contact-section {
  width: min(calc(100% - clamp(28px, 5vw, 96px)), 1840px);
  min-height: clamp(560px, 48vw, 900px);
  margin: clamp(42px, 5vw, 84px) auto clamp(34px, 4vw, 68px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-content: center;
  border-radius: var(--radius);
  padding: clamp(58px, 7vw, 128px);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.94)),
    linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.56) 54%, rgba(18, 18, 18, 0.82)),
    url("assets/consult-placeholder.png") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
}

body.embark-page .contact-section .section-copy {
  width: min(1280px, 100%);
}

body.embark-page .contact-section .section-copy h2 {
  color: #ffffff;
  font-family: var(--swash);
  font-size: clamp(58px, 7.4vw, 138px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

body.embark-page .contact-section .section-copy p {
  max-width: 1160px;
  margin-top: clamp(38px, 5vw, 82px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 2.05vw, 42px);
  font-weight: 600;
  line-height: 1.28;
}

body.embark-page .contact-section .button-row {
  margin-top: clamp(46px, 5vw, 82px);
  gap: clamp(18px, 2vw, 28px);
}

body.embark-page .contact-section .button {
  min-width: clamp(230px, 15vw, 320px);
  min-height: clamp(70px, 5vw, 96px);
  border-radius: var(--radius);
  font-size: clamp(20px, 1.45vw, 30px);
  font-weight: 600;
}

body.embark-page .contact-section .button-dark {
  border-color: #ffffff;
  background: #ffffff;
  color: #00114e;
}

body.embark-page .contact-section .button-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.72);
  color: #00114e;
}

body.embark-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.embark-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.embark-page .reveal-delay-1 {
  transition-delay: 150ms;
}

body.embark-page .reveal-delay-2 {
  transition-delay: 300ms;
}

@media (prefers-reduced-motion: reduce) {

body.embark-page *,
body.embark-page *::before,
body.embark-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

}

@media (max-width: 1100px) {

body.embark-page .main-nav,
body.embark-page .header-actions {
    display: none;
  }

body.embark-page .menu-toggle {
    display: grid;
    margin-left: auto;
  }

body.embark-page.nav-open .main-nav,
body.embark-page.nav-open .header-actions {
    width: calc(100vw - 48px);
    position: fixed;
    left: 24px;
    z-index: 60;
    display: flex;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

body.embark-page.nav-open .main-nav {
    top: 96px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 16px 20px;
  }

body.embark-page.nav-open .main-nav a {
    padding: 12px 0;
  }

body.embark-page.nav-open .header-actions {
    top: 344px;
    justify-content: space-between;
    padding: 16px 20px;
  }

body.embark-page.nav-open .header-actions .button {
    width: auto;
  }

body.embark-page .journey-flow,
body.embark-page .framework-grid,
body.embark-page .metric-grid,
body.embark-page .hiring-grid,
body.embark-page .feature-block,
body.embark-page .feature-reverse {
    grid-template-columns: 1fr;
  }

body.embark-page .journey-flow {
    gap: clamp(40px, 10vw, 64px);
  }

body.embark-page .journey-arrow {
    display: none;
  }

body.embark-page .journey-flow article,
body.embark-page .journey-flow article:first-child,
body.embark-page .journey-flow article:last-child {
    min-height: 142px;
    margin-left: 0;
    margin-top: 0;
    padding: 30px 34px 44px;
    justify-items: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
    border-radius: 0;
    text-align: center;
  }

body.embark-page .journey-flow article:first-child {
    margin-top: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

body.embark-page .journey-flow article:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }

body.embark-page .feature-reverse .feature-media,
body.embark-page .feature-reverse .feature-copy {
    order: initial;
  }

body.embark-page .feature-copy {
    max-width: 860px;
    text-align: center;
    justify-self: center;
  }

}

@media (max-width: 720px) {

body.embark-page .site-header {
    min-height: 76px;
  }

body.embark-page .brand img {
    width: min(190px, 64vw);
  }

body.embark-page.nav-open .main-nav,
body.embark-page.nav-open .header-actions {
    width: calc(100vw - 28px);
    left: 14px;
  }

body.embark-page.nav-open .main-nav {
    top: 84px;
  }

body.embark-page.nav-open .header-actions {
    top: 332px;
  }

body.embark-page .hero-section {
    padding-top: 52px;
  }

body.embark-page .hero-copy h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

body.embark-page .button-row,
body.embark-page .button {
    width: 100%;
  }

body.embark-page .hero-media {
    width: calc(100% - 28px);
    margin-top: 48px;
  }

body.embark-page .hero-media img {
    height: 360px;
  }

body.embark-page .problem-section,
body.embark-page .journey-section,
body.embark-page .framework-section,
body.embark-page .feature-section,
body.embark-page .metrics-section,
body.embark-page .hiring-section,
body.embark-page .faq-section,
body.embark-page .contact-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

body.embark-page .section-copy h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

body.embark-page .solution-block {
    padding: 28px;
  }

body.embark-page .solution-block h3,
body.embark-page .feature-copy h2 {
    font-size: clamp(36px, 9.8vw, 54px);
  }

body.embark-page .framework-grid article,
body.embark-page .metric-grid article,
body.embark-page .hiring-grid article {
    min-height: auto;
  }

body.embark-page .feature-media {
    aspect-ratio: 1 / 1;
  }

body.embark-page .contact-section {
    min-height: 520px;
    padding: 44px 20px;
  }

body.embark-page .contact-section .section-copy h2 {
    font-size: clamp(48px, 14vw, 76px);
    line-height: 0.94;
  }

body.embark-page .contact-section .section-copy p {
    margin-top: 28px;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.32;
  }

body.embark-page .contact-section .button {
    min-width: 0;
    min-height: 62px;
    font-size: 18px;
  }

}


/* ATP Consult page styles. */

body.consult-page * {
  box-sizing: border-box;
}

body.consult-page {
  margin: 0;
  border-top: 8px solid var(--dark);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

body.consult-page img {
  display: block;
  max-width: 100%;
}

body.consult-page a {
  color: inherit;
  text-decoration: none;
}

body.consult-page button,
body.consult-page a {
  -webkit-tap-highlight-color: transparent;
}

body.consult-page .site-header {
  width: min(calc(100% - 96px), 1960px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  position: relative;
  z-index: 10;
}

body.consult-page .brand {
  flex: 0 0 auto;
}

body.consult-page .brand img {
  width: clamp(230px, 18vw, 340px);
}

body.consult-page .main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 36px);
  margin-right: auto;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
}

body.consult-page .main-nav > a,
body.consult-page .header-actions > a:not(.button) {
  color: #232323;
  font: inherit;
}

body.consult-page .header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
}

body.consult-page .button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 24px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
}

body.consult-page .button-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

body.consult-page .button-light {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

body.consult-page .button-glass {
  min-width: 214px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

body.consult-page .menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 11px;
}

body.consult-page .menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
}

body.consult-page .hero {
  width: min(calc(100% - 72px), 1960px);
  height: clamp(560px, 45.8vw, 936px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  padding: clamp(42px, 5.2vw, 72px);
  background: var(--dark);
}

body.consult-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.99) 0%, rgba(18, 16, 13, 0.97) 42%, rgba(18, 16, 13, 0.86) 60%, rgba(18, 16, 13, 0.28) 79%, rgba(18, 16, 13, 0.06) 100%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.02) 0%, rgba(18, 16, 13, 0.17) 52%, rgba(18, 16, 13, 0.62) 100%);
}

body.consult-page .hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.consult-page .hero-copy {
  max-width: min(850px, 64vw);
  color: #ffffff;
}

body.consult-page .hero-copy h1 {
  max-width: 840px;
  margin: 0 0 clamp(22px, 2.1vw, 32px);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(50px, 5.05vw, 96px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0;
}

body.consult-page .hero-copy h1 span,
body.consult-page .hero-copy h1 em {
  display: block;
}

body.consult-page .hero-copy h1 em {
  font-style: italic;
}

body.consult-page .hero-copy p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 1.55vw, 30px);
  font-weight: 550;
  line-height: 1.32;
}

body.consult-page .hero-actions {
  margin-top: clamp(28px, 3vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

body.consult-page .trusted-section,
body.consult-page .statement-section,
body.consult-page .pillar-section,
body.consult-page .impact-heading-section,
body.consult-page .impact-card-section,
body.consult-page .challenge-section,
body.consult-page .system-section,
body.consult-page .practice-section,
body.consult-page .founders-section,
body.consult-page .faq-section {
  width: min(calc(100% - 96px), 1500px);
  margin: 0 auto;
}

body.consult-page .trusted-section {
  padding: clamp(58px, 6vw, 92px) 0 clamp(46px, 5vw, 76px);
  text-align: center;
}

body.consult-page .trusted-section p {
  margin: 0 0 clamp(38px, 4vw, 58px);
  color: #56616d;
  font-size: clamp(17px, 1.3vw, 23px);
  font-weight: 600;
}

body.consult-page .brand-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(80px, 1fr));
  align-items: center;
  gap: clamp(26px, 3vw, 56px);
}

body.consult-page .brand-strip img {
  width: 100%;
  max-width: 150px;
  max-height: 78px;
  justify-self: center;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

body.consult-page .brand-strip .logo-tall {
  max-width: 86px;
}

body.consult-page .brand-strip .logo-wide {
  max-width: 172px;
}

body.consult-page .statement-section {
  padding: clamp(74px, 7vw, 126px) 0;
  text-align: center;
}

body.consult-page .statement-section h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #242424;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

body.consult-page .statement-section p {
  max-width: 900px;
  margin: clamp(22px, 2.4vw, 34px) auto 0;
  color: #56616d;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 550;
  line-height: 1.42;
  letter-spacing: 0;
}

body.consult-page .pillar-section {
  padding: 0 0 clamp(80px, 7vw, 130px);
}

body.consult-page .pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body.consult-page .pillar-grid article {
  min-height: 320px;
  padding: clamp(26px, 2.4vw, 38px);
  border-radius: 8px;
  background: #f3f2f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(36, 36, 36, 0.04);
}

body.consult-page .pillar-grid article:nth-child(1) {
  background: #e7f5e9;
}

body.consult-page .pillar-grid article:nth-child(2) {
  background: #dcedfb;
}

body.consult-page .pillar-grid article:nth-child(3) {
  background: #fff2c6;
}

body.consult-page .pillar-grid article:nth-child(4) {
  background: #ead1dc;
}

body.consult-page .pillar-grid span {
  margin-bottom: auto;
  color: rgba(36, 36, 36, 0.74);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
}

body.consult-page .pillar-grid h3 {
  margin: clamp(58px, 5vw, 86px) 0 12px;
  color: #252525;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .pillar-grid p {
  margin: 0;
  color: #535353;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 550;
  line-height: 1.28;
  letter-spacing: 0;
}

body.consult-page .impact-heading-section {
  padding: clamp(72px, 7vw, 126px) 0;
  text-align: center;
}

body.consult-page .impact-heading-section h2 {
  max-width: 980px;
  margin: 0 auto;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

body.consult-page .impact-heading-section em {
  font-family: "Happy Times Swash", "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}

body.consult-page .impact-card-section {
  padding: 0 0 clamp(86px, 8vw, 140px);
}

body.consult-page .impact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

body.consult-page .impact-card-grid article {
  min-height: clamp(520px, 42vw, 650px);
  padding: clamp(34px, 3.2vw, 48px);
  border-radius: 8px;
  background: #f3f2f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.consult-page .impact-card-visual {
  min-height: clamp(230px, 20vw, 320px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

body.consult-page .impact-card-visual img {
  width: 100%;
  height: clamp(230px, 20vw, 320px);
  object-fit: cover;
  object-position: center;
}

body.consult-page .impact-card-copy img {
  width: min(230px, 82%);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: clamp(20px, 2vw, 30px);
}

body.consult-page .impact-card-copy p {
  max-width: 460px;
  margin: 0 0 clamp(18px, 1.8vw, 26px);
  color: #505050;
  font-size: clamp(21px, 1.55vw, 29px);
  font-weight: 550;
  line-height: 1.28;
  letter-spacing: 0;
}

body.consult-page .impact-card-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
  margin-top: 2px;
  padding: 0 18px;
  border-radius: 8px;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease;
}

body.consult-page .impact-card-copy a:hover,
body.consult-page .impact-card-copy a:focus-visible {
  background: #2b2b2b;
  transform: translateY(-1px);
}

body.consult-page .impact-card-copy a span {
  font-size: 20px;
  line-height: 1;
}

body.consult-page .challenge-section {
  padding: 0 0 clamp(90px, 8vw, 150px);
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

body.consult-page .challenge-intro {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 4vw, 62px);
  border-radius: 8px;
  background: #1f1f1f;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.consult-page .challenge-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.58), rgba(20, 19, 17, 0.92)),
    linear-gradient(90deg, rgba(20, 19, 17, 0.82), rgba(20, 19, 17, 0.34)),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.02);
  pointer-events: none;
}

body.consult-page .challenge-intro::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    -110px 160px 0 -1px rgba(255, 255, 255, 0.04),
    -210px 300px 0 -2px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

body.consult-page .challenge-intro > * {
  position: relative;
  z-index: 1;
}

body.consult-page .challenge-intro h2 {
  max-width: 640px;
  margin: 0;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(52px, 5.2vw, 94px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}

body.consult-page .challenge-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.42;
  font-weight: 550;
}

body.consult-page .challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.5vw, 22px);
}

body.consult-page .challenge-grid article {
  min-height: clamp(132px, 9.6vw, 172px);
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(36, 36, 36, 0.04);
  border-radius: 8px;
  background: #f3f2f0;
  display: grid;
  grid-template-columns: clamp(56px, 4.6vw, 78px) minmax(0, 1fr) 34px;
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
  cursor: pointer;
  outline: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

body.consult-page .challenge-grid article:hover,
body.consult-page .challenge-grid article:focus-visible,
body.consult-page .challenge-grid article.is-active {
  border-color: rgba(36, 36, 36, 0.11);
  box-shadow: 0 18px 46px rgba(31, 31, 31, 0.13);
  filter: saturate(1.04);
  transform: translateY(-5px) scale(1.01);
}

body.consult-page .challenge-grid article:active {
  transform: translateY(-2px) scale(1.006);
}

body.consult-page .challenge-grid article:nth-child(1) {
  background: linear-gradient(90deg, #e9f8ec 0%, #f7fcf8 100%);
  color: #242424;
}

body.consult-page .challenge-grid article:nth-child(2) {
  background: linear-gradient(90deg, #e7def1 0%, #fbf8ff 100%);
}

body.consult-page .challenge-grid article:nth-child(3) {
  background: linear-gradient(90deg, #dceefc 0%, #f5fbff 100%);
}

body.consult-page .challenge-grid article:nth-child(4) {
  background: linear-gradient(90deg, #fff1c9 0%, #fffaf0 100%);
}

body.consult-page .challenge-grid article:nth-child(5) {
  background: linear-gradient(90deg, #ead2dd 0%, #fff7fb 100%);
}

body.consult-page .challenge-grid article:nth-child(6) {
  background: linear-gradient(90deg, #edc0b6 0%, #fff4f1 100%);
}

body.consult-page .challenge-grid span {
  width: clamp(56px, 4.6vw, 78px);
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

body.consult-page .challenge-grid article:hover span,
body.consult-page .challenge-grid article:focus-visible span,
body.consult-page .challenge-grid article.is-active span {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 22px rgba(31, 31, 31, 0.08);
  transform: scale(1.04);
}

body.consult-page .challenge-grid h3 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .challenge-grid p {
  margin: 0;
  color: #535353;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.38;
  font-weight: 550;
}

body.consult-page .challenge-grid b {
  justify-self: end;
  color: rgba(36, 36, 36, 0.38);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
  transition: transform 520ms ease, color 520ms ease;
}

body.consult-page .challenge-grid article.is-visible b {
  color: rgba(36, 36, 36, 0.5);
  transform: translateX(4px);
}

body.consult-page .challenge-grid article:hover b,
body.consult-page .challenge-grid article:focus-visible b,
body.consult-page .challenge-grid article.is-active b {
  color: rgba(36, 36, 36, 0.82);
  transform: translateX(12px);
}

body.consult-page .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.consult-page .challenge-grid article.scroll-reveal {
  transform: translateY(18px) scale(0.985);
}

body.consult-page .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

body.consult-page .scroll-reveal,
body.consult-page .challenge-grid article.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

body.consult-page .challenge-grid article.is-visible b {
    transform: none;
  }

body.consult-page .challenge-grid article:hover,
body.consult-page .challenge-grid article:focus-visible,
body.consult-page .challenge-grid article.is-active,
body.consult-page .challenge-grid article:active {
    transform: none;
  }

}

body.consult-page .system-section {
  padding: clamp(82px, 8vw, 140px) 0 clamp(110px, 9vw, 170px);
}

body.consult-page .system-intro,
body.consult-page .metrics-intro {
  max-width: 1260px;
  margin: 0 auto clamp(60px, 6vw, 92px);
  text-align: center;
}

body.consult-page .system-intro h2,
body.consult-page .metrics-intro h2 {
  max-width: 1180px;
  margin: 0 auto clamp(26px, 2.8vw, 42px);
  color: #24262a;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(56px, 5.6vw, 104px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: 0;
}

body.consult-page .system-intro p,
body.consult-page .metrics-intro p {
  max-width: 1180px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(21px, 1.75vw, 30px);
  line-height: 1.42;
  font-weight: 550;
}

body.consult-page .system-use-grid {
  margin: 0 auto clamp(96px, 9vw, 150px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 68px);
}

body.consult-page .system-use-grid article {
  min-width: 0;
}

body.consult-page .system-use-grid span {
  width: clamp(78px, 7vw, 112px);
  aspect-ratio: 1;
  margin-bottom: clamp(34px, 3.8vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(31, 31, 31, 0.08);
  color: #24262a;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 1;
}

body.consult-page .system-use-grid h3 {
  margin: 0 0 18px;
  color: #24262a;
  font-size: clamp(23px, 1.65vw, 31px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .system-use-grid p {
  max-width: 360px;
  margin: 0;
  color: #555d66;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.36;
  font-weight: 550;
}

body.consult-page .system-loop {
  --timeline-bg: #f7fbff;
  --timeline-blue: #6bb8ed;
  --timeline-blue-deep: #2f78bd;
  --timeline-line: #b9dff8;
  --step-size: clamp(88px, 7.2vw, 118px);
  --step-pad-x: clamp(44px, 5vw, 76px);
  --step-pad-y: clamp(36px, 4vw, 56px);
  width: min(100%, 1500px);
  margin: 0 auto clamp(96px, 9vw, 150px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 58px);
  padding: var(--step-pad-y) var(--step-pad-x) clamp(42px, 4.5vw, 70px);
  overflow: hidden;
  border: 1px solid #d8ecfb;
  background:
    linear-gradient(180deg, rgba(107, 184, 237, 0.12), rgba(255, 255, 255, 0.96)),
    var(--timeline-bg);
  color: #24262a;
}

body.consult-page .system-loop::before {
  content: "";
  position: absolute;
  left: calc(var(--step-pad-x) + (var(--step-size) / 2));
  right: calc(var(--step-pad-x) + (var(--step-size) / 2));
  top: calc(var(--step-pad-y) + (var(--step-size) / 2));
  height: 1px;
  background: var(--timeline-line);
}

body.consult-page .loop-card {
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.consult-page .loop-card span {
  width: var(--step-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #c9e4f8;
  border-radius: 50%;
  background: #ffffff;
  color: var(--timeline-blue-deep);
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 400;
  line-height: 1;
}

body.consult-page .loop-card-3 span {
  border-color: var(--timeline-blue);
  background: var(--timeline-blue);
  color: #ffffff;
  box-shadow: 0 0 0 8px var(--timeline-bg);
}

body.consult-page .loop-card div {
  margin-top: clamp(26px, 3vw, 40px);
}

body.consult-page .loop-card h3 {
  margin: 0 0 12px;
  color: #24262a;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(25px, 2.1vw, 36px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

body.consult-page .loop-card p {
  max-width: 260px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.35;
  font-weight: 550;
}

body.consult-page .practice-section {
  padding: clamp(74px, 7vw, 126px) 0 clamp(110px, 9vw, 160px);
}

body.consult-page .practice-header {
  margin-bottom: clamp(44px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.consult-page .practice-header h2 {
  margin: 0;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

body.consult-page .practice-header a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 0 0 auto;
  padding: 0 22px;
  border: 1px solid #e3e5e8;
  border-radius: 8px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

body.consult-page .practice-header a span {
  font-size: 22px;
}

body.consult-page .practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

body.consult-page .practice-grid article {
  min-height: 500px;
  padding: 24px;
  border: 1px solid #eceff2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(21, 21, 21, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.consult-page .practice-grid img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 30px;
}

body.consult-page .practice-grid span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #dfe2e5;
  border-radius: 999px;
  color: #5a5f65;
  font-size: 16px;
  font-weight: 550;
  line-height: 1;
}

body.consult-page .practice-grid h3 {
  margin: 22px 0 14px;
  color: #242424;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .practice-grid p {
  margin: 0;
  color: #535d68;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 550;
}

body.consult-page .practice-using {
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

body.consult-page .practice-using img {
  width: auto;
  max-width: 170px;
  height: 28px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

body.consult-page .founders-section {
  padding: clamp(76px, 8vw, 140px) 0 clamp(110px, 9vw, 170px);
}

body.consult-page .founders-heading {
  margin-bottom: clamp(54px, 6vw, 92px);
  text-align: center;
}

body.consult-page .founders-heading h2 {
  max-width: 1120px;
  margin: 0 auto clamp(26px, 3vw, 42px);
  color: #24262a;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(76px, 8.4vw, 152px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

body.consult-page .founders-heading p {
  max-width: 1180px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.42;
  font-weight: 550;
}

body.consult-page .founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

body.consult-page .founder-card {
  min-height: 640px;
  padding: clamp(26px, 2.6vw, 40px);
  border-radius: 8px;
  background: #f3f9ff;
  text-align: center;
}

body.consult-page .founder-photo {
  height: clamp(330px, 30vw, 450px);
  position: relative;
  margin-bottom: clamp(28px, 3vw, 44px);
  display: grid;
  place-items: center;
}

body.consult-page .founder-mark {
  width: min(390px, 88%);
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

body.consult-page .founder-portrait {
  width: min(255px, 62%);
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

body.consult-page .founder-linkedin {
  width: 48px;
  aspect-ratio: 1;
  position: absolute;
  right: 16%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

body.consult-page .founder-card h3 {
  margin: 0 0 16px;
  color: #202226;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .founder-card p {
  max-width: 410px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.36;
  font-weight: 550;
}

body.consult-page .founder-card-orange {
  background: #fff9ee;
}

body.consult-page .founder-card-purple {
  background: #f8f6fb;
}

body.consult-page .faq-section {
  padding: clamp(72px, 7vw, 128px) 0 clamp(76px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.4fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

body.consult-page .faq-intro {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.consult-page .faq-intro h2 {
  max-width: 500px;
  margin: 0;
  color: #222429;
  font-size: clamp(56px, 6.2vw, 112px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .faq-intro p {
  margin: 0 0 32px;
  color: #5d6875;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.4;
  font-weight: 550;
}

body.consult-page .faq-intro a {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  color: #222429;
  background: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

body.consult-page .faq-list {
  display: grid;
  gap: 14px;
}

body.consult-page .faq-item {
  overflow: hidden;
  border-radius: 8px;
  background: #f4f9fd;
}

body.consult-page .faq-item button {
  width: 100%;
  min-height: 88px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: #24262a;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

body.consult-page .faq-item button span {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}

body.consult-page .faq-item button b {
  width: 28px;
  aspect-ratio: 1;
  position: relative;
  flex: 0 0 auto;
}

body.consult-page .faq-item button b::before,
body.consult-page .faq-item button b::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  inset: 50% auto auto 0;
  border-radius: 999px;
  background: #222429;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

body.consult-page .faq-item button b::after {
  transform: translateY(-50%) rotate(90deg);
}

body.consult-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding 220ms ease;
}

body.consult-page .faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 30px 28px;
  color: #5d6875;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.5;
  font-weight: 550;
}

body.consult-page .faq-item.is-open .faq-answer {
  max-height: 180px;
}

body.consult-page .faq-item.is-open button b::after {
  transform: translateY(-50%) rotate(0deg);
}

body.consult-page .closing-cta-section {
  width: min(calc(100% - 32px), 1960px);
  margin: 0 auto clamp(24px, 3vw, 56px);
}

body.consult-page .closing-cta {
  min-height: clamp(520px, 43vw, 830px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: clamp(42px, 7vw, 96px);
  text-align: center;
  background: #1f1f1f;
}

body.consult-page .closing-cta::before,
body.consult-page .closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

body.consult-page .closing-cta::before {
  background: url("assets/consult-placeholder.png") center / cover no-repeat;
  filter: blur(2px);
  opacity: 0.85;
  transform: scale(1.04);
}

body.consult-page .closing-cta::after {
  background:
    radial-gradient(circle at center, rgba(28, 27, 24, 0.2), rgba(28, 27, 24, 0.74) 62%, rgba(15, 15, 14, 0.88)),
    linear-gradient(180deg, rgba(17, 17, 16, 0.32), rgba(17, 17, 16, 0.82));
}

body.consult-page .closing-cta-copy {
  width: min(1120px, 100%);
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

body.consult-page .closing-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Happy Times Swash", "Happy Times", Georgia, serif;
  font-size: clamp(56px, 6vw, 112px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

body.consult-page .closing-cta h2 em {
  color: #e5f5ff;
  font-style: inherit;
}

body.consult-page .closing-cta p {
  max-width: 1120px;
  margin: clamp(34px, 4vw, 62px) auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(21px, 1.7vw, 34px);
  line-height: 1.38;
  font-weight: 600;
}

body.consult-page .closing-cta-actions {
  margin-top: clamp(34px, 3.8vw, 58px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

body.consult-page .closing-cta-actions .button {
  min-width: 190px;
  min-height: 70px;
  padding: 0 30px;
  color: #07145d;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 600;
}

body.consult-page .closing-cta-actions .button-glass {
  min-width: 188px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.35);
  color: #07145d;
}

body.consult-page .closing-cta-cursor {
  width: 26px;
  height: 34px;
  margin-top: clamp(28px, 3vw, 52px);
  position: relative;
  display: block;
  transform: rotate(-18deg);
}

body.consult-page .closing-cta-cursor::before {
  content: "";
  width: 18px;
  height: 28px;
  position: absolute;
  left: 3px;
  top: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 55%, 58% 62%, 82% 100%, 63% 100%, 42% 66%, 0 93%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55));
}

body.consult-page .closing-cta-cursor::after {
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  left: 8px;
  top: 5px;
  background: #202124;
  clip-path: polygon(0 0, 100% 55%, 52% 61%, 82% 100%, 63% 100%, 37% 65%, 0 88%);
}

body.consult-page .site-footer {
  width: min(calc(100% - 96px), 1500px);
  margin: 0 auto;
  padding: clamp(70px, 7vw, 100px) 0 56px;
  border-top: 1px solid #dfe6ee;
}

body.consult-page .footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

body.consult-page .footer-brand img {
  width: min(420px, 100%);
  margin-bottom: 30px;
}

body.consult-page .footer-brand p {
  max-width: 350px;
  margin: 0;
  color: #5d6875;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.42;
  font-weight: 550;
}

body.consult-page .footer-brand p + p {
  margin-top: 42px;
}

body.consult-page .footer-demo {
  min-height: 62px;
  margin: clamp(58px, 6vw, 88px) 0 0;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  color: #24262a;
  background: #ffffff;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 600;
}

body.consult-page .footer-column {
  display: grid;
  gap: 18px;
}

body.consult-page .footer-column h2 {
  margin: 0 0 18px;
  color: #24262a;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.2;
  font-weight: 600;
}

body.consult-page .footer-column a {
  color: #5d6875;
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.28;
  font-weight: 550;
}

body.consult-page .footer-bottom {
  margin-top: clamp(86px, 9vw, 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #7a8592;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  font-weight: 550;
}

body.consult-page .footer-bottom p {
  margin: 0;
}

body.consult-page .footer-bottom div {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1040px) {

body.consult-page .site-header {
    width: min(calc(100% - 48px), 1960px);
  }

body.consult-page .main-nav,
body.consult-page .header-actions {
    display: none;
  }

body.consult-page .menu-toggle {
    display: grid;
  }

body.consult-page.nav-open .main-nav,
body.consult-page.nav-open .header-actions {
    position: fixed;
    left: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    background: #ffffff;
    border: 1px solid var(--line);
  }

body.consult-page.nav-open .main-nav {
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 8px 8px 0 0;
  }

body.consult-page.nav-open .header-actions {
    top: 462px;
    align-items: flex-start;
    padding: 0 22px 22px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

body.consult-page .hero {
    width: min(calc(100% - 40px), 1960px);
    height: clamp(560px, 76vh, 720px);
    padding: 42px;
  }

body.consult-page .hero-copy {
    max-width: 720px;
  }

body.consult-page .trusted-section,
body.consult-page .statement-section,
body.consult-page .pillar-section,
body.consult-page .impact-heading-section,
body.consult-page .impact-card-section,
body.consult-page .challenge-section,
body.consult-page .system-section,
body.consult-page .practice-section,
body.consult-page .founders-section,
body.consult-page .faq-section {
    width: min(calc(100% - 48px), 1500px);
  }

body.consult-page .brand-strip {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

body.consult-page .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

body.consult-page .impact-card-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .impact-card-grid article {
    min-height: 420px;
  }

body.consult-page .challenge-section {
    grid-template-columns: 1fr;
  }

body.consult-page .challenge-intro {
    min-height: 420px;
  }

body.consult-page .system-loop {
    --step-size: clamp(70px, 8vw, 86px);
    --step-pad-x: clamp(24px, 4vw, 38px);
    --step-pad-y: 34px;
    gap: clamp(12px, 2vw, 20px);
  }

body.consult-page .system-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

body.consult-page .loop-card h3 {
    font-size: clamp(22px, 3vw, 28px);
  }

body.consult-page .loop-card p {
    font-size: clamp(15px, 1.9vw, 18px);
  }

body.consult-page .practice-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .practice-grid article {
    min-height: auto;
  }

body.consult-page .founders-heading,
body.consult-page .founder-grid,
body.consult-page .faq-section {
    grid-template-columns: 1fr;
  }

body.consult-page .faq-intro {
    min-height: 0;
    gap: 40px;
  }

body.consult-page .closing-cta-section {
    width: min(calc(100% - 48px), 1960px);
  }

body.consult-page .site-footer {
    width: min(calc(100% - 48px), 1500px);
  }

body.consult-page .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

body.consult-page .footer-brand {
    grid-column: 1 / -1;
  }

body.consult-page .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 680px) {

body.consult-page {
    border-top-width: 6px;
  }

body.consult-page .site-header {
    width: min(calc(100% - 28px), 1960px);
    min-height: 76px;
  }

body.consult-page .brand img {
    width: min(190px, 62vw);
  }

body.consult-page .hero {
    width: min(calc(100% - 24px), 1960px);
    height: min(680px, calc(100vh - 104px));
    min-height: 580px;
    padding: 24px;
  }

body.consult-page .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 16, 13, 0.18) 0%, rgba(18, 16, 13, 0.52) 34%, rgba(18, 16, 13, 0.9) 100%),
      linear-gradient(90deg, rgba(18, 16, 13, 0.74), rgba(18, 16, 13, 0.2));
  }

body.consult-page .hero-copy {
    max-width: 100%;
  }

body.consult-page .hero-copy h1 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.92;
  }

body.consult-page .hero-copy p {
    font-size: 18px;
  }

body.consult-page .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

body.consult-page .button {
    min-height: 52px;
  }

body.consult-page .trusted-section,
body.consult-page .statement-section,
body.consult-page .pillar-section,
body.consult-page .impact-heading-section,
body.consult-page .impact-card-section,
body.consult-page .challenge-section,
body.consult-page .system-section,
body.consult-page .practice-section,
body.consult-page .founders-section,
body.consult-page .faq-section {
    width: min(calc(100% - 28px), 1500px);
  }

body.consult-page .brand-strip {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }

body.consult-page .pillar-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .pillar-grid article {
    min-height: 260px;
  }

body.consult-page .impact-card-grid article {
    min-height: 360px;
    padding: 26px;
  }

body.consult-page .impact-card-visual {
    min-height: 160px;
  }

body.consult-page .challenge-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .challenge-intro,
body.consult-page .challenge-grid article {
    min-height: auto;
  }

body.consult-page .system-loop {
    --step-size: 56px;
    --step-pad-x: 22px;
    --step-pad-y: 26px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: var(--step-pad-y) var(--step-pad-x) 30px;
  }

body.consult-page .system-loop::before {
    left: calc(var(--step-pad-x) + (var(--step-size) / 2));
    right: auto;
    top: calc(var(--step-pad-y) + var(--step-size));
    bottom: calc(var(--step-pad-y) + (var(--step-size) / 2));
    width: 1px;
    height: auto;
  }

body.consult-page .system-use-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .system-use-grid span {
    margin-bottom: 24px;
  }

body.consult-page .loop-card {
    display: grid;
    grid-template-columns: var(--step-size) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    text-align: left;
  }

body.consult-page .loop-card span {
    width: var(--step-size);
    font-size: 27px;
  }

body.consult-page .loop-card-3 span {
    box-shadow: 0 0 0 6px var(--timeline-bg);
  }

body.consult-page .loop-card div {
    margin-top: 0;
    padding-top: 3px;
  }

body.consult-page .loop-card h3 {
    margin-bottom: 7px;
    font-size: 26px;
  }

body.consult-page .loop-card p {
    margin: 0;
    font-size: 16px;
  }

body.consult-page .practice-header {
    align-items: flex-start;
    flex-direction: column;
  }

body.consult-page .founders-heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

body.consult-page .founder-card {
    min-height: auto;
  }

body.consult-page .closing-cta-section {
    width: min(calc(100% - 24px), 1960px);
  }

body.consult-page .closing-cta {
    min-height: 560px;
    padding: 34px 22px;
  }

body.consult-page .closing-cta h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

body.consult-page .closing-cta p {
    font-size: 18px;
  }

body.consult-page .closing-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

body.consult-page .closing-cta-actions .button {
    width: 100%;
    min-height: 58px;
  }

body.consult-page .site-footer {
    width: min(calc(100% - 28px), 1500px);
    padding-top: 54px;
  }

body.consult-page .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

body.consult-page .footer-brand img {
    width: min(310px, 100%);
  }

body.consult-page .footer-demo {
    width: 100%;
    margin-top: 36px;
  }

body.consult-page .footer-brand p + p {
    margin-top: 30px;
  }

body.consult-page .footer-bottom {
    margin-top: 64px;
  }

body.consult-page .footer-bottom div {
    flex-wrap: wrap;
  }

}

body.consult-page {
  --consult-ink: #242424;
  --consult-muted: #56616d;
  --consult-line: #e3e5e8;
  --consult-green: #e7f5e9;
  --consult-blue: #dcedfb;
  --consult-yellow: #fff2c6;
  --consult-rose: #ead1dc;
  --consult-red: #f3cbc7;
  --consult-dark: #1f1f1f;
  --consult-bg: #ffffff;
  background: #ffffff;
  color: var(--consult-ink);
}

body.consult-page,
body.consult-page * {
  font-style: normal;
}

body.consult-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

body.consult-page .consult-section,
body.consult-page .consult-hero,
body.consult-page .consult-final-cta {
  width: min(calc(100% - 96px), 1500px);
  margin: 0 auto;
}

body.consult-page .consult-section {
  padding: clamp(108px, 9vw, 172px) 0;
  scroll-margin-top: 120px;
}

body.consult-page .consult-hero {
  width: min(calc(100% - 72px), 1720px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.96fr);
  gap: clamp(42px, 5.6vw, 96px);
  align-items: center;
  justify-items: stretch;
  overflow: visible;
  border-radius: 8px;
  padding: clamp(44px, 4.4vw, 78px) clamp(18px, 4.5vw, 76px);
  background: #ffffff;
  text-align: left;
}

body.consult-page .consult-hero-copy {
  width: 100%;
  display: grid;
  justify-items: start;
  align-content: center;
  padding-left: clamp(0px, 2vw, 52px);
}

body.consult-page .product-mark {
  width: min(460px, 52vw);
  margin-bottom: clamp(58px, 6vw, 96px);
}

body.consult-page .consult-hero h1,
body.consult-page .section-copy h2,
body.consult-page .section-heading h2,
body.consult-page .consult-diagnosis-copy h2,
body.consult-page .engagement-copy h2,
body.consult-page .consult-faq-intro h2,
body.consult-page .consult-plan-card h2,
body.consult-page .consult-final-cta h2 {
  margin: 0;
  color: var(--consult-ink);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
}

body.consult-page .consult-hero h1 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(68px, 5.55vw, 120px);
  line-height: 0.96;
  font-weight: 400;
  font-style: normal;
}

body.consult-page .consult-hero p,
body.consult-page .section-copy p,
body.consult-page .section-heading p,
body.consult-page .consult-diagnosis-copy p,
body.consult-page .engagement-copy p,
body.consult-page .consult-faq-intro p,
body.consult-page .consult-plan-card p,
body.consult-page .consult-final-cta p {
  max-width: 930px;
  margin: clamp(22px, 2.6vw, 38px) 0 0;
  color: var(--consult-muted);
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.42;
  font-weight: 550;
}

body.consult-page .consult-actions {
  margin-top: clamp(30px, 3.4vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

body.consult-page .consult-hero-copy .consult-actions {
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

body.consult-page .consult-hero-copy .consult-actions .button {
  padding: 0 20px;
  white-space: nowrap;
}

body.consult-page .consult-hero-copy > p {
  max-width: 560px;
  margin-top: clamp(46px, 4.6vw, 72px);
  font-size: clamp(23px, 1.7vw, 31px);
  line-height: 1.2;
  font-weight: 600;
}

body.consult-page .button-dark {
  background: var(--consult-dark);
  border-color: var(--consult-dark);
  color: #ffffff;
}

body.consult-page .button-light {
  border-color: var(--consult-line);
  color: #061256;
  background: #ffffff;
}

body.consult-page .button-glass {
  color: #ffffff;
}

body.consult-page .story-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f2f0;
}

body.consult-page .story-image img,
body.consult-page .focus-grid img,
body.consult-page .practice-grid-consult img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

body.consult-page .consult-hero-visual {
  width: 100%;
  height: clamp(560px, 44vw, 820px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--consult-line);
  border-radius: 8px;
  background: #ffffff;
}

body.consult-page .consult-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.consult-page .consult-hero-visual img.consult-founders-photo {
  object-position: center bottom;
  transform: scale(1.14);
  transform-origin: center bottom;
}

body.consult-page .consult-proof-card {
  width: min(570px, calc(100% - 64px));
  position: absolute;
  right: clamp(24px, 3vw, 58px);
  bottom: clamp(24px, 3vw, 58px);
  display: grid;
  justify-items: center;
  border-radius: 8px;
  padding: clamp(30px, 3.1vw, 50px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 55px rgba(31, 31, 31, 0.14);
  text-align: center;
}

body.consult-page .consult-proof-card span {
  width: clamp(58px, 4.8vw, 78px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #55d267;
  color: #ffffff;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1;
  font-weight: 600;
}

body.consult-page .consult-proof-card p {
  max-width: 480px;
  margin: clamp(24px, 2.4vw, 34px) 0 0;
  color: var(--consult-ink);
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.22;
  font-weight: 600;
}

body.consult-page .section-heading h2,
body.consult-page .section-copy h2,
body.consult-page .consult-diagnosis-copy h2,
body.consult-page .engagement-copy h2,
body.consult-page .consult-faq-intro h2,
body.consult-page .consult-final-cta h2 {
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.98;
}

body.consult-page .consult-diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(46px, 7vw, 112px);
  align-items: center;
}

body.consult-page .consult-diagnosis-copy h2 {
  max-width: 920px;
}

body.consult-page .consult-diagnosis-copy p {
  max-width: 780px;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.34;
}

body.consult-page .consult-workshop-image {
  height: clamp(360px, 34vw, 560px);
  position: relative;
}

body.consult-page .consult-workshop-image figcaption {
  position: absolute;
  left: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2vw, 30px);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--consult-ink);
  font-size: 14px;
  font-weight: 600;
}

body.consult-page .enabler-section .section-heading {
  max-width: 1040px;
}

body.consult-page .enabler-grid,
body.consult-page .delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.consult-page .enabler-grid article,
body.consult-page .delivery-grid article {
  min-height: clamp(260px, 19vw, 340px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(36, 36, 36, 0.08);
  border-radius: 8px;
  padding: clamp(26px, 2.6vw, 40px);
  background: var(--consult-green);
}

body.consult-page .enabler-grid article:nth-child(2),
body.consult-page .delivery-grid article:nth-child(2) {
  background: var(--consult-blue);
}

body.consult-page .enabler-grid article:nth-child(3),
body.consult-page .delivery-grid article:nth-child(3) {
  background: var(--consult-rose);
}

body.consult-page .enabler-grid article:nth-child(4),
body.consult-page .delivery-grid article:nth-child(4) {
  background: var(--consult-yellow);
}

body.consult-page .enabler-grid h3,
body.consult-page .delivery-grid h3 {
  margin: 0;
  color: var(--consult-ink);
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 1.02;
  font-weight: 600;
}

body.consult-page .enabler-grid p,
body.consult-page .delivery-grid p {
  margin: clamp(42px, 5vw, 86px) 0 0;
  color: var(--consult-muted);
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.38;
  font-weight: 600;
}

body.consult-page .engagement-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 122px);
  align-items: start;
}

body.consult-page .engagement-copy {
  max-width: 650px;
}

body.consult-page .engagement-copy h2 {
  max-width: 650px;
}

body.consult-page .engagement-copy p {
  max-width: 600px;
}

body.consult-page .engagement-copy .button {
  margin-top: clamp(30px, 3vw, 48px);
}

body.consult-page .engagement-list {
  border-top: 1px solid var(--consult-line);
}

body.consult-page .engagement-list a {
  min-height: clamp(112px, 8vw, 146px);
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr) 38px;
  gap: clamp(18px, 2.8vw, 44px);
  align-items: center;
  border-bottom: 1px solid var(--consult-line);
  color: var(--consult-ink);
}

body.consult-page .engagement-list span {
  font-size: clamp(22px, 1.8vw, 32px);
  line-height: 1.04;
  font-weight: 600;
}

body.consult-page .engagement-list p {
  margin: 0;
  color: var(--consult-muted);
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.38;
  font-weight: 600;
}

body.consult-page .engagement-list strong {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--consult-line);
  border-radius: 50%;
  color: #061256;
  font-size: 22px;
  line-height: 1;
}

body.consult-page .delivery-section .section-heading {
  max-width: 1000px;
}

body.consult-page .delivery-grid h3 {
  margin-top: auto;
}

body.consult-page .delivery-grid p {
  margin-top: 16px;
}

body.consult-page .consult-use-case-section .section-heading {
  max-width: 980px;
}

body.consult-page .consult-use-case-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.consult-page .consult-use-case-grid article {
  min-height: clamp(470px, 34vw, 560px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--consult-line);
  border-radius: 8px;
  background: #ffffff;
}

body.consult-page .consult-use-case-grid article:nth-child(3) {
  width: min(720px, 74%);
  grid-column: 1 / -1;
  justify-self: center;
  min-height: clamp(420px, 30vw, 500px);
}

body.consult-page .consult-use-case-grid img {
  width: 100%;
  height: clamp(180px, 15vw, 230px);
  object-fit: cover;
}

body.consult-page .consult-use-case-grid div {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 38px);
}

body.consult-page .consult-use-case-grid span {
  color: var(--consult-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

body.consult-page .consult-use-case-grid h3 {
  margin: 14px 0 0;
  color: var(--consult-ink);
  font-size: clamp(30px, 2.55vw, 44px);
  line-height: 0.98;
  font-weight: 600;
}

body.consult-page .consult-use-case-grid p {
  margin: auto 0 0;
  color: var(--consult-muted);
  font-size: clamp(17px, 1.12vw, 21px);
  line-height: 1.38;
  font-weight: 600;
}

body.consult-page .consult-plan-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(44px, 4vw, 74px);
}

body.consult-page .consult-plan-card {
  overflow: hidden;
  border-radius: 8px;
}

body.consult-page .consult-problem,
body.consult-page .consult-solution {
  min-height: clamp(500px, 34vw, 640px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: clamp(52px, 8vw, 150px);
  align-items: center;
  padding: clamp(42px, 5vw, 78px);
  border: 1px solid rgba(36, 36, 36, 0.08);
  background: var(--consult-yellow);
  box-shadow: 0 14px 38px rgba(31, 31, 31, 0.06);
}

body.consult-page .consult-solution {
  border-color: var(--consult-dark);
  background: var(--consult-dark);
  color: #ffffff;
}

body.consult-page .eyebrow-pill {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36, 36, 36, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--consult-ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

body.consult-page .consult-solution .eyebrow-pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.consult-page .consult-solution h2,
body.consult-page .consult-solution p {
  color: #ffffff;
}

body.consult-page .consult-solution p {
  color: rgba(255, 255, 255, 0.78);
}

body.consult-page .consult-plan-copy h2,
body.consult-page .consult-plan-copy p {
  max-width: 780px;
}

body.consult-page .consult-plan-list h3 {
  margin: 0 0 clamp(28px, 3vw, 46px);
  color: inherit;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}

body.consult-page .consult-plan-list ul {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}

body.consult-page .consult-plan-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  color: #4f4631;
  font-size: clamp(18px, 1.32vw, 24px);
  line-height: 1.28;
  font-weight: 600;
}

body.consult-page .consult-solution .consult-plan-list li {
  color: rgba(255, 255, 255, 0.82);
}

body.consult-page .consult-plan-list li span {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 36, 36, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--consult-ink);
  font-size: 14px;
  font-weight: 600;
}

body.consult-page .consult-solution .consult-plan-list li span {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
}

body.consult-page .section-heading {
  max-width: 1120px;
  margin: 0 auto clamp(52px, 5.6vw, 88px);
  text-align: center;
}

body.consult-page .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

body.consult-page .activation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body.consult-page .activation-grid article,
body.consult-page .metric-grid article {
  min-height: clamp(220px, 17vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(36, 36, 36, 0.08);
  border-radius: 8px;
  padding: clamp(24px, 2.5vw, 38px);
  background: var(--consult-green);
}

body.consult-page .activation-grid article:nth-child(2),
body.consult-page .metric-grid article:nth-child(2) {
  background: var(--consult-blue);
}

body.consult-page .activation-grid article:nth-child(3),
body.consult-page .metric-grid article:nth-child(3) {
  background: var(--consult-rose);
}

body.consult-page .activation-grid article:nth-child(4),
body.consult-page .metric-grid article:nth-child(4) {
  background: var(--consult-yellow);
}

body.consult-page .activation-grid span,
body.consult-page .metric-grid span,
body.consult-page .practice-grid-consult span {
  color: var(--consult-ink);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

body.consult-page .activation-grid h3 {
  margin: clamp(42px, 4vw, 70px) 0 0;
  color: var(--consult-ink);
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 1.02;
  font-weight: 600;
}

body.consult-page .activation-grid p {
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: var(--consult-muted);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.38;
  font-weight: 600;
}

body.consult-page .focus-section .section-heading {
  max-width: 900px;
}

body.consult-page .focus-section .section-heading h2 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.94;
}

body.consult-page .focus-section .section-heading p {
  max-width: 670px;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.45;
  font-weight: 600;
}

body.consult-page .focus-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.consult-page .focus-grid article {
  min-height: clamp(400px, 31vw, 470px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--consult-line);
  border-radius: 8px;
  background: #ffffff;
}

body.consult-page .focus-grid article:nth-child(3) {
  width: min(620px, 68%);
  grid-column: 1 / -1;
  justify-self: center;
  min-height: clamp(330px, 25vw, 400px);
  margin-top: 12px;
}

body.consult-page .focus-grid img {
  height: clamp(150px, 13vw, 185px);
}

body.consult-page .focus-grid h3 {
  margin: clamp(20px, 2vw, 30px) clamp(22px, 2.2vw, 30px) 0;
  color: var(--consult-ink);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.98;
  font-weight: 600;
}

body.consult-page .focus-grid p {
  margin: auto clamp(22px, 2.2vw, 30px) clamp(22px, 2.2vw, 30px);
  color: var(--consult-muted);
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.36;
  font-weight: 600;
}

body.consult-page .platform-section,
body.consult-page .metric-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: center;
}

body.consult-page .platform-section .section-copy,
body.consult-page .metric-section .section-copy {
  max-width: 760px;
}

body.consult-page .platform-grid {
  display: grid;
  gap: 14px;
}

body.consult-page .platform-grid article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
  border: 1px solid var(--consult-line);
  border-radius: 8px;
  padding: clamp(22px, 2.4vw, 34px);
  background: #ffffff;
}

body.consult-page .platform-grid img {
  width: min(150px, 100%);
}

body.consult-page .platform-grid h3 {
  margin: 0;
  color: var(--consult-ink);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.05;
  font-weight: 600;
}

body.consult-page .platform-grid p {
  margin: 10px 0 0;
  color: var(--consult-muted);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.4;
  font-weight: 600;
}

body.consult-page .consult-practice-section .section-heading {
  max-width: 900px;
}

body.consult-page .practice-grid-consult {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.consult-page .practice-grid-consult article {
  min-height: clamp(440px, 33vw, 540px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--consult-line);
  border-radius: 8px;
  background: #ffffff;
}

body.consult-page .practice-grid-consult img {
  height: clamp(180px, 14vw, 230px);
}

body.consult-page .practice-grid-consult span {
  margin: clamp(20px, 2vw, 28px) clamp(24px, 2.5vw, 34px) 0;
  color: var(--consult-muted);
}

body.consult-page .practice-grid-consult h3 {
  margin: 10px clamp(24px, 2.5vw, 34px) 0;
  color: var(--consult-ink);
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 0.98;
  font-weight: 600;
}

body.consult-page .practice-grid-consult p {
  margin: auto clamp(24px, 2.5vw, 34px) clamp(24px, 2.5vw, 34px);
  color: var(--consult-muted);
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.38;
  font-weight: 600;
}

body.consult-page .metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.consult-page .metric-grid strong {
  color: var(--consult-ink);
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.04;
  font-weight: 600;
}

body.consult-page .consult-faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 104px);
  align-items: start;
}

body.consult-page .consult-faq .section-heading,
body.consult-page .consult-faq-intro {
  margin: 0;
  text-align: left;
}

body.consult-page .consult-faq-intro h2 {
  max-width: 520px;
}

body.consult-page .consult-faq-intro p {
  max-width: 420px;
}

body.consult-page .consult-faq-intro a {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 2.4vw, 36px);
  border-bottom: 2px solid var(--consult-ink);
  color: var(--consult-ink);
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 600;
}

body.consult-page .consult-faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--consult-line);
}

body.consult-page .consult-faq-list p {
  min-height: 86px;
  margin: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--consult-line);
  color: var(--consult-ink);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.18;
  font-weight: 600;
}

body.consult-page .consult-anchor {
  display: block;
  height: 1px;
  scroll-margin-top: 104px;
}

body.consult-page .consult-final-cta {
  min-height: clamp(520px, 42vw, 760px);
  margin-bottom: clamp(28px, 4vw, 64px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(42px, 7vw, 96px);
  background: var(--consult-dark);
  text-align: center;
}

body.consult-page .consult-final-cta::before,
body.consult-page .consult-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

body.consult-page .consult-final-cta::before {
  background: url("assets/consult-placeholder.png") center / cover no-repeat;
  opacity: 0.82;
}

body.consult-page .consult-final-cta::after {
  background:
    linear-gradient(90deg, rgba(31, 31, 31, 0.92), rgba(31, 31, 31, 0.32)),
    linear-gradient(180deg, rgba(12, 20, 28, 0.12), rgba(12, 20, 28, 0.74));
}

body.consult-page .consult-final-content {
  width: min(1050px, 100%);
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

body.consult-page .consult-final-cta h2,
body.consult-page .consult-final-cta p {
  color: #ffffff;
}

body.consult-page .consult-final-cta h2 {
  max-width: 1100px;
  font-size: clamp(42px, 5vw, 80px);
}

body.consult-page .consult-final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1120px) {

body.consult-page .consult-section,
body.consult-page .consult-hero,
body.consult-page .consult-final-cta {
    width: min(calc(100% - 48px), 1500px);
  }

body.consult-page .consult-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

body.consult-page .consult-hero-copy {
    justify-items: center;
    padding-left: 0;
  }

body.consult-page .consult-hero-copy .consult-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

body.consult-page .consult-hero-visual {
    height: clamp(430px, 58vw, 680px);
  }

body.consult-page .consult-diagnosis,
body.consult-page .engagement-section {
    grid-template-columns: 1fr;
  }

body.consult-page .consult-diagnosis-copy,
body.consult-page .engagement-copy {
    max-width: 900px;
  }

body.consult-page .enabler-grid,
body.consult-page .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

body.consult-page .consult-problem,
body.consult-page .consult-solution,
body.consult-page .platform-section,
body.consult-page .metric-section,
body.consult-page .consult-faq {
    grid-template-columns: 1fr;
  }

body.consult-page .activation-grid,
body.consult-page .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {

body.consult-page .focus-grid,
body.consult-page .practice-grid-consult,
body.consult-page .consult-use-case-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .focus-grid article:nth-child(3),
body.consult-page .consult-use-case-grid article:nth-child(3) {
    width: 100%;
    margin-top: 0;
  }

body.consult-page .engagement-list a {
    grid-template-columns: 1fr 38px;
    gap: 10px 18px;
    padding: 26px 0;
  }

body.consult-page .engagement-list a p {
    grid-column: 1 / -1;
  }

body.consult-page .engagement-list strong {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

}

@media (max-width: 680px) {

body.consult-page .consult-section,
body.consult-page .consult-hero,
body.consult-page .consult-final-cta {
    width: min(calc(100% - 28px), 1500px);
  }

body.consult-page .consult-section {
    padding: 78px 0;
  }

body.consult-page .consult-hero {
    min-height: 0;
    padding: 32px 18px;
  }

body.consult-page .consult-hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

body.consult-page .product-mark {
    width: min(320px, 86vw);
    margin-bottom: 38px;
  }

body.consult-page .consult-hero-copy > p {
    margin-top: 28px;
    font-size: 22px;
  }

body.consult-page .consult-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

body.consult-page .consult-actions .button {
    width: 100%;
  }

body.consult-page .consult-hero-visual {
    height: auto;
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

body.consult-page .consult-hero-visual img {
    height: 280px;
    min-height: 0;
    border: 1px solid var(--consult-line);
    border-radius: 8px;
  }

body.consult-page .consult-proof-card {
    width: 100%;
    position: static;
    padding: 24px 20px;
    box-shadow: none;
    border: 1px solid var(--consult-line);
  }

body.consult-page .consult-proof-card p {
    font-size: 19px;
  }

body.consult-page .consult-workshop-image {
    height: 320px;
  }

body.consult-page .section-heading h2,
body.consult-page .section-copy h2,
body.consult-page .consult-diagnosis-copy h2,
body.consult-page .engagement-copy h2,
body.consult-page .consult-faq-intro h2,
body.consult-page .consult-final-cta h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

body.consult-page .consult-problem,
body.consult-page .consult-solution {
    min-height: 320px;
    padding: 24px;
  }

body.consult-page .activation-grid,
body.consult-page .metric-grid,
body.consult-page .enabler-grid,
body.consult-page .delivery-grid {
    grid-template-columns: 1fr;
  }

body.consult-page .platform-grid article {
    grid-template-columns: 1fr;
  }

}

/* Final merged-nav mobile overrides. Kept last so page-scoped CSS cannot override the dropdown behavior. */
@media (max-width: 1040px) {
  body.nav-open .main-nav {
    max-height: calc(100vh - 188px);
    overflow: auto;
  }

  body.nav-open .header-actions {
    top: auto;
    bottom: 24px;
  }

  body.nav-open .nav-menu {
    display: block;
  }

  body.nav-open .nav-trigger {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
    text-align: left;
  }

  body.nav-open .nav-dropdown {
    width: 100%;
    position: static;
    left: auto;
    display: none;
    margin: 12px 0 6px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  body.nav-open .nav-dropdown::before {
    display: none;
  }

  body.nav-open .nav-menu.is-open .nav-dropdown,
  body.nav-open .nav-menu:focus-within .nav-dropdown {
    display: grid;
  }

  body.nav-open .nav-menu:focus-within:not(.is-open) .nav-dropdown {
    display: none;
  }

  body.nav-open .nav-product {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 82px;
    padding: 12px;
  }

  body.nav-open .nav-product img {
    width: 96px;
  }
}

@media (max-width: 680px) {
  body.nav-open .header-actions {
    bottom: 14px;
  }

  body.nav-open .main-nav {
    max-height: calc(100vh - 164px);
  }

  body.nav-open .nav-product {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Business challenge cards are informational, not clickable. */
.challenge-grid article {
  grid-template-columns: clamp(56px, 4.6vw, 78px) minmax(0, 1fr);
  cursor: default;
}

.challenge-grid article:hover,
.challenge-grid article:focus-visible,
.challenge-grid article.is-active,
.challenge-grid article:active {
  border-color: rgba(36, 36, 36, 0.04);
  box-shadow: none;
  filter: none;
  transform: none;
}

.challenge-grid article:hover span,
.challenge-grid article:focus-visible span,
.challenge-grid article.is-active span {
  background: rgba(255, 255, 255, 0.64);
  box-shadow: none;
  transform: none;
}

.challenge-grid b {
  display: none;
}

@media (max-width: 1040px) {
  .impact-story-library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-cover,
  .case-risk-grid,
  .case-table-grid,
  .case-scope,
  .case-initiative-grid,
  .action-recommendations,
  .driver-definition-table,
  .outcome-stack,
  .leading-indicators > div {
    grid-template-columns: 1fr;
  }

  .case-study-cover::before {
    width: 100%;
    height: 360px;
    inset: auto 0 0;
    opacity: 0.18;
  }

  .case-study-cover::after {
    opacity: 0.55;
  }

  .outcome-stack article {
    grid-template-columns: 1fr;
  }

  .implementation-list article {
    grid-template-columns: 1fr;
  }

  .case-insight-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .impact-stories-hero,
  .impact-story-library,
  .case-study-detail {
    width: min(calc(100% - 28px), 1440px);
  }

  .impact-stories-hero {
    text-align: left;
  }

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

  .case-study-cover,
  .case-section {
    padding: 24px;
  }

  .case-metric-pair,
  .solution-detail-copy,
  .driver-definition-table,
  .driver-definition-table div {
    grid-template-columns: 1fr;
  }

  .case-study-cover {
    min-height: 0;
  }

  .case-study-cover h2,
  .case-section-heading h2 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .case-risk-grid article,
  .outcome-stack article,
  .case-initiative-grid article,
  .action-recommendations article,
  .driver-definition-table div {
    min-height: 0;
  }

  .case-table-grid th,
  .case-table-grid td {
    padding: 14px 12px;
  }
}

/* Current page state in the shared header. */
.main-nav > a.is-current,
.nav-trigger.is-current,
body.consult-page .main-nav > a.is-current {
  color: #232323;
  font-weight: 600;
}

.nav-product.is-current strong {
  color: #232323;
  font-weight: 600;
}

/* Case study redesign v2: premium editorial, ATP pastel, content unchanged. */
body.case-studies-page {
  background: #ffffff;
}

body.case-studies-page main {
  background: #ffffff;
}

body.case-studies-page .site-header {
  background: rgba(255, 255, 255, 0.92);
}

.impact-stories-hero {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1320px);
  min-height: clamp(460px, 42vw, 640px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  margin: clamp(28px, 4vw, 58px) auto clamp(22px, 3vw, 38px);
  border-radius: 8px;
  padding: clamp(38px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.98) 0%, rgba(247, 249, 252, 0.9) 50%, rgba(247, 249, 252, 0.25) 100%),
    url("assets/challenge-bg.jpg") right center / min(52vw, 780px) auto no-repeat,
    #f7f9fc;
  text-align: left;
}

.impact-stories-hero h1 {
  max-width: 880px;
  margin: 22px 0 0;
  font-size: clamp(72px, 8.2vw, 142px);
}

.impact-stories-hero p {
  max-width: 440px;
  margin: 0;
  justify-self: end;
  color: #59636f;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.28;
  font-weight: 600;
}

.impact-story-library {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1320px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(80px, 8vw, 150px);
}

.impact-story-card {
  min-height: clamp(520px, 41vw, 680px);
  position: relative;
  justify-content: flex-end;
  border-radius: 8px;
  background: #e7f5e9;
  overflow: hidden;
}

.impact-story-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98) 48%, rgba(255, 255, 255, 0.98));
  pointer-events: none;
}

.impact-story-card img {
  position: absolute;
  inset: 0;
  height: 64%;
  aspect-ratio: auto;
  filter: saturate(0.9) contrast(0.96);
}

.impact-story-card span,
.impact-story-card h2 {
  position: relative;
  z-index: 1;
}

.impact-story-card span {
  width: fit-content;
  margin: 0 clamp(24px, 2.5vw, 40px) 14px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.76);
  color: #202226;
}

.impact-story-card h2 {
  max-width: 640px;
  padding: 0 clamp(24px, 2.5vw, 40px) clamp(30px, 3vw, 48px);
  font-size: clamp(34px, 3vw, 58px);
  line-height: 0.96;
}

.case-page-nav {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1320px);
  margin: clamp(24px, 3vw, 44px) auto 18px;
}

.case-page-nav a {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f7f9fc;
  box-shadow: none;
  color: #232323;
  font-size: 14px;
  font-weight: 600;
}

.case-study-detail {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1320px);
  margin: 0 auto clamp(90px, 8vw, 140px);
  display: grid;
  gap: clamp(24px, 3vw, 44px);
}

.case-study-cover,
.case-section {
  margin: 0;
  border-radius: 8px;
  box-shadow: none;
}

.case-study-cover {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.72fr);
  gap: clamp(18px, 2.2vw, 32px);
  padding: 0;
  background: transparent;
  overflow: visible;
  isolation: auto;
}

.case-study-cover::before,
.case-study-cover::after,
.case-section::before,
.case-risk-grid article::after {
  display: none;
}

.case-study-cover > div {
  min-height: clamp(600px, 55vw, 780px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: clamp(38px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.84)),
    #f4f1fa;
}

.case-study-cover .eyebrow-pill,
.case-section-heading > span,
.impact-stories-hero > span {
  min-height: 34px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.08);
  color: #232323;
}

.case-study-cover h2 {
  max-width: 980px;
  margin: clamp(26px, 3vw, 46px) 0 clamp(22px, 2.5vw, 34px);
  color: #202226;
  font-size: clamp(62px, 7vw, 118px);
  line-height: 0.92;
}

.case-enabled {
  width: fit-content;
  margin: 0 0 clamp(24px, 3vw, 40px);
  padding: 0;
  background: transparent;
}

.case-enabled span {
  margin-bottom: 12px;
  background: #ffffff;
}

.case-enabled img {
  width: min(340px, 76vw);
}

.case-study-cover > div > p {
  max-width: 780px;
  color: #59636f;
  font-size: clamp(21px, 1.65vw, 30px);
  line-height: 1.34;
  font-weight: 600;
}

.case-study-cover aside {
  min-height: clamp(600px, 55vw, 780px);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(24px, 2.8vw, 42px);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.78)),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.case-study-cover aside::before {
  display: none;
}

.case-study-cover aside > p {
  max-width: 520px;
  padding: 0;
  color: #ffffff;
  font-size: clamp(22px, 1.8vw, 33px);
  line-height: 1.14;
  font-weight: 600;
}

.case-study-cover aside > p strong {
  color: #ffffff;
}

.case-metric-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.case-metric-pair div {
  min-height: 182px;
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: #202226;
}

.case-metric-pair strong,
.case-scope strong,
.outcome-stack > article > strong,
.leading-indicators strong {
  color: #202226;
  font-size: clamp(56px, 5vw, 92px);
}

.case-metric-pair span,
.case-metric-pair p {
  color: #202226;
}

.case-metric-pair p {
  opacity: 0.68;
}

.case-study-cover aside > b {
  display: block;
  border-radius: 8px;
  padding: 22px;
  background: #fff2c6;
  color: #202226;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.2;
}

.case-section {
  padding: clamp(38px, 4.6vw, 68px);
  overflow: visible;
  background: #f7f9fc;
}

.case-section-heading {
  max-width: 1040px;
  margin: 0 0 clamp(28px, 3.8vw, 56px);
}

.case-section-heading h2 {
  max-width: 1000px;
  margin: 16px 0;
  color: #202226;
  font-size: clamp(48px, 5.5vw, 92px);
  line-height: 0.96;
}

.case-section-heading p {
  max-width: 950px;
  color: #59636f;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.38;
  font-weight: 600;
}

.case-study-detail > .case-section:nth-of-type(2) {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  background: #ffffff;
}

.case-study-detail > .case-section:nth-of-type(2) .case-section-heading {
  position: sticky;
  top: 110px;
  margin: 0;
}

.case-study-detail > .case-section:nth-of-type(2) .case-risk-grid,
.case-study-detail > .case-section:nth-of-type(2) .case-scope {
  grid-column: 2;
}

.case-risk-grid {
  display: grid;
  gap: 14px;
  counter-reset: caseRisk;
}

.case-risk-grid article {
  min-height: clamp(190px, 16vw, 270px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
}

.case-risk-grid article::before {
  counter-increment: caseRisk;
  content: "0" counter(caseRisk);
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  left: auto;
  color: rgba(32, 34, 38, 0.2);
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(68px, 7vw, 118px);
  line-height: 0.8;
}

.case-risk-grid .risk-red {
  background: #f7d8d8;
}

.case-risk-grid .risk-yellow {
  background: #fff2c6;
}

.case-risk-grid .risk-blue {
  background: #dcedfb;
}

.case-risk-grid h3 {
  max-width: 460px;
  margin: 0 0 12px;
  color: #202226;
  font-size: clamp(28px, 2.35vw, 43px);
  line-height: 1;
}

.case-risk-grid p {
  max-width: 620px;
  color: #4f5864;
  font-size: clamp(17px, 1.2vw, 21px);
}

.case-scope {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(150px, 0.45fr));
  gap: 12px;
  margin-top: 14px;
  padding: 0;
  background: transparent;
}

.case-scope > p,
.case-scope div {
  border-radius: 8px;
  padding: clamp(24px, 2.7vw, 38px);
  background: #f7f9fc;
}

.case-scope > p {
  display: flex;
  align-items: flex-end;
  color: #202226;
  font-size: clamp(28px, 3vw, 52px);
}

.case-scope div {
  background: #e7f5e9;
}

.case-scope div:last-child {
  background: #eaf2fa;
}

.case-study-detail > .case-section:nth-of-type(3) {
  background: #f7f9fc;
}

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

.case-table-grid > div {
  border-radius: 8px;
  padding: clamp(24px, 2.6vw, 38px);
  background: #ffffff;
  box-shadow: none;
}

.case-table-grid h3 {
  min-height: 0;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  color: #202226;
  font-size: clamp(28px, 2.15vw, 40px);
}

.case-table-grid table {
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
}

.case-table-grid thead th {
  padding-top: 0;
  color: #202226;
}

.case-table-grid tbody tr {
  background: #f7f9fc;
}

.case-table-grid tbody tr:nth-child(2) {
  background: #f4f1fa;
}

.case-table-grid tbody tr:nth-child(3) {
  background: #fff9e8;
}

.case-table-grid th,
.case-table-grid td {
  border: 0;
}

.case-table-grid td:first-child {
  border-radius: 8px 0 0 8px;
}

.case-table-grid td:last-child {
  border-radius: 0 8px 8px 0;
  color: #202226;
  font-weight: 600;
}

.case-insight-list {
  border-radius: 8px;
  margin-top: 16px;
  padding: clamp(26px, 3vw, 42px);
  background: #ffffff;
  box-shadow: none;
}

.case-insight-list h3 {
  margin-bottom: 20px;
  color: #202226;
  font-size: clamp(28px, 2.2vw, 42px);
}

.case-insight-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.case-insight-list li {
  min-height: 200px;
  border-radius: 8px;
  padding: clamp(24px, 2.4vw, 34px);
  background: #e7f5e9;
}

.case-insight-list li + li {
  margin: 0;
  background: #dcedfb;
}

.case-initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.case-initiative-grid p,
.action-recommendations > p {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.98;
}

.case-initiative-grid article {
  min-height: 210px;
  border-radius: 8px;
  padding: clamp(26px, 2.7vw, 38px);
  background: #f4f1fa;
  box-shadow: none;
}

.case-initiative-grid article:nth-of-type(2) {
  background: #fff2c6;
}

.case-study-detail > .case-section:nth-of-type(4) {
  background: #202226;
}

.case-study-detail > .case-section:nth-of-type(4) .case-section-heading > span {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.case-study-detail > .case-section:nth-of-type(4) .case-section-heading h2 {
  color: #ffffff;
}

.implementation-list {
  display: grid;
  gap: 2px;
  border-radius: 8px;
  overflow: hidden;
}

.implementation-list article {
  min-height: 0;
  display: grid;
  grid-template-columns: 92px minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: start;
  border: 0;
  border-radius: 0;
  padding: clamp(28px, 3.2vw, 48px);
  background: #ffffff;
  box-shadow: none;
}

.implementation-list article:nth-child(even) {
  background: #f7f9fc;
}

.implementation-list span {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: #202226;
  color: #ffffff;
  font-size: 30px;
}

.implementation-list h3 {
  margin: 5px 0 0;
  color: #202226;
  font-size: clamp(26px, 2.1vw, 38px);
}

.implementation-list p {
  color: #59636f;
  font-size: clamp(18px, 1.28vw, 23px);
}

.case-study-detail > .case-section:nth-of-type(5) {
  background: #ffffff;
}

.driver-definition-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.driver-definition-table div {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  border-radius: 8px;
  padding: clamp(24px, 2.5vw, 38px);
  background: #f7f9fc;
}

.driver-definition-table div:nth-child(2) {
  background: #fff9e8;
}

.driver-definition-table div:nth-child(3) {
  background: #e7f5e9;
}

.driver-definition-table div:nth-child(4) {
  background: #dcedfb;
}

.driver-definition-table strong {
  color: #202226;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.05;
}

.driver-definition-table p {
  color: #59636f;
  font-size: clamp(17px, 1.15vw, 20px);
}

.action-recommendations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.action-recommendations article {
  min-height: 300px;
  border-radius: 8px;
  padding: clamp(28px, 3vw, 46px);
  background: #f4f1fa;
  box-shadow: none;
}

.action-recommendations article:nth-of-type(2) {
  background: #e7f5e9;
}

.case-note {
  margin-top: 14px;
  border-radius: 8px;
  padding: clamp(26px, 2.8vw, 40px);
  background: #dcedfb;
  color: #202226;
  font-size: clamp(19px, 1.4vw, 25px);
  font-weight: 600;
}

.outcomes-section {
  background: #f7f9fc;
}

.outcome-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.outcome-stack article {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  padding: clamp(28px, 3vw, 46px);
  background: #ffffff;
  box-shadow: none;
}

.outcome-stack article:first-child {
  grid-row: span 2;
  min-height: 100%;
  background: #f7e8ee;
}

.outcome-stack article:nth-child(2) {
  background: #fff2c6;
}

.outcome-stack article:nth-child(3) {
  background: #dcedfb;
}

.outcome-stack h3 {
  margin: 16px 0 0;
  color: #202226;
  font-size: clamp(26px, 2vw, 38px);
}

.outcome-stack li {
  color: #59636f;
  font-size: clamp(18px, 1.25vw, 22px);
}

.roi-callout {
  min-height: 150px;
  display: flex;
  align-items: center;
  margin-top: 14px;
  border-radius: 8px;
  padding: clamp(30px, 3vw, 48px);
  background: #d9f6d7;
  color: #202226;
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.22;
}

.leading-indicators {
  margin-top: clamp(28px, 3vw, 44px);
  padding-top: 0;
  border-top: 0;
}

.leading-indicators h3 {
  margin-bottom: 14px;
  color: #202226;
  font-size: clamp(28px, 2.1vw, 40px);
}

.leading-indicators > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.leading-indicators article {
  min-height: 210px;
  border-radius: 8px;
  padding: clamp(26px, 2.8vw, 42px);
  background: #ffffff;
  box-shadow: none;
}

.related-stories {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1320px);
  margin: clamp(26px, 4vw, 64px) auto clamp(92px, 9vw, 150px);
  padding: clamp(28px, 4vw, 56px);
  border-radius: 8px;
  background: #f7f9fc;
}

.related-stories-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 42px);
}

.related-stories-heading span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  background: #ffffff;
  color: #232323;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-stories-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 86px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.96;
}

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

.related-story-grid a {
  min-height: clamp(390px, 30vw, 520px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.related-story-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.related-story-grid span {
  width: fit-content;
  margin: clamp(20px, 2vw, 28px) clamp(20px, 2.4vw, 34px) 12px;
  border-radius: 999px;
  padding: 9px 12px;
  background: #f7f9fc;
  color: #59636f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-story-grid h3 {
  margin: 0;
  padding: 0 clamp(20px, 2.4vw, 34px) clamp(24px, 2.8vw, 40px);
  color: #202226;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .impact-stories-hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(247, 249, 252, 0.98), rgba(247, 249, 252, 0.88)),
      url("assets/challenge-bg.jpg") center bottom / cover no-repeat,
      #f7f9fc;
  }

  .impact-stories-hero p {
    justify-self: start;
  }

  .case-study-cover,
  .case-study-detail > .case-section:nth-of-type(2),
  .case-scope,
  .case-table-grid,
  .case-insight-list ul,
  .case-initiative-grid,
  .driver-definition-table,
  .action-recommendations,
  .related-story-grid,
  .leading-indicators > div {
    grid-template-columns: 1fr;
  }

  .case-study-detail > .case-section:nth-of-type(2) .case-section-heading {
    position: static;
  }

  .case-study-detail > .case-section:nth-of-type(2) .case-risk-grid,
  .case-study-detail > .case-section:nth-of-type(2) .case-scope {
    grid-column: auto;
  }

  .implementation-list article {
    grid-template-columns: 1fr;
  }

  .driver-definition-table div {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .case-page-nav,
  .case-study-detail,
  .related-stories,
  .impact-stories-hero,
  .impact-story-library {
    width: min(calc(100% - 28px), 1320px);
  }

  .related-stories {
    padding: 24px;
  }

  .related-stories-heading {
    display: grid;
    justify-items: start;
  }

  .impact-stories-hero {
    min-height: 0;
    padding: 28px;
  }

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

  .impact-story-card {
    min-height: 520px;
  }

  .case-study-cover > div,
  .case-study-cover aside,
  .case-section {
    min-height: 0;
    padding: 24px;
  }

  .case-study-cover h2,
  .case-section-heading h2 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .case-metric-pair,
  .outcome-stack {
    grid-template-columns: 1fr;
  }

  .outcome-stack article:first-child {
    grid-row: auto;
  }
}

/* Final mobile navigation fix: one clean drawer, no clipped dropdowns. */
@media (max-width: 1040px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 1000;
  }

  body.nav-open .main-nav {
    width: auto;
    max-height: none;
    position: fixed;
    top: 96px;
    right: 14px;
    bottom: 126px;
    left: 14px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 0;
    padding: 18px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  body.nav-open .nav-menu {
    width: 100%;
    min-width: 0;
    display: block;
  }

  body.nav-open .nav-trigger {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0;
    color: #232323;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
  }

  body.nav-open .nav-dropdown,
  body.nav-open .nav-menu:focus-within .nav-dropdown,
  body.nav-open .nav-menu:focus-within:not(.is-open) .nav-dropdown {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: static;
    left: auto;
    display: none;
    gap: 8px;
    margin: 8px 0 0;
    padding: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f3f2f0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  body.nav-open .nav-menu.is-open .nav-dropdown {
    display: grid;
  }

  body.nav-open .nav-product {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: auto;
    padding: 12px;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
  }

  body.nav-open .nav-product img {
    width: 82px;
    max-width: 100%;
    max-height: 34px;
    object-fit: contain;
    object-position: left center;
  }

  body.nav-open .nav-product span {
    min-width: 0;
  }

  body.nav-open .nav-product strong {
    font-size: 17px;
    line-height: 1.1;
  }

  body.nav-open .nav-product small {
    margin-top: 5px;
    overflow-wrap: anywhere;
    color: #59636f;
    font-size: 14px;
    line-height: 1.28;
  }

  body.nav-open .main-nav > a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0;
    color: #232323;
    font-size: 20px;
    font-weight: 600;
  }

  body.nav-open .header-actions {
    width: auto;
    position: fixed;
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
  }

  body.nav-open .header-actions > a:not(.button) {
    color: #232323;
    font-size: 18px;
    font-weight: 600;
  }

  body.nav-open .header-actions .button {
    min-width: 150px;
    min-height: 54px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: min(230px, 66vw);
  }

  body.nav-open .main-nav {
    top: 88px;
    right: 12px;
    bottom: 114px;
    left: 12px;
    gap: 10px;
    padding: 14px;
  }

  body.nav-open .nav-trigger {
    min-height: 50px;
    font-size: 18px;
  }

  body.nav-open .nav-product {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  body.nav-open .nav-product img {
    width: 118px;
  }

  body.nav-open .main-nav > a {
    min-height: 44px;
    font-size: 18px;
  }

  body.nav-open .header-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }
}

/* Mobile nav hard reset across Home, Reflect, Embark, Consult, Solutions, and Impact Stories. */
@media (max-width: 1040px) {
  body.nav-open .main-nav {
    width: auto !important;
    max-height: none !important;
    position: fixed !important;
    top: 96px !important;
    right: 14px !important;
    bottom: 126px !important;
    left: 14px !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 18px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
  }

  body.nav-open .nav-menu {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  body.nav-open .nav-trigger {
    width: 100% !important;
    min-height: 54px !important;
    justify-content: space-between !important;
    padding: 0 !important;
    text-align: left !important;
  }

  body.nav-open .nav-dropdown {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    left: auto !important;
    margin: 8px 0 0 !important;
    padding: 8px !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body.nav-open .nav-menu:not(.is-open) .nav-dropdown,
  body.nav-open .nav-menu:focus-within:not(.is-open) .nav-dropdown {
    display: none !important;
  }

  body.nav-open .nav-menu.is-open .nav-dropdown {
    display: grid !important;
  }

  body.nav-open .nav-product {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 12px !important;
    min-height: auto !important;
    padding: 12px !important;
    overflow: hidden !important;
  }

  body.nav-open .nav-product img {
    width: 82px !important;
    max-width: 100% !important;
    max-height: 34px !important;
  }

  body.nav-open .nav-product span {
    min-width: 0 !important;
  }

  body.nav-open .nav-product small {
    overflow-wrap: anywhere !important;
  }

  body.nav-open .header-actions {
    width: auto !important;
    position: fixed !important;
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    left: 14px !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 14px !important;
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
  }
}

@media (max-width: 680px) {
  body.nav-open .main-nav {
    top: 88px !important;
    right: 12px !important;
    bottom: 114px !important;
    left: 12px !important;
    gap: 10px !important;
    padding: 14px !important;
  }

  body.nav-open .nav-product {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.nav-open .nav-product img {
    width: 118px !important;
  }

  body.nav-open .header-actions {
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    padding: 12px !important;
  }
}

/* Case study challenge section correction: never squeeze story cards into skinny columns. */
.case-study-detail > .case-section:nth-of-type(2) {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(26px, 3.5vw, 52px) !important;
  align-items: start !important;
  background: #ffffff !important;
}

.case-study-detail > .case-section:nth-of-type(2) .case-section-heading {
  max-width: 980px !important;
  position: static !important;
  margin: 0 !important;
}

.case-study-detail > .case-section:nth-of-type(2) .case-section-heading h2 {
  max-width: 860px !important;
  font-size: clamp(48px, 5.2vw, 88px) !important;
  line-height: 0.98 !important;
}

.case-study-detail > .case-section:nth-of-type(2) .case-risk-grid,
.case-study-detail > .case-section:nth-of-type(2) .case-scope {
  grid-column: auto !important;
}

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

.case-risk-grid article {
  min-width: 0 !important;
  min-height: clamp(340px, 28vw, 470px) !important;
  justify-content: space-between !important;
  padding: clamp(26px, 2.8vw, 42px) !important;
}

.case-risk-grid article::before {
  position: static !important;
  display: block !important;
  margin: 0 0 auto !important;
  color: rgba(32, 34, 38, 0.22) !important;
  font-size: clamp(70px, 6vw, 110px) !important;
}

.case-risk-grid h3 {
  max-width: none !important;
  margin-top: clamp(36px, 5vw, 84px) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-size: clamp(28px, 2.2vw, 42px) !important;
  line-height: 1.02 !important;
}

.case-risk-grid p {
  max-width: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-size: clamp(17px, 1.15vw, 21px) !important;
  line-height: 1.42 !important;
}

.case-scope {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 0.55fr)) !important;
  gap: 14px !important;
  margin-top: 0 !important;
}

.case-scope > p,
.case-scope div {
  min-height: 240px !important;
}

.case-scope > p {
  font-size: clamp(32px, 3.4vw, 58px) !important;
}

@media (max-width: 1120px) {
  .case-risk-grid,
  .case-scope {
    grid-template-columns: 1fr !important;
  }

  .case-risk-grid article,
  .case-scope > p,
  .case-scope div {
    min-height: 0 !important;
  }

  .case-risk-grid h3 {
    margin-top: 24px !important;
  }
}

/* Editorial image rhythm for impact stories. */
.case-image-strip,
.case-wide-image {
  width: min(100%, 1500px) !important;
  margin: clamp(22px, 3vw, 48px) auto 0 !important;
}

.case-image-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1vw, 16px) !important;
}

.case-image-strip-large {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr) minmax(0, 0.9fr) !important;
}

.case-image-strip-two {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.case-image-strip img,
.case-wide-image img {
  display: block !important;
  width: 100% !important;
  object-fit: cover !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--pastel-blue) !important;
  filter: saturate(0.92) contrast(0.96) brightness(1.02) !important;
}

.case-image-strip img {
  height: clamp(260px, 24vw, 420px) !important;
}

.case-image-strip-large img:first-child,
.case-image-strip-two img {
  height: clamp(320px, 32vw, 560px) !important;
}

.case-wide-image {
  display: block !important;
  overflow: hidden !important;
}

.case-wide-image img {
  height: clamp(360px, 40vw, 660px) !important;
}

.case-wide-image-tight img {
  height: clamp(300px, 32vw, 520px) !important;
}

.case-study-detail > .case-image-strip:first-of-type {
  margin-top: clamp(14px, 1.8vw, 28px) !important;
}

.case-section > .case-image-strip,
.case-section > .case-wide-image {
  grid-column: 1 / -1 !important;
}

@media (max-width: 900px) {
  .case-image-strip,
  .case-image-strip-large,
  .case-image-strip-two {
    grid-template-columns: 1fr !important;
  }

  .case-image-strip img,
  .case-image-strip-large img:first-child,
  .case-image-strip-two img,
  .case-wide-image img,
  .case-wide-image-tight img {
    height: clamp(220px, 64vw, 380px) !important;
  }
}

/* ROI callout must read as one sentence, not split into flex fragments. */
.roi-callout {
  display: block !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: clamp(26px, 3vw, 46px) !important;
  color: #202226 !important;
  font-size: clamp(26px, 2.15vw, 42px) !important;
  line-height: 1.16 !important;
  font-weight: 600 !important;
  text-wrap: balance !important;
}

.roi-callout strong {
  display: inline !important;
  color: #202226 !important;
  font-weight: 600 !important;
  white-space: normal !important;
}

@media (max-width: 680px) {
  .roi-callout {
    font-size: clamp(22px, 6vw, 30px) !important;
    line-height: 1.18 !important;
    text-wrap: auto !important;
  }
}

/* Impact Stories page: clean readable gallery, no text/image collisions. */
body.case-studies-page .impact-stories-hero {
  width: min(calc(100% - clamp(28px, 6vw, 112px)), 1320px) !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  margin: clamp(36px, 5vw, 82px) auto clamp(34px, 4vw, 64px) !important;
  padding: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  text-align: center !important;
}

body.case-studies-page .impact-stories-hero > span {
  justify-self: center !important;
  margin: 0 auto !important;
}

body.case-studies-page .impact-stories-hero h1 {
  max-width: 940px !important;
  margin: 18px auto 18px !important;
  color: #202226 !important;
  font-size: clamp(54px, 7vw, 112px) !important;
  line-height: 0.95 !important;
  text-align: center !important;
}

body.case-studies-page .impact-stories-hero p {
  max-width: 720px !important;
  margin: 0 auto !important;
  justify-self: center !important;
  color: #59636f !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.36 !important;
  font-weight: 600 !important;
  text-align: center !important;
}

body.case-studies-page .impact-story-library {
  width: min(calc(100% - clamp(28px, 6vw, 112px)), 1320px) !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.2vw, 32px) !important;
  align-items: stretch !important;
  margin: 0 auto clamp(86px, 8vw, 150px) !important;
}

body.case-studies-page .impact-story-card {
  min-height: clamp(560px, 42vw, 680px) !important;
  display: flex !important;
  flex-direction: column !important;
  position: static !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #e7f5e9 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body.case-studies-page .impact-story-card:nth-child(2) {
  background: #f4f1fa !important;
}

body.case-studies-page .impact-story-card:nth-child(3) {
  background: #dcedfb !important;
}

body.case-studies-page .impact-story-card:nth-child(4) {
  background: #fff2c6 !important;
}

body.case-studies-page .impact-story-card::after {
  display: none !important;
}

body.case-studies-page .impact-story-card img {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: clamp(260px, 24vw, 360px) !important;
  aspect-ratio: auto !important;
  flex: 0 0 auto !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  filter: saturate(0.9) contrast(0.96) brightness(1.02) !important;
}

body.case-studies-page .impact-story-card span {
  position: static !important;
  z-index: auto !important;
  width: fit-content !important;
  margin: clamp(22px, 2.3vw, 34px) clamp(22px, 2.8vw, 42px) 14px !important;
  border-radius: 999px !important;
  padding: 9px 12px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #202226 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.case-studies-page .impact-story-card h2 {
  position: static !important;
  z-index: auto !important;
  max-width: 650px !important;
  margin: 0 !important;
  padding: 0 clamp(22px, 2.8vw, 42px) clamp(30px, 3.2vw, 48px) !important;
  color: #202226 !important;
  font-size: clamp(34px, 3vw, 54px) !important;
  line-height: 0.98 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {
  body.case-studies-page .impact-story-library {
    grid-template-columns: 1fr !important;
  }

  body.case-studies-page .impact-story-card {
    min-height: 0 !important;
  }

  body.case-studies-page .impact-story-card img {
    height: clamp(210px, 58vw, 310px) !important;
  }

  body.case-studies-page .impact-story-card h2 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }
}

/* Retail impact story. */
.retail-case .case-study-cover > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.9)),
    #dcedfb !important;
}

.retail-case .case-study-cover aside {
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.04), rgba(16, 16, 16, 0.78)),
    url("assets/reflect-team-hero.jpg") center / cover no-repeat !important;
}

.retail-case .case-metric-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.retail-case .case-metric-trio div {
  min-height: 168px !important;
  padding: 18px !important;
}

.retail-case .case-metric-trio strong {
  display: block !important;
  margin-bottom: 8px !important;
  color: #202226 !important;
  font-size: clamp(28px, 2.4vw, 46px) !important;
  line-height: 0.95 !important;
  white-space: normal !important;
}

.retail-case .case-metric-trio span {
  font-weight: 600 !important;
}

.retail-context-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  grid-column: 1 / -1 !important;
}

.retail-context-stats article {
  min-height: 210px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border-radius: 8px !important;
  padding: clamp(24px, 2.7vw, 42px) !important;
  background: #ffffff !important;
}

.retail-context-stats strong {
  color: #202226 !important;
  font-size: clamp(58px, 5.8vw, 104px) !important;
  line-height: 0.95 !important;
  font-weight: 600 !important;
}

.retail-context-stats span {
  margin-top: 14px !important;
  color: #202226 !important;
  font-size: clamp(20px, 1.6vw, 30px) !important;
  font-weight: 600 !important;
}

.retail-business-context {
  grid-column: 1 / -1 !important;
  border-radius: 8px !important;
  padding: clamp(28px, 3vw, 48px) !important;
  background: #ffffff !important;
}

.retail-business-context h3,
.retail-linkage-grid h3,
.case-arrow-list h3 {
  margin: 0 0 18px !important;
  color: #202226 !important;
  font-size: clamp(28px, 2.2vw, 42px) !important;
  line-height: 1 !important;
  font-weight: 600 !important;
}

.retail-business-context ul {
  display: grid !important;
  gap: 14px !important;
  margin: 0 !important;
  padding-left: 24px !important;
}

.retail-business-context li {
  color: #202226 !important;
  font-size: clamp(19px, 1.4vw, 26px) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

.retail-subheading {
  grid-column: 1 / -1 !important;
}

.retail-subheading h2 {
  max-width: 1050px !important;
  color: #4774c6 !important;
  font-size: clamp(38px, 4vw, 72px) !important;
}

.retail-risk-grid {
  grid-column: 1 / -1 !important;
}

.retail-risk-grid article {
  min-height: clamp(280px, 24vw, 420px) !important;
}

.retail-question {
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
  background: #dcedfb !important;
  font-size: clamp(24px, 2vw, 36px) !important;
  font-weight: 600 !important;
}

.retail-reveal-copy {
  max-width: 1080px !important;
  margin: 0 !important;
  color: #202226 !important;
  font-size: clamp(22px, 1.75vw, 32px) !important;
  line-height: 1.36 !important;
  font-weight: 600 !important;
}

.retail-linkage-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  grid-column: 1 / -1 !important;
}

.retail-linkage-grid h3 {
  grid-column: 1 / -1 !important;
}

.retail-linkage-grid article {
  min-height: 230px !important;
  border-radius: 8px !important;
  padding: clamp(26px, 2.7vw, 42px) !important;
  background: #dcedfb !important;
}

.retail-linkage-grid article:nth-of-type(2) {
  background: #e7f5e9 !important;
}

.retail-linkage-grid article:nth-of-type(3) {
  background: #fff2c6 !important;
}

.retail-linkage-grid .retail-store-strain {
  grid-column: 1 / -1 !important;
  min-height: 0 !important;
  background: #f4f1fa !important;
}

.retail-linkage-grid h4 {
  margin: 0 0 18px !important;
  color: #202226 !important;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(32px, 2.8vw, 54px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 0.98 !important;
}

.retail-linkage-grid ul {
  display: grid !important;
  gap: 12px !important;
  margin: 0 !important;
  padding-left: 20px !important;
}

.retail-linkage-grid li {
  color: #202226 !important;
  font-size: clamp(18px, 1.3vw, 24px) !important;
  line-height: 1.38 !important;
  font-weight: 600 !important;
}

.case-arrow-list {
  display: grid !important;
  gap: 16px !important;
  grid-column: 1 / -1 !important;
  border-radius: 8px !important;
  padding: clamp(28px, 3vw, 48px) !important;
  background: #ffffff !important;
}

.case-arrow-list p {
  position: relative !important;
  margin: 0 !important;
  padding-left: clamp(44px, 5vw, 78px) !important;
  color: #202226 !important;
  font-size: clamp(20px, 1.55vw, 28px) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

.case-arrow-list p::before {
  content: "\2192" !important;
  position: absolute !important;
  left: 0 !important;
  top: -0.12em !important;
  color: #202226 !important;
  font-size: clamp(34px, 3vw, 52px) !important;
  line-height: 1 !important;
}

.retail-case > .case-section:nth-of-type(4) {
  background: #ffffff !important;
}

.retail-case > .case-section:nth-of-type(4) .case-section-heading > span {
  background: #ffffff !important;
  color: #202226 !important;
}

.retail-case > .case-section:nth-of-type(4) .case-section-heading h2 {
  color: #202226 !important;
}

.retail-implementation-list article {
  grid-template-columns: 92px minmax(240px, 0.46fr) minmax(0, 1fr) !important;
}

.case-action-table {
  display: grid !important;
  grid-column: 1 / -1 !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background: #ffffff !important;
}

.case-action-table > div {
  display: grid !important;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr) !important;
  gap: clamp(18px, 2.4vw, 38px) !important;
  border-bottom: 1px solid rgba(32, 34, 38, 0.08) !important;
  padding: clamp(22px, 2.6vw, 36px) !important;
  background: #ffffff !important;
}

.case-action-table > div:nth-child(even) {
  background: #f7f9fc !important;
}

.case-action-table > div:last-child {
  border-bottom: 0 !important;
}

.case-action-table strong {
  color: #202226 !important;
  font-size: clamp(19px, 1.3vw, 24px) !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}

.case-action-table p {
  margin: 0 !important;
  color: #202226 !important;
  font-size: clamp(18px, 1.28vw, 23px) !important;
  line-height: 1.45 !important;
  font-weight: 550 !important;
}

.case-action-table-heading {
  display: block !important;
  grid-template-columns: 1fr !important;
  text-align: center !important;
  background: #fff2c6 !important;
}

.case-action-table-heading p {
  max-width: 860px !important;
  margin: 0 auto !important;
  font-weight: 600 !important;
}

.retail-outcome-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.retail-outcome-stack article,
.retail-outcome-stack article:first-child {
  grid-row: auto !important;
  min-height: 360px !important;
}

.retail-outcome-stack article:first-child {
  background: #f7e8ee !important;
}

.retail-outcome-stack article:nth-child(2) {
  background: #dcedfb !important;
}

.retail-outcome-stack article:nth-child(3) {
  background: #e7f5e9 !important;
}

.retail-roi-callout {
  background: #d9e6fb !important;
}

.retail-leading-indicators > div {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.retail-leading-indicators article {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 230px !important;
  background: #ffffff !important;
}

.retail-leading-indicators h4 {
  margin: 12px 0 !important;
  color: #202226 !important;
  font-size: clamp(21px, 1.45vw, 28px) !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}

@media (max-width: 1100px) {
  .retail-case .case-metric-trio,
  .retail-context-stats,
  .retail-linkage-grid,
  .retail-outcome-stack,
  .retail-leading-indicators > div {
    grid-template-columns: 1fr !important;
  }

  .retail-linkage-grid .retail-store-strain {
    grid-column: auto !important;
  }

  .retail-implementation-list article,
  .case-action-table > div {
    grid-template-columns: 1fr !important;
  }
}

/* D2C Tech impact story. */
.d2c-case .case-study-cover > div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.9)),
    #f7e8ee !important;
}

.d2c-case .case-study-cover aside {
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.05), rgba(16, 16, 16, 0.8)),
    url("assets/reflect-dashboard.jpg") center / cover no-repeat !important;
}

.d2c-case .case-enabled span,
.d2c-case .case-study-cover .eyebrow-pill {
  background: #ffd8e8 !important;
}

.d2c-case .case-metric-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.d2c-case .case-metric-trio div {
  min-height: 172px !important;
  padding: 18px !important;
}

.d2c-case .case-metric-trio strong {
  display: block !important;
  margin-bottom: 8px !important;
  color: #202226 !important;
  font-size: clamp(27px, 2.25vw, 44px) !important;
  line-height: 0.98 !important;
  white-space: normal !important;
}

.d2c-case .case-metric-trio span {
  font-weight: 600 !important;
}

.d2c-context-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.d2c-context-stats article:nth-child(1) {
  background: #f7e8ee !important;
}

.d2c-context-stats article:nth-child(2) {
  background: #f4f1fa !important;
}

.d2c-context-stats article:nth-child(3) {
  background: #dcedfb !important;
}

.d2c-context-stats article:nth-child(4) {
  background: #e7f5e9 !important;
}

.d2c-business-context {
  background: #ffffff !important;
}

.d2c-subheading h2 {
  color: #553f7b !important;
}

.d2c-risk-grid article {
  min-height: clamp(270px, 22vw, 400px) !important;
}

.d2c-question,
.d2c-system-finding,
.d2c-note {
  background: #f7e8ee !important;
}

.d2c-linkage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.d2c-linkage-grid article {
  background: #f7cfe0 !important;
}

.d2c-linkage-grid article:nth-of-type(2) {
  background: #f4d5e3 !important;
}

.d2c-linkage-grid article:nth-of-type(3) {
  background: #f7cfe0 !important;
}

.d2c-linkage-grid h4 {
  font-family: "Geist", Arial, sans-serif !important;
  font-size: clamp(28px, 2.3vw, 42px) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
}

.d2c-correlation-note {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  color: #202226 !important;
  font-size: clamp(17px, 1.25vw, 22px) !important;
  line-height: 1.5 !important;
  font-style: italic !important;
}

.d2c-arrow-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  background: #ffffff !important;
}

.d2c-arrow-list h3 {
  grid-column: 1 / -1 !important;
}

.d2c-arrow-list p {
  min-height: 170px !important;
  border-radius: 8px !important;
  padding: clamp(54px, 4.5vw, 74px) clamp(22px, 2vw, 30px) clamp(22px, 2vw, 30px) !important;
  background: #f7f9fc !important;
}

.d2c-arrow-list p::before {
  top: clamp(18px, 1.8vw, 26px) !important;
  left: clamp(22px, 2vw, 30px) !important;
}

.d2c-case > .case-section:nth-of-type(4) {
  background: #ffffff !important;
}

.d2c-case > .case-section:nth-of-type(4) .case-section-heading > span {
  background: #ffffff !important;
  color: #202226 !important;
}

.d2c-case > .case-section:nth-of-type(4) .case-section-heading h2 {
  color: #202226 !important;
}

.d2c-implementation-list article {
  grid-template-columns: 92px minmax(260px, 0.48fr) minmax(0, 1fr) !important;
}

.d2c-implementation-list span {
  background: #f7cfe0 !important;
  color: #202226 !important;
}

.d2c-action-table .case-action-table-heading {
  background: #f7e8ee !important;
}

.d2c-outcome-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.d2c-outcome-stack article,
.d2c-outcome-stack article:first-child {
  grid-row: auto !important;
  min-height: 390px !important;
}

.d2c-outcome-stack article:first-child {
  background: #f7e8ee !important;
}

.d2c-outcome-stack article:nth-child(2) {
  background: #f4f1fa !important;
}

.d2c-outcome-stack article:nth-child(3) {
  background: #fff2c6 !important;
}

.d2c-roi-callout {
  background: #f6b8d2 !important;
}

.d2c-leading-indicators > p {
  margin: -4px 0 20px !important;
  color: #202226 !important;
  font-size: clamp(18px, 1.25vw, 23px) !important;
  line-height: 1.4 !important;
  font-style: italic !important;
}

.d2c-leading-indicators > div {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.d2c-leading-indicators article {
  min-height: 260px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #ffffff !important;
  text-align: center !important;
}

.d2c-leading-indicators h4 {
  margin: 14px 0 0 !important;
  color: #202226 !important;
  font-size: clamp(22px, 1.55vw, 30px) !important;
  line-height: 1.12 !important;
  font-weight: 600 !important;
}

.d2c-final-cta {
  min-height: clamp(460px, 48vw, 720px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7)),
    url("assets/reflect-meeting.jpg") center / cover no-repeat !important;
}

.d2c-final-cta h2 {
  margin: 22px 0 !important;
  color: #31588f !important;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(72px, 9vw, 150px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 0.9 !important;
}

.d2c-final-cta p {
  max-width: 940px !important;
  margin: 0 !important;
  color: #202226 !important;
  font-size: clamp(22px, 1.8vw, 34px) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

.d2c-final-cta span {
  width: fit-content !important;
  margin-top: 20px !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  background: #ffd8e8 !important;
  color: #202226 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1100px) {
  .d2c-case .case-metric-trio,
  .d2c-context-stats,
  .d2c-linkage-grid,
  .d2c-arrow-list,
  .d2c-outcome-stack,
  .d2c-leading-indicators > div {
    grid-template-columns: 1fr !important;
  }

  .d2c-implementation-list article {
    grid-template-columns: 1fr !important;
  }
}

/* Case story cleanup: keep Retail and D2C from feeling like oversized documents. */
.case-study-detail.retail-case,
.case-study-detail.d2c-case {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1240px) !important;
  gap: clamp(22px, 2.8vw, 38px) !important;
}

.retail-case .case-section,
.d2c-case .case-section {
  padding: clamp(30px, 4vw, 58px) !important;
}

.retail-case .case-section-heading h2,
.d2c-case .case-section-heading h2 {
  max-width: 980px !important;
  font-size: clamp(38px, 4.7vw, 74px) !important;
  line-height: 0.98 !important;
}

.retail-case .case-section-heading p,
.d2c-case .case-section-heading p,
.retail-reveal-copy {
  max-width: 940px !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.45 !important;
}

.retail-linkage-grid h4,
.d2c-linkage-grid h4 {
  font-family: "Geist", Arial, sans-serif !important;
  font-size: clamp(22px, 1.75vw, 32px) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
}

.retail-linkage-grid li,
.d2c-linkage-grid li,
.retail-business-context li {
  font-size: clamp(16px, 1.12vw, 19px) !important;
  line-height: 1.42 !important;
}

.retail-context-stats article,
.d2c-context-stats article {
  min-height: 160px !important;
}

.retail-context-stats strong,
.d2c-context-stats strong {
  font-size: clamp(42px, 4.6vw, 78px) !important;
}

.retail-risk-grid article,
.d2c-risk-grid article {
  min-height: 260px !important;
}

.retail-risk-grid h3,
.d2c-risk-grid h3 {
  margin-top: clamp(22px, 3vw, 44px) !important;
  font-size: clamp(24px, 1.9vw, 34px) !important;
}

.retail-risk-grid p,
.d2c-risk-grid p {
  font-size: clamp(16px, 1.12vw, 19px) !important;
}

.retail-question,
.d2c-question,
.d2c-system-finding {
  font-size: clamp(19px, 1.55vw, 27px) !important;
  line-height: 1.32 !important;
}

.retail-case .case-action-table,
.d2c-case .case-action-table {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 14px !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.retail-case .case-action-table > div,
.d2c-case .case-action-table > div {
  grid-column: span 6 !important;
  display: block !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: clamp(22px, 2.4vw, 34px) !important;
  background: #ffffff !important;
}

.retail-case .case-action-table > div:nth-child(2),
.d2c-case .case-action-table > div:nth-child(2) {
  background: #f7f9fc !important;
}

.retail-case .case-action-table > div:nth-child(3),
.d2c-case .case-action-table > div:nth-child(3) {
  background: #e7f5e9 !important;
}

.retail-case .case-action-table > div:nth-child(4),
.d2c-case .case-action-table > div:nth-child(4) {
  background: #dcedfb !important;
}

.retail-case .case-action-table-heading,
.d2c-case .case-action-table-heading {
  grid-column: 1 / -1 !important;
  min-height: 0 !important;
  padding: clamp(18px, 2vw, 26px) !important;
  text-align: left !important;
  background: #fff2c6 !important;
}

.d2c-case .case-action-table-heading {
  background: #f7e8ee !important;
}

.retail-case .case-action-table > div:nth-child(n + 6),
.d2c-case .case-action-table > div:nth-child(n + 6) {
  grid-column: span 4 !important;
  background: #ffffff !important;
}

.retail-case .case-action-table strong,
.d2c-case .case-action-table strong {
  display: block !important;
  margin: 0 0 12px !important;
  color: #202226 !important;
  font-size: clamp(17px, 1.15vw, 21px) !important;
  line-height: 1.18 !important;
  font-weight: 600 !important;
}

.retail-case .case-action-table p,
.d2c-case .case-action-table p {
  max-width: none !important;
  margin: 0 !important;
  color: #424b56 !important;
  font-size: clamp(15px, 1.05vw, 18px) !important;
  line-height: 1.5 !important;
  font-weight: 550 !important;
}

.retail-case .case-action-table-heading p,
.d2c-case .case-action-table-heading p {
  color: #202226 !important;
  font-size: clamp(18px, 1.22vw, 22px) !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.retail-case .case-note,
.d2c-case .case-note {
  font-size: clamp(17px, 1.18vw, 22px) !important;
  line-height: 1.35 !important;
}

.retail-outcome-stack article,
.d2c-outcome-stack article,
.retail-leading-indicators article,
.d2c-leading-indicators article {
  min-height: 0 !important;
}

.retail-outcome-stack article strong,
.d2c-outcome-stack article strong,
.retail-leading-indicators strong,
.d2c-leading-indicators strong {
  font-size: clamp(42px, 4.2vw, 72px) !important;
}

@media (max-width: 980px) {
  .retail-case .case-action-table,
  .d2c-case .case-action-table {
    grid-template-columns: 1fr !important;
  }

  .retail-case .case-action-table > div,
  .d2c-case .case-action-table > div,
  .retail-case .case-action-table > div:nth-child(n + 6),
  .d2c-case .case-action-table > div:nth-child(n + 6) {
    grid-column: 1 / -1 !important;
  }
}

/* Telecom partner network impact story */
.case-study-detail.telecom-case {
  --telecom-ink: #202226;
  --telecom-brown: #684728;
  --telecom-gold: #ffe2ae;
  --telecom-cream: #fff8ed;
  --telecom-soft: #f7f2ea;
  --telecom-blue: #e8f3fb;
  --telecom-green: #e9f7ec;
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1240px) !important;
  gap: clamp(22px, 2.8vw, 38px) !important;
}

.telecom-case .case-study-cover {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr) !important;
  gap: clamp(18px, 2.6vw, 34px) !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 226, 174, 0.86), transparent 34%),
    linear-gradient(135deg, #fffdf8, var(--telecom-cream)) !important;
}

.telecom-case .case-study-cover::before,
.telecom-case .case-study-cover::after {
  opacity: 0.22 !important;
}

.telecom-case .case-study-cover > div,
.telecom-case .case-study-cover aside {
  min-height: clamp(520px, 48vw, 720px) !important;
}

.telecom-case .case-study-cover > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(34px, 5vw, 72px) !important;
  background: transparent !important;
}

.telecom-case .case-study-cover .eyebrow-pill {
  width: fit-content !important;
  background: #ffedd1 !important;
  color: var(--telecom-brown) !important;
}

.telecom-case .case-study-cover h2 {
  max-width: 780px !important;
  color: var(--telecom-brown) !important;
  font-size: clamp(42px, 5.8vw, 88px) !important;
  line-height: 0.98 !important;
}

.telecom-case .case-study-cover > div > p {
  max-width: 680px !important;
  color: #3f4650 !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.5 !important;
  font-weight: 550 !important;
}

.telecom-case .case-study-cover aside {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  gap: clamp(22px, 3vw, 36px) !important;
  padding: clamp(28px, 4vw, 54px) !important;
  background:
    linear-gradient(180deg, rgba(32, 34, 38, 0.08), rgba(32, 34, 38, 0.84)),
    url("assets/reflect-meeting.jpg") center / cover no-repeat !important;
  color: #ffffff !important;
}

.telecom-case .case-study-cover aside > p {
  max-width: 760px !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(22px, 2.2vw, 34px) !important;
  line-height: 1.22 !important;
  font-weight: 600 !important;
}

.telecom-case .case-metric-trio {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin: 0 !important;
}

.telecom-case .case-metric-trio div {
  min-height: 190px !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  border-radius: 10px !important;
  padding: clamp(18px, 2vw, 26px) !important;
  background: rgba(255, 248, 237, 0.88) !important;
  color: var(--telecom-ink) !important;
}

.telecom-case .case-metric-trio strong {
  display: block !important;
  color: var(--telecom-brown) !important;
  font-size: clamp(31px, 3.5vw, 56px) !important;
  line-height: 0.96 !important;
  font-weight: 600 !important;
}

.telecom-case .case-metric-trio span {
  display: block !important;
  margin-top: 10px !important;
  color: var(--telecom-ink) !important;
  font-size: clamp(16px, 1.05vw, 19px) !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
}

.telecom-case .case-metric-trio p {
  margin-top: 10px !important;
  color: #4b5360 !important;
  font-size: clamp(14px, 0.98vw, 17px) !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

.telecom-case .case-study-cover aside > b {
  width: fit-content !important;
  border-radius: 8px !important;
  padding: 13px 16px !important;
  background: #fff !important;
  color: var(--telecom-brown) !important;
  font-size: clamp(17px, 1.25vw, 22px) !important;
  font-weight: 600 !important;
}

.telecom-case .case-image-strip {
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
}

.telecom-case .case-image-strip img {
  min-height: clamp(260px, 28vw, 390px) !important;
  object-fit: cover !important;
}

.telecom-case .case-section {
  border: 0 !important;
  border-radius: 12px !important;
  padding: clamp(30px, 4vw, 58px) !important;
  background: #ffffff !important;
}

.telecom-context-section,
.telecom-outcomes-section {
  background: linear-gradient(135deg, #fffdf8, var(--telecom-cream)) !important;
}

.telecom-reveal-section,
.telecom-implementation-section {
  background: #fbfaf7 !important;
}

.telecom-case .case-section-heading h2 {
  max-width: 980px !important;
  color: var(--telecom-brown) !important;
  font-size: clamp(38px, 4.7vw, 74px) !important;
  line-height: 0.98 !important;
}

.telecom-case .case-section-heading p,
.telecom-reveal-copy {
  max-width: 980px !important;
  color: #4b5360 !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.telecom-context-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.telecom-context-stats article {
  min-height: 160px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.telecom-context-stats strong {
  color: var(--telecom-brown) !important;
  font-size: clamp(42px, 4.6vw, 78px) !important;
}

.telecom-business-context {
  border-radius: 10px !important;
  padding: clamp(24px, 3vw, 36px) !important;
  background: #ffffff !important;
}

.telecom-business-context h3,
.telecom-subheading h2 {
  color: var(--telecom-brown) !important;
}

.telecom-business-context li {
  color: #343b45 !important;
  font-size: clamp(16px, 1.12vw, 19px) !important;
  line-height: 1.42 !important;
}

.telecom-risk-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.telecom-risk-grid article {
  min-height: 0 !important;
  display: block !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: clamp(24px, 2.7vw, 36px) !important;
  box-shadow: inset 0 0 0 1px rgba(104, 71, 40, 0.12) !important;
}

.telecom-risk-grid article::before {
  display: none !important;
}

.telecom-risk-grid .risk-yellow {
  background: #fff2c6 !important;
}

.telecom-risk-grid .risk-blue {
  background: #e8f3fb !important;
}

.telecom-risk-grid .risk-red {
  background: #f7e8ee !important;
}

.telecom-risk-grid h3 {
  margin: 0 0 14px !important;
  color: #202226 !important;
  font-family: "Geist", Arial, sans-serif !important;
  font-size: clamp(24px, 1.9vw, 34px) !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}

.telecom-risk-grid p,
.telecom-question {
  color: #3f4650 !important;
  font-size: clamp(16px, 1.12vw, 19px) !important;
  line-height: 1.45 !important;
}

.telecom-question {
  border: 0 !important;
  border-radius: 10px !important;
  padding: clamp(22px, 2.4vw, 32px) !important;
  background: #fff !important;
  color: var(--telecom-brown) !important;
  font-size: clamp(19px, 1.55vw, 27px) !important;
  line-height: 1.32 !important;
  font-weight: 600 !important;
}

.telecom-driver-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  margin-top: clamp(24px, 3vw, 42px) !important;
}

.telecom-driver-column {
  display: grid !important;
  gap: 12px !important;
}

.telecom-driver-column h3 {
  margin: 0 0 4px !important;
  color: var(--telecom-brown) !important;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(30px, 3vw, 48px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.telecom-driver-column article {
  border-radius: 10px !important;
  padding: clamp(22px, 2.2vw, 30px) !important;
  background: #ffffff !important;
  box-shadow: inset 6px 0 0 var(--telecom-gold) !important;
}

.telecom-driver-column h4 {
  margin: 0 0 12px !important;
  color: #202226 !important;
  font-size: clamp(20px, 1.55vw, 28px) !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}

.telecom-driver-column p,
.telecom-correlation-note {
  margin: 0 !important;
  color: #4b5360 !important;
  font-size: clamp(15px, 1.06vw, 18px) !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.telecom-driver-column p + p {
  margin-top: 5px !important;
}

.telecom-correlation-note {
  margin-top: clamp(20px, 2vw, 30px) !important;
  max-width: 900px !important;
}

.telecom-arrow-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: clamp(30px, 4vw, 56px) !important;
}

.telecom-arrow-list h3 {
  grid-column: 1 / -1 !important;
  color: var(--telecom-brown) !important;
}

.telecom-arrow-list p {
  min-height: 190px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #202226 !important;
}

.telecom-outcome-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.telecom-outcome-stack article {
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: clamp(24px, 3vw, 38px) !important;
  background: #ffffff !important;
}

.telecom-outcome-stack article:nth-child(1) {
  background: #f7e8ee !important;
}

.telecom-outcome-stack article:nth-child(2) {
  background: #fff2c6 !important;
}

.telecom-outcome-stack article:nth-child(3) {
  background: #e8f3fb !important;
}

.telecom-outcome-stack article strong {
  color: #202226 !important;
  font-size: clamp(42px, 4.2vw, 72px) !important;
  line-height: 0.92 !important;
}

.telecom-outcome-stack h3 {
  color: #202226 !important;
  font-size: clamp(21px, 1.5vw, 28px) !important;
}

.telecom-outcome-stack li {
  color: #404956 !important;
  font-size: clamp(15px, 1.06vw, 18px) !important;
  line-height: 1.42 !important;
}

.telecom-roi-callout {
  display: block !important;
  border-radius: 10px !important;
  padding: clamp(24px, 3vw, 38px) !important;
  background: var(--telecom-gold) !important;
  color: #202226 !important;
  font-size: clamp(20px, 1.55vw, 28px) !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}

.telecom-roi-callout strong {
  display: block !important;
  margin-bottom: 6px !important;
  color: var(--telecom-brown) !important;
  font-weight: 600 !important;
}

.telecom-leading-indicators {
  margin-top: clamp(30px, 4vw, 52px) !important;
}

.telecom-leading-indicators h3 {
  color: var(--telecom-brown) !important;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(34px, 3.4vw, 56px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.telecom-leading-indicators > div {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.telecom-leading-indicators article {
  min-height: 0 !important;
  border-radius: 10px !important;
  padding: clamp(22px, 2.4vw, 32px) !important;
  background: #ffffff !important;
}

.telecom-leading-indicators h4 {
  margin: 0 0 12px !important;
  color: #202226 !important;
  font-size: clamp(20px, 1.5vw, 28px) !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}

.telecom-leading-indicators p {
  margin: 0 !important;
  color: #4b5360 !important;
  font-size: clamp(15px, 1.06vw, 18px) !important;
  line-height: 1.44 !important;
  font-weight: 550 !important;
}

.telecom-implementation-list {
  display: grid !important;
  gap: 16px !important;
}

.telecom-implementation-list article {
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: start !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: clamp(22px, 2.8vw, 36px) !important;
  background: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(104, 71, 40, 0.1) !important;
}

.telecom-implementation-list article span {
  display: flex !important;
  width: 60px !important;
  height: 60px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #ffedd1 !important;
  color: var(--telecom-brown) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.telecom-implementation-list h3 {
  margin: 0 0 10px !important;
  color: #202226 !important;
  font-size: clamp(22px, 1.65vw, 32px) !important;
  line-height: 1.08 !important;
  font-weight: 600 !important;
}

.telecom-implementation-list p {
  margin: 0 !important;
  color: #4b5360 !important;
  font-size: clamp(16px, 1.13vw, 19px) !important;
  line-height: 1.5 !important;
  font-weight: 550 !important;
}

.telecom-case .case-action-table {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 14px !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.telecom-case .case-action-table > div {
  grid-column: span 6 !important;
  display: block !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: clamp(22px, 2.4vw, 34px) !important;
  background: #ffffff !important;
}

.telecom-case .case-action-table > div:nth-child(2) {
  background: #fff8ed !important;
}

.telecom-case .case-action-table > div:nth-child(3) {
  background: #e8f3fb !important;
}

.telecom-case .case-action-table > div:nth-child(4) {
  background: #e9f7ec !important;
}

.telecom-case .case-action-table-heading {
  grid-column: 1 / -1 !important;
  min-height: 0 !important;
  padding: clamp(18px, 2vw, 26px) !important;
  text-align: left !important;
  background: var(--telecom-gold) !important;
}

.telecom-case .case-action-table > div:nth-child(n + 6) {
  grid-column: span 4 !important;
  background: #ffffff !important;
}

.telecom-case .case-action-table strong {
  display: block !important;
  margin: 0 0 12px !important;
  color: #202226 !important;
  font-size: clamp(17px, 1.15vw, 21px) !important;
  line-height: 1.18 !important;
  font-weight: 600 !important;
}

.telecom-case .case-action-table p {
  max-width: none !important;
  margin: 0 !important;
  color: #424b56 !important;
  font-size: clamp(15px, 1.05vw, 18px) !important;
  line-height: 1.5 !important;
  font-weight: 550 !important;
}

.telecom-case .case-action-table-heading p {
  color: #202226 !important;
  font-size: clamp(18px, 1.22vw, 22px) !important;
  font-weight: 600 !important;
}

.telecom-note {
  border: 0 !important;
  border-radius: 10px !important;
  background: var(--telecom-gold) !important;
  color: #202226 !important;
  font-size: clamp(17px, 1.18vw, 22px) !important;
  line-height: 1.35 !important;
}

.telecom-final-cta {
  min-height: clamp(460px, 48vw, 720px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.68)),
    url("assets/challenge-bg.jpg") center / cover no-repeat !important;
}

.telecom-final-cta h2 {
  margin: 22px 0 !important;
  color: #31588f !important;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif !important;
  font-size: clamp(72px, 9vw, 150px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 0.9 !important;
}

.telecom-final-cta p {
  max-width: 940px !important;
  margin: 0 !important;
  color: #202226 !important;
  font-size: clamp(22px, 1.8vw, 34px) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

.telecom-final-cta span {
  width: fit-content !important;
  margin-top: 20px !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  background: #ffedd1 !important;
  color: #202226 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1100px) {
  .telecom-case .case-study-cover,
  .telecom-context-stats,
  .telecom-risk-grid,
  .telecom-driver-grid,
  .telecom-arrow-list,
  .telecom-outcome-stack,
  .telecom-leading-indicators > div {
    grid-template-columns: 1fr !important;
  }

  .telecom-case .case-study-cover > div,
  .telecom-case .case-study-cover aside {
    min-height: 0 !important;
  }

  .telecom-case .case-metric-trio {
    grid-template-columns: 1fr !important;
  }

  .telecom-case .case-metric-trio div {
    min-height: 0 !important;
  }

  .telecom-implementation-list article {
    grid-template-columns: 1fr !important;
  }

  .telecom-implementation-list article span {
    width: 52px !important;
    height: 52px !important;
  }
}

@media (max-width: 980px) {
  .telecom-case .case-action-table {
    grid-template-columns: 1fr !important;
  }

  .telecom-case .case-action-table > div,
  .telecom-case .case-action-table > div:nth-child(n + 6) {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 680px) {
  .case-study-detail.telecom-case {
    width: min(calc(100% - 28px), 1240px) !important;
  }

  .telecom-case .case-study-cover h2,
  .telecom-case .case-section-heading h2 {
    font-size: clamp(34px, 12vw, 52px) !important;
  }

  .telecom-case .case-study-cover aside > p {
    font-size: clamp(19px, 6vw, 26px) !important;
  }

  .telecom-case .case-image-strip {
    grid-template-columns: 1fr !important;
  }

  .telecom-case .case-image-strip img {
    min-height: 220px !important;
  }

  .telecom-final-cta h2 {
    font-size: clamp(62px, 20vw, 96px) !important;
  }
}

/* Final brand logo polish across header and footer */
.site-header .brand {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: flex-start !important;
  max-width: min(38vw, 380px) !important;
  padding: 8px 0 !important;
}

.site-header .brand img {
  width: clamp(260px, 18vw, 360px) !important;
  max-width: 100% !important;
  max-height: 78px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.footer-logo {
  width: min(430px, 100%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 0 30px !important;
}

.footer-logo img,
.footer-brand .footer-logo img {
  width: 100% !important;
  max-width: 430px !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.site-header .brand:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid #222222 !important;
  outline-offset: 6px !important;
  border-radius: 8px !important;
}

@media (max-width: 680px) {
  .site-header .brand {
    max-width: min(66vw, 260px) !important;
  }

  .site-header .brand img {
    width: min(220px, 62vw) !important;
    max-height: 60px !important;
  }

  .footer-logo {
    width: min(310px, 100%) !important;
    margin-bottom: 24px !important;
  }
}

/* Impact story summary pages */
body.story-summary-page {
  background: #ffffff;
}

.story-summary-page main {
  background: #ffffff;
}

.story-summary-shell {
  width: min(calc(100% - clamp(32px, 6vw, 112px)), 1460px);
  min-height: clamp(680px, 72vh, 900px);
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: start;
  margin: clamp(32px, 5vw, 80px) auto clamp(80px, 8vw, 140px);
}

.story-summary-card {
  position: sticky;
  top: 24px;
  display: grid;
  gap: clamp(22px, 2.6vw, 36px);
}

.story-summary-card > img {
  width: 100%;
  aspect-ratio: 1 / 0.94;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: none;
}

.story-summary-card p {
  max-width: 620px;
  margin: 0;
  color: #4f5965;
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.story-summary-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
  margin: 0;
}

.story-summary-card div {
  min-height: 80px;
}

.story-summary-card dt {
  margin: 0 0 5px;
  color: #202226;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.2;
  font-weight: 600;
}

.story-summary-card dd {
  margin: 0;
  color: #56616d;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.22;
  font-weight: 600;
}

.story-summary-product-logo {
  display: block;
  width: min(190px, 100%);
  height: auto;
  max-height: 52px;
  margin-top: 1px;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  box-shadow: none;
}

/* Final nav weight tuning: inactive stays light, current page stays bold. */
.main-nav,
body.reflect-page .main-nav,
body.embark-page .main-nav,
body.consult-page .main-nav {
  font-weight: 550 !important;
}

.main-nav > a,
.nav-trigger,
.header-actions > a:not(.button),
body.consult-page .main-nav > a,
body.consult-page .header-actions > a:not(.button) {
  color: #5d6671 !important;
  font-weight: 550 !important;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-menu:hover .nav-trigger,
.nav-menu:focus-within .nav-trigger,
.header-actions > a:not(.button):hover,
.header-actions > a:not(.button):focus-visible {
  color: #232323 !important;
  font-weight: 600 !important;
}

.main-nav > a.is-current,
.nav-trigger.is-current,
body.consult-page .main-nav > a.is-current {
  color: #232323 !important;
  font-weight: 600 !important;
}

.main-nav > a.is-current:hover,
.main-nav > a.is-current:focus-visible,
.nav-trigger.is-current:hover,
.nav-trigger.is-current:focus-visible {
  color: #232323 !important;
  font-weight: 600 !important;
}

.story-summary-copy {
  padding-top: clamp(4px, 1vw, 16px);
}

.story-summary-copy .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border: 1px solid #dfe6ee;
  border-radius: 999px;
  padding: 0 16px;
  background: #ffffff;
  color: #4f5965;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.story-summary-copy h1 {
  max-width: 940px;
  margin: clamp(24px, 3.2vw, 46px) 0 clamp(22px, 2.4vw, 34px);
  color: #202226;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(54px, 6.2vw, 104px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.story-summary-lead {
  max-width: 880px;
  margin: 0;
  color: #4f5965;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.28;
  font-weight: 600;
}

.story-summary-copy hr {
  width: 100%;
  height: 1px;
  margin: clamp(42px, 5vw, 72px) 0;
  border: 0;
  background: #dfe6ee;
}

.story-summary-copy h2 {
  margin: 0 0 18px;
  color: #202226;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.story-summary-copy > p:not(.story-summary-lead) {
  max-width: 900px;
  margin: 0;
  color: #4f5965;
  font-size: clamp(18px, 1.38vw, 25px);
  line-height: 1.45;
  font-weight: 550;
}

.story-summary-points {
  display: grid;
  gap: 12px;
  margin: clamp(26px, 3vw, 42px) 0;
}

.story-summary-points p {
  position: relative;
  margin: 0;
  border-radius: 10px;
  padding: 18px 18px 18px 54px;
  background: #f7f9fc;
  color: #202226;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.35;
  font-weight: 600;
}

.story-summary-points p::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 24px;
  left: 24px;
  border-radius: 50%;
  background: #202226;
}

.story-summary-button {
  width: fit-content;
  margin-top: 4px;
  padding-inline: 26px;
}

.story-summary-green .story-summary-card > img,
.story-summary-green .story-summary-points p {
  background-color: #edf7ed;
}

.story-summary-blue .story-summary-card > img,
.story-summary-blue .story-summary-points p {
  background-color: #eaf2fa;
}

.story-summary-pink .story-summary-card > img,
.story-summary-pink .story-summary-points p {
  background-color: #f7e8ee;
}

.story-summary-yellow .story-summary-card > img,
.story-summary-yellow .story-summary-points p {
  background-color: #fff7e6;
}

.story-summary-green .story-summary-copy .eyebrow-pill {
  background: #edf7ed;
}

.story-summary-blue .story-summary-copy .eyebrow-pill {
  background: #eaf2fa;
}

.story-summary-pink .story-summary-copy .eyebrow-pill {
  background: #f7e8ee;
}

.story-summary-yellow .story-summary-copy .eyebrow-pill {
  background: #fff7e6;
}

@media (max-width: 1040px) {
  .story-summary-shell {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .story-summary-card {
    position: static;
  }

  .story-summary-card > img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .story-summary-shell {
    width: min(calc(100% - 28px), 1460px);
    margin-top: 24px;
  }

  .story-summary-card dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-summary-card p {
    font-size: clamp(20px, 6vw, 28px);
  }

  .story-summary-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .story-summary-lead {
    font-size: clamp(19px, 5.5vw, 25px);
  }

  .story-summary-button {
    width: 100%;
  }
}

/* ATP style guide page. */
body.style-guide-page {
  background: #ffffff;
}

body.style-guide-page main {
  width: min(calc(100% - clamp(40px, 8vw, 160px)), 1420px);
  margin: 0 auto clamp(60px, 7vw, 110px);
}

.style-guide-hero {
  width: 100%;
  margin: clamp(42px, 5vw, 78px) auto clamp(18px, 2.5vw, 34px);
  padding: clamp(46px, 6vw, 92px);
  overflow: hidden;
  border: 1px solid rgba(32, 34, 38, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(234, 242, 250, 0.52) 100%),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  text-align: left;
}

.style-guide-hero h1 {
  max-width: 920px;
  margin: 18px 0 18px;
  color: #242424;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(70px, 7vw, 118px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.style-guide-hero p {
  max-width: 820px;
  margin: 0;
  color: #56616d;
  font-size: clamp(19px, 1.35vw, 25px);
  line-height: 1.42;
  font-weight: 600;
}

.style-guide-section {
  width: 100%;
  margin: 0 auto 16px;
  padding: clamp(30px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  border: 1px solid rgba(32, 34, 38, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.style-guide-section aside h2 {
  margin: 0 0 14px;
  color: #242424;
  font-size: clamp(24px, 1.6vw, 34px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.style-guide-section aside p {
  max-width: 280px;
  margin: 0;
  color: #4f5965;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
  font-weight: 550;
}

.style-guide-logo-grid,
.style-guide-card-grid,
.style-guide-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.style-guide-logo-grid div,
.style-guide-card,
.style-guide-rules article {
  min-height: 168px;
  border-radius: 10px;
  padding: clamp(24px, 2.4vw, 34px);
  background: #f7f9fc;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.04);
}

.style-guide-logo-grid div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.style-guide-logo-grid img {
  width: min(280px, 100%);
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
}

.style-guide-logo-grid span,
.style-guide-card span,
.style-guide-rules h3 {
  color: #222222;
  font-size: 15px;
  font-weight: 600;
}

.style-guide-swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.swatch {
  min-height: 146px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  border-radius: 8px;
  padding: 18px;
  background: var(--swatch);
  color: #242424;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.06);
}

.swatch-white {
  --swatch: #ffffff;
}

.swatch-panel {
  --swatch: #f3f2f0;
}

.swatch-muted {
  --swatch: #56616d;
}

.swatch-ink {
  --swatch: #222222;
}

.swatch-green {
  --swatch: #edf7ed;
}

.swatch-blue {
  --swatch: #eaf2fa;
}

.swatch-yellow {
  --swatch: #fff7e6;
}

.swatch-pink {
  --swatch: #f7e8ee;
}

.swatch-purple {
  --swatch: #f3ebf5;
}

.swatch-peach {
  --swatch: #faebe5;
}

.swatch:nth-child(3),
.swatch:nth-child(4) {
  color: #ffffff;
}

.swatch b {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 600;
}

.swatch span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.78;
}

.style-guide-type h3 {
  max-width: 860px;
  margin: 0 0 28px;
  color: #242424;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(58px, 6vw, 112px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.style-guide-type h4 {
  margin: 0 0 30px;
  color: #242424;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(38px, 3.6vw, 70px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.style-guide-type p {
  max-width: 820px;
  margin: 0 0 18px;
  color: #4f5965;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 550;
}

.style-guide-type .large {
  color: #56616d;
  font-size: clamp(24px, 1.8vw, 34px);
  line-height: 1.25;
  font-weight: 600;
}

.style-guide-type .small {
  font-size: 14px;
  font-weight: 600;
}

.style-guide-components {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 10px;
  background: rgba(247, 249, 252, 0.86);
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.04);
}

.style-guide-ai {
  width: min(520px, 100%);
  margin-top: 0;
}

.style-guide-card {
  display: grid;
  align-content: end;
  min-height: 276px;
}

.style-guide-card.pastel-green {
  background: #edf7ed;
}

.style-guide-card.pastel-blue {
  background: #eaf2fa;
}

.style-guide-card.pastel-yellow {
  background: #fff7e6;
}

.style-guide-card.pastel-pink {
  background: #f7e8ee;
}

.style-guide-card span {
  align-self: start;
  color: #4f5965;
  font-size: 42px;
  line-height: 1;
}

.style-guide-card h3 {
  margin: 0 0 12px;
  color: #242424;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.style-guide-card p,
.style-guide-rules p {
  margin: 0;
  color: #56616d;
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.35;
  font-weight: 600;
}

.style-guide-impact-demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 10px;
  background: #edf7ed;
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.06);
}

.style-guide-impact-demo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 460px;
  object-fit: cover;
}

.style-guide-impact-demo > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 4vw, 58px);
}

.style-guide-impact-demo h3 {
  max-width: 620px;
  margin: 0;
  color: #242424;
  font-size: clamp(30px, 2.35vw, 46px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.style-guide-impact-demo p {
  max-width: 560px;
  margin: 0;
  color: #56616d;
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.42;
  font-weight: 600;
}

.style-guide-impact-demo .button {
  width: fit-content;
}

.style-guide-form {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 2.4vw, 34px);
  border-radius: 10px;
  background: rgba(247, 249, 252, 0.86);
  box-shadow: inset 0 0 0 1px rgba(32, 34, 38, 0.04);
}

.style-guide-form label {
  display: grid;
  gap: 10px;
  color: #242424;
  font-size: 15px;
  font-weight: 600;
}

.style-guide-form input[type="text"],
.style-guide-form select,
.style-guide-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  padding: 0 18px;
  color: #242424;
  background: #ffffff;
  font: 560 17px/1.35 var(--sans);
}

.style-guide-form textarea {
  min-height: 190px;
  padding-block: 16px;
  resize: vertical;
}

.style-guide-form input:focus,
.style-guide-form select:focus,
.style-guide-form textarea:focus {
  outline: 2px solid #cfe8d4;
  outline-offset: 2px;
}

.style-guide-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.style-guide-checks label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.style-guide-rules article {
  min-height: 210px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #e9ecef;
}

.style-guide-rules h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

@media (max-width: 980px) {
  .style-guide-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .style-guide-section aside p {
    max-width: 760px;
  }

  .style-guide-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-guide-impact-demo {
    grid-template-columns: 1fr;
  }

  .style-guide-impact-demo img {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  body.style-guide-page main {
    width: min(calc(100% - 28px), 1420px);
  }

  .style-guide-hero,
  .style-guide-section {
    padding: 24px;
  }

  .style-guide-logo-grid,
  .style-guide-card-grid,
  .style-guide-rules,
  .style-guide-swatches {
    grid-template-columns: 1fr;
  }

  .style-guide-card {
    min-height: 270px;
  }

  .style-guide-impact-demo .button,
  .style-guide-components .button {
    width: 100%;
  }
}

/* Legal pages. */
body.legal-page {
  background: #ffffff;
}

.legal-shell {
  width: min(calc(100% - clamp(36px, 9vw, 180px)), 1280px);
  margin: 0 auto;
}

.legal-hero {
  max-width: 820px;
  margin: clamp(68px, 8vw, 130px) auto clamp(52px, 6vw, 96px);
}

.legal-hero h1 {
  margin: 0 0 18px;
  color: #242424;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(72px, 7.2vw, 132px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-hero p {
  margin: 0;
  color: #4f5965;
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1.35;
  font-weight: 550;
}

.legal-updated {
  width: fit-content;
  display: inline-flex;
  margin-top: 24px;
  border: 1px solid #d7dde6;
  border-radius: 999px;
  padding: 6px 13px;
  color: #4f5965;
  background: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: center;
  gap: clamp(42px, 6vw, 94px);
  padding-bottom: clamp(90px, 10vw, 150px);
}

.legal-toc {
  position: sticky;
  top: 28px;
  align-self: start;
  display: grid;
  gap: 14px;
  border-top: 1px solid #e6e9ee;
  padding-top: 20px;
}

.legal-toc h2 {
  margin: 0 0 6px;
  color: #242424;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
}

.legal-toc a {
  color: #56616d;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #242424;
}

.legal-article {
  border-top: 1px solid #dfe4ea;
  padding-top: clamp(34px, 4vw, 58px);
}

.legal-section {
  padding: 0 0 clamp(34px, 4vw, 58px);
}

.legal-section h2 {
  margin: 0 0 18px;
  color: #242424;
  font-size: clamp(25px, 1.8vw, 34px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.legal-section h3 {
  margin: 28px 0 12px;
  color: #242424;
  font-size: clamp(19px, 1.3vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}

.legal-section p,
.legal-section li {
  margin: 0 0 18px;
  color: #4f5965;
  font-size: clamp(16px, 1.06vw, 18px);
  line-height: 1.58;
  font-weight: 550;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 22px;
  padding-left: 1.25rem;
}

.legal-section li {
  padding-left: 0.25rem;
}

.legal-callout {
  margin: 24px 0;
  border-radius: 10px;
  padding: clamp(22px, 2.4vw, 32px);
  background: #edf7ed;
}

.legal-callout p:last-child,
.legal-section p:last-child,
.legal-section li:last-child {
  margin-bottom: 0;
}

.legal-email {
  color: #07145d;
  font-weight: 600;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .legal-shell {
    width: min(calc(100% - 28px), 1280px);
  }

  .legal-hero {
    margin-top: 50px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

/* Impact Stories gallery: compact customer-story cards. */
body.case-studies-page .impact-stories-hero {
  width: min(calc(100% - clamp(28px, 7vw, 150px)), 1480px) !important;
  margin: clamp(46px, 6vw, 96px) auto clamp(38px, 4vw, 70px) !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  text-align: center !important;
}

body.case-studies-page .impact-stories-hero > span {
  justify-self: center !important;
  background: #f7f9fc !important;
  box-shadow: inset 0 0 0 1px #e6e9ee !important;
}

body.case-studies-page .impact-stories-hero h1 {
  max-width: 960px !important;
  margin: 18px auto 16px !important;
  font-family: "Happy Times", Georgia, serif !important;
  font-size: clamp(58px, 7vw, 116px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 0.96 !important;
  text-align: center !important;
}

body.case-studies-page .impact-stories-hero p {
  max-width: 740px !important;
  margin: 0 auto !important;
  color: #59636f !important;
  font-size: clamp(18px, 1.25vw, 23px) !important;
  line-height: 1.38 !important;
  font-weight: 600 !important;
  text-align: center !important;
}

body.case-studies-page .impact-story-library {
  width: min(calc(100% - clamp(28px, 7vw, 150px)), 1480px) !important;
  margin: 0 auto clamp(86px, 8vw, 150px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2vw, 34px) !important;
  align-items: stretch !important;
}

body.case-studies-page .impact-story-card {
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  position: static !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 1px solid #e6e9ee !important;
  border-radius: 10px !important;
  padding: clamp(18px, 1.4vw, 22px) !important;
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(32, 34, 38, 0.055) !important;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

body.case-studies-page .impact-story-card:hover,
body.case-studies-page .impact-story-card:focus-visible {
  border-color: #d7dde6 !important;
  box-shadow: 0 12px 28px rgba(32, 34, 38, 0.08) !important;
  filter: none !important;
  outline: none !important;
  transform: translateY(-3px) !important;
}

body.case-studies-page .impact-story-card::after {
  display: none !important;
}

body.case-studies-page .impact-story-card img {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.16 / 1 !important;
  display: block !important;
  flex: 0 0 auto !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  filter: saturate(0.9) contrast(0.96) brightness(1.02) !important;
}

body.case-studies-page .impact-story-card span {
  position: static !important;
  z-index: auto !important;
  width: fit-content !important;
  margin: 24px 0 12px !important;
  border-radius: 999px !important;
  padding: 6px 10px !important;
  background: #f7f9fc !important;
  color: #5a6470 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.case-studies-page .impact-story-card h2 {
  position: static !important;
  z-index: auto !important;
  max-width: none !important;
  min-height: 3.15em !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  color: #202226 !important;
  font-size: clamp(25px, 1.9vw, 34px) !important;
  line-height: 1.08 !important;
  font-weight: 600 !important;
  letter-spacing: -0.035em !important;
}

body.case-studies-page .impact-story-cta {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid #e2e7ed;
  border-radius: 8px;
  padding: 0 18px;
  background: #ffffff;
  color: #202226;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 1080px) {
  body.case-studies-page .impact-story-library {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.case-studies-page .impact-story-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  body.case-studies-page .impact-stories-hero,
  body.case-studies-page .impact-story-library {
    width: min(calc(100% - 28px), 1480px) !important;
  }

  body.case-studies-page .impact-story-library {
    grid-template-columns: 1fr !important;
  }

  body.case-studies-page .impact-story-card {
    padding: 14px !important;
  }

  body.case-studies-page .impact-story-card img {
    aspect-ratio: 1.32 / 1 !important;
  }

body.case-studies-page .impact-story-card h2 {
    min-height: 0 !important;
    font-size: clamp(25px, 7.6vw, 34px) !important;
  }
}

/* Solutions page: one clear solution per row, built for scrolling. */
body.solutions-page .solutions-tab-section {
  width: min(calc(100% - clamp(28px, 7vw, 150px)), 1320px) !important;
  padding-top: clamp(52px, 6vw, 92px) !important;
}

body.solutions-page .solutions-page-heading {
  max-width: 900px !important;
  margin-bottom: clamp(36px, 4vw, 58px) !important;
}

body.solutions-page .solutions-tab-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: clamp(18px, 2vw, 28px) !important;
}

body.solutions-page .solutions-tab-list article {
  position: relative !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(32, 34, 38, 0.08) !important;
  border-radius: 10px !important;
  background: #edf7ed !important;
  box-shadow: none !important;
  transform: none !important;
}

body.solutions-page .solutions-tab-list article:nth-child(2) {
  background: #f3ebf5 !important;
}

body.solutions-page .solutions-tab-list article:nth-child(3) {
  background: #eaf2fa !important;
}

body.solutions-page .solutions-tab-list article:nth-child(4) {
  background: #fff7e6 !important;
}

body.solutions-page .solutions-tab-list article:nth-child(5) {
  background: #f7e8ee !important;
}

body.solutions-page .solutions-tab-list article:nth-child(6) {
  background: #faebe5 !important;
}

body.solutions-page .solutions-tab-list article:hover,
body.solutions-page .solutions-tab-list article:focus-within {
  border-color: rgba(32, 34, 38, 0.16) !important;
  box-shadow: none !important;
  transform: none !important;
}

body.solutions-page .solutions-tab-list article:not(.is-open),
body.solutions-page .solutions-tab-list article:not(.is-open) .solution-trigger {
  min-height: 0 !important;
}

body.solutions-page .solution-trigger,
body.solutions-page .solutions-tab-list article.is-open .solution-trigger {
  width: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  position: relative !important;
  padding: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

body.solutions-page .solution-marker,
body.solutions-page .solutions-tab-list article.is-open .solution-marker {
  width: clamp(270px, 30vw, 410px) !important;
  min-width: clamp(270px, 30vw, 410px) !important;
  height: auto !important;
  min-height: clamp(230px, 18vw, 290px) !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  flex: 0 0 auto !important;
}

body.solutions-page .solution-marker img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  filter: saturate(0.9) contrast(0.96) brightness(1.02) !important;
}

body.solutions-page .solution-copy,
body.solutions-page .solutions-tab-list article.is-open .solution-copy {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(28px, 3.4vw, 54px) clamp(34px, 4vw, 70px) !important;
  background: transparent !important;
}

body.solutions-page .solution-title {
  max-width: 780px !important;
  color: #202226 !important;
  font-size: clamp(31px, 3vw, 54px) !important;
  line-height: 1.01 !important;
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
}

body.solutions-page .solution-summary {
  max-width: 760px !important;
  margin-top: clamp(14px, 1.4vw, 22px) !important;
  color: #5a6470 !important;
  font-size: clamp(17px, 1.18vw, 21px) !important;
  line-height: 1.38 !important;
  font-weight: 600 !important;
}

body.solutions-page .solution-trigger::after {
  content: none !important;
  display: none !important;
}

body.solutions-page .solutions-tab-list article.is-open .solution-trigger::after {
  content: none !important;
}

body.solutions-page .solution-detail {
  margin: 0 !important;
  border-top: 1px solid rgba(32, 34, 38, 0.08) !important;
  border-radius: 0 !important;
  padding: clamp(26px, 3vw, 44px) clamp(28px, 4vw, 68px) clamp(32px, 3.6vw, 52px) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

body.solutions-page .solution-detail-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 30px) clamp(24px, 3vw, 48px) !important;
}

@media (max-width: 900px) {
  body.solutions-page .solution-marker,
  body.solutions-page .solutions-tab-list article.is-open .solution-marker {
    width: clamp(210px, 34vw, 290px) !important;
    min-width: clamp(210px, 34vw, 290px) !important;
  }

  body.solutions-page .solution-copy,
  body.solutions-page .solutions-tab-list article.is-open .solution-copy {
    padding-right: clamp(28px, 3.4vw, 54px) !important;
  }
}

@media (max-width: 720px) {
  body.solutions-page .solutions-tab-section {
    width: min(calc(100% - 28px), 1320px) !important;
  }

  body.solutions-page .solution-trigger,
  body.solutions-page .solutions-tab-list article.is-open .solution-trigger {
    flex-direction: column !important;
  }

  body.solutions-page .solution-marker,
  body.solutions-page .solutions-tab-list article.is-open .solution-marker {
    width: 100% !important;
    min-width: 0 !important;
    height: 220px !important;
    min-height: 220px !important;
  }

  body.solutions-page .solution-copy,
  body.solutions-page .solutions-tab-list article.is-open .solution-copy {
    padding: 24px 22px 28px !important;
  }

  body.solutions-page .solution-title {
    font-size: clamp(30px, 8.4vw, 42px) !important;
  }

  body.solutions-page .solution-detail {
    padding: 24px 22px 28px !important;
  }

  body.solutions-page .solution-detail-copy {
    grid-template-columns: 1fr !important;
  }
}

/* Final alignment system. Keep all pages on the same outer rails for handoff. */
.site-header,
.site-footer,
.trusted-section,
.statement-section,
.pillar-section,
.impact-heading-section,
.impact-card-section,
.challenge-section,
.system-section,
.practice-section,
.founders-section,
.faq-section,
body.solutions-page .solutions-tab-section,
body.solutions-page .solutions-next-cta,
.impact-stories-hero,
.impact-story-library,
.story-summary-shell,
.case-page-nav,
.case-study-detail,
body.reflect-page .hero-media,
body.reflect-page .problem-section,
body.reflect-page .cycle-section,
body.reflect-page .three-c-section,
body.reflect-page .feature-section,
body.reflect-page .metrics-section,
body.reflect-page .use-case-section,
body.reflect-page .contact-section,
body.embark-page .hero-media,
body.embark-page .problem-section,
body.embark-page .journey-section,
body.embark-page .framework-section,
body.embark-page .feature-section,
body.embark-page .metrics-section,
body.embark-page .hiring-section,
body.embark-page .contact-section,
body.consult-page .consult-hero,
body.consult-page .consult-section,
body.consult-page .consult-final-cta,
body.style-guide-page main {
  width: var(--site-shell) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.legal-page .legal-shell {
  width: var(--site-shell-reading) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 680px) {
  :root {
    --site-gutter: 28px;
  }
}

/* Final typography system from ATP brand guidance. */
:root {
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: "Happy Times", Georgia, "Times New Roman", Times, serif;
  --font-serif-italic: "Happy Times Swash", "Happy Times", Georgia, "Times New Roman", Times, serif;
  --sans: var(--font-sans);
  --serif: var(--font-serif);
  --swash: var(--font-serif-italic);
  --geist-regular: "wght" 450;
  --geist-medium: "wght" 550;
  --geist-bold: "wght" 600;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-variation-settings: var(--geist-regular);
}

.heading-one,
.heading-two,
.heading-three,
.heading-four,
.large-price {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
}

.heading-one {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.heading-two {
  font-size: 45px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.heading-three {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.heading-four {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
}

.large-price {
  font-size: 128px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.large-text {
  font-family: var(--font-sans);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 400;
  font-variation-settings: var(--geist-regular);
}

.small-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: var(--geist-regular);
}

.announcement-bar {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  font-variation-settings: var(--geist-regular);
}

.form-input,
input,
select,
textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  font-variation-settings: var(--geist-regular);
}

.button,
button,
[role="button"] {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 550;
  font-variation-settings: var(--geist-medium);
}

.text-bold,
strong,
b {
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
}

.small-link {
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
}

.hero-copy h1,
.statement-section h2,
.impact-heading-section h2,
.system-section h2,
.solutions-page-heading h1,
.impact-stories-hero h1,
.story-summary-copy h1,
.case-study-cover h2,
.case-section-heading h2,
.legal-hero h1,
body.reflect-page .hero-copy h1,
body.reflect-page .section-copy h2,
body.reflect-page .feature-copy h2,
body.reflect-page .contact-section h2,
body.embark-page .hero-copy h1,
body.embark-page .section-copy h2,
body.embark-page .feature-copy h2,
body.embark-page .contact-section h2,
body.consult-page .consult-hero h1,
body.consult-page .section-heading h2,
body.consult-page .section-copy h2,
body.consult-page .consult-final-cta h2,
body.style-guide-page .style-guide-hero h1 {
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
}

.hero-copy h1 em,
.impact-heading-section h2 em,
.system-section h2 em,
body.reflect-page .hero-copy h1 span,
body.embark-page .hero-copy h1 span {
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.statement-section h2,
.system-section h2,
body.reflect-page .section-copy h2,
body.reflect-page .feature-copy h2,
body.reflect-page .contact-section h2,
body.embark-page .section-copy h2,
body.embark-page .feature-copy h2,
body.embark-page .contact-section h2,
body.consult-page .section-heading h2,
body.consult-page .section-copy h2,
body.consult-page .consult-final-cta h2 {
  letter-spacing: -0.01em;
}

.main-nav,
.header-actions,
.nav-product,
.site-footer,
.case-study-detail,
.solution-summary,
.solution-detail,
.faq-section,
.legal-shell {
  font-family: var(--font-sans);
  font-variation-settings: var(--geist-regular);
}

.main-nav a,
.main-nav button,
.header-actions a,
.site-footer a,
.footer-heading,
.nav-product strong,
.solution-title,
.case-card h3,
.story-card h3,
.impact-card-copy p,
.metric-card h3 {
  font-variation-settings: var(--geist-bold);
}

@media (max-width: 1040px) {
  .heading-one {
    font-size: 58px;
  }

  .heading-two {
    font-size: 42px;
  }

  .heading-three {
    font-size: 28px;
  }
}

@media (max-width: 680px) {
  .heading-one {
    font-size: 54px;
  }

  .heading-two {
    font-size: 36px;
  }

  .heading-three {
    font-size: 24px;
  }

  .heading-four {
    font-size: 21px;
  }

  .large-price {
    font-size: 96px;
  }

  .large-text {
    font-size: 20px;
    line-height: 1.35;
  }
}

/* One shared header/footer layout. This final layer wins over older page-specific chrome. */
.site-header {
  width: var(--site-shell) !important;
  min-height: 96px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(270px, 410px) minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(18px, 2vw, 38px) !important;
  overflow: visible !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1100 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(16px) !important;
}

.site-header .brand {
  min-width: 0 !important;
  max-width: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 8px 0 !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: clamp(285px, 21vw, 390px) !important;
  max-width: 100% !important;
  max-height: 82px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.main-nav {
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(16px, 1.45vw, 28px) !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-size: clamp(14px, 0.9vw, 16px) !important;
}

.nav-trigger {
  white-space: nowrap !important;
}

.header-actions {
  min-width: max-content !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 14px !important;
  margin: 0 !important;
  white-space: nowrap !important;
  font-size: clamp(14px, 0.9vw, 16px) !important;
}

.header-actions .button {
  min-height: 52px !important;
  padding: 0 20px !important;
  white-space: nowrap !important;
}

.menu-toggle {
  display: none !important;
}

.nav-dropdown {
  z-index: 1200 !important;
}

.site-footer {
  width: var(--site-shell) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.footer-main {
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(150px, 0.7fr)) !important;
  gap: clamp(34px, 5vw, 88px) !important;
}

@media (max-width: 1240px) {
  body.nav-open {
    overflow: hidden !important;
  }

  .site-header {
    min-height: 88px !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    gap: 16px !important;
  }

  .site-header .brand img {
    width: min(320px, 68vw) !important;
    max-height: 72px !important;
  }

  .main-nav,
  .header-actions {
    display: none !important;
  }

  .menu-toggle {
    width: 52px !important;
    height: 52px !important;
    display: grid !important;
    place-items: center !important;
    justify-self: end !important;
    border: 1px solid #dfe6ee !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    padding: 13px !important;
  }

  body.nav-open .main-nav {
    width: auto !important;
    position: fixed !important;
    top: 100px !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: 122px !important;
    left: max(16px, env(safe-area-inset-left)) !important;
    z-index: 1200 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 18px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 1px solid #dfe6ee !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    white-space: normal !important;
    box-shadow: none !important;
  }

  body.nav-open .nav-menu {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  body.nav-open .nav-trigger {
    width: 100% !important;
    min-height: 50px !important;
    justify-content: space-between !important;
    color: #202226 !important;
    font-size: 19px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    white-space: normal !important;
  }

  body.nav-open .nav-dropdown,
  body.nav-open .nav-menu:focus-within .nav-dropdown,
  body.nav-open .nav-menu:focus-within:not(.is-open) .nav-dropdown {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    left: auto !important;
    display: none !important;
    gap: 8px !important;
    margin: 10px 0 0 !important;
    padding: 8px !important;
    overflow: hidden !important;
    border: 1px solid #e4e9ef !important;
    border-radius: 10px !important;
    background: #f3f2f0 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
    box-shadow: none !important;
  }

  body.nav-open .nav-menu.is-open .nav-dropdown {
    display: grid !important;
  }

  body.nav-open .nav-product {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 104px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
    min-height: auto !important;
    padding: 14px !important;
    overflow: hidden !important;
    border-radius: 10px !important;
  }

  body.nav-open .nav-product img {
    width: 96px !important;
    max-width: 100% !important;
    max-height: 36px !important;
  }

  body.nav-open .nav-product span {
    min-width: 0 !important;
  }

  body.nav-open .nav-product small {
    overflow-wrap: anywhere !important;
  }

  body.nav-open .main-nav > a {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    color: #202226 !important;
    font-size: 19px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
  }

  body.nav-open .header-actions {
    width: auto !important;
    position: fixed !important;
    top: auto !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    bottom: max(16px, env(safe-area-inset-bottom)) !important;
    left: max(16px, env(safe-area-inset-left)) !important;
    z-index: 1200 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr) !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 14px !important;
    border: 1px solid #dfe6ee !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  body.nav-open .header-actions > a {
    width: 100% !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    line-height: 1.1 !important;
    text-align: center !important;
  }

  body.nav-open .header-actions > a:not(.button) {
    border: 1px solid #e4e9ef !important;
    color: #202226 !important;
    background: #ffffff !important;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(calc(100% - 28px), 1500px) !important;
    min-height: 82px !important;
  }

  .site-header .brand img {
    width: min(285px, 70vw) !important;
    max-height: 66px !important;
  }

  body.nav-open .main-nav {
    top: 92px !important;
    right: 12px !important;
    bottom: 112px !important;
    left: 12px !important;
    padding: 14px !important;
  }

  body.nav-open .nav-product {
    grid-template-columns: 1fr !important;
  }

  body.nav-open .nav-product img {
    width: 124px !important;
  }

  body.nav-open .header-actions {
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
    padding: 12px !important;
  }

  body.nav-open .header-actions > a {
    min-height: 52px !important;
    font-size: 15px !important;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr !important;
  }

  .footer-main {
    display: grid !important;
  }

  .footer-bottom {
    display: grid !important;
    justify-items: start !important;
  }
}

/* Reflect 3C cards: keep pastel blocks clean, no outlined card treatment. */
body.reflect-page .three-c-grid article {
  border: 0 !important;
}

body.reflect-page .three-c-grid .card-icon {
  border: 0 !important;
}

/* Shared product menu: descriptions must wrap inside the card, even with long copy. */
.nav-dropdown {
  width: min(760px, calc(100vw - 48px)) !important;
  white-space: normal !important;
}

.nav-product {
  min-width: 0 !important;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr) !important;
  align-items: center !important;
  white-space: normal !important;
}

.nav-product span {
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.nav-product strong,
.nav-product small {
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
}

/* Homepage Solutions section: keep the image panel and card stack exactly aligned after reveal animations. */
.challenge-grid article.scroll-reveal.is-visible {
  transform: none !important;
}

@media (min-width: 1041px) {
  .challenge-section {
    align-items: stretch !important;
  }

  .challenge-intro,
  .challenge-grid {
    align-self: stretch !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* Impact story summaries: premium, readable scale instead of oversized poster type. */
.story-summary-shell {
  min-height: auto !important;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr) !important;
  gap: clamp(34px, 5vw, 82px) !important;
  margin-top: clamp(28px, 4vw, 58px) !important;
}

.story-summary-card {
  gap: clamp(18px, 2vw, 28px) !important;
}

.story-summary-card > img {
  aspect-ratio: 16 / 9 !important;
  max-height: 430px !important;
}

.story-summary-card p {
  max-width: 560px !important;
  font-size: clamp(20px, 1.4vw, 27px) !important;
  line-height: 1.3 !important;
}

.story-summary-card dl {
  gap: clamp(16px, 2vw, 28px) !important;
}

.story-summary-copy h1 {
  max-width: 820px !important;
  margin: clamp(20px, 2.4vw, 34px) 0 clamp(18px, 2vw, 28px) !important;
  font-size: clamp(46px, 4.65vw, 76px) !important;
  line-height: 1.02 !important;
}

.story-summary-lead {
  max-width: 780px !important;
  font-size: clamp(20px, 1.55vw, 27px) !important;
  line-height: 1.34 !important;
}

.story-summary-copy hr {
  margin: clamp(32px, 4vw, 56px) 0 !important;
}

@media (max-width: 680px) {
  .story-summary-copy h1 {
    font-size: clamp(38px, 11vw, 52px) !important;
  }
}

/* Case-study back link: use ATP's squared button language, not soft pill UI. */
.case-page-nav a {
  min-height: 48px !important;
  padding: 0 18px !important;
  border: 1px solid #d9dee4 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #222429 !important;
  font-family: var(--font-sans) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
  letter-spacing: 0 !important;
}

.case-page-nav a:hover,
.case-page-nav a:focus-visible {
  border-color: #202226 !important;
  background: #f7f9fc !important;
}

/* Consult enabler cards: reserve space for future icons and lower the text rhythm. */
body.consult-page .enabler-grid article {
  min-height: clamp(320px, 25vw, 430px) !important;
  justify-content: flex-start !important;
  gap: clamp(26px, 3.4vw, 62px) !important;
}

body.consult-page .enabler-grid .enabler-icon {
  width: clamp(54px, 4.8vw, 78px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: #535d68;
  font-family: var(--font-sans);
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
}

body.consult-page .enabler-grid h3 {
  margin-top: auto !important;
}

body.consult-page .enabler-grid p {
  margin-top: clamp(22px, 2.3vw, 38px) !important;
}

/* Consult delivery model cards: use product logos instead of numbered circles. */
body.consult-page .delivery-grid article {
  justify-content: flex-start !important;
  gap: clamp(26px, 3vw, 54px) !important;
}

body.consult-page .delivery-logo {
  width: min(100%, 340px);
  min-height: clamp(68px, 5.2vw, 92px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px 14px;
}

body.consult-page .delivery-logo img {
  width: clamp(126px, 9.4vw, 172px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

body.consult-page .delivery-logo-plus {
  margin-top: 1px;
  color: var(--consult-ink);
  font-family: var(--font-sans);
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
}

body.consult-page .delivery-logo-single img {
  width: clamp(160px, 12vw, 220px);
  max-height: 56px;
}

body.consult-page .delivery-logo-stack img {
  width: clamp(112px, 8.4vw, 150px);
}

body.consult-page .delivery-grid h3 {
  margin-top: auto !important;
}

body.consult-page .delivery-card-logo-only p {
  margin-top: auto !important;
}

@media (max-width: 680px) {
  body.consult-page .delivery-logo {
    min-height: auto;
  }

  body.consult-page .delivery-logo img,
  body.consult-page .delivery-logo-single img,
  body.consult-page .delivery-logo-stack img {
    width: min(180px, 68vw);
    max-height: 54px;
  }
}

/* Mobile menu icon: simple three-line hamburger, no heavy button box. */
@media (max-width: 1240px) {
  .menu-toggle {
    width: 58px !important;
    height: 52px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .menu-toggle span {
    width: 38px !important;
    height: 3px !important;
    display: block !important;
    flex: 0 0 3px !important;
    border-radius: 0 !important;
    background: #202226 !important;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
  }
}

@media (max-width: 680px) {
  .menu-toggle {
    width: 52px !important;
    height: 48px !important;
  }

  .menu-toggle span {
    width: 34px !important;
  }
}

/* Desktop product dropdown: compact ATP pastel product panel. */
@media (min-width: 1241px) {
  .main-nav {
    gap: clamp(22px, 2vw, 38px) !important;
    font-size: clamp(16px, 1.05vw, 20px) !important;
    font-weight: 550 !important;
    font-variation-settings: var(--geist-medium) !important;
  }

  .main-nav > a,
  .nav-trigger {
    color: #24262a !important;
    transition: color 160ms ease;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible,
  .nav-menu:hover .nav-trigger,
  .nav-menu:focus-within .nav-trigger {
    color: #8b8f94 !important;
  }

  .nav-trigger {
    gap: 10px !important;
  }

  .nav-trigger::after {
    width: 0 !important;
    height: 0 !important;
    margin-top: 3px !important;
    border-top: 7px solid currentColor !important;
    border-right: 6px solid transparent !important;
    border-bottom: 0 !important;
    border-left: 6px solid transparent !important;
    transform: none !important;
  }

  .nav-menu:hover .nav-trigger::after,
  .nav-menu:focus-within .nav-trigger::after,
  .nav-menu.is-open .nav-trigger::after {
    margin-top: 3px !important;
    transform: none !important;
  }

  .nav-dropdown {
    width: min(548px, calc(100vw - 64px)) !important;
    top: calc(100% + 18px) !important;
    gap: 8px !important;
    padding: 10px !important;
    border: 1px solid rgba(0, 85, 164, 0.12) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .nav-dropdown-title {
    display: none !important;
  }

  .nav-product {
    min-height: 86px !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 18px !important;
    border: 0 !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
  }

  .nav-product:nth-child(1) {
    background: #edf7ed !important;
  }

  .nav-product:nth-child(2) {
    background: #eaf2fa !important;
  }

  .nav-product:nth-child(3) {
    background: #f7e8ee !important;
  }

  .nav-product img {
    width: 112px !important;
    max-height: 34px !important;
  }

  .nav-product strong {
    font-size: 17px !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    font-variation-settings: var(--geist-bold) !important;
  }

  .nav-product small {
    margin-top: 5px !important;
    font-size: 13.5px !important;
    line-height: 1.28 !important;
    font-weight: 450 !important;
    font-variation-settings: var(--geist-regular) !important;
  }

  .nav-product:hover,
  .nav-product:focus-visible {
    background: #fff7e6 !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

@media (max-width: 1240px) {
  .nav-dropdown-title {
    display: none !important;
  }
}

/* Homepage final typography polish. */
body.home-page .hero-copy h1 em {
  font-family: var(--font-serif-italic) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-variation-settings: normal !important;
}

body.home-page .pillar-grid h3 {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
}

body.home-page .impact-card-copy p {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
}

body.home-page .practice-grid h3,
body.home-page .founder-card h3 {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
}

/* Shared FAQ UX: reference layout, ATP colors. */
.faq-section,
body.reflect-page .faq-section,
body.embark-page .faq-section,
body.consult-page .consult-faq {
  width: min(calc(100% - clamp(32px, 6vw, 120px)), 1760px) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: clamp(82px, 7vw, 132px) 0 !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr) !important;
  gap: clamp(48px, 7vw, 132px) !important;
  align-items: start !important;
}

.faq-intro,
body.consult-page .consult-faq-intro {
  min-height: clamp(360px, 31vw, 520px) !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  text-align: left !important;
}

.faq-intro h2,
body.reflect-page .faq-intro h2,
body.embark-page .faq-intro h2,
body.consult-page .consult-faq-intro h2 {
  max-width: 460px !important;
  margin: 0 !important;
  color: #222429 !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(54px, 5.8vw, 104px) !important;
  line-height: 0.98 !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
}

.faq-intro p,
body.consult-page .consult-faq-intro p {
  max-width: 430px !important;
  margin: 0 0 28px !important;
  color: #565f6b !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.2vw, 23px) !important;
  line-height: 1.38 !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
}

.faq-intro a,
body.consult-page .consult-faq-intro a {
  width: fit-content !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  border: 1px solid #d9dee4 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #202226 !important;
  font-family: var(--font-sans) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.faq-list,
body.reflect-page .faq-list,
body.embark-page .faq-list,
body.consult-page .consult-faq-list {
  display: grid !important;
  gap: 16px !important;
  border: 0 !important;
}

.faq-item,
.faq-list > article,
body.reflect-page .faq-list article,
body.embark-page .faq-list article,
body.consult-page .consult-faq-list p {
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--blue) !important;
  box-shadow: none !important;
}

.faq-item button,
.faq-btn,
body.reflect-page .faq-btn,
body.embark-page .faq-btn,
body.consult-page .consult-faq-list p {
  width: 100% !important;
  min-height: clamp(72px, 5.4vw, 92px) !important;
  margin: 0 !important;
  padding: 24px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  border: 0 !important;
  border-bottom: 0 !important;
  background: transparent !important;
  color: #24262a !important;
  text-align: left !important;
  cursor: pointer !important;
}

body.consult-page .consult-faq-list p {
  cursor: default !important;
}

.faq-item button span,
.faq-btn span,
body.reflect-page .faq-btn span,
body.embark-page .faq-btn span,
body.consult-page .consult-faq-list p {
  color: #24262a !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.25vw, 24px) !important;
  line-height: 1.2 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
}

.faq-item button b,
.faq-btn svg,
body.reflect-page .faq-btn svg,
body.embark-page .faq-btn svg {
  display: none !important;
}

.faq-item button::after,
.faq-btn::after,
body.consult-page .consult-faq-list p::after {
  content: "+" !important;
  flex: 0 0 auto !important;
  color: #202226 !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(34px, 2.4vw, 46px) !important;
  line-height: 0.8 !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
}

.faq-item.is-open button::after,
.faq-btn[aria-expanded="true"]::after {
  content: "\00d7" !important;
}

.faq-answer,
.faq-content,
body.reflect-page .faq-content,
body.embark-page .faq-content {
  max-height: 0 !important;
  overflow: hidden !important;
  border-top: 0 !important;
  padding: 0 !important;
  transition: max-height 220ms ease, padding 220ms ease !important;
}

.faq-item.is-open .faq-answer,
.faq-btn[aria-expanded="true"] + .faq-content {
  max-height: 420px !important;
  padding: 0 28px 28px !important;
}

.faq-answer p,
.faq-content p,
body.reflect-page .faq-content p,
body.embark-page .faq-content p {
  max-width: 920px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #565f6b !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(17px, 1.15vw, 21px) !important;
  line-height: 1.48 !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
}

@media (max-width: 900px) {
  .faq-section,
  body.reflect-page .faq-section,
  body.embark-page .faq-section,
  body.consult-page .consult-faq {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 72px 0 !important;
  }

  .faq-intro,
  body.consult-page .consult-faq-intro {
    min-height: auto !important;
    gap: 34px !important;
  }

  .faq-intro h2,
  body.reflect-page .faq-intro h2,
  body.embark-page .faq-intro h2,
  body.consult-page .consult-faq-intro h2 {
    max-width: 680px !important;
    font-size: clamp(48px, 14vw, 72px) !important;
  }
}

/* Shared corner standard
   Keeps the site from mixing random soft corners while preserving pills, logos,
   avatars, and circular UI. */
:root {
  --atp-radius-card: 8px;
  --atp-radius-media: 8px;
}

:is(
  .hero-image,
  .impact-card-visual img,
  .impact-card-copy img,
  .practice-grid img,
  .practice-grid-consult img,
  .story-image img,
  .solution-marker img,
  .style-guide-impact-demo img,
  .hero-media img,
  .feature-media img,
  .use-case-grid img,
  .consult-hero-visual img,
  .consult-use-case-grid img,
  .focus-grid img,
  .platform-grid img,
  .case-image-strip img,
  .case-wide-image img,
  .case-wide-image-tight img,
  .related-story-grid img,
  .impact-story-card img,
  .story-summary-card > img,
  body.reflect-page .hero-media img,
  body.reflect-page .feature-media img,
  body.reflect-page .use-case-grid img,
  body.embark-page .hero-media img,
  body.embark-page .feature-media img,
  body.consult-page .consult-hero-visual img,
  body.consult-page .story-image img,
  body.consult-page .focus-grid img,
  body.consult-page .platform-grid img,
  body.consult-page .practice-grid img,
  body.consult-page .practice-grid-consult img,
  body.consult-page .consult-use-case-grid img,
  body.case-studies-page .impact-story-card img
) {
  border-radius: var(--atp-radius-media) !important;
  overflow: hidden !important;
}

:is(
  .impact-card,
  .impact-card-grid article,
  .practice-grid article,
  .practice-grid-consult article,
  .solution-block,
  .solution-trigger,
  .solution-detail,
  .solutions-tab-list article,
  .hero-media,
  .feature-media,
  .use-case-grid article,
  .consult-hero-visual,
  .consult-use-case-grid article,
  .focus-grid article,
  .platform-grid article,
  .case-image-strip,
  .case-wide-image,
  .case-wide-image-tight,
  .case-metric-card,
  .related-story-card,
  .impact-story-card,
  .story-summary-card,
  .style-guide-impact-demo,
  body.reflect-page .hero-media,
  body.reflect-page .feature-media,
  body.reflect-page .use-case-grid article,
  body.embark-page .hero-media,
  body.embark-page .feature-media,
  body.consult-page .consult-hero-visual,
  body.consult-page .consult-use-case-grid article,
  body.case-studies-page .impact-story-card
) {
  border-radius: var(--atp-radius-card) !important;
}

/* Final shared mobile header: one clean responsive system for every page. */
@media (max-width: 1240px) {
  body.nav-open {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .site-header {
    width: min(calc(100% - 28px), 1500px) !important;
    min-height: 78px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 56px !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px 0 10px !important;
    overflow: visible !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: none !important;
  }

  .site-header .brand {
    width: 100% !important;
    min-width: 0 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .site-header .brand img {
    width: min(292px, 68vw) !important;
    max-width: 100% !important;
    max-height: 66px !important;
    display: block !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .menu-toggle {
    width: 56px !important;
    height: 48px !important;
    min-width: 56px !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: end !important;
    gap: 7px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .menu-toggle span {
    width: 34px !important;
    height: 3px !important;
    display: block !important;
    flex: 0 0 3px !important;
    border-radius: 0 !important;
    background: #202226 !important;
  }

  .main-nav,
  .header-actions {
    display: none !important;
  }

  body.nav-open .main-nav {
    width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    inset: auto !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 8px 0 0 !important;
    padding: 14px !important;
    overflow: visible !important;
    border: 1px solid #dfe6ee !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
    white-space: normal !important;
  }

  body.nav-open .nav-menu {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  body.nav-open .nav-trigger,
  body.nav-open .main-nav > a {
    width: 100% !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 4px !important;
    color: #202226 !important;
    font-family: var(--font-sans) !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 550 !important;
    font-variation-settings: var(--geist-medium) !important;
    white-space: normal !important;
  }

  body.nav-open .nav-trigger::after {
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px 4px 10px !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    border-top: 0 !important;
    border-left: 0 !important;
    transform: rotate(45deg) !important;
  }

  body.nav-open .nav-menu.is-open .nav-trigger::after {
    margin-bottom: -3px !important;
    transform: rotate(225deg) !important;
  }

  body.nav-open .nav-dropdown,
  body.nav-open .nav-menu:hover .nav-dropdown,
  body.nav-open .nav-menu:focus-within .nav-dropdown,
  body.nav-open .nav-menu:focus-within:not(.is-open) .nav-dropdown {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    inset: auto !important;
    display: none !important;
    gap: 8px !important;
    margin: 6px 0 8px !important;
    padding: 8px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #f7f7f5 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
    box-shadow: none !important;
  }

  body.nav-open .nav-dropdown::before {
    display: none !important;
  }

  body.nav-open .nav-menu.is-open .nav-dropdown {
    display: grid !important;
  }

  body.nav-open .nav-product {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 76px !important;
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center !important;
    padding: 14px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body.nav-open .nav-product:nth-child(1) {
    background: #edf7ed !important;
  }

  body.nav-open .nav-product:nth-child(2) {
    background: #eaf2fa !important;
  }

  body.nav-open .nav-product:nth-child(3) {
    background: #f7e8ee !important;
  }

  body.nav-open .nav-product img {
    width: 106px !important;
    max-width: 100% !important;
    max-height: 32px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  body.nav-open .nav-product span {
    min-width: 0 !important;
  }

  body.nav-open .nav-product strong {
    font-size: 16px !important;
    line-height: 1.08 !important;
    font-weight: 600 !important;
    font-variation-settings: var(--geist-bold) !important;
  }

  body.nav-open .nav-product small {
    margin-top: 5px !important;
    color: #565f6b !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 450 !important;
    font-variation-settings: var(--geist-regular) !important;
    overflow-wrap: anywhere !important;
  }

  body.nav-open .header-actions {
    width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    inset: auto !important;
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 10px !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    white-space: normal !important;
  }

  body.nav-open .header-actions > a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 14px !important;
    border-radius: 8px !important;
    font-family: var(--font-sans) !important;
    font-size: 16px !important;
    line-height: 1.1 !important;
    font-weight: 550 !important;
    font-variation-settings: var(--geist-medium) !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: none !important;
  }

  body.nav-open .header-actions > a:not(.button) {
    border: 1px solid #dfe6ee !important;
    background: #ffffff !important;
    color: #202226 !important;
  }

  body.nav-open .header-actions > .button-dark {
    border: 1px solid #202226 !important;
    background: #202226 !important;
    color: #ffffff !important;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100% - 22px) !important;
    min-height: 72px !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
    gap: 8px !important;
  }

  .site-header .brand img {
    width: min(244px, 70vw) !important;
    max-height: 58px !important;
  }

  .menu-toggle {
    width: 48px !important;
    height: 44px !important;
    min-width: 48px !important;
  }

  .menu-toggle span {
    width: 30px !important;
  }

  body.nav-open .main-nav {
    margin-top: 6px !important;
    padding: 12px !important;
  }

  body.nav-open .nav-product {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    min-height: auto !important;
  }

  body.nav-open .nav-product img {
    width: 124px !important;
  }

  body.nav-open .header-actions {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body.nav-open .header-actions > a {
    min-height: 46px !important;
    font-size: 15px !important;
  }
}

/* Emergency shared header lock: prevents desktop actions from breaking mobile. */
@media (max-width: 1240px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header {
    width: min(calc(100vw - 28px), 1500px) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 28px) !important;
    min-height: 76px !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    grid-auto-rows: auto !important;
    align-items: center !important;
    gap: 8px 10px !important;
    padding: 8px 0 !important;
    overflow: visible !important;
  }

  .site-header > * {
    min-width: 0 !important;
  }

  .site-header > .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .site-header > .brand img {
    width: min(300px, 72vw) !important;
    max-width: 100% !important;
    max-height: 62px !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .site-header > .menu-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 52px !important;
    height: 44px !important;
    min-width: 52px !important;
    min-height: 44px !important;
    justify-self: end !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-header > .menu-toggle span {
    width: 32px !important;
    height: 3px !important;
    flex: 0 0 3px !important;
    display: block !important;
    border-radius: 0 !important;
    background: #202226 !important;
  }

  .site-header > .main-nav,
  .site-header > .header-actions {
    display: none !important;
  }

  body.nav-open .site-header > .main-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 8px 0 0 !important;
    padding: 10px !important;
    position: static !important;
    inset: auto !important;
    overflow: visible !important;
    border: 1px solid #dfe6ee !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body.nav-open .site-header > .header-actions {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 8px 0 0 !important;
    padding: 0 !important;
    position: static !important;
    inset: auto !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body.nav-open .site-header > .header-actions > a,
  body.nav-open .site-header > .header-actions > .button,
  body.nav-open .site-header > .header-actions > .button-dark {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 14px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 550 !important;
    font-variation-settings: var(--geist-medium) !important;
    box-shadow: none !important;
    white-space: nowrap !important;
  }

  body.nav-open .site-header .nav-trigger,
  body.nav-open .site-header .main-nav > a {
    min-height: 42px !important;
    height: auto !important;
    padding: 8px 4px !important;
    border-radius: 8px !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
  }

  body.nav-open .site-header .nav-dropdown {
    max-height: none !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100vw - 22px) !important;
    max-width: calc(100vw - 22px) !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
  }

  .site-header > .brand img {
    width: min(260px, 68vw) !important;
    max-height: 56px !important;
  }

  .site-header > .menu-toggle {
    width: 48px !important;
    min-width: 48px !important;
  }

  body.nav-open .site-header .nav-product {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    padding: 12px !important;
  }

  body.nav-open .site-header .nav-product img {
    width: 118px !important;
  }
}

/* Impact Stories listing: keep all story cards on clean white. */
body.case-studies-page .impact-story-card,
body.case-studies-page .impact-story-card:nth-child(1),
body.case-studies-page .impact-story-card:nth-child(2),
body.case-studies-page .impact-story-card:nth-child(3),
body.case-studies-page .impact-story-card:nth-child(4) {
  background: #ffffff !important;
}

/* Site background: no faint image wash, just white. */
html,
body {
  background: #ffffff !important;
}

body::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Product hero titles sit on white now, so keep them readable. */
body.reflect-page .hero-copy,
body.reflect-page .hero-copy h1,
body.reflect-page .hero-copy h1 span,
body.embark-page .hero-copy,
body.embark-page .hero-copy h1,
body.embark-page .hero-copy h1 span {
  color: #202226 !important;
}

/* Reflect final CTA: clean white, no background image treatment. */
body.reflect-page .contact-section {
  min-height: 0 !important;
  display: block !important;
  padding: clamp(58px, 6vw, 104px) clamp(22px, 4vw, 56px) !important;
  margin-top: clamp(42px, 5vw, 84px) !important;
  margin-bottom: clamp(34px, 4vw, 68px) !important;
  background: #ffffff !important;
  color: #202226 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-align: center !important;
}

body.reflect-page .contact-section .section-copy h2 {
  margin: 0 0 14px !important;
  color: #202226 !important;
  font-family: var(--font-serif) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 1 !important;
}

body.reflect-page .contact-section .section-copy p {
  max-width: 720px !important;
  margin: 0 auto clamp(24px, 3vw, 38px) !important;
  color: #59636f !important;
  font-size: clamp(18px, 1.6vw, 24px) !important;
  line-height: 1.35 !important;
}

body.reflect-page .contact-section .button-row {
  justify-content: center !important;
  gap: 12px !important;
  margin: 0 !important;
}

body.reflect-page .contact-section .button {
  min-height: 56px !important;
  border-radius: 8px !important;
  padding: 0 26px !important;
}

body.reflect-page .contact-section .button-dark {
  border-color: #202226 !important;
  background: #202226 !important;
  color: #ffffff !important;
}

body.reflect-page .contact-section .button-light {
  border-color: #dfe4ea !important;
  background: #ffffff !important;
  color: #202226 !important;
}

/* Embark hiring realities: repair collapsed layout across desktop and mobile. */
body.embark-page .hiring-section {
  width: var(--site-shell) !important;
  max-width: 1500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(72px, 7vw, 118px) 0 !important;
  overflow: visible !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  background: #ffffff !important;
  text-align: center !important;
}

body.embark-page .hiring-section .section-copy {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin: 0 auto clamp(34px, 4vw, 60px) !important;
  display: block !important;
  text-align: center !important;
}

body.embark-page .hiring-section .section-copy h2 {
  max-width: 780px !important;
  margin: 0 auto !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 1 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.embark-page .hiring-section .section-copy p {
  max-width: 780px !important;
  margin: clamp(16px, 2vw, 26px) auto 0 !important;
  font-size: clamp(17px, 1.4vw, 22px) !important;
  line-height: 1.45 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.embark-page .hiring-grid {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: stretch !important;
  margin-top: 0 !important;
}

body.embark-page .hiring-grid article {
  min-width: 0 !important;
  min-height: 500px !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 16px clamp(26px, 3vw, 40px) !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background: #ffffff !important;
}

body.embark-page .hiring-grid article h3,
body.embark-page .hiring-grid article p {
  max-width: 100% !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

body.embark-page .hiring-grid article h3 {
  margin: 8px 10px 0 !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(28px, 2.2vw, 38px) !important;
  line-height: 1.02 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
}

body.embark-page .hiring-grid article p {
  margin: auto 10px 0 !important;
  font-size: clamp(16px, 1.1vw, 20px) !important;
  line-height: 1.42 !important;
}

body.embark-page .hiring-visual {
  width: 100% !important;
  height: clamp(178px, 17vw, 250px) !important;
  min-height: 0 !important;
  margin: 0 0 clamp(24px, 2.4vw, 34px) !important;
  border: 0 !important;
  border-radius: 8px !important;
  display: grid !important;
  place-items: center !important;
}

@media (max-width: 980px) {
  body.embark-page .hiring-grid {
    grid-template-columns: 1fr !important;
  }

  body.embark-page .hiring-grid article {
    min-height: 0 !important;
  }
}

@media (max-width: 680px) {
  body.embark-page .hiring-section {
    width: calc(100% - 28px) !important;
    padding: 58px 0 !important;
  }

  body.embark-page .hiring-section .section-copy,
  body.embark-page .hiring-section .section-copy h2,
  body.embark-page .hiring-section .section-copy p {
    text-align: left !important;
  }

  body.embark-page .hiring-grid article {
    padding: 12px 12px 24px !important;
  }

  body.embark-page .hiring-visual {
    height: 190px !important;
  }
}

/* Consult people-system cards: flat pastel blocks, no borders or shadows. */
body.consult-page .enabler-grid article {
  border: 0 !important;
  box-shadow: none !important;
}

body.consult-page .enabler-grid .enabler-icon {
  border: 0 !important;
  box-shadow: none !important;
}

/* Consult priorities: remove arrow affordance and rebalance rows. */
body.consult-page .engagement-list a {
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr) !important;
  padding-right: 0 !important;
}

body.consult-page .engagement-list strong {
  display: none !important;
}

@media (max-width: 860px) {
  body.consult-page .engagement-list a {
    grid-template-columns: 1fr !important;
  }

  body.consult-page .engagement-list a p {
    grid-column: auto !important;
  }
}

/* Consult FAQ final: match the shared product FAQ layout. */
body.consult-page .consult-faq {
  width: min(calc(100% - clamp(32px, 6vw, 120px)), 1760px) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: clamp(92px, 8vw, 144px) 0 !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr) !important;
  gap: clamp(56px, 7vw, 132px) !important;
  align-items: start !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.consult-page .consult-faq-intro {
  min-height: clamp(380px, 31vw, 540px) !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  text-align: left !important;
}

body.consult-page .consult-faq-intro h2 {
  max-width: 520px !important;
  margin: 0 !important;
  color: #222429 !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(58px, 6vw, 112px) !important;
  line-height: 0.96 !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  text-align: left !important;
}

body.consult-page .consult-faq-intro p {
  max-width: 440px !important;
  margin: 0 0 28px !important;
  color: #565f6b !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.2vw, 23px) !important;
  line-height: 1.38 !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
}

body.consult-page .consult-faq-intro a {
  width: fit-content !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  border: 1px solid #d9dee4 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #202226 !important;
  font-family: var(--font-sans) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

body.consult-page .consult-faq-list {
  width: 100% !important;
  display: grid !important;
  gap: 16px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.consult-page .consult-faq-list p {
  width: 100% !important;
  min-height: clamp(78px, 5.6vw, 98px) !important;
  margin: 0 !important;
  padding: 24px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--blue) !important;
  color: #24262a !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(19px, 1.35vw, 25px) !important;
  line-height: 1.2 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
  text-align: left !important;
  box-shadow: none !important;
  cursor: default !important;
}

body.consult-page .consult-faq-list p::after {
  content: "+" !important;
  flex: 0 0 auto !important;
  color: #202226 !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(34px, 2.4vw, 46px) !important;
  line-height: 0.8 !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
}

@media (max-width: 900px) {
  body.consult-page .consult-faq {
    width: calc(100% - 28px) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 72px 0 !important;
  }

  body.consult-page .consult-faq-intro {
    min-height: auto !important;
    gap: 34px !important;
  }

  body.consult-page .consult-faq-intro h2 {
    max-width: 680px !important;
    font-size: clamp(48px, 14vw, 72px) !important;
  }

body.consult-page .consult-faq-list p {
    min-height: 76px !important;
    padding: 20px 22px !important;
  }
}

/* Consult hero final: keep the display headline inside its column. */
body.consult-page .consult-hero {
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 0.9fr) !important;
  gap: clamp(32px, 4.4vw, 78px) !important;
  overflow: hidden !important;
}

body.consult-page .consult-hero-copy {
  min-width: 0 !important;
  max-width: 100% !important;
  position: relative !important;
  z-index: 1 !important;
}

body.consult-page .consult-hero h1 {
  max-width: min(100%, 610px) !important;
  font-size: clamp(58px, 5.05vw, 88px) !important;
  line-height: 1.02 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance !important;
}

body.consult-page .consult-hero h1 span {
  display: block !important;
  white-space: nowrap !important;
}

body.consult-page .consult-hero-visual {
  min-width: 0 !important;
  height: clamp(500px, 40vw, 740px) !important;
  position: relative !important;
  z-index: 0 !important;
}

body.consult-page .consult-hero-visual img.consult-founders-photo {
  object-position: center bottom !important;
  transform: scale(1.14) !important;
  transform-origin: center bottom !important;
}

body.consult-page .consult-proof-card {
  width: min(520px, calc(100% - 48px)) !important;
  right: clamp(18px, 2.4vw, 42px) !important;
  bottom: clamp(18px, 2.4vw, 42px) !important;
  padding: clamp(22px, 2vw, 32px) !important;
}

body.consult-page .consult-proof-card span {
  width: clamp(48px, 4vw, 64px) !important;
}

body.consult-page .consult-proof-card p {
  max-width: 440px !important;
  margin-top: clamp(14px, 1.5vw, 22px) !important;
  font-size: clamp(18px, 1.3vw, 24px) !important;
  line-height: 1.22 !important;
}

/* Consult FAQs: full question-answer accordions, not question-only rows. */
body.consult-page .consult-faq-list article {
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--blue) !important;
  box-shadow: none !important;
}

body.consult-page .consult-faq-list .faq-btn {
  width: 100% !important;
  min-height: clamp(72px, 5.4vw, 92px) !important;
  margin: 0 !important;
  padding: 24px 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  border: 0 !important;
  background: transparent !important;
  color: #24262a !important;
  text-align: left !important;
  cursor: pointer !important;
}

body.consult-page .consult-faq-list .faq-btn span {
  color: #24262a !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.25vw, 24px) !important;
  line-height: 1.2 !important;
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
}

body.consult-page .consult-faq-list .faq-content p {
  max-width: 920px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #565f6b !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(17px, 1.15vw, 21px) !important;
  line-height: 1.48 !important;
  font-weight: 400 !important;
  font-variation-settings: var(--geist-regular) !important;
  box-shadow: none !important;
}

body.consult-page .consult-faq-list .faq-content p::after {
  content: none !important;
}

@media (max-width: 900px) {
  body.consult-page .consult-faq-list .faq-btn {
    min-height: 76px !important;
    padding: 20px 22px !important;
  }
}

@media (max-width: 1120px) {
  body.consult-page .consult-hero {
    grid-template-columns: 1fr !important;
    overflow: visible !important;
  }

  body.consult-page .consult-hero h1 {
    max-width: 760px !important;
    text-align: center !important;
  }

  body.consult-page .consult-hero h1 span {
    white-space: normal !important;
  }
}

@media (max-width: 680px) {
  body.consult-page .consult-hero h1 {
    font-size: clamp(46px, 12vw, 62px) !important;
  }
}

/* Embark outcome metrics: pastel by default, no outlined card treatment. */
body.embark-page .metrics-section .metric-grid article {
  border: 0 !important;
  box-shadow: none !important;
  background: var(--green) !important;
}

body.embark-page .metrics-section .metric-grid article:nth-child(2) {
  background: var(--rose) !important;
}

body.embark-page .metrics-section .metric-grid article:nth-child(3) {
  background: var(--blue) !important;
}

body.embark-page .metrics-section .metric-grid article:nth-child(4) {
  background: var(--yellow) !important;
}

body.embark-page .metrics-section .metric-grid article:hover {
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.embark-page .metrics-section .metric-grid .card-icon {
  border: 0 !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

/* Final shared header logo size. */
.site-header .brand img,
.site-header > .brand img {
  width: clamp(230px, 16vw, 315px) !important;
  max-height: 68px !important;
}

@media (max-width: 1240px) {
  .site-header .brand img,
  .site-header > .brand img {
    width: min(260px, 62vw) !important;
    max-height: 58px !important;
  }
}

@media (max-width: 760px) {
  .site-header .brand img,
  .site-header > .brand img {
    width: min(220px, 58vw) !important;
    max-height: 50px !important;
  }
}

/* Final Geist weight lock: match the Canny source system.
   450 regular for body, 550 medium for controls, 600 bold for Geist titles. */
:root {
  --geist-regular: "wght" 450;
  --geist-medium: "wght" 550;
  --geist-bold: "wght" 600;
}

body,
p,
li,
dd,
.large-text,
.small-text,
.style-guide-hero p,
.style-guide-section aside p,
.style-guide-type p,
.style-guide-type .large,
.style-guide-type .small,
.style-guide-card p,
.style-guide-rules p,
.style-guide-impact-demo p,
.legal-hero p,
.legal-section p,
.legal-section li,
.faq-content p,
body.reflect-page .faq-content p,
body.embark-page .faq-content p,
body.consult-page .consult-faq-list .faq-content p,
body.reflect-page .metric-grid p,
body.embark-page .metric-grid p,
body.consult-page .metric-grid p,
body.reflect-page .use-case-grid p,
body.embark-page .hiring-grid p,
body.consult-page .consult-use-case-grid p,
body.consult-page .focus-grid p,
body.consult-page .platform-grid p {
  font-weight: 450 !important;
  font-variation-settings: var(--geist-regular) !important;
}

.button,
button,
[role="button"],
.main-nav a,
.main-nav button,
.header-actions a,
.site-footer a,
.faq-btn,
.faq-btn span,
.faq-intro a,
body.consult-page .consult-faq-intro a,
.story-summary-button,
.nav-trigger,
.menu-toggle,
input[type="submit"],
input[type="button"] {
  font-weight: 550 !important;
  font-variation-settings: var(--geist-medium) !important;
}

strong,
b,
dt,
th,
label > span,
.eyebrow-pill,
.footer-heading,
.nav-product strong,
.solution-title,
.style-guide-section aside h2,
.style-guide-logo-grid span,
.style-guide-card span,
.style-guide-card h3,
.style-guide-rules h3,
.style-guide-impact-demo h3,
.swatch b,
.legal-toc h2,
.legal-section h2,
.legal-section h3,
.case-card h3,
.story-card h3,
.metric-card h3,
.impact-story-card h2,
.story-summary-card dt,
.story-summary-card dd,
.pillar-grid h3,
.challenge-grid h3,
.system-use-grid h3,
.practice-grid h3,
.practice-grid-consult h3,
.simple-card-grid h2,
.solution-detail-copy h3,
.founder-card h3,
.case-risk-grid h3,
.case-insight-list h3,
.case-table-grid h3,
.implementation-list h3,
.action-recommendations h3,
.leading-indicators h3,
.outcome-stack h3,
.related-story-grid h3,
body.reflect-page .solution-block h3,
body.reflect-page .cycle-node h3,
body.reflect-page .three-c-grid h3,
body.reflect-page .metric-grid h3,
body.reflect-page .use-case-grid h3,
body.embark-page .solution-block h3,
body.embark-page .journey-flow h3,
body.embark-page .framework-grid h3,
body.embark-page .metric-grid h3,
body.embark-page .hiring-grid h3,
body.consult-page .solution-block h3,
body.consult-page .pillar-grid h3,
body.consult-page .challenge-grid h3,
body.consult-page .system-use-grid h3,
body.consult-page .practice-grid h3,
body.consult-page .founder-card h3,
body.consult-page .enabler-grid h3,
body.consult-page .delivery-grid h3,
body.consult-page .consult-use-case-grid h3,
body.consult-page .consult-plan-list h3,
body.consult-page .activation-grid h3,
body.consult-page .focus-grid h3,
body.consult-page .platform-grid h3,
body.consult-page .practice-grid-consult h3,
body.consult-page .consult-proof-card p {
  font-weight: 600 !important;
  font-variation-settings: var(--geist-bold) !important;
}

.hero-copy h1,
.statement-section h2,
.impact-heading-section h2,
.system-section h2,
.metrics-intro h2,
.loop-card h3,
.style-guide-type h3,
.style-guide-type h4,
.legal-hero h1,
body.reflect-page .hero-copy h1,
body.reflect-page .section-copy h2,
body.reflect-page .feature-copy h2,
body.reflect-page .contact-section h2,
body.embark-page .hero-copy h1,
body.embark-page .section-copy h2,
body.embark-page .feature-copy h2,
body.embark-page .contact-section h2,
body.consult-page .consult-hero h1,
body.consult-page .section-heading h2,
body.consult-page .section-copy h2,
body.consult-page .consult-final-cta h2,
body.consult-page .loop-card h3,
body.style-guide-page .style-guide-hero h1 {
  font-weight: 400 !important;
  font-variation-settings: normal !important;
}

/* Footer hierarchy: headings bold, items regular. */
.footer-column h2,
body.consult-page .footer-column h2 {
  font-weight: 600 !important;
  font-variation-settings: var(--geist-bold) !important;
}

.footer-column a,
.footer-bottom a,
body.consult-page .footer-column a,
body.consult-page .footer-bottom a {
  font-weight: 450 !important;
  font-variation-settings: var(--geist-regular) !important;
}

/* Final flat panel rule: card-like content blocks should not have outlines or shadows. */
.swatch,
.style-guide-section,
.style-guide-logo-grid div,
.style-guide-card,
.style-guide-rules article,
.style-guide-components,
.style-guide-impact-demo,
.style-guide-form,
.impact-card-grid article,
.simple-card-grid article,
.solutions-tab-list article,
.solution-detail,
.impact-story-card,
.story-summary-card,
.case-card,
.story-card,
.metric-card,
.pillar-grid article,
.challenge-grid article,
.system-use-grid article,
.practice-grid article,
.practice-grid-consult article,
.founder-card,
.case-risk-grid article,
.case-insight-list,
.case-insight-list li,
.case-initiative-grid article,
.implementation-list article,
.driver-definition-table div,
.action-recommendations article,
.outcome-stack article,
.leading-indicators article,
.related-story-grid article,
body.reflect-page .solution-block,
body.reflect-page .three-c-grid article,
body.reflect-page .metric-grid article,
body.reflect-page .use-case-grid article,
body.reflect-page .card-icon,
body.embark-page .solution-block,
body.embark-page .framework-grid article,
body.embark-page .metric-grid article,
body.embark-page .hiring-grid article,
body.embark-page .card-icon,
body.consult-page .solution-block,
body.consult-page .impact-card-grid article,
body.consult-page .consult-proof-card,
body.consult-page .consult-plan-card,
body.consult-page .consult-use-case-grid article,
body.consult-page .focus-grid article,
body.consult-page .platform-grid article,
body.consult-page .pillar-grid article,
body.consult-page .challenge-grid article,
body.consult-page .system-use-grid article,
body.consult-page .practice-grid article,
body.consult-page .practice-grid-consult article,
body.consult-page .founder-card,
.telecom-case .case-metric-trio div,
.telecom-risk-grid article,
.telecom-business-context,
.telecom-question {
  border: 0 !important;
  box-shadow: none !important;
}

.solutions-tab-list article:hover,
.solutions-tab-list article.is-open,
.impact-story-card:hover,
.impact-story-card:focus-visible,
body.reflect-page .three-c-grid article:hover,
body.reflect-page .metric-grid article:hover,
body.embark-page .metric-grid article:hover,
body.consult-page .impact-card-grid article:hover,
body.consult-page .consult-plan-card:hover {
  border: 0 !important;
  box-shadow: none !important;
}

/* Final card icon cleanup: keep the icons, remove the white tile behind them. */
body.reflect-page .card-icon,
body.embark-page .card-icon {
  width: 46px !important;
  height: 46px !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.reflect-page .card-icon svg,
body.embark-page .card-icon svg {
  width: 38px !important;
  height: 38px !important;
  display: block !important;
}

body.reflect-page .metric-grid .card-icon,
body.embark-page .metric-grid .card-icon,
body.embark-page .metrics-section .metric-grid .card-icon {
  background: transparent !important;
}

/* Final product menu cleanup: logo first, description below, no tinted item blocks. */
.nav-dropdown,
body.nav-open .nav-dropdown {
  gap: 14px !important;
  padding: 16px !important;
}

.nav-product,
.nav-product:nth-child(1),
.nav-product:nth-child(2),
.nav-product:nth-child(3),
body.nav-open .nav-product,
body.nav-open .nav-product:nth-child(1),
body.nav-open .nav-product:nth-child(2),
body.nav-open .nav-product:nth-child(3) {
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 13px !important;
  align-items: start !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 18px 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.nav-product:hover,
.nav-product:focus-visible,
body.nav-open .nav-product:hover,
body.nav-open .nav-product:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.nav-product img,
body.nav-open .nav-product img {
  width: min(150px, 100%) !important;
  max-height: 42px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.nav-product span,
body.nav-open .nav-product span {
  display: block !important;
  min-width: 0 !important;
}

.nav-product small,
body.nav-open .nav-product small {
  display: block !important;
  margin: 0 !important;
  color: #56616d !important;
  font-size: 14px !important;
  line-height: 1.34 !important;
  font-weight: 450 !important;
  font-variation-settings: var(--geist-regular) !important;
}

/* Final header background: pure opaque white across every page. */
.site-header,
body.reflect-page .site-header,
body.embark-page .site-header,
body.consult-page .site-header,
body.case-studies-page .site-header,
body.nav-open .site-header {
  background: #ffffff !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Final layout system: FAQ-led composition pass. */
:root {
  --layout-gutter: clamp(32px, 6vw, 120px);
  --layout-standard: min(calc(100% - var(--layout-gutter)), 1500px);
  --layout-wide: min(calc(100% - var(--layout-gutter)), 1760px);
  --layout-reading: min(calc(100% - var(--layout-gutter)), 1180px);
  --layout-copy: min(100%, 980px);
  --layout-copy-wide: min(100%, 1120px);
  --layout-grid-gap: clamp(18px, 1.8vw, 28px);
  --layout-grid-gap-wide: clamp(22px, 2.4vw, 42px);
  --layout-content-gap: clamp(38px, 4.2vw, 72px);
  --layout-section-y: clamp(72px, 6.4vw, 118px);
  --layout-section-y-large: clamp(82px, 7vw, 132px);
  --site-gutter: var(--layout-gutter);
  --site-shell: var(--layout-standard);
  --site-shell-reading: var(--layout-reading);
  --home-shell: var(--layout-standard);
  --shell: var(--layout-standard);
  --narrow: min(calc(100% - var(--layout-gutter)), 1160px);
}

.site-header,
.site-footer,
.trusted-section,
.statement-section,
.pillar-section,
.impact-heading-section,
.impact-card-section,
.challenge-section,
.system-section,
.practice-section,
.founders-section,
.closing-cta-section,
body.solutions-page .solutions-tab-section,
body.solutions-page .solutions-next-cta,
.impact-stories-hero,
.impact-story-library,
.story-summary-shell,
.case-page-nav,
.case-study-detail,
body.reflect-page .hero-media,
body.reflect-page .problem-section,
body.reflect-page .cycle-section,
body.reflect-page .three-c-section,
body.reflect-page .feature-section,
body.reflect-page .metrics-section,
body.reflect-page .use-case-section,
body.reflect-page .contact-section,
body.embark-page .hero-media,
body.embark-page .problem-section,
body.embark-page .journey-section,
body.embark-page .framework-section,
body.embark-page .feature-section,
body.embark-page .metrics-section,
body.embark-page .hiring-section,
body.embark-page .contact-section,
body.consult-page .consult-hero,
body.consult-page .consult-section,
body.consult-page .consult-final-cta {
  width: var(--layout-standard) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.faq-section,
body.reflect-page .faq-section,
body.embark-page .faq-section,
body.consult-page .consult-faq {
  width: var(--layout-wide) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: var(--layout-section-y-large) 0 !important;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr) !important;
  gap: clamp(52px, 7vw, 132px) !important;
}

.trusted-section {
  padding: clamp(48px, 5vw, 76px) 0 clamp(42px, 4.6vw, 68px) !important;
}

.statement-section,
.impact-heading-section,
.challenge-section,
.system-section,
.practice-section,
.founders-section,
body.reflect-page .problem-section,
body.reflect-page .cycle-section,
body.reflect-page .three-c-section,
body.reflect-page .feature-section,
body.reflect-page .metrics-section,
body.reflect-page .use-case-section,
body.embark-page .problem-section,
body.embark-page .journey-section,
body.embark-page .framework-section,
body.embark-page .feature-section,
body.embark-page .metrics-section,
body.embark-page .hiring-section,
body.consult-page .consult-section {
  padding-top: var(--layout-section-y) !important;
  padding-bottom: var(--layout-section-y) !important;
}

.pillar-section,
.impact-card-section {
  padding-top: 0 !important;
  padding-bottom: var(--layout-section-y) !important;
}

.statement-section h2,
.impact-heading-section h2,
.system-intro h2,
.metrics-intro h2,
.practice-header h2,
.founders-heading h2,
body.reflect-page .section-copy,
body.embark-page .section-copy,
body.consult-page .section-heading,
body.consult-page .section-copy,
body.consult-page .consult-diagnosis-copy,
body.consult-page .engagement-copy {
  max-width: var(--layout-copy-wide) !important;
}

.statement-section p,
.impact-heading-section p,
.system-intro p,
.metrics-intro p,
.practice-header p,
.founders-heading p,
body.reflect-page .section-copy p,
body.embark-page .section-copy p,
body.consult-page .section-heading p,
body.consult-page .section-copy p,
body.consult-page .consult-diagnosis-copy p,
body.consult-page .engagement-copy p {
  max-width: var(--layout-copy) !important;
}

.pillar-grid,
.impact-card-grid,
.practice-grid,
.founder-grid,
.simple-card-grid,
body.reflect-page .three-c-grid,
body.reflect-page .metric-grid,
body.reflect-page .use-case-grid,
body.embark-page .framework-grid,
body.embark-page .metric-grid,
body.embark-page .hiring-grid,
body.consult-page .enabler-grid,
body.consult-page .delivery-grid,
body.consult-page .activation-grid,
body.consult-page .metric-grid,
body.consult-page .platform-grid,
body.consult-page .consult-use-case-grid,
body.consult-page .focus-grid,
body.consult-page .practice-grid-consult {
  gap: var(--layout-grid-gap) !important;
}

body.reflect-page .three-c-grid,
body.reflect-page .metric-grid,
body.reflect-page .use-case-grid,
body.embark-page .journey-flow,
body.embark-page .framework-grid,
body.embark-page .metric-grid,
body.embark-page .hiring-grid,
body.consult-page .enabler-grid,
body.consult-page .delivery-grid,
body.consult-page .activation-grid,
body.consult-page .metric-grid,
body.consult-page .platform-grid,
body.consult-page .consult-use-case-grid,
body.consult-page .focus-grid,
body.consult-page .practice-grid-consult {
  margin-top: var(--layout-content-gap) !important;
}

body.reflect-page .solution-block,
body.embark-page .solution-block {
  max-width: var(--layout-reading) !important;
  margin-top: var(--layout-content-gap) !important;
}

body.reflect-page .feature-stack,
body.embark-page .feature-stack {
  gap: clamp(64px, 6vw, 104px) !important;
}

body.reflect-page .feature-block,
body.reflect-page .feature-reverse,
body.embark-page .feature-block,
body.embark-page .feature-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr) !important;
  gap: clamp(36px, 5vw, 76px) !important;
}

body.reflect-page .feature-reverse .feature-media,
body.embark-page .feature-reverse .feature-media {
  order: 2 !important;
}

body.reflect-page .feature-reverse .feature-copy,
body.embark-page .feature-reverse .feature-copy {
  order: 1 !important;
}

body.embark-page .journey-flow {
  width: 100% !important;
  max-width: none !important;
}

body.reflect-page .three-c-grid article,
body.embark-page .framework-grid article,
body.consult-page .enabler-grid article,
body.consult-page .delivery-grid article {
  min-height: clamp(300px, 22vw, 390px) !important;
}

body.reflect-page .metric-grid article,
body.embark-page .metric-grid article,
body.consult-page .activation-grid article,
body.consult-page .metric-grid article {
  min-height: clamp(230px, 17vw, 300px) !important;
}

body.reflect-page .use-case-grid article,
body.embark-page .hiring-grid article,
body.consult-page .consult-use-case-grid article,
body.consult-page .focus-grid article,
body.consult-page .practice-grid-consult article {
  min-height: clamp(420px, 30vw, 520px) !important;
}

body.consult-page .consult-diagnosis,
body.consult-page .engagement-section,
body.consult-page .platform-section,
body.consult-page .metric-section {
  gap: clamp(40px, 5.4vw, 92px) !important;
}

body.consult-page .consult-use-case-grid,
body.consult-page .focus-grid {
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.consult-page .consult-use-case-grid article:nth-child(3),
body.consult-page .focus-grid article:nth-child(3) {
  width: auto !important;
  grid-column: auto !important;
  justify-self: stretch !important;
  margin-top: 0 !important;
}

body.consult-page .practice-grid-consult {
  width: 100% !important;
  max-width: none !important;
}

body.solutions-page .solutions-tab-section {
  padding-top: clamp(56px, 5.6vw, 92px) !important;
  padding-bottom: var(--layout-section-y) !important;
}

body.solutions-page .solutions-page-heading {
  max-width: var(--layout-copy-wide) !important;
  margin-bottom: var(--layout-content-gap) !important;
}

body.solutions-page .solutions-tab-list {
  gap: var(--layout-grid-gap-wide) !important;
}

@media (max-width: 1120px) {
  .pillar-grid,
  .impact-card-grid,
  .practice-grid,
  .founder-grid,
  body.reflect-page .three-c-grid,
  body.reflect-page .metric-grid,
  body.reflect-page .use-case-grid,
  body.embark-page .framework-grid,
  body.embark-page .metric-grid,
  body.embark-page .hiring-grid,
  body.consult-page .enabler-grid,
  body.consult-page .delivery-grid,
  body.consult-page .activation-grid,
  body.consult-page .metric-grid,
  body.consult-page .consult-use-case-grid,
  body.consult-page .focus-grid,
  body.consult-page .practice-grid-consult {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .challenge-section,
  body.reflect-page .feature-block,
  body.reflect-page .feature-reverse,
  body.embark-page .feature-block,
  body.embark-page .feature-reverse,
  body.consult-page .consult-diagnosis,
  body.consult-page .engagement-section,
  body.consult-page .platform-section,
  body.consult-page .metric-section {
    grid-template-columns: 1fr !important;
  }

  body.reflect-page .feature-reverse .feature-media,
  body.embark-page .feature-reverse .feature-media,
  body.reflect-page .feature-reverse .feature-copy,
  body.embark-page .feature-reverse .feature-copy {
    order: initial !important;
  }
}

@media (max-width: 900px) {
  .faq-section,
  body.reflect-page .faq-section,
  body.embark-page .faq-section,
  body.consult-page .consult-faq {
    width: var(--layout-standard) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
}

@media (max-width: 760px) {
  :root {
    --layout-gutter: 28px;
    --layout-section-y: 58px;
    --layout-section-y-large: 64px;
    --layout-content-gap: 34px;
  }

  .pillar-grid,
  .impact-card-grid,
  .practice-grid,
  .founder-grid,
  .simple-card-grid,
  body.reflect-page .three-c-grid,
  body.reflect-page .metric-grid,
  body.reflect-page .use-case-grid,
  body.embark-page .journey-flow,
  body.embark-page .framework-grid,
  body.embark-page .metric-grid,
  body.embark-page .hiring-grid,
  body.consult-page .enabler-grid,
  body.consult-page .delivery-grid,
  body.consult-page .activation-grid,
  body.consult-page .metric-grid,
  body.consult-page .platform-grid,
  body.consult-page .consult-use-case-grid,
  body.consult-page .focus-grid,
  body.consult-page .practice-grid-consult {
    grid-template-columns: 1fr !important;
  }

  body.reflect-page .hero-media,
  body.embark-page .hero-media {
    margin-top: 42px !important;
  }
}

/* Product impact cards: lock image, logo, copy, and CTA to shared rows. */
.impact-card-grid article,
body.consult-page .impact-card-grid article {
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: clamp(230px, 19vw, 320px) minmax(300px, auto) !important;
  gap: clamp(30px, 3vw, 48px) !important;
  align-items: stretch !important;
  justify-content: initial !important;
}

.impact-card-visual,
body.consult-page .impact-card-visual {
  width: 100% !important;
  height: clamp(230px, 19vw, 320px) !important;
  min-height: 0 !important;
}

.impact-card-visual img,
body.consult-page .impact-card-visual img {
  width: 100% !important;
  height: 100% !important;
}

.impact-card-copy,
body.consult-page .impact-card-copy {
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: 68px minmax(116px, auto) 52px !important;
  align-content: start !important;
  align-items: start !important;
}

.impact-card-copy img,
body.consult-page .impact-card-copy img {
  width: min(250px, 86%) !important;
  height: 58px !important;
  margin: 0 !important;
  align-self: start !important;
}

.impact-card-copy p,
body.consult-page .impact-card-copy p {
  max-width: 520px !important;
  margin: 0 !important;
  align-self: start !important;
}

.impact-card-copy a,
body.consult-page .impact-card-copy a {
  margin: 0 !important;
  align-self: end !important;
}

@media (max-width: 1120px) {
  .impact-card-grid article,
  body.consult-page .impact-card-grid article {
    grid-template-rows: clamp(220px, 28vw, 300px) minmax(260px, auto) !important;
  }

  .impact-card-visual,
  body.consult-page .impact-card-visual {
    height: clamp(220px, 28vw, 300px) !important;
  }
}

@media (max-width: 760px) {
  .impact-card-grid article,
  body.consult-page .impact-card-grid article {
    grid-template-rows: auto auto !important;
    gap: 28px !important;
  }

  .impact-card-visual,
  body.consult-page .impact-card-visual {
    height: 200px !important;
  }

  .impact-card-copy,
  body.consult-page .impact-card-copy {
    grid-template-rows: auto auto auto !important;
    gap: 18px !important;
  }
}

/* Style guide Cards section: standalone copy of the homepage pillar cards. */
body.style-guide-page .homepage-pillar-demo {
  width: 100%;
  margin: 0 0 clamp(54px, 5vw, 82px);
  padding: 0;
}

body.style-guide-page .homepage-pillar-demo-intro {
  max-width: 760px;
  margin: 0 0 clamp(24px, 3vw, 38px);
}

body.style-guide-page .homepage-pillar-demo-intro h2 {
  margin: 0 0 14px;
  color: #242424;
  font-size: clamp(24px, 1.6vw, 34px);
  line-height: 1.05;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
  letter-spacing: 0;
}

body.style-guide-page .homepage-pillar-demo-intro p {
  max-width: 620px;
  margin: 0;
  color: #4f5965;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
}

body.style-guide-page .homepage-pillar-demo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

body.style-guide-page .homepage-pillar-demo-card {
  min-height: 290px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: start;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: clamp(26px, 2.4vw, 38px);
  box-shadow: none;
}

body.style-guide-page .homepage-pillar-demo-card.demo-green {
  background: #e7f5e9;
}

body.style-guide-page .homepage-pillar-demo-card.demo-blue {
  background: #dcedfb;
}

body.style-guide-page .homepage-pillar-demo-card.demo-yellow {
  background: #fff2c6;
}

body.style-guide-page .homepage-pillar-demo-card.demo-pink {
  background: #ead1dc;
}

body.style-guide-page .homepage-pillar-demo-card span {
  color: rgba(36, 36, 36, 0.74);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
}

body.style-guide-page .homepage-pillar-demo-card h3 {
  align-self: end;
  margin: 0 0 10px;
  color: #252525;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
  letter-spacing: 0;
}

body.style-guide-page .homepage-pillar-demo-card p {
  margin: 0;
  color: #535353;
  font-size: clamp(18px, 1.24vw, 22px);
  line-height: 1.28;
  font-weight: 550;
  font-variation-settings: var(--geist-medium);
  letter-spacing: 0;
}

@media (max-width: 1120px) {
  body.style-guide-page .homepage-pillar-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.style-guide-page .homepage-pillar-demo-grid {
    grid-template-columns: 1fr;
  }

  body.style-guide-page .homepage-pillar-demo-card {
    min-height: 260px;
  }
}

/* Style guide Forms section: clean input and selectable examples. */
body.style-guide-page .form-demo-section {
  width: 100%;
  margin: 0 0 clamp(70px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

body.style-guide-page .form-demo-section aside h2 {
  margin: 0 0 14px;
  color: #242424;
  font-size: clamp(24px, 1.6vw, 34px);
  line-height: 1.05;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
  letter-spacing: 0;
}

body.style-guide-page .form-demo-section aside p {
  max-width: 280px;
  margin: 0;
  color: #4f5965;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
}

body.style-guide-page .form-demo-content {
  display: grid;
  gap: 22px;
}

body.style-guide-page .form-demo-content h3 {
  margin: 0;
  color: #4a4f55;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.2;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
}

body.style-guide-page .form-demo-content h3:not(:first-child) {
  margin-top: 30px;
}

body.style-guide-page .form-demo-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  padding: 0 15px;
  background: #ffffff;
  color: #242424;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
  box-shadow: 0 1px 4px rgba(32, 34, 38, 0.08);
}

body.style-guide-page .form-demo-control::placeholder {
  color: #5f6872;
  opacity: 1;
}

body.style-guide-page .form-demo-control:focus {
  border-color: #9aa5b1;
  outline: 2px solid rgba(154, 165, 177, 0.24);
  outline-offset: 2px;
}

body.style-guide-page .form-demo-field {
  display: grid;
  gap: 11px;
}

body.style-guide-page .form-demo-field > span {
  color: #242424;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
}

body.style-guide-page .form-demo-field small {
  color: #8a929b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
}

body.style-guide-page .form-demo-textarea {
  min-height: 160px;
  padding-top: 16px;
  resize: vertical;
}

body.style-guide-page .form-demo-selectables {
  gap: 16px;
  padding-top: 4px;
}

body.style-guide-page .form-demo-selectables label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #242424;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
}

body.style-guide-page .form-demo-selectables input[type="checkbox"],
body.style-guide-page .form-demo-selectables input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #242424;
}

body.style-guide-page .form-demo-selectables select.form-demo-control {
  margin-top: 4px;
}

@media (max-width: 980px) {
  body.style-guide-page .form-demo-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.style-guide-page .form-demo-section aside p {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  body.style-guide-page .form-demo-section {
    margin-bottom: 58px;
  }
}

body.style-guide-page .style-guide-note {
  width: min(100%, 860px);
  margin: clamp(18px, 2vw, 28px) auto 0;
  text-align: center;
}

body.style-guide-page .style-guide-note h2 {
  margin: 0 0 10px;
  color: #242424;
  font-size: clamp(22px, 1.4vw, 28px);
  line-height: 1.1;
  font-weight: 600;
  font-variation-settings: var(--geist-bold);
  letter-spacing: 0;
}

body.style-guide-page .style-guide-note p {
  margin: 0;
  color: #56616d;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
  font-weight: 450;
  font-variation-settings: var(--geist-regular);
}

/* Reflect metric cards should load with their pastel system colors visible. */
body.reflect-page .metric-grid article:nth-child(1) {
  background: var(--green);
}

body.reflect-page .metric-grid article:nth-child(2) {
  background: var(--yellow);
}

body.reflect-page .metric-grid article:nth-child(3) {
  background: var(--blue);
}

body.reflect-page .metric-grid article:nth-child(4) {
  background: var(--rose);
}

/* Footer columns: keep the link groups to the right with a clean center gap. */
@media (min-width: 1041px) {
  .footer-main {
    grid-template-columns: minmax(280px, 320px) clamp(20px, 6vw, 132px) max-content max-content !important;
    column-gap: clamp(30px, 3.8vw, 64px) !important;
    row-gap: clamp(44px, 7vw, 110px) !important;
    justify-content: start !important;
  }

  .footer-brand {
    grid-column: 1 !important;
  }

  .footer-main > .footer-column:first-of-type {
    grid-column: 3 !important;
  }

  .footer-main > .footer-column:last-of-type {
    grid-column: 4 !important;
  }

  .footer-column {
    justify-self: start !important;
  }
}

/* Footer legal links: keep each item visibly separated. */
.footer-bottom div {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px clamp(22px, 2vw, 38px) !important;
}

/* Homepage solution cards: keep a simple hash marker, no white tile. */
body.home-page .challenge-grid article {
  grid-template-columns: clamp(34px, 3.4vw, 50px) minmax(0, 1fr) !important;
  align-items: start !important;
}

body.home-page .challenge-grid span {
  width: auto !important;
  aspect-ratio: auto !important;
  display: block !important;
  align-self: start !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(36, 36, 36, 0.62) !important;
  font-size: clamp(28px, 2.4vw, 38px) !important;
  line-height: 0.95 !important;
  font-weight: 600 !important;
  font-variation-settings: var(--geist-bold) !important;
}

/* Footer link columns: pull the pair left while preserving the center gap. */
@media (min-width: 681px) and (max-width: 1040px) {
  .footer-main {
    grid-template-columns: max-content max-content !important;
    column-gap: clamp(54px, 9vw, 96px) !important;
    justify-content: start !important;
  }

  .footer-brand {
    grid-column: 1 / -1 !important;
    width: min(100%, 520px) !important;
  }
}

/* Homepage CTAs: box-style ATP buttons on dark imagery. */
body.home-page .hero-actions,
body.home-page .closing-cta-actions {
  gap: 18px !important;
  align-items: center !important;
}

body.home-page .hero-actions .button,
body.home-page .closing-cta-actions .button {
  min-width: 0 !important;
  min-height: 62px !important;
  border-radius: 8px !important;
  padding: 0 32px !important;
  gap: 24px !important;
  font-size: clamp(22px, 1.45vw, 28px) !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

body.home-page .hero-actions .button-light,
body.home-page .closing-cta-actions .button-light {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #1f1f1f !important;
}

body.home-page .hero-actions .button-glass,
body.home-page .closing-cta-actions .button-glass {
  min-width: min(300px, 100%) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: rgba(31, 31, 31, 0.62) !important;
  color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.home-page .hero-actions .button-glass span,
body.home-page .closing-cta-actions .button-glass span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

body.home-page .hero-actions .button:hover,
body.home-page .hero-actions .button:focus-visible,
body.home-page .closing-cta-actions .button:hover,
body.home-page .closing-cta-actions .button:focus-visible {
  transform: none !important;
}

body.home-page .hero-actions .button-light:hover,
body.home-page .hero-actions .button-light:focus-visible,
body.home-page .closing-cta-actions .button-light:hover,
body.home-page .closing-cta-actions .button-light:focus-visible {
  background: #f7f7f7 !important;
  border-color: #f7f7f7 !important;
}

body.home-page .hero-actions .button-glass:hover,
body.home-page .hero-actions .button-glass:focus-visible,
body.home-page .closing-cta-actions .button-glass:hover,
body.home-page .closing-cta-actions .button-glass:focus-visible {
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(31, 31, 31, 0.72) !important;
}

/* Founder LinkedIn links: use the actual mark, not loose text. */
.founder-linkedin,
body.consult-page .founder-linkedin {
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transition: none !important;
}

.founder-linkedin img,
body.consult-page .founder-linkedin img {
  width: 34px !important;
  height: 34px !important;
  margin: 0 !important;
  border-radius: 7px !important;
  object-fit: contain !important;
}

.founder-linkedin:hover,
.founder-linkedin:focus-visible,
body.consult-page .founder-linkedin:hover,
body.consult-page .founder-linkedin:focus-visible {
  box-shadow: none !important;
  transform: none !important;
}

/* Footer AI card: add breathing room between title and icons. */
.footer-ai-summary {
  min-height: 190px !important;
  gap: 30px !important;
  padding: clamp(28px, 2.5vw, 36px) !important;
}

.footer-ai-summary > span:first-child {
  display: block !important;
  max-width: 360px !important;
  line-height: 1.12 !important;
}

.footer-ai-icons {
  flex-wrap: wrap !important;
  gap: clamp(16px, 1.4vw, 24px) !important;
  padding-top: 4px !important;
}

/* Homepage FAQ: tighten the space between question bars. */
body.home-page .faq-list {
  gap: 8px !important;
}
